/* ================================================
   OKTAV LEATHER — LUXURY ECOMMERCE
   Premium CSS Framework
   ================================================ */

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

:root {
  --ink:     #1a1208;
  --brown:   #7c5c3e;
  --gold:    #b8935a;
  --gold-lt: #d4af7a;
  --cream:   #f7f2ec;
  --soft:    #ede6dc;
  --warm:    #f2ebe1;
  --white:   #ffffff;
  --text:    #5a4a3a;
  --border:  #e0d4c4;
  --shadow:  rgba(26,18,8,0.08);
  --radius:  16px;
  --radius-lg: 28px;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-bg: rgba(247,242,236,0.95);
  --on-ink: #ffffff;
  --fg: var(--ink);
  --color-scheme: light;
}

/* ================================================
   DARK MODE
   ================================================ */
[data-theme="dark"] {
  --cream:   #14110c;
  --soft:    #1c1812;
  --warm:    #1a1610;
  --white:   #201b14;
  --text:    #b8ab98;
  --border:  #34291b;
  --shadow:  rgba(0,0,0,0.45);
  --nav-bg:  rgba(20,17,12,0.92);
  --fg:      #f3ece1;
  --on-ink:  #1a1208;
  --color-scheme: dark;
}

html { color-scheme: var(--color-scheme); }

#themeToggle .icon-moon { display: none; }
[data-theme="dark"] #themeToggle .icon-sun { display: none; }
[data-theme="dark"] #themeToggle .icon-moon { display: block; }

body,
.navbar,
.search-overlay,
.modal-overlay,
.cart-drawer,
.product-card,
.cat-card,
.testi-card,
.contact-form,
.form-group input,
.form-group select,
.form-group textarea {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--fg);
  overflow-x: hidden;
  line-height: 1.75;
}

img { width: 100%; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; outline: none; cursor: pointer; font-family: 'Jost', sans-serif; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ---- ACCESSIBILITY: FOCUS STATE ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- SKIP TO CONTENT LINK ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---- VISUALLY HIDDEN (screen reader only) ---- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- CONTAINER ---- */
.container { width: 92%; max-width: 1380px; margin: auto; }
section { padding: 110px 0; }

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 38px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(184,147,90,0.3); }

.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 16px 38px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.btn-dark:hover { background: var(--brown); transform: translateY(-2px); }
.btn-dark.full-width { width: 100%; text-align: center; }

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 16px 38px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: white; }

.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--ink);
  color: var(--fg);
  padding: 16px 48px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--on-ink); }

/* ---- SECTION HEADER ---- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; font-size: 12px; letter-spacing: 3px; color: var(--gold); font-weight: 500; text-transform: uppercase; margin-bottom: 16px; }
.section-tag.light { color: rgba(255,255,255,0.7); }
.section-header h2, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--fg);
}
.section-header h2 em, h2 em { font-style: italic; color: var(--brown); }
.section-header p { max-width: 600px; margin: auto; color: var(--text); font-size: 16px; }

/* ---- AOS (Scroll Animation) ---- */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-active { opacity: 1; transform: translateY(0); }

/* ================================================
   PRELOADER
   ================================================ */
.preloader {
  position: fixed; inset: 0; background: var(--ink);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: white;
  letter-spacing: 4px;
  animation: pulse 1.5s ease infinite;
}
.preloader-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  animation: line-load 1.8s ease forwards;
}
@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:0.4 } }
@keyframes line-load { to { width: 100% } }

/* ================================================
   ANNOUNCEMENT BAR
   ================================================ */
.announcement-bar {
  background: var(--ink);
  padding: 10px 0;
  overflow: hidden;
}
.announcement-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announcement-track span {
  font-size: 11px;
  color: var(--gold-lt);
  letter-spacing: 3px;
  font-weight: 500;
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ================================================
   NAVBAR
   ================================================ */
/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--brown));
  z-index: 1001;
  transition: width 0.1s ease-out;
}

.navbar {
  position: sticky;
  top: 0; z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 8px 40px var(--shadow); }

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 5%;
  gap: 20px;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.logo a em { font-style: italic; color: var(--brown); }

