/* =========================================================
   Kalashree — Raksha Bandhan E-commerce Landing Page
   Bright festive theme: saffron, maroon, gold, rani pink
   ========================================================= */

:root {
  --color-primary: #E8590C;
  --color-primary-dark: #C4460A;
  --color-secondary: #B8253B;
  --color-accent: #D4A017;
  --color-accent-2: #D6336C;
  --color-bg: #FFF8ED;
  --color-bg-alt: #FFF1DC;
  --color-card: #FFFFFF;
  --color-dark: #3A1806;
  --color-text: #5B3A22;
  --color-text-light: #7A5B41;
  --color-border: #F0DFC4;

  --shadow-sm: 0 2px 8px rgba(184, 37, 59, 0.08);
  --shadow-md: 0 8px 24px rgba(184, 37, 59, 0.12);
  --shadow-lg: 0 16px 40px rgba(184, 37, 59, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); line-height: 1.2; }

html { scroll-padding-top: 108px; }

/* H7: designed focus ring */
:where(a, button, .filter-tab, .insta-item, .category-card, .product-card):focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============== Buttons =============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* =============== Header =============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFF8ED;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-img { height: 52px; width: auto; display: block; }

/* ---- Desktop nav: right aligned, inline with logo ---- */
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.main-nav a {
  display: block;
  padding: 10px 14px;
  color: var(--color-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 50px;
  transition: background 0.2s ease, color 0.2s ease;
}
.main-nav a:hover { background: #F2DBB6; color: var(--color-primary-dark); }
.main-nav a.active { background: var(--color-secondary); color: #FFEFD9; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1002;
}
.hamburger span { width: 22px; height: 2px; background: var(--color-dark); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* =============== Hero =============== */
.hero {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
  padding: 60px 0 40px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  z-index: 1;
}
.hero-decor {
  position: absolute;
  font-size: 4rem;
  opacity: 0.18;
  animation: float 6s ease-in-out infinite;
}
.hero-decor-1 { top: 8%; left: 4%; font-size: 3rem; animation-delay: 0s; }
.hero-decor-2 { bottom: 10%; left: 10%; font-size: 2.6rem; animation-delay: 1.5s; }
.hero-decor-3 { top: 15%; right: 6%; font-size: 3.4rem; animation-delay: 0.8s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.hero-copy h1 span { color: #FFE066; }

.hero-copy p {
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }

.hero-media { position: relative; display: flex; justify-content: center; }
.hero-img-main {
  width: 100%;
  max-width: 744px;
  aspect-ratio: 1000/636;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.5);
}

/* =============== Trust Strip =============== */
.trust-strip { background: #fff; border-bottom: 1px solid var(--color-border); padding: 26px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item span { font-size: 1.7rem; flex-shrink: 0; }
.trust-item p { font-size: 0.82rem; font-weight: 600; color: var(--color-dark); line-height: 1.4; }
.trust-item small { font-weight: 400; color: var(--color-text-light); }

/* =============== Sections =============== */
.section { padding: 80px 0; }
.section-alt { background: var(--color-bg-alt); }

.section-head { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.section-eyebrow {
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--color-text-light); font-size: 0.98rem; }

/* =============== Category Grid =============== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
}
.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.category-card-feature {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.category-card:hover { transform: translateY(-6px); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 32%, rgba(30,12,3,0.94) 100%);
}
.category-card span {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.35;
  z-index: 2;
}
.category-card-feature span {
  bottom: 26px; left: 26px; right: 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
}

/* =============== Filter Tabs =============== */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
@media (max-width: 720px) {
  .filter-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -20px;
    padding: 4px 20px 10px;
  }
  .filter-tabs::-webkit-scrollbar { display: none; }
  .filter-tab { flex: 0 0 auto; scroll-snap-align: start; }
}
.filter-tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-text);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.filter-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-tab.active { background: var(--color-primary-dark); color: #fff; border-color: transparent; }

/* =============== Product Grid =============== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  content-visibility: auto;
  contain-intrinsic-size: 320px;
  background: var(--color-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); }

.product-media { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.product-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-media > img { transform: scale(1.1); }

/* ---- image slider (multi-photo products) ---- */
.slider-track { display: flex; width: 100%; height: 100%; transition: transform 0.35s ease; }
.slider-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--color-dark);
  display: grid; place-items: center;
  font-size: 1.1rem; line-height: 1;
  z-index: 3;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease;
}
.slider-arrow:hover { background: #fff; }
.slider-arrow.prev { left: 8px; }
.slider-arrow.next { right: 8px; }
.slider-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  z-index: 3;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  transition: background-color 0.2s ease, width 0.2s ease;
}
.slider-dot.active { background: #fff; width: 16px; border-radius: 3px; }


.product-info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-info h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--color-dark); margin-top: 2px; }

/* =============== About / Why Choose =============== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-copy h2 { margin-bottom: 16px; }
.about-copy > p { color: var(--color-text-light); margin-bottom: 30px; line-height: 1.8; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-item span { font-size: 1.5rem; flex-shrink: 0; }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 3px; }
.feature-item p { font-size: 0.8rem; color: var(--color-text-light); }

/* =============== Instagram Grid =============== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.insta-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 12px; position: relative; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-item:hover img { transform: scale(1.12); }

.insta-embeds {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}
.insta-embed { position: relative; width: 100%; max-width: 400px; min-height: 480px; }
.insta-embeds .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}
/* Whole card is one link straight to Instagram */
.insta-embed-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 10px;
}
.insta-embed-hit:hover { background: rgba(232,89,12,0.08); }

