:root {
  --color-primary: #b7865c;
  --color-primary-hover: #a37248;
  --color-primary-variant-hover: rgba(183, 134, 92, 0.08);
  --color-surface: #ffffff;
  --color-surface-bg: #f7f5f3;
  --color-on-surface: #2d2d2d;
  --color-on-surface-secondary: #6b6b6b;
  --color-on-surface-disabled: #c4c4c4;
  --color-on-surface-border: #8a8a8a;
  --color-secondary: #5a5a5a;
  --color-on-secondary: #e8e4df;
  --color-surface-variant: #e0ddd9;
  --color-on-primary: #ffffff;
  --color-tertiary-green: #4caf50;
  --color-bg-secondary: #f0ece7;
  --shadow-header: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-level-1: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-level-2: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-level-3: 0 8px 24px rgba(0, 0, 0, 0.14);
  --wrapper-max: 1280px;
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-family);
  color: var(--color-on-surface);
  background: var(--color-surface);
  line-height: 1.5;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrapper {
  max-width: var(--wrapper-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: var(--color-surface);
  box-shadow: var(--shadow-header);
}

.shadow-header { box-shadow: var(--shadow-header); }

.header-inner {
  max-width: var(--wrapper-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 20px;
}

.logo-link { flex-shrink: 0; }
.logo-link { flex-shrink: 0; text-decoration: none; }
.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-on-surface);
  white-space: nowrap;
}


.desktop-nav { display: flex; align-items: center; gap: 24px; flex: 1; }
@media (max-width: 1023px) { .desktop-nav { display: none; } }

.nav-item {
  position: relative;
  padding: 20px 0;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: default;
}

.nav-item a { color: var(--color-on-surface); transition: color 0.2s; }
.nav-item a:hover { color: var(--color-primary); }

.nav-item.active a { color: var(--color-primary); }
.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 999px;
}

.nav-item .chevron {
  font-size: 0.625rem;
  transform: rotate(90deg);
  display: inline-block;
  color: var(--color-on-surface-secondary);
  transition: transform 0.2s;
}

.nav-item:hover .chevron { transform: rotate(-90deg); }

.nav-label { cursor: default; }

.shop-nav { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.shop-nav .divider {
  width: 1px;
  height: 20px;
  background: var(--color-surface-variant);
}
.new-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-on-primary);
  background: var(--color-tertiary-green);
  padding: 2px 8px;
  border-radius: 4px;
  line-height: 1.4;
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-surface);
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-header);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  display: flex;
  z-index: 200;
}

.nav-item:hover .dropdown { opacity: 1; visibility: visible; }

.dropdown.one-col { flex-direction: column; }
.dropdown.two-col { flex-direction: row; min-width: 440px; }
.dropdown.cities-col { flex-direction: row; min-width: 440px; }

.dropdown-col { display: flex; flex-direction: column; flex: 1; }
.dropdown a {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-on-surface);
  white-space: nowrap;
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--color-surface-bg); color: var(--color-primary); }

/* Profile area */
.profile-area { margin-left: auto; display: flex; align-items: center; }

.profile-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-on-surface);
  transition: background 0.2s;
}
.profile-btn:hover { background: var(--color-surface-bg); }

.mobile-menu-btn { display: none; }
@media (max-width: 1023px) { .mobile-menu-btn { display: flex; margin-left: 12px; } }

/* Mobile bottom nav */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: var(--color-surface);
  padding: 8px 12px;
  justify-content: space-around;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 1023px) { .mobile-bottom-nav { display: flex; } }

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  padding: 4px 8px;
}
.bottom-nav-item.active { color: var(--color-primary); }
.bottom-nav-item svg { width: 20px; height: 20px; }

.lets-begin { position: relative; }
.lets-begin-icon {
  position: absolute;
  top: -16px;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-on-primary);
  box-shadow: var(--shadow-level-2);
}
.lets-begin span:last-child { margin-top: 28px; }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--color-surface);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }

.mobile-overlay-header {
  display: flex;
  justify-content: flex-end;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-surface-bg);
}
.mobile-overlay-header button { padding: 8px; }

.mobile-overlay-body { padding: 16px 20px 120px; }

.mobile-nav-section { margin-bottom: 24px; }
.mobile-nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-on-surface-border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.mobile-nav-link {
  display: block;
  padding: 10px 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-on-surface);
  border-bottom: 1px solid var(--color-surface-bg);
}
.mobile-nav-link.active { color: var(--color-primary); }

.city-more { color: var(--color-primary) !important; font-weight: 600; }

.mobile-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 199;
  background: rgba(0,0,0,0.4);
}
.mobile-backdrop.open { display: block; }

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  background: var(--color-surface);
}
.breadcrumb {
  display: flex;
  align-items: center;
  max-width: var(--wrapper-max);
  margin: 0 auto;
  padding: 8px 20px;
  gap: 4px;
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .breadcrumb { padding: 24px 20px; }
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-on-surface-secondary);
}

.breadcrumb-item a { color: var(--color-on-surface); font-weight: 500; }
.breadcrumb-item a:hover { color: var(--color-primary); }
.breadcrumb-item.current { color: var(--color-on-surface-secondary); }