.nav-center { display: flex; justify-content: center; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--brown); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px var(--shadow);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  min-width: 520px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.has-dropdown:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col h4 { font-size: 11px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
.mega-col a { display: block; font-size: 14px; color: var(--text); padding: 6px 0; transition: color 0.2s; }
.mega-col a:hover { color: var(--brown); }
.mega-featured { position: relative; overflow: hidden; border-radius: var(--radius); width: 140px; }
.mega-featured img { height: 180px; }
.mega-featured div { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 16px 12px; }
.mega-featured div p { font-size: 10px; color: var(--gold-lt); letter-spacing: 2px; }
.mega-featured div h4 { font-size: 13px; color: white; margin: 0; font-family: 'Cormorant Garamond', serif; }

.nav-left { display: none; align-items: center; gap: 8px; }
.nav-right { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.nav-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  position: relative;
  transition: var(--transition);
}
.nav-icon:hover { background: var(--soft); }
.badge-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--gold);
  color: white;
  font-size: 10px;
  font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.badge-count.hidden { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: var(--transition); }

/* ================================================
   SEARCH OVERLAY
   ================================================ */
.search-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(26,18,8,0.95);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-close {
  position: absolute; top: 36px; right: 48px;
  background: transparent; color: white; font-size: 28px;
  opacity: 0.7; transition: opacity 0.2s;
}
.search-close:hover { opacity: 1; }
.search-inner { text-align: center; width: 90%; max-width: 600px; }
.search-inner > p { font-size: 12px; letter-spacing: 4px; color: var(--gold-lt); margin-bottom: 24px; text-transform: uppercase; }
.search-inner input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-size: clamp(28px, 5vw, 48px);
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  padding: 16px 0;
  outline: none;
  caret-color: var(--gold);
}
.search-inner input::placeholder { color: rgba(255,255,255,0.3); }
.search-results { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.search-result-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 12px 16px;
  cursor: pointer; transition: background 0.2s;
  text-align: left;
}
.search-result-item:hover { background: rgba(255,255,255,0.12); }
.search-result-item img { width: 50px; height: 50px; border-radius: 8px; }
.search-result-item h4 { color: white; font-size: 15px; margin-bottom: 2px; }
.search-result-item p { color: var(--gold-lt); font-size: 13px; }

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-menu {
  position: fixed; top: 0; left: -100%; z-index: 1000;
  width: 320px; max-width: 100%; height: 100%;
  background: var(--ink);
  padding: 60px 40px 40px;
  transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { left: 0; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: transparent; color: white; font-size: 20px; opacity: 0.7;
}
.mobile-menu ul { list-style: none; margin-top: 20px; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-link { display: block; padding: 18px 0; color: white; font-size: 20px; font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: 0.3px; transition: color 0.2s; }
.mobile-link:hover { color: var(--gold-lt); }
.mobile-footer { margin-top: auto; color: rgba(255,255,255,0.4); font-size: 13px; }
.overlay-bg { position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transition: var(--transition); }
.overlay-bg.active { opacity: 1; visibility: visible; }

/* ================================================
   CART DRAWER
   ================================================ */
.cart-drawer {
  position: fixed; top: 0; right: -440px; z-index: 1000;
  width: 420px; max-width: 100%;
  height: 100%;
  background: var(--white);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }
.drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
}
.drawer-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.drawer-header button { background: transparent; font-size: 20px; color: var(--text); opacity: 0.6; }
.drawer-header button:hover { opacity: 1; }
.drawer-body { flex: 1; overflow-y: auto; padding: 24px 32px; }
.drawer-empty { text-align: center; padding: 60px 0; color: var(--text); }
.drawer-empty p { margin-bottom: 24px; font-size: 15px; }

.drawer-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.drawer-item img { width: 80px; height: 80px; border-radius: 12px; flex-shrink: 0; }
.drawer-item-info { flex: 1; }
.drawer-item-info h4 { font-size: 15px; margin-bottom: 4px; font-weight: 500; }
.drawer-item-info .item-price { color: var(--brown); font-weight: 600; font-size: 14px; }
.drawer-item-qty {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
}
.drawer-item-qty button {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--soft); font-size: 16px; line-height: 1;
  transition: background 0.2s;
}
.drawer-item-qty button:hover { background: var(--gold); color: white; }
.drawer-item-qty span { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }
.drawer-item-remove { background: transparent; color: var(--text); font-size: 18px; opacity: 0.4; transition: opacity 0.2s; flex-shrink: 0; }
.drawer-item-remove:hover { opacity: 1; color: #c0392b; }

.drawer-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--border);
  background: var(--warm);
}
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 20px; }
.drawer-total span { font-size: 16px; font-weight: 600; }
.drawer-total strong { font-size: 18px; color: var(--brown); }
.checkout-btn {
  width: 100%;
  background: var(--ink);
  color: white;
  padding: 18px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 12px;
}
.checkout-btn:hover { background: var(--brown); }
.continue-btn {
  width: 100%;
  background: transparent;
  color: var(--text);
  padding: 12px;
  font-size: 14px;
  text-align: center;
  border-radius: 99px;
  transition: color 0.2s;
}
.continue-btn:hover { color: var(--fg); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,18,8,0.85) 0%, rgba(26,18,8,0.4) 60%, transparent 100%); }