@media (max-width: 720px) {
  .insta-embeds {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -20px;
    padding: 0 20px 12px;
  }
  .insta-embeds::-webkit-scrollbar { display: none; }
  .insta-embed {
    flex: 0 0 84%;
    max-width: 84%;
    scroll-snap-align: center;
  }
}

.insta-item { position: relative; display: block; }
.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.insta-item:hover .insta-overlay,
.insta-item:focus-visible .insta-overlay { opacity: 1; }
.insta-stat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.insta-stat svg { width: 19px; height: 19px; }
.insta-cta { text-align: center; margin-top: 32px; }

/* =============== How to Order =============== */
.order-band { background: #8C1A2C; padding: 64px 0; }
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.order-copy .section-eyebrow { color: #FFE8C2; }
.order-copy h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 10px 0 14px; }
.order-copy p { color: #FFEFD9; font-size: 0.92rem; line-height: 1.75; max-width: 44ch; }

.order-actions { display: flex; flex-direction: column; gap: 12px; }
.order-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.order-btn:hover { background: rgba(255,255,255,0.24); transform: translateX(4px); }
.order-btn svg { width: 26px; height: 26px; flex: 0 0 26px; }
.order-btn span { display: flex; flex-direction: column; line-height: 1.35; }
.order-btn small {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFE8C2;
}
.order-btn-wa svg { color: #25D366; }
.order-btn-ig svg { color: #E4405F; }

/* =============== Footer =============== */
.site-footer { background: var(--color-dark); color: #E8CBAA; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.35fr;
  gap: 0 72px;
  padding: 72px 24px 0;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: 0.4px;
  line-height: 1;
  color: #FFE8C2;
}
.footer-tagline { font-size: 0.86rem; line-height: 1.7; color: #C9A87F; margin-top: 10px; max-width: 30ch; }
.footer-blurb   { font-size: 0.82rem; line-height: 1.8; color: #B08D63; margin-top: 14px; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A017;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 9px 0;
  font-size: 0.88rem;
  color: #C9A87F;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover { color: #FFE8C2; transform: translateX(3px); }

.footer-contact li { margin-bottom: 10px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: #E8CBAA;
  transition: color 0.2s ease;
}
.footer-contact a:hover { color: #FFE8C2; }
.footer-contact svg { width: 18px; height: 18px; flex: 0 0 18px; opacity: 0.85; }

.footer-qr-link { display: inline-block; margin-top: 14px; }
.footer-qr {
  display: block;
  width: 104px; height: 104px;
  object-fit: contain;
  border-radius: 10px;
  padding: 6px;
  background: #FFF8ED;
}
.footer-qr-cap { display: block; font-size: 0.72rem; color: #B08D63; margin-top: 8px; letter-spacing: 0.02em; }

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 56px;
  border-top: 1px solid rgba(232,203,170,0.14);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: #B08D63;
}

/* =============== Floating Order button =============== */
.order-fab {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 50px;
  background: #25D366;
  color: #06331A;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  transition: transform 0.22s ease;
}
.order-fab:hover { transform: translateX(-50%) translateY(-3px); }
.order-fab svg { width: 20px; height: 20px; flex: 0 0 20px; }
@media (max-width: 620px) {
  .order-fab { bottom: 16px; padding: 13px 22px; font-size: 0.9rem; }
}

/* =============== Back to top & Toast =============== */
.back-to-top {
  bottom: 88px;
  background: var(--color-primary-dark);
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  display: none;
  place-items: center;
  z-index: 200;
  transition: transform 0.2s ease;
}
.back-to-top.show { display: grid; }
.back-to-top:hover { transform: translateY(-4px); }

.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-dark);
  color: #FFE8C2;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 300;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =============== Lightbox =============== */
.lb-order {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 50px;
  background: #25D366;
  color: #06331A;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s ease;
}
.lb-order:hover { transform: translateX(-50%) translateY(-2px); }
.lb-order svg { width: 19px; height: 19px; flex: 0 0 19px; }
@media (max-width: 620px) {
  .lb-order { bottom: 12px; padding: 12px 18px; font-size: 0.86rem; }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: rgba(24, 9, 2, 0.93);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lb-panel {
  position: relative;
  width: min(92vw, 760px);
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition: transform 0.34s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}
.lightbox.open .lb-panel { transform: scale(1) translateY(0); opacity: 1; }

.lb-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #1c0b02;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.lb-track {
  display: flex;
  touch-action: pan-y;
  will-change: transform;
  cursor: grab;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lb-track.dragging { transition: none; cursor: grabbing; }
.lb-track img { pointer-events: none; -webkit-user-drag: none; }
.lb-track img {
  flex: 0 0 100%;
  width: 100%;
  height: min(66vh, 560px);
  object-fit: contain;
  background: #1c0b02;
  user-select: none;
}

.lb-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px 0;
}
.lb-caption h3 {
  color: #FFEFD9;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
}
.lb-caption span { color: #C9A87F; font-size: 0.8rem; flex-shrink: 0; }

.lb-dots { display: flex; justify-content: center; gap: 7px; padding-top: 14px; flex-wrap: wrap; }
.lb-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-dots i.active { background: var(--color-accent); transform: scale(1.3); }

.lb-close, .lb-arrow {
  position: fixed;
  z-index: 2001;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb-close:hover, .lb-arrow:hover { background: var(--color-primary); }
.lb-close {
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  font-size: 1.9rem;
  line-height: 1;
}
.lb-arrow {
  top: 50%;
  margin-top: -26px;
  width: 52px; height: 52px;
  font-size: 2rem;
  line-height: 1;
  padding-bottom: 5px;
}
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-arrow[hidden], .lb-dots[hidden] { display: none; }

body.lb-open { overflow: hidden; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media img { max-width: 400px; margin: 0 auto; }
  .header-top { gap: 16px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .category-card-feature { grid-column: span 3; grid-row: span 1; aspect-ratio: 16/7; }
  .main-nav a { padding: 10px 11px; font-size: 0.86rem; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .header-top { padding: 12px 16px; }
  html { scroll-padding-top: 88px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 44px 32px; padding: 56px 20px 0; }
  .order-inner { grid-template-columns: 1fr; gap: 32px; }
  .logo-img { height: 48px; }

  /* Slide-in mobile drawer */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 300px);
    height: 100vh;
    height: 100dvh;
    background: var(--color-secondary);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.32s;
    display: flex;
    flex-direction: column;
    z-index: 1001;
    padding: 88px 0 24px;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  }
  .main-nav.open { transform: translateX(0); visibility: visible; transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 0 16px;
  }
  .main-nav a {
    color: #FFEFD9;
    padding: 15px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .main-nav a:hover { background: rgba(255,255,255,0.08); }
  .main-nav a.active { background: rgba(255,255,255,0.14); color: #fff; }

  body.nav-open { overflow: hidden; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { margin-top: 40px; }
  .hero-img-main { max-width: 456px; }

  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-img { height: 42px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-card-feature { grid-column: span 2; aspect-ratio: 16/9; }
  .category-card-feature span { font-size: 1.25rem; bottom: 18px; left: 18px; right: 18px; }
  .lb-close { top: 14px; right: 14px; width: 40px; height: 40px; font-size: 1.6rem; }
  .lb-arrow { width: 42px; height: 42px; font-size: 1.6rem; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-panel { width: 94vw; }
  .lb-track img { height: 58vh; }
}
