/* =============================================
   KIRIXO - Frontend CSS
   ============================================= */
:root {
  --rose: #B76E79;
  --rose-dark: #9B5561;
  --rose-light: #D4949D;
  --charcoal: #1A1A1A;
  --text: #333333;
  --border: #E8CFCF;
  --bg: #FDF6F6;
  --white: #FFFFFF;
  --green: #27ae60;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--charcoal); }
a { color: inherit; text-decoration: none; transition: color 0.2s; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 72px 0; }
.bg-soft { background: #FFF9F9; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rose); color: #fff; border: none;
  border-radius: 9px; padding: 11px 28px; font-size: 14px;
  font-weight: 600; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-primary.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-primary.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-primary.btn-block { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--charcoal);
  border: 1.5px solid var(--border); border-radius: 9px;
  padding: 11px 28px; font-size: 14px; font-weight: 500;
  cursor: pointer; font-family: 'Poppins', sans-serif; text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }
.btn-outline.btn-lg { padding: 14px 32px; font-size: 15px; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline.btn-lg:hover { border-color: #fff; }
.btn-outline.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-outline.btn-block { width: 100%; justify-content: center; }

.btn-white { display: inline-block; background: #fff; border-radius: 8px; padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; }
.mt-2 { margin-top: 10px; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: linear-gradient(90deg, var(--rose-dark) 0%, var(--rose) 50%, var(--rose-dark) 100%);
  color: #fff; text-align: center; font-size: 12px;
  font-weight: 500; letter-spacing: 0.5px; overflow: hidden;
}

/* Desktop: static row */
.ann-desktop {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: nowrap; gap: 0; padding: 9px 20px; white-space: nowrap;
}
.ann-desktop .sep { margin: 0 12px; opacity: 0.4; }

/* Mobile ticker: hidden on desktop */
.ann-mobile { display: none; }

/* Ticker animation */
@keyframes ann-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ann-track {
  display: flex; align-items: center; flex-wrap: nowrap;
  width: max-content; white-space: nowrap;
  animation: ann-scroll 24s linear infinite;
}
.ann-track > * { flex-shrink: 0; }
.ann-dot { margin: 0 10px; opacity: 0.5; }

/* ============================================================
   HEADER — Flipkart-style two-row layout
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 510;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(183,110,121,0.10);
}

/* Row 1: Logo + Search + Actions */
.hdr-main { background: var(--white); border-bottom: 1px solid var(--border); }
.hdr-main-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 68px; gap: 20px;
}

/* Logo */
.logo { flex-shrink: 0; line-height: 0; }
.logo img { display: block; height: 42px; width: auto; }

/* Search bar */
.hdr-search {
  flex: 1; display: flex; align-items: center;
  background: #F8F0F0; border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 680px;
}
.hdr-search:focus-within {
  border-color: var(--rose); box-shadow: 0 0 0 3px rgba(183,110,121,0.12);
}
.hdr-search-icon { color: #bbb; font-size: 15px; padding: 0 12px; flex-shrink: 0; }
.hdr-search input {
  flex: 1; border: none; outline: none; font-size: 14px;
  background: transparent; font-family: 'Poppins', sans-serif;
  color: var(--charcoal); padding: 12px 0;
}
.hdr-search-btn {
  background: var(--rose); color: #fff; border: none;
  padding: 0 20px; height: 100%; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: 'Poppins', sans-serif; white-space: nowrap;
  transition: background 0.2s;
}
.hdr-search-btn:hover { background: var(--rose-dark); }

/* Desktop action buttons */
.hdr-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hdr-action-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 14px; border-radius: 10px; text-decoration: none;
  color: var(--charcoal); transition: background 0.2s, color 0.2s;
  font-size: 12px; font-weight: 500; white-space: nowrap;
}
.hdr-action-btn i { font-size: 18px; }
.hdr-action-btn:hover { background: #fdf0f0; color: var(--rose); }
.hdr-cart-btn { background: var(--rose); color: #fff; }
.hdr-cart-btn:hover { background: var(--rose-dark); color: #fff; }
.hdr-cart-icon-wrap { position: relative; display: inline-flex; }
.cart-count {
  position: absolute; top: -6px; right: -7px; background: #fff; color: var(--rose);
  border-radius: 50%; width: 17px; height: 17px; font-size: 9px;
  display: flex; align-items: center; justify-content: center; font-weight: 800;
  border: 1.5px solid var(--rose);
}
.hdr-cart-btn .cart-count { border-color: var(--rose-dark); color: var(--rose-dark); }

/* Mobile hamburger + mobile-only icons */
.mobile-menu-btn {
  display: none; background: none; border: none;
  font-size: 20px; color: var(--charcoal); cursor: pointer;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  border-radius: 8px; flex-shrink: 0;
}
.mobile-menu-btn:hover { background: #fdf0f0; color: var(--rose); }
.hdr-mobile-right { display: none; align-items: center; gap: 4px; margin-left: auto; }
.mob-icon-btn {
  background: none; border: none; font-size: 18px; color: var(--charcoal);
  cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; position: relative; text-decoration: none;
}
.mob-icon-btn:hover { background: #fdf0f0; color: var(--rose); }

/* Row 2: Category Nav Strip */
.hdr-nav-strip {
  background: #fff8f8; border-top: 1px solid var(--border);
}
.hdr-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.main-nav ul { display: flex; list-style: none; gap: 0; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 16px; font-size: 13px; font-weight: 500; color: var(--text);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li.active > a { color: var(--rose); background: rgba(183,110,121,0.07); }
.main-nav ul li a i { font-size: 12px; }
.nav-hot {
  font-size: 9px; font-weight: 800; background: #e91e63; color: #fff;
  border-radius: 4px; padding: 1px 4px; letter-spacing: 0.3px;
}

/* Desktop dropdown */
.has-dropdown .dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 12px 32px rgba(183,110,121,0.18);
  padding: 8px 0; min-width: 200px; z-index: 300;
}
.has-dropdown:hover .dropdown { display: block; }
.has-dropdown .dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 13px; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.has-dropdown .dropdown a:hover { background: #FDF6F6; color: var(--rose); }
.has-dropdown .dropdown a i { color: var(--rose-light); font-size: 12px; width: 14px; }

/* Legacy compat */
.icon-btn { background: none; border: none; font-size: 19px; color: var(--charcoal); cursor: pointer; position: relative; padding: 3px; }
.icon-btn:hover { color: var(--rose); }

/* Mobile search drop-bar */
.mob-search-bar {
  background: #fff; border-top: 1px solid var(--border); padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mob-search-bar form {
  display: flex; align-items: center; gap: 10px;
  background: #f8f0f0; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 14px;
}
.mob-search-bar form:focus-within { border-color: var(--rose); }
.mob-search-bar i { color: #bbb; font-size: 15px; flex-shrink: 0; }
.mob-search-bar input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 14px; font-family: 'Poppins', sans-serif; color: var(--charcoal);
}
.mob-search-bar button {
  background: none; border: none; color: var(--rose); font-size: 14px;
  font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif;
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mob-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(183,110,121,0.12);
  height: 58px;
}
.mob-bottom-nav { display: none; }
.mob-bottom-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; color: #999; text-decoration: none;
  font-size: 10px; font-weight: 500; padding: 6px 0;
  transition: color 0.2s;
}
.mob-bottom-item i { font-size: 18px; }
.mob-bottom-item.active,
.mob-bottom-item:hover { color: var(--rose); }

/* ---- Hero ---- */
.hero {
  min-height: 600px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fdf0f2 0%, #fff9f9 50%, #fdf6f6 100%);
}
.hero-deco {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-deco::before {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(183,110,121,0.12) 0%, transparent 70%);
}
.hero-deco::after {
  content: '';
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(183,110,121,0.08) 0%, transparent 70%);
  border: 1.5px solid rgba(183,110,121,0.14);
}
.hero-overlay {
  position: relative; z-index: 1;
  display: flex; align-items: center; min-height: 600px;
}
.hero-content { padding: 60px 80px; max-width: 640px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--rose); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
  background: rgba(183,110,121,0.08); padding: 7px 16px;
  border-radius: 20px; border: 1px solid rgba(183,110,121,0.2);
}
.hero-title {
  font-family: 'Playfair Display', serif; font-size: 56px;
  font-weight: 700; color: var(--charcoal); line-height: 1.1; margin-bottom: 20px;
}
.hero-title .text-rose { color: var(--rose); }
.text-rose { color: var(--rose); }
.hero-sub { color: #666; font-size: 16px; line-height: 1.75; margin-bottom: 36px; max-width: 440px; }
.hero-btns { display: flex; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: 'Playfair Display', serif; color: var(--charcoal); font-size: 24px; font-weight: 700; }
.hero-stats span { color: #aaa; font-size: 11px; margin-top: 2px; }

/* Hero right decorative gems */
.hero-gems {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 1;
}
.hero-gem-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 20px; min-width: 200px;
  box-shadow: 0 8px 24px rgba(183,110,121,0.1);
  display: flex; align-items: center; gap: 12px;
}
.hero-gem-card .gem-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hero-gem-card p { font-size: 11px; color: #aaa; margin: 0; }
.hero-gem-card strong { font-size: 13px; font-weight: 700; color: var(--charcoal); display: block; }

/* ---- Trust Bar ---- */
@keyframes trust-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-bar {
  background: #fff; padding: 13px 0;
  border-bottom: 1px solid var(--border); border-top: 1px solid var(--border);
  overflow: hidden;
}
/* Desktop — static row, 5 items spread evenly */
.trust-track {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  animation: none;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--charcoal); white-space: nowrap; flex-shrink: 0; }
.trust-item.trust-clone { display: none; } /* hidden on desktop, shown only in mobile marquee */
.trust-item i {
  width: 34px; height: 34px; background: rgba(183,110,121,0.10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--rose); flex-shrink: 0;
}
.trust-item span { font-size: 12px; font-weight: 500; }
.trust-sep { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }

/* ---- Section Headers ---- */
.section-head { text-align: center; margin-bottom: 32px; }
.section-head-flex { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.section-tag { color: var(--rose); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2, .section-head-flex h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
.view-all-link { color: var(--rose); font-size: 14px; font-weight: 600; border-bottom: 1.5px solid var(--rose); padding-bottom: 2px; }

/* ---- Categories ---- */
.category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.category-card { border-radius: 12px; overflow: hidden; position: relative; display: block; box-shadow: 0 4px 14px rgba(183,110,121,0.10); transition: transform 0.3s, box-shadow 0.3s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(183,110,121,0.20); }
.category-card img { width: 100%; height: 180px; object-fit: cover; object-position: center; display: block; transition: transform 0.4s; }
.category-card:hover img { transform: scale(1.06); }
.cat-placeholder { height: 180px; background: #f8f0f0; display: flex; align-items: center; justify-content: center; font-size: 44px; color: #ddd; }
.cat-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(16,8,8,0.85) 0%, transparent 100%); padding: 20px 12px 10px; }
.cat-overlay h3 { font-family: 'Poppins', sans-serif; color: #fff; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: 0.2px; margin: 0; }

/* ---- Offer Banner ---- */
.offer-banner {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 60%, #C8808B 100%);
  padding: 0; position: relative; overflow: hidden;
}
.offer-banner::before {
  content: ''; position: absolute; right: -40px; top: -40px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,0.06); pointer-events: none;
}
.offer-banner::after {
  content: ''; position: absolute; left: -20px; bottom: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.offer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 52px 64px; position: relative; z-index: 1;
}
.offer-inner .section-tag { color: rgba(255,255,255,0.75); }
.offer-inner h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: 42px; font-weight: 700; margin-bottom: 16px; }
.offer-inner h2 .text-rose { color: #FFE0E4; }
.offer-inner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; font-size: 15px; }
.offer-inner p strong { color: #fff; background: rgba(255,255,255,0.18); padding: 2px 10px; border-radius: 6px; font-size: 13px; letter-spacing: 1px; }
.offer-inner .btn-primary { background: #fff; color: var(--rose-dark); }
.offer-inner .btn-primary:hover { background: #FFE0E4; }
.offer-circle {
  width: 210px; height: 210px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 0 16px rgba(255,255,255,0.06);
}
.offer-circle > i { color: rgba(255,255,255,0.6); font-size: 22px; margin-bottom: 6px; }
.offer-pct { font-family: 'Playfair Display', serif; color: #fff; font-size: 54px; font-weight: 900; line-height: 1; }
.offer-off { color: rgba(255,255,255,0.85); font-size: 18px; font-weight: 700; }
.offer-label { color: rgba(255,255,255,0.55); font-size: 11px; margin-top: 4px; letter-spacing: 1px; }

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.products-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ============================================================
   PRODUCT CARD — Flipkart-inspired layout
   ============================================================ */
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; position: relative; transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(183,110,121,0.17); }

/* Badge (top-left corner of image) */
.badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-new        { background: #27ae60; color: #fff; }
.badge-bestseller { background: #f57c00; color: #fff; }
.badge-trending   { background: #7C6BE8; color: #fff; }
.badge-sale       { background: #e91e63; color: #fff; }

/* Discount % badge on image (top-right) */
.disc-badge {
  position: absolute; top: 10px; right: 44px; z-index: 2;
  background: #e91e63; color: #fff; font-size: 10px; font-weight: 800;
  padding: 3px 7px; border-radius: 4px;
}

/* Wishlist button */
.wishlist-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: #fff; border: 1px solid var(--border); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 13px; color: #bbb; transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.wishlist-btn:hover, .wishlist-btn.active { background: var(--rose); color: #fff; border-color: var(--rose); }

/* Product image — perfect square */
.product-img-wrap {
  display: block; width: 100%; padding-bottom: 100%;
  position: relative; overflow: hidden; background: #f9f0f0;
}
.product-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform 0.4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: #ddd;
}

/* Product info block */
.product-info { padding: 12px 14px 14px; }
.product-cat {
  font-size: 10px; color: var(--rose); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 3px;
}
.product-info h3 {
  font-family: 'Poppins', sans-serif; font-size: 13px; color: var(--charcoal);
  font-weight: 600; margin-bottom: 5px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-info h3 a:hover { color: var(--rose); }

/* Rating stars */
.stars { display: flex; align-items: center; gap: 2px; margin-bottom: 7px; }
.stars i { font-size: 11px; color: #F5A623; }
.stars span { font-size: 11px; color: #777; margin-left: 3px; }

.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.product-price .price,
.price { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: var(--charcoal); }
.product-price .orig,
.orig { font-size: 12px; color: #bbb; text-decoration: line-through; }
.product-price .discount,
.discount { font-size: 11px; color: var(--green); font-weight: 700; }

.product-btns { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---- CTAs ---- */
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-card { border-radius: 14px; padding: 36px 44px; display: flex; align-items: center; gap: 24px; }
.cta-whatsapp { background: linear-gradient(135deg, #075E54, #128C7E); }
.cta-custom { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.cta-icon { font-size: 52px; color: rgba(255,255,255,0.9); flex-shrink: 0; }
.cta-card h3 { font-family: 'Playfair Display', serif; color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 14px; margin-bottom: 18px; }
.btn-white { background: #fff; border-radius: 8px; padding: 10px 22px; font-size: 13px; font-weight: 700; display: inline-block; }
.cta-whatsapp .btn-white { color: #128C7E; }
.cta-custom .btn-white { color: var(--rose); }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px; box-shadow: 0 4px 16px rgba(183,110,121,0.07); }
.testimonial-card p { font-size: 14px; line-height: 1.75; color: var(--text); margin: 16px 0 24px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; font-family: 'Playfair Display', serif; }
.reviewer div strong { display: block; font-size: 14px; color: var(--charcoal); }
.reviewer div span { font-size: 12px; color: #bbb; }

/* ---- Newsletter ---- */
.newsletter-box { background: #FFF9F9; border: 1px solid var(--border); border-radius: 18px; padding: 60px 72px; text-align: center; }
.newsletter-box h2 { font-size: 36px; margin-bottom: 12px; }
.newsletter-box p { color: #999; font-size: 15px; margin-bottom: 28px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; border: 1.5px solid var(--border); border-right: none; border-radius: 10px 0 0 10px; padding: 14px 20px; font-size: 14px; outline: none; font-family: 'Poppins', sans-serif; background: var(--white); }
.newsletter-form .btn-primary { border-radius: 0 10px 10px 0; }


/* ---- Cart ---- */
.page-title { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 32px; }
.page-title span { font-size: 18px; font-weight: 400; color: #aaa; }
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 18px; }
.cart-item img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-family: 'Playfair Display', serif; font-size: 16px; }
.variation { color: var(--rose); font-size: 12px; margin: 4px 0; }
.item-sku { color: #aaa; font-size: 11px; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 30px; height: 30px; border: 1px solid var(--border); background: var(--white); border-radius: 6px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--rose); color: var(--rose); }
.qty-val { font-weight: 600; min-width: 24px; text-align: center; }
.item-price { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--rose); min-width: 80px; text-align: right; }
.remove-btn { background: none; border: none; color: #bbb; cursor: pointer; font-size: 16px; }
.remove-btn:hover { color: #e74c3c; }

.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; height: fit-content; position: sticky; top: 90px; }
.cart-summary h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 20px; }
.coupon-form { display: flex; gap: 8px; margin-bottom: 8px; }
.coupon-form input { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; font-size: 13px; outline: none; font-family: 'Poppins', sans-serif; }
.error-msg { color: #e74c3c; font-size: 12px; margin: 6px 0; }
.success-msg { color: var(--green); font-size: 12px; margin: 6px 0; }
.summary-rows { margin: 18px 0; border-top: 1px solid var(--border); padding-top: 16px; }
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.summary-row.green span:last-child { color: var(--green); font-weight: 600; }
.summary-row.total { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 8px; }

.empty-state { text-align: center; padding: 80px 0; }
.empty-state i { color: var(--border); margin-bottom: 20px; display: block; }
.empty-state h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 10px; }
.empty-state p { color: #888; margin-bottom: 24px; }

/* ---- Footer ---- */
.site-footer { background: #FDF6F6; padding: 40px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { color: #888; font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 32px; height: 32px; border-radius: 50%; background: rgba(183,110,121,0.1); border: 1px solid rgba(183,110,121,0.2); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--rose); transition: all 0.2s; }
.social-links a:hover { background: var(--rose); border-color: var(--rose); color: #fff; }
.footer-col h4 { color: var(--charcoal); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #777; font-size: 13px; display: flex; align-items: center; gap: 5px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--rose); }
.footer-col ul li a::before { content: '›'; color: var(--rose); font-size: 14px; }
.footer-contact { margin-top: 14px; }
.footer-contact p { color: #777; font-size: 12px; margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.footer-contact p i { color: var(--rose); }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: #aaa; font-size: 12px; }
.text-rose { color: var(--rose); }
.payment-icons { display: flex; gap: 6px; }
.payment-icons span { background: rgba(183,110,121,0.1); color: var(--rose); font-size: 11px; padding: 3px 10px; border-radius: 5px; font-weight: 600; border: 1px solid rgba(183,110,121,0.2); }

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-gems { display: none; }
  .hero-content { padding: 60px 40px; }
}

/* =============================================
   MOBILE NAV — left side drawer
   ============================================= */

/* Overlay backdrop */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.42); z-index: 498;
}
.nav-overlay.active { display: block; }

/* Slide-in animation */
@keyframes navSlideIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.main-nav.mobile-open {
  display: block !important;
  position: fixed; left: 0; bottom: 0; /* top set dynamically by JS */
  width: 48vw; max-width: 195px;
  background: var(--white); border-right: 2px solid var(--border);
  box-shadow: 6px 0 28px rgba(183,110,121,0.18);
  z-index: 500; padding: 12px 0 32px;
  overflow-y: auto; overflow-x: hidden;
  animation: navSlideIn 0.24s ease forwards;
}
.main-nav.mobile-open ul { flex-direction: column; gap: 0; align-items: stretch; width: 100%; }
.main-nav.mobile-open ul li { width: 100%; }
.main-nav.mobile-open ul li a {
  padding: 12px 16px; display: flex; align-items: center;
  justify-content: flex-start; gap: 8px;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid #f5e8e8; color: var(--charcoal); text-decoration: none;
  white-space: nowrap;
}
.main-nav.mobile-open ul li:last-child > a { border-bottom: none; }
.main-nav.mobile-open ul li a:hover,
.main-nav.mobile-open ul li.active > a { color: var(--rose); background: #fdf8f8; }

/* Chevron icon inside has-dropdown on mobile */
.main-nav.mobile-open .has-dropdown > a .fa-chevron-down {
  transition: transform 0.25s ease; font-size: 12px; color: #bbb;
}
.main-nav.mobile-open .has-dropdown.submenu-open > a .fa-chevron-down {
  transform: rotate(180deg); color: var(--rose);
}
.main-nav.mobile-open .has-dropdown > a .fa-chevron-down { margin-left: auto; }
.main-nav.mobile-open ul li a .nav-hot { margin-left: auto; }

/* Submenu — hidden by default, shown when submenu-open */
.main-nav.mobile-open .has-dropdown .dropdown {
  display: none; position: static; box-shadow: none;
  border: none; border-radius: 0; padding: 0;
  background: transparent;
}
.main-nav.mobile-open .has-dropdown.submenu-open .dropdown {
  display: block;
  background: #fdf5f6; border-top: 1px solid #f5e0e3;
  padding: 4px 0 8px;
  animation: mobileSubmenuIn 0.2s ease;
}
@keyframes mobileSubmenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.main-nav.mobile-open .has-dropdown .dropdown a {
  font-size: 13px; color: #777; padding: 11px 22px 11px 36px;
  border-bottom: none; font-weight: 400; display: flex; align-items: center; gap: 8px;
}
.main-nav.mobile-open .has-dropdown .dropdown a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose-light); flex-shrink: 0;
}
.main-nav.mobile-open .has-dropdown .dropdown a:hover { color: var(--rose); background: #fceef0; }

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {

  /* Container */
  .container { padding: 0 14px; overflow-x: hidden; }
  .section { padding: 44px 0; }

  /* Announcement bar — scrolling ticker on mobile */
  .announcement-bar { font-size: 11px; }
  .ann-desktop { display: none; }
  .ann-mobile { display: block; padding: 7px 0; overflow: hidden; width: 100%; position: relative; }

  /* ---- Header (mobile) ---- */
  .hdr-main-inner { height: 54px; padding: 0 12px; gap: 10px; }
  .logo img { height: 34px !important; }
  .hdr-search { display: none; }
  .hdr-actions { display: none; }
  .mobile-menu-btn { display: flex !important; }
  .hdr-mobile-right { display: flex !important; }
  .hdr-nav-strip { height: 0; overflow: hidden; border: none; }

  /* Mobile bottom nav */
  .mob-bottom-nav { display: flex !important; }
  .page-wrapper { padding-bottom: 58px; }


  /* ---- Hero ---- */
  .hero { min-height: auto; }
  .hero-overlay { min-height: auto; align-items: flex-start; }
  .hero-content { padding: 40px 14px 48px; max-width: 100%; }
  .hero-title { font-size: 30px; line-height: 1.2; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; justify-content: center; font-size: 14px; padding: 13px 20px; }
  .hero-stats { gap: 18px; flex-wrap: wrap; padding-top: 18px; }
  .hero-stats strong { font-size: 20px; }
  .hero-gems { display: none; }
  .hero-deco::after { display: none; }

  /* ---- Trust Bar (mobile marquee) ---- */
  .trust-bar { padding: 8px 0; }
  .trust-item.trust-clone { display: flex; }
  .trust-track {
    display: flex; max-width: none; margin: 0; padding: 0; gap: 0;
    animation: trust-marquee 18s linear infinite;
    width: max-content;
  }
  .trust-sep { display: none; }
  .trust-item { flex-shrink: 0; padding: 0 16px; border-right: 1px solid var(--border); }
  .trust-item i { width: 28px; height: 28px; font-size: 12px; }
  .trust-item span { font-size: 11px; }

  /* ---- Section Heads ---- */
  .section-head h2, .section-head-flex h2 { font-size: 26px; }
  .section-head-flex { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* ---- Categories ---- */
  .category-grid {
    display: flex; flex-wrap: nowrap;
    overflow-x: auto; gap: 12px; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card { min-width: 130px; flex-shrink: 0; }
  .category-card img { height: 130px; }
  .cat-placeholder { height: 130px; }
  .cat-overlay { padding: 16px 10px 8px; }
  .cat-overlay h3 { font-size: 12px; }

  /* ---- Products Grid — 2 columns on mobile ---- */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }

  /* Product card — compact 2-column layout */
  .product-card { border-radius: 10px; }
  .product-info { padding: 8px 10px 10px; }
  .product-cat { font-size: 9px; margin-bottom: 3px; letter-spacing: 0.3px; }
  .product-info h3 { font-size: 12px; margin-bottom: 5px; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .stars { margin-bottom: 5px; }
  .stars i { font-size: 9px; }
  .stars span { font-size: 9px; }
  .product-price { gap: 4px; margin-bottom: 8px; flex-wrap: wrap; }
  .price { font-size: 14px; font-weight: 700; }
  .orig { font-size: 10px; }
  .discount { font-size: 9px; padding: 2px 4px; }
  .product-btns { flex-direction: row; gap: 6px; }
  .product-btns .btn-primary {
    flex: 1; justify-content: center; font-size: 11px;
    padding: 9px 6px; gap: 4px;
  }
  .product-btns .btn-primary i { font-size: 11px; }
  .product-btns .btn-outline { display: none; }
  .wishlist-btn { width: 28px; height: 28px; font-size: 12px; top: 7px; right: 7px; }

  /* ---- Offer Banner ---- */
  .offer-inner { flex-direction: column; gap: 24px; padding: 32px 16px; text-align: center; }
  .offer-inner h2 { font-size: 26px; }
  .offer-circle { width: 140px; height: 140px; box-shadow: 0 0 0 10px rgba(255,255,255,0.06); }
  .offer-pct { font-size: 36px; }
  .offer-off { font-size: 14px; }
  .offer-inner .btn-primary { width: 100%; justify-content: center; }

  /* ---- CTAs ---- */
  .cta-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-card { padding: 26px 20px; gap: 16px; flex-direction: column; text-align: center; align-items: center; }
  .cta-icon { font-size: 40px; }
  .cta-card h3 { font-size: 18px; }
  .btn-white { width: 100%; text-align: center; display: block; }

  /* ---- Testimonials ---- */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 22px 18px; }

  /* ---- Newsletter ---- */
  .newsletter-box { padding: 32px 16px; border-radius: 14px; }
  .newsletter-box h2 { font-size: 22px; }
  .newsletter-box p { font-size: 14px; }
  .newsletter-form { flex-direction: column; max-width: 100%; }
  .newsletter-form input { border-radius: 9px; border: 1.5px solid var(--border); border-bottom: none; border-radius: 9px 9px 0 0; }
  .newsletter-form .btn-primary { border-radius: 0 0 9px 9px; width: 100%; justify-content: center; }

  /* ---- Footer ---- */
  .site-footer { padding: 28px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img { margin: 0 auto 10px; display: block; }
  .social-links { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 16px 0 80px; }
  .payment-icons { justify-content: center; }

  /* ---- Cart ---- */
  .cart-layout { grid-template-columns: 1fr; gap: 20px; }
  .cart-item { grid-template-columns: 64px 1fr; gap: 12px; padding: 14px; flex-wrap: wrap; }
  .cart-item img { width: 64px; height: 64px; }
  .cart-item .qty-control { margin-top: 8px; }
  .cart-item .item-price { font-size: 15px; }
  .cart-summary { position: static; }
  .page-title { font-size: 22px; margin-bottom: 20px; }

  /* ---- Checkout ---- */
  .checkout-layout { grid-template-columns: 1fr; }

  /* ---- Account ---- */
  .account-layout { grid-template-columns: 1fr; }
  .account-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ---- Product Detail ---- */
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .add-to-cart-row { flex-wrap: wrap; gap: 10px; }
  .product-meta { grid-template-columns: 1fr; }
  .product-pricing .price { font-size: 24px; }
  .thumb-wrap { width: 58px; }
  .thumb-wrap img { height: 58px; }
  .img-zoom-btn { width: 30px; height: 30px; font-size: 12px; bottom: 8px; right: 8px; }
  .variation-btn { padding: 7px 12px; font-size: 12px; }
  .tab-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; }
  .tab-btn { white-space: nowrap; padding: 12px 16px; flex-shrink: 0; }
  .product-tabs { overflow-x: hidden; }

  /* ---- About ---- */
  .about-hero h1 { font-size: 28px; }
  .about-story { grid-template-columns: 1fr; gap: 24px; padding: 50px 0; }
  .about-story-img { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-grid { grid-template-columns: 1fr; gap: 14px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stats-row .stat strong { font-size: 28px; }

  /* ---- Contact ---- */
  .contact-hero h1 { font-size: 28px; }
  .contact-layout { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* ---- FAQ ---- */
  .faq-hero h1 { font-size: 28px; }
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .faq-nav { position: static; display: flex; gap: 6px; flex-wrap: wrap; }
  .faq-nav a { padding: 5px 11px; font-size: 11px; }
  .faq-q { font-size: 13px; padding: 14px 16px; }
  .faq-a { padding: 0 16px 14px; }

  /* ---- Shop (mobile — Flipkart layout) ---- */
  .mob-page-bar { display: block; }
  .mob-shop-bar { display: flex !important; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none !important; }
  .shop-breadcrumb { display: none; }
  .shop-toolbar { display: none; }
  .shop-page { padding: 10px 0 80px; }
  .shop-page .container { padding: 0 10px; }

  /* ---- Misc ---- */
  .field-row { grid-template-columns: 1fr !important; }
  .track-page { padding: 28px 0; }
  .progress-tracker { padding: 12px 8px; }
  .auth-card { padding: 28px 16px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ============================================= */
@media (max-width: 400px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .products-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  /* aspect-ratio: 1/1 handles square images — no fixed height needed */
  .product-btns { flex-direction: row; }
  .product-btns .btn-primary { flex: 1; }
  .product-btns .btn-outline { flex: 1; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 26px; }
  .values-grid { grid-template-columns: 1fr; }
  .account-stats { grid-template-columns: 1fr; }
}


/* Mobile category title bar */
.mob-page-bar { display: none; }
.mob-page-bar-inner { padding: 12px 14px 0; background: #fff; border-bottom: 1px solid var(--border); }
.mob-page-title { font-family: 'Poppins',sans-serif; font-size: 16px; font-weight: 700; color: var(--charcoal); }
.mob-page-count { font-size: 11px; color: #aaa; margin-bottom: 10px; }
.mob-page-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; scrollbar-width: none; }
.mob-page-chips::-webkit-scrollbar { display: none; }
.mob-cat-chip { flex-shrink: 0; background: #f8f0f0; color: #666; border: 1px solid var(--border); border-radius: 16px; padding: 5px 14px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.mob-cat-chip.active { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ============================================================
   MOBILE SORT/FILTER BAR (Flipkart-style sticky bar)
   ============================================================ */
.mob-shop-bar { display: none; }
.mob-shop-bar {
  position: sticky; top: 54px; z-index: 150;
  background: #fff; border-bottom: 1px solid var(--border);
  display: none; align-items: stretch; height: 46px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mob-shop-btn {
  flex: 1; background: none; border: none; font-size: 13px;
  font-weight: 600; font-family: 'Poppins',sans-serif; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  cursor: pointer; position: relative; transition: background 0.15s;
}
.mob-shop-btn:active { background: #fdf0f0; }
.mob-shop-btn i { font-size: 13px; color: var(--rose); }
.mob-shop-sep { width: 1px; background: var(--border); margin: 10px 0; }
.mob-filter-dot {
  min-width: 16px; height: 16px; background: var(--rose); color: #fff;
  border-radius: 50%; font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}

/* ============================================================
   DRAWER OVERLAY
   ============================================================ */
.mob-drawer-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 500;
  backdrop-filter: blur(2px);
}
.mob-drawer-overlay.active { display: block; }

/* ============================================================
   SORT DRAWER (bottom sheet)
   ============================================================ */
.mob-sort-drawer {
  display: none; position: fixed; left: 0; right: 0; bottom: 0;
  background: #fff; border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
  z-index: 501; padding-bottom: 20px;
  transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mob-sort-drawer.open { display: block; transform: translateY(0); }
.mob-drawer-handle { width: 40px; height: 4px; background: #ddd; border-radius: 2px; margin: 10px auto 0; }
.mob-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mob-drawer-header span { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.mob-drawer-close {
  background: none; border: none; font-size: 18px; color: #aaa;
  cursor: pointer; width: 32px; height: 32px; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
}
.mob-drawer-close:hover { background: #f5f5f5; color: var(--charcoal); }
.mob-sort-list { padding: 8px 0; }
.mob-sort-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; font-size: 14px; color: var(--text);
  border-bottom: 1px solid #f5f5f5; text-decoration: none;
  transition: background 0.15s;
}
.mob-sort-option:hover { background: #fdf8f8; }
.mob-sort-option.active { color: var(--rose); font-weight: 600; }
.mob-sort-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
}
.mob-sort-radio.active { border-color: var(--rose); background: var(--rose); }
.mob-sort-radio.active::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; display: block; }

/* ============================================================
   FILTER DRAWER (full-height side sheet, Flipkart 2-col layout)
   ============================================================ */
.mob-filter-drawer {
  display: none; position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: #fff; z-index: 501;
  flex-direction: column;
  transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.mob-filter-drawer.open { display: flex; transform: translateX(0); }
.mob-filter-layout { display: flex; flex: 1; overflow: hidden; }

/* Left tab column */
.mob-filter-tabs {
  width: 110px; flex-shrink: 0;
  background: #f8f0f0; border-right: 1px solid var(--border);
  overflow-y: auto;
}
.mob-filter-tab {
  display: block; width: 100%; padding: 16px 14px;
  background: none; border: none; text-align: left;
  font-size: 13px; font-weight: 500; color: #555;
  font-family: 'Poppins',sans-serif; cursor: pointer;
  border-left: 3px solid transparent; transition: all 0.15s;
}
.mob-filter-tab.active { background: #fff; color: var(--rose); font-weight: 700; border-left-color: var(--rose); }

/* Right content column */
.mob-filter-panels { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.mob-filter-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
.mob-filter-panel-header span { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.mob-filter-panel { display: none; }
.mob-filter-panel.active { display: block; }
.mob-filter-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; font-size: 13px; color: var(--text);
  border-bottom: 1px solid #f5f5f5; text-decoration: none;
  transition: background 0.15s;
}
.mob-filter-item:hover { background: #fdf8f8; }
.mob-filter-item.active { color: var(--rose); font-weight: 600; background: rgba(183,110,121,0.06); }
.mob-filter-item i.fa-check { color: var(--rose); font-size: 13px; }

/* Filter drawer footer */
.mob-filter-footer {
  border-top: 1px solid var(--border); padding: 12px 16px;
  display: flex; gap: 12px; background: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
.mob-filter-footer .btn-outline { flex: 1; justify-content: center; }

/* =============================================
   SHOP PAGE
   ============================================= */
.shop-page { padding: 40px 0 80px; }
.shop-layout { display: grid; grid-template-columns: 248px 1fr; gap: 24px; margin-top: 20px; }
.filter-sidebar {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid var(--border); height: fit-content;
  position: sticky; top: 155px;
}
.filter-sidebar h3 { font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 18px; color: var(--charcoal); }
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: #777; margin-bottom: 10px; }
.filter-check a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 8px; font-size: 13px; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.filter-check a:hover { background: #fdf0f0; color: var(--rose); }
.filter-check a.active { background: rgba(183,110,121,0.12); color: var(--rose); font-weight: 700; }
.filter-check a span { background: #f0e8e8; color: #aaa; font-size: 10px; font-weight: 700; border-radius: 12px; padding: 1px 7px; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input { flex: 1; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; font-size: 13px; font-family: 'Poppins',sans-serif; width: 100%; }
.price-inputs span { color: #aaa; }
.polish-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; margin-right: 8px; border: 2px solid #fff; box-shadow: 0 0 0 1px #ccc; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.results-count { font-size: 13px; color: #888; }
.sort-box { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.sort-box i { color: var(--rose); }
.sort-box select { border: 1px solid var(--border); border-radius: 8px; padding: 7px 12px; font-family: 'Poppins',sans-serif; font-size: 13px; cursor: pointer; }
.products-area { min-width: 0; }
.filter-quick-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 600;
  color: #666; margin-bottom: 6px; border: 1px solid var(--border);
  transition: all 0.2s; text-decoration: none; background: var(--bg);
}
.filter-quick-link i { color: var(--rose); font-size: 12px; }
.filter-quick-link:hover { border-color: var(--rose); color: var(--rose); background: #fdf0f0; }
.filter-quick-link.active { background: rgba(183,110,121,0.1); color: var(--rose); border-color: var(--rose); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Product card styles are defined globally above — no overrides needed here */

/* ---- Pagination ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text); transition: all 0.2s; }
.page-btn.active, .page-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ---- Breadcrumb ---- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #aaa; margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb span { color: #ccc; }

/* ---- Empty State ---- */
.empty-state { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 80px 20px; text-align: center; color: #aaa; }
.empty-state i { color: var(--border); }
.empty-state h2 { font-family: 'Playfair Display',serif; color: var(--charcoal); font-size: 24px; }

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.gallery-main { border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--border); background: #fff; }
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-zoom { position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,0.9); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; cursor: pointer; font-size: 14px; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumb { width: 70px; height: 70px; border-radius: 10px; object-fit: cover; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s; }
.gallery-thumb:hover { border-color: var(--rose); }
.product-title { font-size: 28px; margin: 12px 0 8px; }
.product-subtitle { color: #888; font-size: 14px; margin-bottom: 14px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 13px; color: #aaa; }
.product-rating a { color: var(--rose); }
.product-price-big { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.price-main { font-family: 'Playfair Display',serif; font-size: 32px; font-weight: 700; color: var(--charcoal); }
.price-orig { font-size: 18px; color: #bbb; text-decoration: line-through; }
.price-disc { background: #fce4ec; color: #e91e63; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.variation-group { margin-bottom: 18px; }
.variation-group label { font-size: 13px; font-weight: 500; color: #666; margin-bottom: 10px; display: block; }
.variation-group label strong { color: var(--charcoal); }
.polish-options { display: flex; gap: 10px; flex-wrap: wrap; }
.polish-btn { width: 32px; height: 32px; border-radius: 50%; border: 3px solid transparent; cursor: pointer; transition: all 0.2s; }
.polish-btn.active, .polish-btn:hover { border-color: var(--rose); transform: scale(1.15); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn { padding: 8px 16px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.size-btn.active, .size-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.quantity-row { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 9px; overflow: hidden; }
.qty-control button { width: 40px; height: 44px; border: none; background: #fdf8f8; cursor: pointer; font-size: 14px; color: var(--rose); }
.qty-control input { width: 56px; height: 44px; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); text-align: center; font-size: 15px; font-family: 'Poppins',sans-serif; }
.product-cta { display: flex; gap: 12px; margin-bottom: 24px; }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; padding: 18px; background: #fdf8f8; border-radius: 12px; }
.feature { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #666; }
.feature i { color: var(--rose); font-size: 15px; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 12px 24px; border-radius: 9px; font-size: 14px; font-weight: 600; transition: background 0.2s; }
.btn-whatsapp:hover { background: #128C7E; color: #fff; }
.product-tabs { margin: 40px 0; }
.tab-buttons { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.tab-btn { background: none; border: none; padding: 12px 28px; font-family: 'Poppins',sans-serif; font-size: 14px; font-weight: 600; color: #aaa; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.tab-btn.active { color: var(--rose); border-bottom-color: var(--rose); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.product-desc { font-size: 14px; line-height: 1.9; color: #555; max-width: 700px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.review-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.reviewer-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; flex-shrink: 0; }
.review-date { margin-left: auto; font-size: 11px; color: #aaa; }
.review-title { font-size: 13px; font-weight: 600; margin-bottom: 6px; display: block; color: var(--charcoal); }
.review-body { font-size: 13px; color: #666; line-height: 1.7; }
.related-section { margin-top: 60px; }
.section-title { font-family: 'Playfair Display',serif; font-size: 24px; margin-bottom: 24px; }

/* =============================================
   CART PAGE
   ============================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; margin-top: 24px; }
.cart-table { background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-meta { font-size: 12px; color: #aaa; margin-bottom: 8px; }
.cart-item-price { font-family: 'Playfair Display',serif; font-size: 18px; font-weight: 700; color: var(--rose); min-width: 100px; text-align: right; }
.cart-remove { color: #ddd; font-size: 16px; cursor: pointer; padding: 8px; margin-left: 8px; }
.cart-remove:hover { color: #e74c3c; }
.cart-summary-card { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 24px; height: fit-content; position: sticky; top: 90px; }
.cart-summary-card h3 { font-family: 'Playfair Display',serif; font-size: 18px; margin-bottom: 20px; }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; border: 1px solid var(--border); border-radius: 9px; padding: 10px 14px; font-size: 13px; font-family: 'Poppins',sans-serif; }

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; margin-top: 24px; }
.checkout-section { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 24px; margin-bottom: 20px; }
.checkout-section h2 { font-family: 'Poppins',sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; color: var(--charcoal); }
.checkout-section h2 i { color: var(--rose); }
.address-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.address-option { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.address-option input[type=radio] { margin-top: 16px; accent-color: var(--rose); }
.address-option .address-card { flex: 1; background: #fdf8f8; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; font-size: 13px; line-height: 1.8; }
.address-option input:checked + .address-card { border-color: var(--rose); background: #fff0f2; }
.address-card strong { font-size: 14px; font-weight: 700; }
.default-tag { background: var(--rose); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.new-address-form { border: 1.5px dashed var(--border); border-radius: 12px; padding: 16px; margin-top: 12px; }
.new-address-form summary { cursor: pointer; color: var(--rose); font-weight: 600; font-size: 13px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.field-full { grid-column: span 2; }
.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-option { cursor: pointer; }
.payment-option input[type=radio] { display: none; }
.payment-card { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 16px; transition: all 0.2s; background: #fdf8f8; }
.payment-option input:checked + .payment-card { border-color: var(--rose); background: #fff0f2; }
.payment-icon { font-size: 24px; width: 40px; }
.payment-card strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 2px; }
.payment-card p { font-size: 12px; color: #aaa; margin: 0; }
.order-summary-card { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 24px; position: sticky; top: 90px; }
.order-summary-card h3 { font-family: 'Playfair Display',serif; font-size: 18px; margin-bottom: 18px; }
.summary-item { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.summary-item .item-name { flex: 1; color: #555; }
.summary-item .item-name small { display: block; color: #aaa; font-size: 11px; }
.summary-divider { border-top: 1.5px solid var(--border); margin: 10px 0; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; }
.summary-row.green { color: var(--green); font-weight: 600; }
.summary-row.total { font-size: 16px; font-weight: 700; color: var(--charcoal); }
.checkout-left, .checkout-right { min-width: 0; }

/* =============================================
   AUTH PAGES (login / register)
   ============================================= */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 120px); padding: 40px 20px; }
.auth-card { background: #fff; border-radius: 18px; border: 1px solid var(--border); padding: 42px 40px; width: 100%; max-width: 480px; }
.auth-header { text-align: center; margin-bottom: 28px; }
.auth-header img { margin-bottom: 16px; }
.auth-header h1 { font-size: 24px; margin-bottom: 6px; }
.auth-header p { font-size: 13px; color: #aaa; }
.auth-form .field { margin-bottom: 16px; }
.auth-form label { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 6px; display: flex; justify-content: space-between; }
.forgot-link { color: var(--rose); font-weight: 500; font-size: 11px; }
.input-icon { position: relative; }
.input-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #ccc; font-size: 14px; }
.input-icon input { width: 100%; border: 1.5px solid var(--border); border-radius: 9px; padding: 12px 14px 12px 40px; font-size: 14px; font-family: 'Poppins',sans-serif; transition: border-color 0.2s; }
.input-icon input:focus { outline: none; border-color: var(--rose); }
.btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 15px; margin-top: 6px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: #ccc; font-size: 12px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-top: 1px solid var(--border); }
.btn-whatsapp-auth { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; padding: 13px; border-radius: 9px; font-size: 14px; font-weight: 600; transition: background 0.2s; }
.btn-whatsapp-auth:hover { background: #128C7E; color: #fff; }
.auth-switch { text-align: center; font-size: 13px; color: #aaa; margin-top: 20px; }
.auth-switch a { color: var(--rose); font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alert { padding: 12px 16px; border-radius: 10px; font-size: 13px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.alert i { margin-top: 1px; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #ef9a9a; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert a { color: inherit; font-weight: 600; text-decoration: underline; }

/* =============================================
   ACCOUNT PAGE
   ============================================= */
.account-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; padding: 40px 0 80px; }
.account-sidebar { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 24px; height: fit-content; position: sticky; top: 90px; }
.account-avatar { text-align: center; padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.avatar-lg { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.account-avatar h3 { font-size: 16px; margin-bottom: 4px; }
.account-avatar p { font-size: 12px; color: #aaa; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px; font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 4px; transition: all 0.2s; }
.account-nav a:hover, .account-nav a.active { background: #fdf0f0; color: var(--rose); }
.account-nav a.text-danger { color: #e74c3c; }
.account-nav a i { width: 18px; color: #bbb; font-size: 13px; }
.account-nav a.active i { color: var(--rose); }
.account-nav .count { background: var(--rose); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 20px; margin-left: auto; }
.account-main { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 28px; min-height: 400px; }
.account-title { font-size: 22px; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.account-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.stat-card { background: #fdf8f8; border: 1px solid var(--border); border-radius: 12px; padding: 18px; text-align: center; }
.stat-card i { font-size: 20px; color: var(--rose); margin-bottom: 8px; }
.stat-card strong { display: block; font-family: 'Playfair Display',serif; font-size: 24px; color: var(--charcoal); }
.stat-card span { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.order-list { display: flex; flex-direction: column; gap: 10px; }
.order-row { display: grid; grid-template-columns: 1fr auto auto auto; gap: 14px; align-items: center; padding: 14px 16px; background: #fdf8f8; border: 1px solid var(--border); border-radius: 10px; }
.order-info strong { display: block; font-size: 14px; }
.order-info span { font-size: 12px; color: #aaa; }
.order-info small { display: block; font-size: 11px; color: #bbb; text-transform: uppercase; }
.text-rose { color: var(--rose); }
.status-badge { font-size: 11px; font-weight: 700; text-transform: capitalize; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.address-card-display { background: #fdf8f8; border: 1px solid var(--border); border-radius: 12px; padding: 18px; position: relative; font-size: 13px; line-height: 1.8; }
.address-card-display strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; }
.address-card-display .default-tag { position: absolute; top: 14px; right: 14px; }
.add-address-card { background: #fdf8f8; border: 1.5px dashed var(--border); border-radius: 12px; padding: 18px; }
.add-address-card h4 { font-size: 14px; margin-bottom: 14px; color: var(--charcoal); }
.add-address-card .field { margin-bottom: 10px; }
.add-address-card input { width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: 13px; font-family: 'Poppins',sans-serif; }
.profile-form .field { margin-bottom: 14px; }
.profile-form label { display: block; font-size: 12px; font-weight: 600; color: #555; margin-bottom: 6px; }
.profile-form input { width: 100%; max-width: 420px; border: 1.5px solid var(--border); border-radius: 9px; padding: 11px 14px; font-size: 14px; font-family: 'Poppins',sans-serif; }
.profile-form input:disabled { background: #f9f9f9; color: #aaa; }
.order-detail-header { margin-bottom: 20px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #aaa; margin-bottom: 10px; }
.back-link:hover { color: var(--rose); }
.order-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 20px; }
.od-card { background: #fdf8f8; border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.od-card h4 { font-size: 13px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.od-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.od-item:last-child { border-bottom: none; }
.od-item-info { flex: 1; }
.od-item-info strong { display: block; font-weight: 600; }
.od-item-info small { color: #aaa; font-size: 11px; }

/* =============================================
   TRACK ORDER PAGE
   ============================================= */
.track-page { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.track-form-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin: 28px 0; }
.track-form-card form { display: flex; flex-direction: column; gap: 14px; }
.track-result { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-top: 20px; }
.track-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; }
.track-header strong { font-size: 16px; display: block; }
.track-header p { font-size: 13px; color: #aaa; margin-top: 3px; }
.progress-tracker { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; padding: 20px; background: #fdf8f8; border-radius: 12px; }
.track-step { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; text-align: center; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #e0e0e0; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #bbb; background: #fff; }
.track-step.done .step-circle { border-color: var(--rose); background: var(--rose); color: #fff; }
.track-step.current .step-circle { border-color: var(--rose); color: var(--rose); }
.track-step span { font-size: 11px; font-weight: 600; color: #aaa; text-transform: capitalize; }
.track-step.done span, .track-step.current span { color: var(--rose); }
.track-line { flex: 1; height: 2px; background: #e0e0e0; max-width: 60px; }
.track-line.done { background: var(--rose); }
.tracking-info { display: flex; align-items: center; gap: 12px; background: #fdf0f0; border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; font-size: 13px; }
.tracking-info i { color: var(--rose); font-size: 20px; }
.track-items { margin-top: 14px; }
.track-total { display: flex; justify-content: space-between; padding: 14px 0; border-top: 2px solid var(--border); margin-top: 10px; font-size: 15px; }
.track-total strong { color: var(--rose); font-family: 'Playfair Display',serif; font-size: 18px; }

/* =============================================
   PAGE TITLE
   ============================================= */
.page-title { font-family: 'Playfair Display',serif; font-size: 28px; margin-bottom: 24px; }
.page-title span { font-size: 16px; color: #aaa; font-weight: 400; }
.section-head { text-align: center; margin-bottom: 32px; }
.section-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--rose); font-weight: 700; margin-bottom: 10px; }

/* =============================================
   FIELD HELPERS
   ============================================= */
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12px; font-weight: 600; color: #555; }
.field input, .field select, .field textarea {
  border: 1.5px solid var(--border); border-radius: 9px;
  padding: 11px 14px; font-size: 14px; font-family: 'Poppins',sans-serif;
  transition: border-color 0.2s; background: #fff; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); }


/* =============================================
   PRODUCT DETAIL — class aliases for HTML
   ============================================= */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.product-gallery { min-width: 0; }
.main-image { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: #fff; position: relative; }
.main-image img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.thumb-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb-img { width: 68px; height: 68px; border-radius: 10px; object-fit: cover; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s; opacity: 0.75; }
.thumb-img:hover, .thumb-img.active { border-color: var(--rose); opacity: 1; }
.product-detail { min-width: 0; }
.stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 13px; color: #aaa; }
.product-pricing { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.product-pricing .price { font-family: 'Playfair Display',serif; font-size: 30px; font-weight: 700; color: var(--charcoal); }
.product-pricing .orig { font-size: 17px; color: #bbb; text-decoration: line-through; }
.product-pricing .discount { background: #fce4ec; color: #e91e63; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.short-desc { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 22px; }
.option-group { margin-bottom: 18px; }
.option-group label { display: block; font-size: 12px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.option-btns { display: flex; gap: 8px; flex-wrap: wrap; }
/* Variation buttons */
.variation-btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--border); background: #fff; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; font-family: 'Poppins',sans-serif; color: var(--text); }
.variation-btn:hover { border-color: var(--rose); color: var(--rose); background: #fdf0f2; }
.variation-btn.active { background: var(--rose); color: #fff; border-color: var(--rose); }
.variation-btn.var-unavailable { opacity: 0.28; text-decoration: line-through; cursor: not-allowed; pointer-events: none; }

/* Swatch dot inside variation button */
.swatch-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(0,0,0,0.15); flex-shrink: 0; display: inline-block; box-shadow: 0 1px 4px rgba(0,0,0,0.18); vertical-align: middle; }
.variation-btn.active .swatch-dot { border-color: rgba(255,255,255,0.6); box-shadow: 0 0 0 2px rgba(255,255,255,0.3); }

/* Selected option label inline */
.option-selected-val { font-weight: 700; color: var(--rose); text-transform: none; letter-spacing: 0; font-size: 12px; margin-left: 6px; }

/* Thumbnail wrap */
.thumb-wrap { position: relative; width: 68px; flex-shrink: 0; cursor: pointer; border-radius: 10px; overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s; opacity: 0.72; }
.thumb-wrap:hover, .thumb-wrap.active { border-color: var(--rose); opacity: 1; }
.thumb-wrap img { width: 100%; height: 68px; object-fit: cover; display: block; }
.thumb-label { display: none; position: absolute; bottom: 0; left: 0; right: 0; background: rgba(183,110,121,0.85); color: #fff; font-size: 8px; text-align: center; padding: 2px 2px; line-height: 1.2; }
.thumb-wrap:hover .thumb-label, .thumb-wrap.active .thumb-label { display: block; }

/* Zoom button on main image */
.img-zoom-btn { position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.9); border: 1px solid var(--border); color: var(--rose); font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }
.img-zoom-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
#main-product-img { cursor: zoom-in; }

/* Image fade transition */
.img-fading { opacity: 0; transition: opacity 0.16s ease; }
#main-product-img { transition: opacity 0.16s ease; }

/* Price pulse animation */
@keyframes pricePulse { 0% { transform: scale(1); } 45% { transform: scale(1.1); } 100% { transform: scale(1); } }
.price-pulse { animation: pricePulse 0.3s cubic-bezier(.36,.07,.19,.97); }

/* Stock indicator */
.stock-indicator { margin-bottom: 18px; }
.stock-bar-track { height: 5px; background: #eee; border-radius: 3px; margin-bottom: 7px; overflow: hidden; }
.stock-bar-fill { height: 100%; border-radius: 3px; width: 0; transition: width 0.5s ease, background 0.4s; }
.stock-bar-fill.high { background: #27ae60; }
.stock-bar-fill.med  { background: #f57c00; }
.stock-bar-fill.low  { background: #e91e63; }
.stock-bar-fill.oos  { background: #ccc; }

.stock-info { font-size: 13px; font-weight: 600; margin: 0; }
.stock-info.in-stock  { color: #27ae60; }
.stock-info.low-stock { color: #e65100; }
.stock-info.out-stock { color: #c62828; }

.add-to-cart-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; margin-top: 18px; }
.qty-btn { width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: #fdf8f8; cursor: pointer; font-size: 16px; color: var(--rose); font-family: 'Poppins',sans-serif; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.qty-btn:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.product-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #fdf8f8; border-radius: 12px; padding: 16px; margin-top: 18px; }
.product-meta p { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #666; margin: 0; }
.product-meta i { color: var(--rose); font-size: 14px; width: 16px; }

/* Tab aliases */
.tab-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.tab-body { font-size: 14px; line-height: 1.9; color: #555; }
.review-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.reviewer { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }

/* Cart aliases */
.cart-items { background: #fff; border-radius: 14px; border: 1px solid var(--border); overflow: hidden; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 14px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-info .variation { font-size: 12px; color: #aaa; }
.cart-item-info .item-sku { font-size: 11px; color: #ccc; }
.cart-item .qty-control { display: flex; align-items: center; gap: 6px; }
.cart-item .qty-val { width: 32px; text-align: center; font-size: 15px; font-weight: 600; }
.item-price { font-family: 'Playfair Display',serif; font-size: 17px; font-weight: 700; color: var(--charcoal); white-space: nowrap; }
.remove-btn { background: none; border: none; color: #ddd; cursor: pointer; font-size: 16px; padding: 6px; transition: color 0.2s; }
.remove-btn:hover { color: #e74c3c; }
.cart-summary { background: #fff; border-radius: 14px; border: 1px solid var(--border); padding: 24px; position: sticky; top: 90px; height: fit-content; }
.cart-summary h3 { font-family: 'Playfair Display',serif; font-size: 18px; margin-bottom: 18px; }
.summary-rows { margin: 18px 0; display: flex; flex-direction: column; gap: 0; }
.error-msg { color: #c62828; font-size: 13px; margin-top: 6px; }
.success-msg { color: var(--green); font-size: 13px; font-weight: 600; margin-top: 6px; }
.btn-block { display: flex; width: 100%; justify-content: center; }
.mt-2 { margin-top: 10px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero { background: linear-gradient(135deg, #fdf0f2 0%, #fff9f9 60%, #fdf6f6 100%); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(183,110,121,0.12) 0%, transparent 70%); }
.about-hero::after { content: ''; position: absolute; left: -40px; bottom: -40px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(183,110,121,0.08) 0%, transparent 70%); }
.about-hero .container { position: relative; z-index: 1; }
.about-hero h1 { font-size: 48px; margin-bottom: 18px; color: var(--charcoal); }
.about-hero h1 span { color: var(--rose); }
.about-hero p { font-size: 16px; color: #777; max-width: 580px; margin: 0 auto; line-height: 1.8; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0; }
.about-story-img { border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, #fdf0f0, #f5e0e0); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 100px; color: var(--rose); }
.about-story-text .section-tag { margin-bottom: 10px; }
.about-story-text h2 { font-size: 34px; margin-bottom: 16px; }
.about-story-text p { font-size: 14px; line-height: 1.9; color: #666; margin-bottom: 14px; }
.about-values { background: #fdf8f8; padding: 70px 0; text-align: center; }
.about-values h2 { font-size: 34px; margin-bottom: 40px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: #fff; border-radius: 16px; padding: 28px 20px; border: 1px solid var(--border); }
.value-card .icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #fce4ec, #f8bbd9); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--rose); margin: 0 auto 16px; }
.value-card h3 { font-size: 15px; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: #888; line-height: 1.7; }
.about-team { padding: 70px 0; text-align: center; }
.about-team h2 { font-size: 34px; margin-bottom: 40px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { background: #fff; border-radius: 16px; border: 1px solid var(--border); overflow: hidden; }
.team-avatar { aspect-ratio: 1; background: linear-gradient(135deg, #fce4ec 0%, #e8cfcf 100%); display: flex; align-items: center; justify-content: center; font-size: 60px; color: var(--rose); }
.team-card .info { padding: 20px; }
.team-card h3 { font-size: 16px; margin-bottom: 4px; }
.team-card p { font-size: 12px; color: var(--rose); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.about-stats-bar { background: linear-gradient(90deg, var(--rose-dark) 0%, var(--rose) 100%); padding: 40px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-row .stat { color: #fff; }
.stats-row .stat strong { font-family: 'Playfair Display',serif; font-size: 36px; display: block; }
.stats-row .stat span { font-size: 13px; opacity: 0.85; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero { background: linear-gradient(135deg, #fdf0f2 0%, #fff9f9 100%); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.contact-hero h1 { color: var(--charcoal); }
.contact-hero p { color: #777; }
.contact-hero h1 { font-size: 40px; margin-bottom: 12px; }
.contact-hero p { font-size: 15px; color: #bbb; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; padding: 70px 0; }
.contact-info h2 { font-size: 26px; margin-bottom: 14px; }
.contact-info > p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 30px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px; background: #fdf8f8; border: 1px solid var(--border); border-radius: 14px; }
.contact-card .c-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.contact-card p { font-size: 13px; color: #666; margin: 0; }
.contact-card a { color: var(--rose); }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 36px; }
.contact-form-card h2 { font-size: 24px; margin-bottom: 6px; }
.contact-form-card > p { font-size: 13px; color: #aaa; margin-bottom: 24px; }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-hours { background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 100%); color: #fff; padding: 50px 0; text-align: center; }
.contact-hours h2 { font-size: 28px; margin-bottom: 30px; }
.hours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.hour-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 22px; }
.hour-card h4 { font-size: 13px; color: var(--rose-light); margin-bottom: 8px; }
.hour-card p { font-size: 14px; font-weight: 600; color: #fff; }

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-hero { background: linear-gradient(135deg, #fdf0f2 0%, #fff9f9 100%); padding: 60px 0; text-align: center; }
.faq-hero h1 { color: var(--charcoal); }
.faq-hero p { color: #777; }
.faq-hero h1 { font-size: 40px; margin-bottom: 12px; }
.faq-hero p { font-size: 15px; color: #bbb; max-width: 500px; margin: 0 auto; }
.faq-search-bar { display: flex; gap: 0; max-width: 500px; margin: 24px auto 0; }
.faq-search-bar input { flex: 1; border: none; border-radius: 9px 0 0 9px; padding: 14px 18px; font-size: 14px; font-family: 'Poppins',sans-serif; }
.faq-search-bar button { background: var(--rose); color: #fff; border: none; border-radius: 0 9px 9px 0; padding: 0 22px; font-size: 16px; cursor: pointer; }
.faq-content { padding: 60px 0 80px; }
.faq-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.faq-nav { height: fit-content; position: sticky; top: 90px; }
.faq-nav a { display: block; padding: 9px 14px; border-radius: 9px; font-size: 13px; font-weight: 500; color: #666; margin-bottom: 4px; transition: all 0.2s; }
.faq-nav a:hover, .faq-nav a.active { background: #fdf0f0; color: var(--rose); font-weight: 700; }
.faq-section { margin-bottom: 40px; }
.faq-section h2 { font-size: 20px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.faq-section h2 i { color: var(--rose); font-size: 18px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: #fff; border: none; padding: 16px 20px; font-family: 'Poppins',sans-serif; font-size: 14px; font-weight: 600; color: var(--charcoal); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.2s; }
.faq-q:hover { background: #fdf8f8; }
.faq-q .toggle-icon { color: var(--rose); font-size: 14px; transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .toggle-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 13px; line-height: 1.8; color: #666; }
.faq-a.open { display: block; }
.faq-cta { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); padding: 60px 0; text-align: center; color: #fff; }
.faq-cta h2 { font-size: 28px; margin-bottom: 10px; }
.faq-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 24px; }

/* =============================================
   SUBSCRIBE PAGE
   ============================================= */
.subscribe-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.subscribe-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 50px 40px; max-width: 520px; width: 100%; text-align: center; }
.subscribe-card .icon { font-size: 48px; color: var(--rose); margin-bottom: 20px; }
.subscribe-card h1 { font-size: 28px; margin-bottom: 10px; }
.subscribe-card p { font-size: 14px; color: #888; margin-bottom: 28px; line-height: 1.7; }

/* =============================================
   GENERAL HELPERS
   ============================================= */
.text-center { text-align: center; }
.text-rose { color: var(--rose); }
.green { color: var(--green); }
.section { padding: 60px 0; }
.mt-3 { margin-top: 16px; }
.mb-3 { margin-bottom: 16px; }

/* =============================================
   TABLET RESPONSIVE — additional rules
   ============================================= */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 220px 1fr; }
  .filter-sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
  .checkout-layout, .cart-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 30px; }
  .about-story-img { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-nav { position: static; display: flex; gap: 8px; flex-wrap: wrap; }
  .faq-nav a { padding: 6px 12px; font-size: 12px; }
  .hours-grid { grid-template-columns: 1fr; max-width: 340px; }
}
/* (mobile rules already defined above — no duplicate needed)
   Keeping this block only for cart-item grid on small screens */
@media (max-width: 768px) {
  .cart-item { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 14px; }
  .add-to-cart-row { flex-wrap: wrap; }
  /* Override the 1024px block that sets 220px sidebar — force full-width on mobile */
  .shop-layout { grid-template-columns: 1fr !important; }
  .filter-sidebar { display: none !important; }
}

/* ============================================================
   HERO SLIDER (GIVA-style)
   ============================================================ */
.hero-slider-wrap { position: relative; overflow: hidden; background: #fdf0f2; }
.hero-slider { position: relative; width: 100%; height: 520px; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; transition: opacity 0.7s ease; z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
}
.hero-slide.no-image { background: linear-gradient(135deg,#fdf0f2 0%,#fff5f7 60%,#f5e6ea 100%); }
.hero-slide.no-image .hero-slide-overlay { display: none; }
.hero-slide-content { position: relative; z-index: 2; width: 100%; max-width: 600px; }
.hero-slide.no-image .hero-slide-content .hero-title { color: var(--charcoal); }
.hero-slide.no-image .hero-slide-content .hero-sub { color: #666; }
.hero-slide.no-image .hero-slide-content .hero-tag { color: var(--rose); background: rgba(183,110,121,0.1); border-color: rgba(183,110,121,0.25); }
.hero-slide.no-image .hero-slide-content .hero-stats { border-top-color: var(--border); }
.hero-slide.no-image .hero-slide-content .hero-stats strong { color: var(--charcoal); }
.hero-slide.no-image .hero-slide-content .hero-stats span { color: #aaa; }
.hero-slide:not(.no-image) .hero-slide-content .hero-title { color: #fff; }
.hero-slide:not(.no-image) .hero-slide-content .hero-sub { color: rgba(255,255,255,0.85); }
.hero-slide:not(.no-image) .hero-slide-content .hero-tag { color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.hero-slide:not(.no-image) .hero-slide-content .hero-stats { border-top-color: rgba(255,255,255,0.25); }
.hero-slide:not(.no-image) .hero-slide-content .hero-stats strong { color: #fff; }
.hero-slide:not(.no-image) .hero-slide-content .hero-stats span { color: rgba(255,255,255,0.65); }
.hero-outline-btn { border-color: rgba(255,255,255,0.4) !important; color: #fff !important; }
.hero-slide.no-image .hero-outline-btn { border-color: var(--border) !important; color: var(--charcoal) !important; }

/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,0.88); border: none;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--charcoal); box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--rose); color: #fff; }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Slider dots */
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; transition: all 0.3s; padding: 0; }
.slider-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ============================================================
   CATEGORY ICONS STRIP
   ============================================================ */
.cat-icons-section { padding: 24px 0 20px; background: #fff; border-bottom: 1px solid var(--border); }
.cat-icons-strip {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px;
}
.cat-icons-strip::-webkit-scrollbar { display: none; }
.cat-icon-card { display: flex; flex-direction: column; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; min-width: 72px; }
.cat-icon-img {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(183,110,121,0.08); border: 2px solid rgba(183,110,121,0.15);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.cat-icon-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-icon-img i { font-size: 22px; color: var(--rose); }
.cat-icon-card:hover .cat-icon-img { border-color: var(--rose); box-shadow: 0 4px 16px rgba(183,110,121,0.22); transform: translateY(-3px); }
.cat-icon-label { font-size: 11px; font-weight: 600; color: var(--charcoal); text-align: center; white-space: nowrap; }

/* ============================================================
   FESTIVAL / OFFER BANNER
   ============================================================ */
.festival-banner-wrap { margin: 0; }
.festival-banner {
  position: relative; overflow: hidden; min-height: 150px;
  display: flex; align-items: center;
}
.festival-banner.has-image { min-height: 200px; }
.festival-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.3;
}
.festival-deco {
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  font-size: 100px; color: rgba(255,255,255,0.1); pointer-events: none;
}
.festival-banner-content { position: relative; z-index: 2; padding: 36px 0; width: 100%; }
.festival-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px; padding: 5px 14px; margin-bottom: 10px;
  font-size: 11px; color: #fff; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.festival-title { font-family: 'Playfair Display',serif; font-size: 30px; color: #fff; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.festival-subtitle { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 22px; max-width: 520px; }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.6);
  color: #fff; font-size: 14px; font-weight: 700; padding: 12px 28px;
  border-radius: 50px; transition: all 0.2s; text-decoration: none;
}
.btn-white-outline:hover { background: #fff; color: var(--rose); border-color: #fff; }

/* ============================================================
   COLLECTION EDITORIAL BANNERS (2-col)
   ============================================================ */
.collection-banners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.collection-banner-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 300px; display: flex; align-items: flex-end;
  text-decoration: none; background: #f0dde0;
}
.collection-banner-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.collection-banner-card:hover .collection-banner-img { transform: scale(1.04); }
.collection-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
}
.collection-banner-content { position: relative; z-index: 2; padding: 24px 28px; color: #fff; width: 100%; }
.collection-banner-badge { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.collection-banner-title { font-family: 'Playfair Display',serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.collection-banner-sub { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.collection-banner-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.4);
  color: #fff; font-size: 12px; font-weight: 600; padding: 8px 18px;
  border-radius: 20px; backdrop-filter: blur(4px); transition: all 0.2s;
}
.collection-banner-card:hover .collection-banner-btn { background: #fff; color: var(--rose); border-color: #fff; }

/* ============================================================
   WHY KIRIXO — USP SECTION
   ============================================================ */
.why-kirixo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  text-align: center; padding: 28px 20px; background: #fff;
  border: 1px solid var(--border); border-radius: 16px; transition: all 0.25s;
}
.why-card:hover { border-color: rgba(183,110,121,0.3); box-shadow: 0 8px 28px rgba(183,110,121,0.12); transform: translateY(-4px); }
.why-card-icon {
  width: 52px; height: 52px; background: rgba(183,110,121,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 20px; color: var(--rose);
}
.why-card h3 { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: #888; line-height: 1.65; margin: 0; }

/* ============================================================
   HOMEPAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-slider { height: 420px; }
  .why-kirixo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* ── Hero slider: 375×183 aspect ratio on all phones ── */
  .hero-slider-wrap { background: #fdf0f2; }
  .hero-slider {
    height: 0;
    padding-top: 48.8%; /* 183 ÷ 375 = 48.8% — locks to GIVA-style ratio */
    position: relative;
  }
  .hero-slide {
    position: absolute; inset: 0;
    display: none; opacity: 1;
    padding: 0; align-items: center;
  }
  .hero-slide.active { display: flex; }
  /* Text overlay on mobile */
  .hero-slide .container { padding: 0 14px; }
  .hero-slide-content { max-width: 62%; }
  .hero-slide-content .hero-tag { font-size: 9px; padding: 3px 10px; margin-bottom: 5px; letter-spacing: 0.5px; }
  .hero-slide-content .hero-title { font-size: 14px !important; line-height: 1.25; margin-bottom: 6px; }
  .hero-slide-content .hero-sub { display: none; }
  .hero-slide-content .hero-btns { flex-direction: row; gap: 0; margin-bottom: 0; }
  .hero-slide-content .hero-btns .btn-primary { font-size: 11px; padding: 7px 14px; border-radius: 20px; width: auto; justify-content: flex-start; }
  /* Arrows */
  .slider-arrow { width: 28px; height: 28px; font-size: 11px; box-shadow: 0 1px 6px rgba(0,0,0,0.15); }
  .slider-prev { left: 6px; }
  .slider-next { right: 6px; }
  /* Dots */
  .slider-dots { bottom: 8px; gap: 5px; }
  .slider-dot { width: 6px; height: 6px; }
  .slider-dot.active { width: 16px; }
  .cat-icons-section { padding: 16px 0 12px; }
  .cat-icon-img { width: 54px; height: 54px; }
  .cat-icon-img i { font-size: 18px; }
  .cat-icon-label { font-size: 10px; }
  .festival-title { font-size: 20px; }
  .festival-subtitle { font-size: 13px; }
  .festival-deco { display: none; }
  .collection-banners-grid { grid-template-columns: 1fr; gap: 14px; }
  .collection-banner-card { min-height: 220px; }
  .why-kirixo-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 20px 14px; }
  .why-card-icon { width: 44px; height: 44px; font-size: 17px; }
}