.hero-container {
  position: relative; z-index: 2;
  width: 92%; max-width: 1380px; margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-content { color: white; }
.hero-tag {
  display: inline-block;
  font-size: 13px; letter-spacing: 3px; color: var(--gold-lt);
  font-weight: 400; margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 28px;
  color: white;
}
.hero-content h1 em { font-style: italic; color: var(--gold-lt); }
.hero-content > p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 480px; margin-bottom: 40px; line-height: 1.85; }
.hero-actions { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }

.hero-stats { display: flex; align-items: center; gap: 28px; }
.stat { }
.stat strong { display: block; font-size: 24px; font-weight: 600; color: white; font-family: 'Cormorant Garamond', serif; }
.stat span { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 1px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

.hero-image-wrap { position: relative; }
.hero-img-frame {
  border-radius: 40px 40px 160px 40px;
  overflow: hidden;
  height: 640px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.hero-img-frame img { height: 100%; }

.hero-card-float {
  position: absolute;
  bottom: 48px; left: -40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  min-width: 200px;
}
.float-badge { font-size: 10px; letter-spacing: 3px; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.hero-card-float h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 4px; }
.hero-card-float p { color: var(--brown); font-weight: 600; margin-bottom: 8px; }
.float-stars { color: var(--gold); font-size: 13px; }

.hero-tag-float {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--gold);
  color: white;
  padding: 14px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(184,147,90,0.35);
}
.hero-tag-float span { display: block; font-size: 11px; letter-spacing: 1px; font-weight: 500; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 5%;
  display: flex; align-items: center; gap: 14px; z-index: 2;
}
.hero-scroll span { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.scroll-line {
  width: 60px; height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim { to { left: 100% } }

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar { background: var(--ink); padding: 56px 0; }
.trust-container {
  width: 92%; max-width: 1380px; margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}
.trust-item { display: flex; gap: 20px; align-items: flex-start; }
.trust-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.06); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.trust-item h4 { font-size: 15px; color: white; margin-bottom: 4px; font-weight: 500; }
.trust-item p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ================================================
   CATEGORY
   ================================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}
.category-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.category-card img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card.large { grid-column: span 3; grid-row: span 2; }
.category-card:not(.large) { grid-column: span 3; }
@media (min-width: 992px) {
  .category-card:nth-child(2) { grid-column: span 2; }
  .category-card:nth-child(3) { grid-column: span 1; }
  .category-card:nth-child(4) { grid-column: span 1; }
  .category-card:nth-child(5) { grid-column: span 2; }
}

.cat-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,18,8,0.75) 0%, transparent 55%); display: flex; align-items: flex-end; }
.cat-info { padding: 28px 28px 32px; color: white; }
.cat-info span { font-size: 11px; letter-spacing: 2px; color: var(--gold-lt); text-transform: uppercase; }
.cat-info h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3vw, 36px); margin: 4px 0 16px; }
.cat-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.cat-btn:hover { background: var(--gold); border-color: var(--gold); }