.breadcrumb-sep { margin: 0 4px; color: var(--color-on-surface-disabled); }

/* ===== HERO ===== */
.hero-section { margin-bottom: 40px; }
@media (min-width: 768px) { .hero-section { margin-bottom: 80px; } }

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0 0;
}

.hero-text { max-width: 56%; }
@media (max-width: 767px) { .hero-text { max-width: 100%; } }

.hero-title-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  position: relative;
  margin-left: -12px;
}

.accent-bar {
  width: 4px;
  height: 32px;
  background: var(--color-primary);
  border-radius: 4px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .accent-bar { height: 36px; } }

.hero-title-bar h1 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 12px;
}
@media (min-width: 768px) { .hero-title-bar h1 { font-size: 2rem; } }

.hero-desc p {
  font-size: 0.9375rem;
  color: var(--color-on-surface-secondary);
  line-height: 1.6;
}
.hero-desc.collapsed p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 12px;
  padding: 4px 0;
  transition: gap 0.2s;
}
.read-more-btn:hover { gap: 8px; }
.read-more-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.read-more-btn.active svg { transform: rotate(180deg); }

/* ===== CATEGORY GRID ===== */
.category-section { margin-bottom: 40px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.category-card {
  background: var(--color-surface);
  box-shadow: var(--shadow-level-1);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.category-card:hover { box-shadow: var(--shadow-level-3); }
.category-card a { display: block; color: inherit; }

.category-card-img {
  overflow: hidden;
  aspect-ratio: 696 / 368;
  background: var(--color-surface-bg);
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.category-card:hover .category-card-img img { transform: scale(1.08); }

.category-card-info { padding: 12px 16px; }
.category-card-info h3 { font-size: 1.0625rem; font-weight: 600; }
.category-card-info p {
  font-size: 0.8125rem;
  color: var(--color-on-surface-secondary);
  margin-top: 4px;
}

/* ===== BANNER CTA ===== */
.banner-cta-section { margin: 40px 0; }
.banner-cta {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-bg-secondary);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .banner-cta { grid-template-columns: 3fr 2fr; }
}

.banner-image { overflow: hidden; }
.banner-image img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; }

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}
.banner-content h3 { font-size: 1.375rem; font-weight: 700; margin-bottom: 8px; }
.banner-content p { font-size: 0.9375rem; color: var(--color-on-surface-secondary); margin-bottom: 20px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background 0.2s;
  width: fit-content;
}
.btn-primary:hover { background: var(--color-primary-hover); }

/* ===== CAROUSEL SECTIONS ===== */
.carousel-section { margin: 48px 0; }

.carousel-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
}
@media (min-width: 768px) { .carousel-header { padding: 24px 20px; } }

.carousel-header-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}
@media (min-width: 768px) { .carousel-header-text h3 { font-size: 1.5rem; } }

.carousel-header-text p {
  font-size: 0.875rem;
  color: var(--color-on-surface-secondary);
  line-height: 1.5;
}
@media (min-width: 768px) { .carousel-header-text p { font-size: 0.9375rem; } }

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  padding: 0 20px;
}

.carousel { gap: 16px; }
@media (min-width: 640px) { .carousel { gap: 32px; } }

.carousel-slide {
  min-width: 290px;
  max-width: 380px;
}
.carousel-slide a { display: block; color: inherit; }

.carousel-card {
  background: var(--color-surface);
  box-shadow: var(--shadow-level-1);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.carousel-card:hover { box-shadow: var(--shadow-level-3); }

.carousel-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-surface-bg);
}
.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.carousel-card:hover .carousel-card-img img { transform: scale(1.08); }

.carousel-card-body { padding: 16px; }
.carousel-card-body h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 10px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--color-primary-variant-hover); }

/* ===== FAQ ===== */
.faq-section { margin-top: 40px; }
@media (min-width: 768px) { .faq-section { margin-top: 80px; } }

.faq-bg { background: var(--color-surface-bg); padding: 40px 0; }
@media (min-width: 768px) { .faq-bg { padding: 80px 0; } }

.faq-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .faq-content h2 { padding: 0; font-size: 1.75rem; }
}

.faq-item {
  background: var(--color-surface);
  box-shadow: var(--shadow-level-1);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--color-on-surface-secondary);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}
.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-on-surface-secondary);
}



/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .hero-content { padding: 20px 0 0; }
  .hero-text { max-width: 100%; }
  .banner-content { padding: 24px 20px; }
  .carousel-header { padding: 16px; }
  .carousel-header-text h3 { font-size: 1.0625rem; }
  .faq-content h2 { padding: 0 16px; }
  .faq-question { padding: 12px 16px; font-size: 0.875rem; }
  .faq-answer { padding: 0 16px; }
  .faq-item.open .faq-answer { padding: 0 16px 12px; }
}

/* Keen-slider compatibility */
.carousel-wrapper { overflow: hidden; }
.carousel-wrapper .keen-slider__slide { min-width: 290px; max-width: 380px; }