/* ================================================
   FILTER BAR
   ================================================ */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink);
  border-color: var(--fg);
  color: white;
}

.sort-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.sort-bar span { font-size: 14px; color: var(--text); }
.sort-bar select {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  color: var(--fg);
  cursor: pointer;
  outline: none;
}

/* ================================================
   PRODUCT GRID
   ================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,18,8,0.12); }

.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img { height: 380px; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 6px; }
.p-badge {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}
.p-badge.bestseller { background: var(--ink); color: var(--on-ink); }
.p-badge.new { background: var(--gold); color: white; }
.p-badge.limited { background: #c0392b; color: white; }
.p-badge.trending { background: #27ae60; color: white; }
.p-badge.sale { background: #e74c3c; color: white; }

.product-actions {
  position: absolute; top: 16px; right: 16px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.p-action-btn {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
  font-size: 16px;
}
.p-action-btn:hover { background: var(--gold); color: white; }
.p-action-btn.wishlisted { background: var(--gold); color: white; }

.product-info { padding: 24px; }
.p-cat { font-size: 10px; letter-spacing: 3px; color: var(--gold); font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.product-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 8px; line-height: 1.3; }
.p-desc { font-size: 13px; color: var(--text); margin-bottom: 12px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-colors { display: flex; gap: 6px; margin-bottom: 16px; }
.p-color { width: 16px; height: 16px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.p-color.active { border-color: var(--fg); }
.p-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.p-stars { color: var(--gold); font-size: 12px; }
.p-reviews { font-size: 12px; color: var(--text); }
.p-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.p-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--brown); }
.p-price-old { font-size: 13px; color: var(--text); text-decoration: line-through; }
.add-to-cart {
  background: var(--ink);
  color: white;
  padding: 11px 20px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.add-to-cart:hover { background: var(--brown); }

.load-more-wrap { text-align: center; margin-top: 60px; }

/* ================================================
   PRODUCT MODAL
   ================================================ */
.product-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.product-modal.active { opacity: 1; visibility: visible; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(6px); }
.modal-box {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 92%; max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.4s ease;
}
.product-modal.active .modal-box { transform: scale(1); }
.modal-close {
  position: sticky; top: 16px; float: right; margin: 16px 16px 0 0;
  background: var(--soft); width: 36px; height: 36px;
  border-radius: 50%; font-size: 14px; color: var(--fg);
  transition: background 0.2s;
  z-index: 2;
}
.modal-close:hover { background: var(--ink); color: var(--on-ink); }

.modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.modal-imgs { }
.modal-imgs .modal-main-img { height: 500px; }
.modal-imgs .modal-thumbs { display: flex; gap: 8px; padding: 12px; }
.modal-thumb { width: 72px; height: 72px; border-radius: 10px; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; flex-shrink: 0; }
.modal-thumb.active, .modal-thumb:hover { opacity: 1; }
.modal-detail { padding: 40px; }
.modal-detail .p-cat { font-size: 11px; letter-spacing: 3px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.modal-detail h2 { font-family: 'Cormorant Garamond', serif; font-size: 34px; margin-bottom: 8px; line-height: 1.2; }
.modal-rating { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }
.modal-rating .p-stars { font-size: 14px; color: var(--gold); }
.modal-rating span { font-size: 13px; color: var(--text); }
.modal-price { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700; color: var(--brown); margin-bottom: 24px; }
.modal-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.modal-detail p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.modal-features { margin-bottom: 24px; }
.modal-features li { font-size: 13px; color: var(--text); padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.modal-features li::before { content: '✦'; color: var(--gold); font-size: 10px; }
.modal-colors-label, .modal-qty-label { font-size: 12px; letter-spacing: 2px; color: var(--text); font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.modal-colors { display: flex; gap: 8px; margin-bottom: 24px; }
.modal-qty { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.modal-qty button { width: 36px; height: 36px; border-radius: 50%; background: var(--soft); font-size: 18px; transition: background 0.2s; }
.modal-qty button:hover { background: var(--ink); color: var(--on-ink); }
.modal-qty span { font-size: 18px; font-weight: 600; min-width: 30px; text-align: center; }
.modal-add-btn {
  width: 100%;
  background: var(--ink);
  color: white;
  padding: 18px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 12px;
}
.modal-add-btn:hover { background: var(--brown); }
.modal-wa-btn {
  width: 100%;
  background: #25d366;
  color: white;
  padding: 14px;
  border-radius: 99px;
  font-size: 14px;
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-wa-btn:hover { background: #1ebe5d; }

/* ================================================
   FEATURED BANNER
   ================================================ */
.featured-banner { background: var(--ink); padding: 0; }
.featured-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1380px; margin: auto; min-height: 680px;
}
.featured-text {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
  color: white;
}
.featured-text h2 { color: white; font-size: clamp(42px, 5vw, 64px); margin-bottom: 20px; }
.featured-text h2 em { color: var(--gold-lt); }
.featured-text > p { color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 28px; max-width: 440px; }
.featured-list { margin-bottom: 40px; display: flex; flex-direction: column; gap: 10px; }
.featured-list li { font-size: 14px; color: rgba(255,255,255,0.7); }

.featured-images { position: relative; overflow: hidden; }
.feat-img-main { width: 100%; height: 100%; }
.feat-img-sub {
  position: absolute;
  bottom: 40px; left: -30px;
  width: 160px; height: 200px;
  border-radius: var(--radius-lg);
  border: 4px solid white;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* ================================================
   STORY SECTION
   ================================================ */
.story-section { background: var(--warm); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.story-images { position: relative; }
.story-img-big { height: 680px; border-radius: var(--radius-lg) var(--radius-lg) 120px var(--radius-lg); }
.story-img-small {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 220px; height: 280px;
  border-radius: var(--radius-lg);
  border: 6px solid var(--warm);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.story-year {
  position: absolute;
  top: 40px; left: -20px;
  background: var(--gold);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(184,147,90,0.3);
}

.story-content h2 { font-size: clamp(38px, 4vw, 58px); margin-bottom: 24px; }
.story-content > p { color: var(--text); line-height: 1.9; margin-bottom: 16px; font-size: 15px; }
.story-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
.story-val { border-left: 3px solid var(--gold); padding-left: 16px; }
.story-val h4 { font-size: 15px; margin-bottom: 6px; }
.story-val p { font-size: 13px; color: var(--text); line-height: 1.6; }

/* ================================================
   PROCESS SECTION
   ================================================ */
.process-section { background: var(--soft); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: process; }
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.process-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px var(--shadow); }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--soft);
  line-height: 1;
  position: absolute;
  top: 10px; right: 20px;
}
.process-card h4 { font-size: 18px; margin-bottom: 14px; position: relative; z-index: 1; }
.process-card p { font-size: 14px; color: var(--text); line-height: 1.8; position: relative; z-index: 1; }

/* ================================================
   TESTIMONIAL
   ================================================ */
.testimonial-section { background: var(--cream); }
.rating-summary {
  display: flex; gap: 60px; align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px var(--shadow);
}
.rating-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.rating-info { flex: 1; }
.stars-big { font-size: 24px; color: var(--gold); margin-bottom: 4px; }
.rating-info > p { font-size: 13px; color: var(--text); margin-bottom: 20px; }
.bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.bar-row > span { font-size: 12px; color: var(--text); width: 24px; flex-shrink: 0; }
.bar-row > span:last-child { color: var(--text); }
.bar { flex: 1; height: 6px; background: var(--soft); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 99px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,18,8,0.1); }
.testi-stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.testi-card > p { font-size: 14px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-user { display: flex; align-items: center; gap: 14px; }
.testi-user img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-user h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.testi-user span { font-size: 12px; color: var(--text); }
.testi-verified { margin-left: auto; font-size: 11px; color: #27ae60; font-weight: 600; }

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery-section { background: var(--soft); padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 60px;
}
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(26,18,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s;
}
.gallery-hover span { color: white; font-size: 13px; letter-spacing: 2px; }
.gallery-item:hover .gallery-hover { opacity: 1; }

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter-section { background: var(--ink); padding: 100px 0; }
.newsletter-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.newsletter-text h2 { color: white; font-size: clamp(36px, 4vw, 56px); margin-bottom: 16px; }
.newsletter-text h2 em { color: var(--gold-lt); }
.newsletter-text p { color: rgba(255,255,255,0.55); line-height: 1.8; }
.newsletter-form { }
.newsletter-input-wrap {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 14px;
}
.newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 20px 28px;
  color: white;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  outline: none;
}
.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-wrap button {
  background: var(--gold);
  color: white;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s;
}
.newsletter-input-wrap button:hover { background: var(--gold-lt); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section { background: var(--warm); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(38px, 4vw, 54px); margin-bottom: 16px; }
.contact-info > p { color: var(--text); line-height: 1.8; margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--text); }
.social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.social-link {
  border: 1.5px solid var(--border);
  color: var(--fg);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}
.social-link:hover { background: var(--ink); color: var(--on-ink); border-color: var(--fg); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 8px 40px var(--shadow); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; letter-spacing: 1.5px; font-weight: 600; color: var(--text); text-transform: uppercase; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--warm);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; }
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #c0392b; background: #fdf2f1; }
.field-error {
  display: none;
  color: #c0392b;
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.2px;
}
.field-error.show { display: block; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: #12100a; }
.footer-top { padding: 100px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand { }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-logo em { font-style: italic; color: var(--gold-lt); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: white; border-color: var(--gold); }

.footer-col h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 24px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }

.payment-methods { margin-top: 32px; }
.payment-methods p { font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 12px; }
.payment-icons { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-icons span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-lt); }

/* ================================================
   BACK TO TOP + WA FLOAT
   ================================================ */
.back-top {
  position: fixed; bottom: 100px; right: 24px;
  width: 46px; height: 46px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: var(--transition);
  z-index: 800;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--brown); }

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 20px 6%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 13px; line-height: 1.7; max-width: 720px; margin: 0; }
.cookie-actions { flex-shrink: 0; }
.btn-gold-sm {
  background: var(--gold);
  color: white;
  border: none;
  padding: 11px 28px;
  border-radius: 99px;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.btn-gold-sm:hover { background: var(--brown); }
@media (max-width: 600px) {
  .cookie-banner { padding: 18px 5%; flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { width: 100%; }
  .btn-gold-sm { width: 100%; padding: 13px; }
}

@media (max-width: 380px) {
  .logo a { font-size: 19px; }
  .nav-icon { width: 30px; height: 30px; }
  .nav-icon svg { width: 17px; height: 17px; }
  .nav-right { gap: 2px; }
  .badge-count { width: 15px; height: 15px; font-size: 9px; }
}

.wa-float {
  position: fixed; bottom: 32px; right: 24px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  z-index: 800;
  transition: transform 0.3s;
}
.wa-float:hover { transform: scale(1.1); }

/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: white;
  padding: 14px 28px;
  border-radius: 99px;
  font-size: 14px;
  z-index: 3000;
  opacity: 0; transition: all 0.4s;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-container { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .category-card.large { grid-column: span 2; grid-row: span 1; }
  .category-card:nth-child(n) { grid-column: span 1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 992px) {
  .nav-center { display: none; }
  .nav-left { display: flex; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-image-wrap { display: none; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .featured-inner { grid-template-columns: 1fr; }
  .featured-images { display: none; }
  .featured-text { padding: 80px 40px; }

  .story-grid { grid-template-columns: 1fr; }
  .story-img-small { display: none; }
  .story-img-big { height: 440px; }

  .newsletter-box { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 24px; }
  .story-values { grid-template-columns: 1fr; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-imgs .modal-main-img { height: 320px; }
}

@media (max-width: 600px) {
  .nav-container { padding: 14px 4%; gap: 6px; }
  .logo a { font-size: 22px; }
  .nav-right { gap: 4px; }
  .nav-icon { width: 34px; height: 34px; }
  section { padding: 72px 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-img-wrap img { height: 240px; }
  .product-info { padding: 14px; }
  .product-info h3 { font-size: 16px; }
  .p-price { font-size: 16px; }
  .add-to-cart { padding: 9px 14px; font-size: 11px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .trust-container { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .cart-drawer { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}
