:root {
  --gold: #C9A84C;
  --gold-light: #e8c97a;
  --dark: #1a1a1a;
  --dark2: #222;
  --dark3: #2d2d2d;
  --charcoal: #3a3a3a;
  --text: #2c2c2c;
  --text-muted: #777;
  --bg: #faf8f5;
  --white: #fff;
  --red: #c0392b;
  --green: #27ae60;
  --border: #e8e0d0;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
  --font-body: 'Titillium Web', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
input, textarea, select, button { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.btn { display: inline-block; padding: 13px 32px; border-radius: 4px; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; }
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); letter-spacing: 1px; }
.w-full { width: 100%; justify-content: center; text-align: center; }
.btn-icon { background: none; border: none; cursor: pointer; font-size: 1rem; position: relative; padding: 6px; }

.badge { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.badge-red { background: var(--red); color: #fff; }
.badge-gold { background: var(--gold); color: var(--dark); }
.badge-green { background: var(--green); color: #fff; }
.badge-oos { background: #999; color: #fff; }

.section-header { text-align: center; margin-bottom: 36px; }
.section-sub { font-size: 0.7rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.section-title { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--dark); }

.announcement-bar { background: var(--dark); color: var(--gold); padding: 0 44px 0 16px; font-size: 0.82rem; letter-spacing: 0.5px; display: flex; align-items: center; position: relative; z-index: 100; height: 38px; overflow: hidden; }
.announcement-ticker-wrap { flex: 1; overflow: hidden; position: relative; height: 100%; display: flex; align-items: center; }
.announcement-ticker { display: flex; align-items: center; white-space: nowrap; animation: ticker-scroll 18s linear infinite; }
.announcement-ticker:hover { animation-play-state: paused; }
.ticker-item { display: inline-flex; align-items: center; padding: 0 48px; }
.ticker-sep { color: rgba(201,168,76,0.4); margin: 0 4px; }
.announcement-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--gold); font-size: 1rem; cursor: pointer; z-index: 2; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.header { position: sticky; top: 0; z-index: 99; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
.header-top { background: #f5f1ea; padding: 7px 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.header-top a { color: var(--charcoal); margin-right: 20px; }
.header-top a:hover { color: var(--gold); }
.header-main { padding: 14px 30px; display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo { height: 65px; width: auto; }
.nav { display: none !important; }
.nav a { margin: 0 16px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; color: var(--dark); transition: color 0.2s; }
.nav a:hover { color: var(--gold); }
.cart-count { background: var(--red); color: #fff; border-radius: 50%; font-size: 0.62rem; padding: 1px 5px; font-weight: 700; position: absolute; top: -4px; right: -6px; min-width: 16px; text-align: center; }
.wishlist-count { background: var(--gold); color: var(--dark); border-radius: 50%; font-size: 0.62rem; padding: 1px 5px; font-weight: 700; position: absolute; top: -4px; right: -6px; min-width: 16px; text-align: center; }
.hamburger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.mobile-search-bar { display: none; }
.mobile-menu { display: none; flex-direction: column; padding: 12px 20px; background: var(--white); border-top: 1px solid var(--border); }
.mobile-menu a { padding: 10px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }

.btn-icon { background: none; border: none; cursor: pointer; font-size: 1rem; position: relative; padding: 6px 10px; }
.icon-labeled { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.icon-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); line-height: 1; }
.icon-labeled:hover .icon-label { color: var(--gold); }
.icon-labeled:hover svg { stroke: var(--gold); }

.hero { position: relative; height: 90vh; min-height: 550px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.30) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 60px; max-width: 650px; }
.hero-sub { font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.hero-title { font-family: var(--font-display); font-size: 4.5rem; font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; right: 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 2px; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5)); }

.promo-banner { padding: 40px 30px; max-width: 1200px; margin: 0 auto; }
.promo-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 20px; }
.promo-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px; }
.promo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.promo-card:hover img { transform: scale(1.05); }
.promo-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); color: #fff; }
.promo-info h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 6px 0 4px; }
.promo-info p { font-size: 0.82rem; opacity: 0.85; margin-bottom: 10px; }
.promo-card--big .promo-info { padding: 30px; }
.promo-card--big .promo-info h3 { font-size: 2rem; }

.categories { padding: 56px 0; background: var(--white); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cat-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
  aspect-ratio: 2 / 3;
  display: block;
}

.cat-card:first-child {
  grid-column: 1 / 4;
  aspect-ratio: 16 / 6;
}

.cat-card:nth-child(2) {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 2 / 3;
  min-height: unset;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.cat-card:hover img { transform: scale(1.07); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.42);
  transition: background 0.35s;
  pointer-events: none;
}
.cat-card:hover .cat-overlay { background: rgba(15, 15, 15, 0.58); }

.cat-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  
  pointer-events: none;
}

.cat-body::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

.cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  margin: 0;
}
.cat-card:first-child  .cat-body h3 { font-size: 2rem; }

.cat-count-badge {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.70);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cat-shop-btn {
  pointer-events: auto;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.85);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease,
              background 0.3s, border-color 0.3s, color 0.3s;
}
.cat-card:hover .cat-shop-btn {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.products-section { padding: 80px 0; }
.filter-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.filter-btn { padding: 8px 20px; border: 1.5px solid var(--border); border-radius: 30px; background: none; font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s; text-transform: uppercase; letter-spacing: 1px; }
.filter-btn:hover, .filter-btn.active { background: var(--dark); color: var(--gold); border-color: var(--dark); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.product-actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; }
.product-actions .pa-btn { opacity: 0; transition: opacity 0.3s; }
.product-card:hover .product-actions .pa-btn { opacity: 1; }
.pa-btn { background: rgba(255,255,255,0.95); border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all 0.2s; }
.pa-btn:hover { background: var(--gold); }
.product-bottom-row { display: flex; align-items: center; gap: 8px; margin-top: 2px; }
.product-bottom-row .product-btn { flex: 1; }
.wish-heart-btn { flex-shrink: 0; background: none; border: 1.5px solid #e8e4de; border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.wish-heart-btn:hover { border-color: #e91e63; background: #fce4ec; }
.wish-heart-btn.wishlisted { border-color: #e91e63; background: #fce4ec; }

.wishlist-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.wishlist-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.wishlist-item-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; font-family: var(--font-display); }
.wishlist-item-info p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.wishlist-item-info .price-new { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.wishlist-item-actions { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.wishlist-remove { background: none; border: none; cursor: pointer; color: #bbb; font-size: 1.1rem; }
.wishlist-add-cart { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 7px 12px; background: var(--dark); color: var(--gold); border: none; border-radius: 4px; cursor: pointer; white-space: nowrap; }
.wishlist-add-cart:hover { background: var(--gold); color: var(--dark); }
.product-info { padding: 12px 14px 14px; }
.product-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.product-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; line-height: 1.3; }
.product-brand { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-new { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.price-old { font-size: 0.85rem; text-decoration: line-through; color: var(--text-muted); }
.price-save { font-size: 0.7rem; font-weight: 600; color: var(--red); }
.product-btn { width: 100%; padding: 11px; border: 2px solid var(--dark); background: none; font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: all 0.2s; }
.product-btn:hover { background: var(--dark); color: var(--gold); }
.product-btn.oos-btn { border-color: #ccc; color: #ccc; cursor: default; }
.product-btn.notify-btn { border-color: var(--gold); color: var(--gold); cursor: pointer; }
.product-btn.notify-btn:hover { background: var(--gold); color: var(--dark); }
.loading-spinner { text-align: center; padding: 60px; color: var(--text-muted); grid-column: 1/-1; }
.load-more-wrap { text-align: center; }

.deals-strip { padding: 60px 0; background: var(--dark); color: var(--white); }
.deal-timer-wrap { text-align: center; margin-bottom: 40px; }
.deal-timer-wrap h2 { font-family: var(--font-display); font-size: 2rem; color: var(--gold-light); margin-bottom: 20px; }
.countdown { display: flex; justify-content: center; gap: 20px; }
.cd-block { text-align: center; }
.cd-block span { display: block; font-size: 2.5rem; font-weight: 700; color: var(--white); background: var(--dark3); padding: 10px 20px; border-radius: 8px; min-width: 70px; }
.cd-block label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; display: block; }
.deal-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.deal-card { background: var(--dark3); border-radius: var(--radius); overflow: hidden; position: relative; }
.deal-card img { width: 100%; height: 200px; object-fit: cover; }
.deal-info { padding: 14px; }
.deal-info h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 4px; }
.deal-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.deal-price-row .new { color: var(--gold); font-weight: 700; }
.deal-price-row .old { text-decoration: line-through; color: #888; font-size: 0.85rem; }
.progress-bar { background: var(--charcoal); border-radius: 20px; height: 6px; margin-bottom: 8px; }
.progress-fill { background: var(--gold); height: 100%; border-radius: 20px; }
.deal-stock { font-size: 0.72rem; color: #aaa; }

.testimonials-section { padding: 60px 0; background: #fff; overflow: hidden; }
.testimonials-section .section-title em { font-style: italic; color: var(--gold); }
.testi-track-wrap { position: relative; overflow: hidden; margin-top: 32px; }
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testi-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }
.testi-track {
  display: flex; gap: 20px;
  animation: testiScroll 32s linear infinite;
  width: max-content;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testiScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  background: #faf8f4;
  border: 1px solid #ede8e0;
  border-radius: 12px;
  padding: 20px 22px 18px;
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.testi-stars { color: #C9A84C; font-size: 1rem; letter-spacing: 2px; }
.testi-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  font-weight: 400;
  flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 12px; margin-top: 4px;
  border-top: 1px solid #ede8e0; padding-top: 14px;
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  color: #1a1209; flex-shrink: 0;
}
.testi-name { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; color: #1a1a1a; }
.testi-location { font-size: 0.72rem; color: #aaa; font-weight: 400; }

.why-us { padding: 60px 0; background: #f5f1ea; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-item { text-align: center; padding: 30px 20px; }
.why-icon { font-size: 2.5rem; margin-bottom: 16px; }
.why-item h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 10px; }
.why-item p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

.insta-strip { padding: 60px 0; background: var(--white); }
.insta-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.insta-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: opacity 0.3s; }
.insta-grid a:hover img { opacity: 0.8; }

.about { padding: 60px 0; }
.about-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 720px; margin: 0 auto; gap: 0; }
.about-text .section-sub { text-align: center; }
.about-text h2 { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; margin-bottom: 20px; }
.about-text h2 em { color: var(--gold); }
.about-text p { font-size: 0.9rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }

.faq { padding: 80px 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 20px 0; display: flex; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 0.92rem; }
.faq-q span { color: var(--gold); font-size: 1.2rem; }
.faq-a { display: none; padding: 0 0 20px; font-size: 0.85rem; line-height: 1.8; color: var(--text-muted); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span { transform: rotate(45deg); display: inline-block; }

.contact { padding: 80px 0; background: #f5f1ea; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2, .contact-form h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 20px; }
.contact-info p { font-size: 0.88rem; line-height: 1.8; margin-bottom: 10px; }
.contact-info a { color: var(--gold); }
.contact-form form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input, .contact-form textarea { padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.88rem; background: var(--white); }

.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 65px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 16px; }
.social-links a { font-size: 0.8rem; color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 0.82rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #333; padding: 20px; text-align: center; font-size: 0.78rem; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; display: none; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; right: -420px; top: 0; bottom: 0; width: 400px; background: var(--white); z-index: 201; transition: right 0.35s ease; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
#wishlist-sidebar { z-index: 202; }
#wishlist-overlay { z-index: 201; }
.cart-header { padding: 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: var(--font-display); font-size: 1.4rem; }
.cart-header button { background: none; border: none; font-size: 1.4rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.empty-cart { text-align: center; color: var(--text-muted); padding: 60px 20px; }
.cart-item { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.cart-item-info p { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item-qty button { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; width: 26px; height: 26px; cursor: pointer; font-size: 0.9rem; }
.cart-item-qty span { font-size: 0.9rem; font-weight: 600; }
.cart-item-price { font-weight: 700; font-size: 0.95rem; text-align: right; }
.cart-item-remove { cursor: pointer; color: #ccc; font-size: 1.1rem; margin-top: 4px; }
.cart-footer { padding: 16px; border-top: 1px solid var(--border); }
.promo-row { display: flex; gap: 8px; margin-bottom: 14px; }
.promo-row input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.85rem; }
.promo-row button { padding: 10px 16px; background: var(--dark); color: var(--gold); border: none; border-radius: 6px; font-size: 0.82rem; font-weight: 600; cursor: pointer; }
.total-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.88rem; }
.total-final { font-weight: 700; font-size: 1rem; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 1.4rem; cursor: pointer; z-index: 10; }

.product-modal { background: var(--white); border-radius: var(--radius); max-width: 820px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.pm-content { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.pm-gallery { position: relative; }
.pm-main-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pm-thumbs { display: flex; gap: 8px; padding: 12px; }
.pm-thumb { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; }
.pm-thumb.active { border-color: var(--gold); }
.pm-details { padding: 30px; }
.pm-details .product-cat { margin-bottom: 6px; }
.pm-details .product-name { font-size: 1.7rem; margin-bottom: 6px; }
.pm-details .product-brand { margin-bottom: 16px; }
.pm-details .product-price { margin-bottom: 20px; font-size: 1.2rem; }
.pm-details p { font-size: 0.85rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.pm-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pm-qty-row label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; }
.qty-ctrl { display: flex; align-items: center; gap: 10px; }
.qty-ctrl button { background: var(--bg); border: 1.5px solid var(--border); width: 32px; height: 32px; border-radius: 4px; font-size: 1.1rem; cursor: pointer; }
.qty-ctrl span { font-weight: 700; font-size: 1rem; min-width: 20px; text-align: center; }

.checkout-modal { background: var(--white); border-radius: var(--radius); max-width: 540px; width: 100%; padding: 40px; position: relative; max-height: 90vh; overflow-y: auto; }
.checkout-modal h2 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 24px; }
.checkout-steps { display: flex; gap: 0; margin-bottom: 30px; border-bottom: 2px solid var(--border); }
.step { flex: 1; text-align: center; padding: 10px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.step.active { color: var(--gold); border-bottom-color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.toggle-group { display: flex; border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; }
.toggle-btn { flex: 1; padding: 10px; border: none; background: none; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.toggle-btn.active { background: var(--dark); color: var(--gold); }
#checkout-step1 input, #checkout-step2 input, #checkout-step2 select, #checkout-step3 input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.88rem; margin-bottom: 12px; }
.radio-group { display: flex; flex-direction: column; gap: 12px; margin: 12px 0; }
.radio-opt { padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; font-size: 0.88rem; display: flex; align-items: center; gap: 12px; }
.radio-opt:hover { border-color: var(--gold); }
.pickup-address-box { background: #f5f1ea; border-radius: 8px; padding: 16px; font-size: 0.85rem; line-height: 1.7; margin: 12px 0; }
.order-summary-mini { background: var(--bg); border-radius: 8px; padding: 16px; margin-bottom: 16px; font-size: 0.85rem; }

.auth-modal { background: var(--white); border-radius: var(--radius); max-width: 420px; width: 100%; padding: 40px; position: relative; }
.auth-modal input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.88rem; margin-bottom: 12px; }

.notify-modal { background: var(--white); border-radius: var(--radius); max-width: 400px; width: 100%; padding: 40px; position: relative; text-align: center; }
.notify-modal h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 10px; }
.notify-modal p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.notify-modal input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 6px; font-size: 0.88rem; margin-bottom: 12px; }

.chat-trigger { position: fixed; bottom: 30px; right: 30px; z-index: 150; background: var(--dark); border: 3px solid var(--gold); border-radius: 50%; width: 60px; height: 60px; cursor: pointer; padding: 0; overflow: hidden; box-shadow: var(--shadow-lg); }
.chat-trigger img { width: 100%; height: 100%; object-fit: cover; }
.chatbox { position: fixed; bottom: 100px; right: 30px; z-index: 151; width: 340px; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; display: none; flex-direction: column; border: 1px solid var(--border); }
.chatbox.open { display: flex; }
.chat-header { background: var(--dark); color: var(--white); padding: 14px 16px; display: flex; align-items: center; gap: 10px; }
.chat-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.chat-header strong { font-size: 0.9rem; display: block; }
.online-dot { font-size: 0.72rem; color: var(--green); }
.chat-header button { margin-left: auto; background: none; border: none; color: #fff; font-size: 1.1rem; cursor: pointer; }
.chat-messages { padding: 16px; min-height: 200px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { padding: 10px 14px; border-radius: 12px; font-size: 0.85rem; max-width: 85%; line-height: 1.5; }
.chat-msg.bot { background: #f0f0f0; align-self: flex-start; }
.chat-msg.user { background: var(--dark); color: var(--gold); align-self: flex-end; }
.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.chat-quick-replies button { padding: 6px 12px; border: 1.5px solid var(--border); border-radius: 20px; background: none; font-size: 0.75rem; cursor: pointer; }
.chat-quick-replies button:hover { border-color: var(--gold); }
.chat-input-row { display: flex; border-top: 1px solid var(--border); }
.chat-input-row input { flex: 1; padding: 14px; border: none; outline: none; font-size: 0.85rem; }
.chat-input-row button { padding: 14px 18px; background: var(--gold); border: none; font-size: 0.82rem; font-weight: 700; cursor: pointer; }

.search-overlay { position: fixed; inset: 0; background: rgba(15,15,15,0.95); z-index: 400; display: none; flex-direction: column; align-items: center; padding: 120px 20px 40px; }
.search-overlay.open { display: flex; }
.search-box input { font-family: var(--font-display); font-size: 2.5rem; background: none; border: none; border-bottom: 2px solid var(--gold); color: var(--white); text-align: center; width: 100%; max-width: 600px; outline: none; padding: 10px; }
.search-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; width: 100%; max-width: 800px; overflow-y: auto; }

input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold) !important; }
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--dark); color: var(--white); padding: 14px 28px; border-radius: 8px; font-size: 0.88rem; z-index: 9999; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.toast.show { opacity: 1; }

@media (max-width: 1100px) {
  
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card:first-child { grid-column: 1 / 3; aspect-ratio: 16 / 7; }
  .cat-card:nth-child(2) { grid-column: 1 / 2; grid-row: auto; aspect-ratio: 2 / 3; }
  .cat-body h3 { font-size: 1.25rem; }
  .cat-card:first-child .cat-body h3 { font-size: 1.7rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .deal-products { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
  .hero-content { padding: 0 30px; }
  .promo-grid { grid-template-columns: 1fr; }
  
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card { aspect-ratio: 3 / 4; }
  .cat-card:first-child { grid-column: 1 / 3; aspect-ratio: 16 / 8; }
  .cat-card:nth-child(2) { grid-column: auto; grid-row: auto; aspect-ratio: 3 / 4; }
  .cat-body h3 { font-size: 1rem; }
  .cat-card:first-child .cat-body h3 { font-size: 1.4rem; }
  .cat-card:nth-child(2) .cat-body h3 { font-size: 1.1rem; }
  
  .cat-shop-btn { opacity: 1; transform: translateY(0); padding: 8px 18px; font-size: 0.6rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .hamburger { display: block; }
  .header-top { display: none; }
  .pm-content { grid-template-columns: 1fr; }
  .deal-products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; gap: 8px; }
  .cat-card { aspect-ratio: 4 / 3; }
  .cat-card:first-child { grid-column: 1; aspect-ratio: 4 / 3; }
  .cat-card:nth-child(2) { grid-column: 1; grid-row: auto; aspect-ratio: 4 / 3; }
  .cat-body h3 { font-size: 1.2rem; }
  .cat-shop-btn { opacity: 1; transform: translateY(0); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
  .section-title { font-size: 2rem; }
}

.header-top { display: none !important; }
.header-main { padding: 14px 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-actions .btn-icon { color: var(--dark); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6px 10px; border-radius: 6px; transition: background 0.2s, color 0.2s; }
.header-actions .btn-icon:hover { background: var(--bg); }
.header-actions .btn-icon:hover svg { stroke: var(--gold); }
.header-actions .btn-icon svg { flex-shrink: 0; }
.btn-icon { position: relative; }

.flash-sale-bar { background: linear-gradient(90deg, #c0392b, #e74c3c, #c0392b); background-size: 200% 100%; animation: flashBg 2s ease infinite; color: #fff; text-align: center; padding: 9px 40px; font-size: 0.82rem; display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; z-index: 100; }
@keyframes flashBg { 0%,100%{background-position:0%} 50%{background-position:100%} }
.flash-fire { font-size: 1.1rem; animation: pulse 1s ease infinite alternate; }
@keyframes pulse { from{opacity:0.7;transform:scale(0.95)} to{opacity:1;transform:scale(1.05)} }
.flash-countdown-mini { background: rgba(0,0,0,0.3); padding: 3px 10px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid rgba(201,168,76,0.4); color: var(--gold); transition: all 0.2s; }
.social-icon:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

.why-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.2); }

#footer-year {  }

.newsletter-section { background: var(--dark); padding: 52px 0; }
.newsletter-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 620px; margin: 0 auto; gap: 30px; }
.newsletter-text .section-sub { text-align: center; }
.newsletter-text h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--white); margin-bottom: 10px; }
.newsletter-text p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.newsletter-inline-row { display: flex; gap: 0; width: 100%; }
.newsletter-inline-row input { flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.07); border: 1.5px solid rgba(201,168,76,0.3); border-right: none; border-radius: 6px 0 0 6px; color: var(--white); font-size: 0.9rem; font-family: var(--font-body); transition: border-color 0.2s; }
.newsletter-inline-row input:focus { border-color: var(--gold); outline: none; }
.newsletter-inline-row input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-inline-row .btn { border-radius: 0 6px 6px 0; white-space: nowrap; }
.newsletter-consent { display: flex; align-items: flex-start; gap: 10px; justify-content: center; }
.consent-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.consent-label input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
@media (max-width: 768px) { .newsletter-wrap { grid-template-columns: 1fr; gap: 30px; } }

.flash-sale-section { padding: 60px 0; background: linear-gradient(135deg, #1a0a0a 0%, #2d1010 50%, #1a0a0a 100%); }
.flash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; flex-wrap: wrap; gap: 16px; }
.flash-title-wrap { display: flex; align-items: center; gap: 12px; }
.flash-title-wrap h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--white); font-weight: 300; }
.flash-bolt { font-size: 1.8rem; animation: pulse 1s ease infinite alternate; }
.flash-timer-wrap { display: flex; align-items: center; gap: 12px; }
.flash-ends-label { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.flash-countdown { display: flex; align-items: center; gap: 6px; }
.fcd-block { text-align: center; }
.fcd-block span { display: block; font-size: 1.8rem; font-weight: 700; color: var(--white); background: rgba(255,255,255,0.1); padding: 6px 14px; border-radius: 6px; min-width: 54px; border: 1px solid rgba(201,168,76,0.3); }
.fcd-block label { font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-top: 4px; }
.fcd-sep { font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.flash-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flash-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); overflow: hidden; position: relative; transition: transform 0.3s, border-color 0.3s; }
.flash-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.flash-card-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; }
.flash-wish-btn { position: absolute; top: 12px; right: 12px; background: rgba(255,255,255,0.92); border: none; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2); transition: background 0.2s; z-index: 2; }
.flash-wish-btn:hover { background: #fce4ec; }
.flash-wish-btn.wishlisted { background: #fce4ec; }
.flash-wish-btn.wishlisted svg { stroke: #e91e63; fill: #e91e63; }
.flash-card img { width: 100%; height: 200px; object-fit: cover; }
.flash-card-info { padding: 14px; }
.flash-card-info h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.flash-price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.flash-price-new { color: var(--gold); font-weight: 700; font-size: 1rem; }
.flash-price-old { text-decoration: line-through; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.flash-progress { background: rgba(255,255,255,0.1); border-radius: 20px; height: 5px; margin-bottom: 8px; }
.flash-progress-fill { background: linear-gradient(90deg, var(--gold), var(--gold-light)); height: 100%; border-radius: 20px; }
.flash-stock-text { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
@media (max-width: 768px) { .flash-products { grid-template-columns: repeat(2, 1fr); } .flash-header { flex-direction: column; } }

.delivery-rates-info { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.rates-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; width: 100%; }
.rate-pill { background: #f5f1ea; border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; color: var(--charcoal); }

.product-img-wrap { position: relative; }
.product-img-second { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.35s ease; }
.product-card:hover .product-img-second { opacity: 1; }
.product-card:hover .product-img-primary { opacity: 0; }
.product-img-primary { transition: opacity 0.35s ease; }

@keyframes floatImg { 0%,100%{transform:scale(1) translateY(0)} 50%{transform:scale(1.04) translateY(-6px)} }
.product-img-float { animation: floatImg 3.5s ease-in-out infinite; }
.product-card:hover .product-img-float { animation-play-state: running; }

.contact-info p svg { color: var(--gold); }

.chat-support-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), #e8c96a);
  color: #1a1209;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.request-section {
  background: linear-gradient(180deg, #0e0e0e 0%, #141414 100%);
  padding: 80px 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.request-card {
  max-width: 780px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.request-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.request-form-wrap { flex: 1; }
.request-upload-area {
  border: 2px dashed rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  margin-bottom: 20px;
  color: #777;
}
.request-upload-area:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.request-upload-area svg { color: var(--gold); margin-bottom: 10px; }
.request-upload-area p { font-size: 0.9rem; margin-bottom: 12px; }
.request-upload-area p span { color: #555; }
.upload-btn {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}
.request-fields { display: flex; flex-direction: column; gap: 12px; }
.request-fields input,
.request-fields textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.request-fields input:focus,
.request-fields textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.request-fields input::placeholder,
.request-fields textarea::placeholder { color: #555; }
.request-fields textarea { resize: vertical; }
@media (max-width: 640px) {
  .request-card { flex-direction: column; padding: 24px; gap: 20px; }
  .request-icon { margin: 0 auto; }
}

.order-success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.order-success-box {
  background: #fff;
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 48px 40px;
  position: relative;
  animation: popIn 0.4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn { from { opacity:0; transform:scale(0.8) } to { opacity:1; transform:scale(1) } }
.order-success-checkmark {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  align-items: start;
}
.footer-logo { display: none; }  
.footer-brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.footer-brand p { font-size: 0.83rem; line-height: 1.7; margin-bottom: 18px; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col a,
.footer-col p { display: block; font-size: 0.8rem; margin-bottom: 7px; transition: color 0.2s; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--gold); }
.footer-rate-item { display: flex !important; align-items: center; gap: 0; font-size: 0.8rem; margin-bottom: 9px !important; color: rgba(255,255,255,0.65); }
.footer-bottom { border-top: 1px solid #333; padding: 18px 20px; text-align: center; font-size: 0.76rem; }

.header-main { padding: 10px 16px; gap: 8px; }
.logo { height: 54px; width: auto; max-width: 160px; object-fit: contain; }

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-bottom: 12px;
  row-gap: 3px;
}
.price-new  { font-size: 1rem; font-weight: 700; white-space: nowrap; }
.price-old  { font-size: 0.78rem; white-space: nowrap; }
.price-save { font-size: 0.68rem; font-weight: 700; color: var(--red); background: rgba(192,57,43,0.08); padding: 2px 6px; border-radius: 10px; white-space: nowrap; }

.request-section { padding: 60px 0; }
.request-card {
  max-width: 680px;
  margin: 32px auto 0;
  padding: 32px 28px;
  gap: 24px;
}
.request-icon {
  width: 64px;
  height: 64px;
}
.request-icon svg { width: 36px; height: 36px; }
.request-upload-area { padding: 20px 16px; margin-bottom: 16px; }
.request-upload-area svg { width: 28px; height: 28px; }
.request-upload-area p { font-size: 0.85rem; margin-bottom: 10px; }
.request-fields input,
.request-fields textarea { padding: 11px 14px; font-size: 0.86rem; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / 3; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .deal-products { grid-template-columns: repeat(2, 1fr); }

  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card:first-child { grid-column: 1 / 3; aspect-ratio: 16 / 7; }
  .cat-card:nth-child(2) { grid-column: 1 / 2; grid-row: auto; aspect-ratio: 2 / 3; }
}

@media (max-width: 768px) {
  
  .header-main { padding: 10px 14px; gap: 6px; }
  .logo { height: 46px; max-width: 140px; }
  .nav { display: none; }
  .hamburger { display: block; }
  .header-top { display: none !important; }
  .header-actions { gap: 2px; }
  .icon-label { display: none; } 
  .btn-icon { padding: 7px; }

  
  .hero { height: 75vh; min-height: 460px; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-title { font-size: 2.4rem; }
  .hero-desc { font-size: 0.88rem; }

  
  .promo-grid { grid-template-columns: 1fr; }

  
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; }
  .cat-card { aspect-ratio: 3 / 4 !important; }
  .cat-card:first-child { grid-column: auto !important; aspect-ratio: 3 / 4 !important; }
  .cat-card:nth-child(2) { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 3 / 4 !important; }
  .cat-body h3 { font-size: 1rem; }
  .cat-card:first-child .cat-body h3 { font-size: 1rem; }
  .cat-card:nth-child(2) .cat-body h3 { font-size: 1rem; }
  .cat-shop-btn { opacity: 1; transform: translateY(0); padding: 7px 16px; font-size: 0.58rem; }

  
  .product-actions .pa-btn { opacity: 1; }
  .pa-btn { width: 30px; height: 30px; }
  .wish-heart-btn { width: 34px; height: 34px; }

  
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-name { font-size: 1rem; }
  .product-info { padding: 12px; }
  
  .product-price { gap: 4px 6px; }
  .price-save { font-size: 0.62rem; }

  
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-item { padding: 20px 12px; }
  .why-icon { width: 50px; height: 50px; }

  
  .contact-wrap { grid-template-columns: 1fr; gap: 30px; }
  .about-text h2 { font-size: 2rem; }

  
  .newsletter-inline-row { flex-direction: column; }
  .newsletter-inline-row input { border-right: 1.5px solid rgba(201,168,76,0.3); border-radius: 6px; }
  .newsletter-inline-row .btn { border-radius: 6px; width: 100%; }

  
  .request-card { flex-direction: column; padding: 20px 16px; gap: 16px; align-items: center; }
  .request-icon { margin: 0 auto; }
  .request-form-wrap { width: 100%; }
  .request-fields input,
  .request-fields textarea { width: 100%; box-sizing: border-box; }
  .request-upload-area { width: 100%; box-sizing: border-box; }
  .request-section .section-title { font-size: 2rem; }

  
  .newsletter-text h2 { font-size: 1.7rem; }

  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 16px 32px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-logo { height: 50px; }

  
  .cart-sidebar { width: 100%; right: -100%; }

  
  .pm-content { grid-template-columns: 1fr; }
  .checkout-modal { padding: 24px 16px; }

  
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  
  .section-title { font-size: 2.1rem; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  
  .header-main { padding: 8px 12px; }
  .logo { height: 40px; max-width: 120px; }

  
  .hero-title { font-size: 2rem; }
  .hero { height: 70vh; min-height: 420px; }

  
  .cat-grid { grid-template-columns: 1fr !important; gap: 8px; padding: 0 12px; }
  .cat-card { aspect-ratio: 16 / 8 !important; }
  .cat-card:first-child { grid-column: 1 !important; aspect-ratio: 16 / 8 !important; }
  .cat-card:nth-child(2) { grid-column: 1 !important; grid-row: auto !important; aspect-ratio: 16 / 8 !important; }
  .cat-body h3 { font-size: 1.2rem; }
  .cat-card:first-child .cat-body h3 { font-size: 1.2rem; }

  
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-name { font-size: 0.92rem; }
  .product-info { padding: 10px; }
  .price-new { font-size: 0.92rem; }
  .price-old { font-size: 0.72rem; }
  .price-save { font-size: 0.6rem; padding: 1px 5px; }
  .product-btn { font-size: 0.68rem; padding: 9px 6px; letter-spacing: 0.8px; }

  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; padding: 28px 16px 24px; }
  .footer-brand { grid-column: 1; }
  .footer-col h4 { margin-bottom: 10px; }

  
  .why-grid { grid-template-columns: 1fr 1fr; }

  
  .section-title { font-size: 1.9rem; }
  .container { padding: 0 14px; }

  
  .search-results { grid-template-columns: repeat(2, 1fr); }
  .search-box input { font-size: 1.6rem; }

  
  .request-card { padding: 16px 14px; }
}

.announcement-bar { transition: none; }

.catpage-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.catpage-overlay.open {
  transform: translateX(0);
}

.catpage-hero {
  position: relative;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-color: #1a1209;
}
@media (max-width: 600px) { .catpage-hero { height: 180px; } }

.catpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,18,9,0.72) 0%, rgba(26,18,9,0.45) 100%);
}
.catpage-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 28px 32px;
}
@media (max-width: 600px) { .catpage-hero-content { padding: 20px; } }

.catpage-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  width: fit-content;
  transition: background 0.2s;
}
.catpage-back:hover { background: rgba(255,255,255,0.28); }

.catpage-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
@media (max-width: 600px) { .catpage-title { font-size: 1.7rem; } }

.catpage-subtitle {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  letter-spacing: 0.5px;
}

.catpage-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 60px;
}
@media (max-width: 600px) { .catpage-content { padding: 24px 14px 48px; } }

.catpage-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1209;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8dfc9;
  letter-spacing: 0.3px;
}
.catpage-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.catpage-dot--green { background: #1a7f37; }
.catpage-dot--red   { background: #cf222e; }

.catpage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 8px;
}
@media (max-width: 500px) {
  .catpage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.catpage-grid--oos .product-card {
  opacity: 0.72;
}

.catpage-empty {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  font-size: 1rem;
  font-style: italic;
}

.newsletter-section {
  background: #111;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 36px 0;
}
.newsletter-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.newsletter-text {
  flex-shrink: 0;
}
.newsletter-text .section-sub {
  text-align: left;
  font-size: 0.65rem;
  margin-bottom: 3px;
}
.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
}
.newsletter-text > p { display: none; }
.newsletter-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.newsletter-inline-row { display: flex; width: 100%; }
.newsletter-inline-row input {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-right: none;
  border-radius: 5px 0 0 5px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.newsletter-inline-row input:focus { border-color: var(--gold); outline: none; }
.newsletter-inline-row input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-inline-row .btn {
  border-radius: 0 5px 5px 0;
  white-space: nowrap;
  padding: 11px 22px;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
}
.newsletter-consent { display: flex; }
.consent-label {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 0.71rem;
  color: rgba(255,255,255,0.35);
}
.consent-label input[type="checkbox"] {
  accent-color: var(--gold);
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.footer-acc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: default;           
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.acc-chevron { display: none; }

.footer-acc-body {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
}

.footer-acc-body a {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-acc-body a:hover { color: var(--gold); }

@media (max-width: 768px) {

  .footer-accordion {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  
  .footer-acc-toggle {
    cursor: pointer;
    margin-bottom: 0;
    padding: 13px 0;
    border-bottom: none;    
  }

  
  .acc-chevron {
    display: block;
    stroke: rgba(255,255,255,0.2);
    flex-shrink: 0;
    transition: transform 0.3s ease, stroke 0.3s ease;
  }
  .footer-accordion.acc-open .acc-chevron {
    transform: rotate(180deg);
    stroke: rgba(255,255,255,0.3);
  }

  
  .footer-acc-body {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.38s ease, padding-bottom 0.3s ease;
    padding-bottom: 0;
  }
  .footer-accordion.acc-open .footer-acc-body {
    max-height: 500px !important;
    padding-bottom: 10px;
  }

  
  .footer-acc-body a {
    padding: 5px 0;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .newsletter-section { padding: 26px 0; }
  .newsletter-wrap { flex-wrap: wrap; gap: 14px; }
  .newsletter-text h2 { font-size: 1.1rem; white-space: normal; }
  .newsletter-inline-row { flex-direction: column; gap: 8px; }
  .newsletter-inline-row input {
    border-right: 1.5px solid rgba(201,168,76,0.3);
    border-radius: 5px;
  }
  .newsletter-inline-row .btn { border-radius: 5px; width: 100%; }
}

.why-us { padding: 44px 0; background: #f5f1ea; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.why-item { text-align: center; padding: 28px 18px; border-right: 1px solid rgba(0,0,0,0.06); }
.why-item:last-child { border-right: none; }
.why-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; color: var(--gold); box-shadow: 0 3px 10px rgba(201,168,76,0.15); }
.why-icon svg { width: 22px; height: 22px; }
.why-item h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }

.about { padding: 44px 0; background: var(--white); }
.about-wrap {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.about-text { flex: 1; }
.about-text .section-sub { text-align: left; }
.about-text h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.about-text h2 em { color: var(--gold); font-style: italic; }
.about-text p { font-size: 0.82rem; line-height: 1.65; color: var(--text-muted); margin-bottom: 8px; }
.about-text .btn { margin-top: 10px; padding: 10px 24px; font-size: 0.75rem; }

.about-img-small {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.2);
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .why-us { padding: 32px 0; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item { padding: 20px 12px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .why-item:nth-child(2n) { border-left: 1px solid rgba(0,0,0,0.06); }
  .why-item:nth-last-child(-n+2) { border-bottom: none; }

  .about { padding: 32px 0; }
  .about-wrap { flex-direction: column; gap: 20px; text-align: center; }
  .about-text .section-sub { text-align: center; }
  .about-img-small { width: 100px; height: 100px; }
}

.flash-sale-section {
  background: linear-gradient(135deg, #1a1209 0%, #2d1f0a 50%, #1a1209 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.flash-sale-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(201,168,76,0.03) 40px,
    rgba(201,168,76,0.03) 80px
  );
}
.flash-sale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.flash-sale-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flash-fire-big { font-size: 2rem; }
.flash-sale-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #C9A84C;
  margin: 0;
  letter-spacing: 1px;
}
.flash-countdown-section {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flash-ends-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flash-cd-blocks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.flash-cd-block {
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 6px 10px;
  text-align: center;
  min-width: 44px;
}
.flash-cd-block span {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
}
.flash-cd-block label {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flash-cd-sep {
  font-size: 1.3rem;
  color: #C9A84C;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 12px;
}

.flash-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .flash-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.flash-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s, border-color 0.22s;
}
.flash-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.5);
}
.flash-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.flash-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.flash-card-info {
  padding: 14px;
}
.flash-card-info h4 {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.flash-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.flash-price-new {
  color: #C9A84C;
  font-weight: 700;
  font-size: 1rem;
}
.flash-price-old {
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
  text-decoration: line-through;
}
.flash-progress {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  height: 4px;
  margin-bottom: 6px;
  overflow: hidden;
}
.flash-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #C9A84C, #e8c96a);
  border-radius: 10px;
  transition: width 0.5s;
}
.flash-stock-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  margin: 0 0 10px;
}

.btn-outline-white {
  color: #fff !important;
  border-color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

.about-wrap--text-only {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: block !important;
}
.about-wrap--text-only .about-text {
  max-width: 100%;
}
.about-wrap--text-only .section-sub,
.about-wrap--text-only h2,
.about-wrap--text-only p {
  text-align: center;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.brand-name-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #1a1209;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.brand-name-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  color: #C9A84C;
  letter-spacing: 5px;
  text-transform: uppercase;
}
@media (max-width: 480px) {
  .brand-name-main { font-size: 1.15rem; letter-spacing: 3px; }
  .brand-name-sub  { font-size: 0.48rem; letter-spacing: 4px; }
}

.chat-trigger {
  position: static !important;
}
.chat-trigger-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 152;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.chat-trigger-label {
  background: #1a1209;
  color: #e8c96a;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.45);
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.5);
  animation: chatLabelFloat 3s ease-in-out infinite;
}
@keyframes chatLabelFloat {
  0%, 100% { opacity: 1;   transform: translateY(0px);  }
  50%       { opacity: 0.7; transform: translateY(-3px); }
}
@media (max-width: 768px) {
  .chat-trigger-wrap { bottom: 86px; right: 16px; }
}

.mobile-bottom-nav { display: none; }

@media (max-width: 768px) {

  
  .header-actions { display: none !important; }

  
  .mobile-search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f3f0;
    border: 1.5px solid #e0dbd3;
    border-radius: 24px;
    padding: 7px 14px;
    flex: 1;
    max-width: 200px;
    transition: border-color 0.2s, background 0.2s;
  }
  .mobile-search-bar:focus-within {
    border-color: #C9A84C;
    background: #fff;
    max-width: 240px;
  }
  .mobile-search-bar input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--dark);
    min-width: 0;
  }
  .mobile-search-bar input::placeholder { color: #bbb; }
  .mobile-search-clear {
    background: none; border: none; color: #aaa; font-size: 0.85rem;
    cursor: pointer; padding: 0; line-height: 1; flex-shrink: 0;
  }

  
  body { padding-bottom: 68px; }

  
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    height: 66px;
    align-items: stretch;
    background: #ffffff;
    border-top: 1px solid #e8e4de;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    animation: mbnSlideUp 0.55s cubic-bezier(0.34,1.56,0.64,1) both;
  }
  @keyframes mbnSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }

  
  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 2px 6px;
    position: relative;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    
    opacity: 0;
    animation: mbnItemPop 0.4s cubic-bezier(0.34,1.56,0.64,1) forwards;
  }
  .mbn-item:nth-child(1) { animation-delay: 0.12s; }
  .mbn-item:nth-child(2) { animation-delay: 0.20s; }
  .mbn-item:nth-child(3) { animation-delay: 0.28s; }
  .mbn-item:nth-child(4) { animation-delay: 0.36s; }
  @keyframes mbnItemPop {
    from { opacity: 0; transform: translateY(16px) scale(0.75); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }

  
  .mbn-item:active .mbn-icon {
    transform: scale(0.8);
    background: linear-gradient(135deg, #b8963e, #d4b84a);
    color: #1a1209;
  }
  .mbn-item:active .mbn-label { color: #f0d060; }

  
  .mbn-item::before {
    content: '';
    position: absolute;
    inset: 6px 4px;
    border-radius: 12px;
    background: rgba(201,168,76,0.12);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .mbn-item:active::before { opacity: 1; }

  
  .mbn-icon {
    position: relative;
    background: linear-gradient(135deg, #C9A84C, #e8c96a);
    color: #1a1209 !important;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(201,168,76,0.35);
    border: 2px solid #fff;
    animation: iconPulse 2.5s ease-in-out infinite;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
                background 0.2s;
  }
  .mbn-icon svg { stroke: #1a1209; }
  @keyframes iconPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(201,168,76,0.35); }
    50%       { box-shadow: 0 4px 22px rgba(201,168,76,0.6); }
  }

  
  .mbn-cart .mbn-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    animation: cartPulse 2.5s ease-in-out infinite;
  }
  @keyframes cartPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
    50%       { box-shadow: 0 4px 26px rgba(201,168,76,0.7); }
  }
  .mbn-cart:active .mbn-icon {
    transform: scale(0.82) !important;
    background: linear-gradient(135deg, #b8963e, #d4b84a) !important;
  }

  
  .mbn-label {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #888;
    line-height: 1;
    transition: color 0.2s;
  }
  .mbn-item:active .mbn-label { color: #C9A84C; }

  
  .mbn-badge {
    position: absolute;
    top: -5px; right: -6px;
    min-width: 17px; height: 17px;
    background: #e74c3c;
    color: #fff;
    font-size: 0.54rem;
    font-weight: 800;
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid #fff;
    line-height: 1;
    animation: badgeBounce 0.4s cubic-bezier(0.34,1.56,0.64,1);
  }
  .mbn-badge--gold {
    background: linear-gradient(135deg,#C9A84C,#e8c96a);
    color: #1a1209;
    border-color: #fff;
  }
  @keyframes badgeBounce {
    from { transform: scale(0) rotate(-10deg); }
    to   { transform: scale(1) rotate(0deg);   }
  }

  
  .mbn-item + .mbn-item::after {
    content: '';
    position: absolute;
    left: 0; top: 16px; bottom: 16px;
    width: 1px;
    background: #e8e4de;
  }

  
  a.mbn-item {
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
  }

  
  a.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  a.hamburger:hover { color: var(--gold); }

  
  body:has(.mobile-bottom-nav) main,
  body:has(.mobile-bottom-nav) .contact-page-body,
  body:has(.mobile-bottom-nav) .faq-page-body {
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .testimonials-section { padding: 56px 0; }
  .testi-card { width: 260px; padding: 22px 20px 18px; }
  .testi-text { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .testimonials-section { padding: 44px 0; }
  .testi-card { width: 230px; padding: 18px 16px 14px; }
}

#profile-sidebar { z-index: 202; }
#profile-overlay  { z-index: 201; }

.prof-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #faf8f4;
  overflow-x: auto;
  flex-shrink: 0;
}
.prof-tab {
  flex: 1;
  min-width: 70px;
  padding: 12px 6px 10px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.prof-tab.active { color: var(--dark); border-bottom-color: var(--gold); }
.prof-tab:hover  { color: var(--dark); }

.prof-content { padding: 20px 18px 32px; }

.prof-avatar-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.prof-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #e8c96a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  color: #1a1209;
  flex-shrink: 0;
}
.prof-name  { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--dark); }
.prof-email { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.prof-phone { font-size: 0.76rem; color: var(--text-muted); }

.prof-points-card {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 18px;
  color: #fff;
}
.prof-points-num   { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.prof-points-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin: 4px 0 8px; }
.prof-points-hint  { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

.prof-quick-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.prof-qlink {
  background: #faf8f4; border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; text-align: left; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600; color: var(--dark);
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.prof-qlink:hover { background: #f0ece4; border-color: var(--gold); }

.prof-logout-btn {
  width: 100%; padding: 12px; background: none; border: 1.5px solid #ddd;
  border-radius: 6px; font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #999; cursor: pointer; transition: border-color 0.2s, color 0.2s;
}
.prof-logout-btn:hover { border-color: #c0392b; color: #c0392b; }

.prof-section-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--dark); margin-bottom: 16px;
}
.prof-empty { font-size: 0.85rem; color: var(--text-muted); text-align: center; padding: 24px 0; }
.prof-loading { font-size: 0.85rem; color: var(--text-muted); padding: 20px 0; text-align: center; }

.prof-order-card {
  background: #faf8f4; border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 16px; margin-bottom: 10px;
}
.prof-order-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.prof-order-id  { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; color: var(--dark); }
.prof-order-status { font-size: 0.65rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 12px; }
.prof-order-status--pending   { background: #fff3cd; color: #856404; }
.prof-order-status--confirmed { background: #d1ecf1; color: #0c5460; }
.prof-order-status--delivered { background: #d4edda; color: #155724; }
.prof-order-status--cancelled { background: #f8d7da; color: #721c24; }
.prof-order-date  { font-size: 0.74rem; color: var(--text-muted); margin-bottom: 6px; }
.prof-order-items { font-size: 0.8rem; color: #555; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prof-order-total { font-size: 0.9rem; font-weight: 700; color: var(--dark); }

.prof-addr-card {
  background: #faf8f4; border: 1px solid var(--border); border-radius: 8px;
  padding: 14px 16px; margin-bottom: 10px; position: relative;
}
.prof-addr-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.prof-addr-text  { font-size: 0.85rem; color: var(--dark); margin-bottom: 2px; }
.prof-addr-zone  { font-size: 0.72rem; color: var(--text-muted); text-transform: capitalize; }
.prof-addr-del   { position: absolute; top: 12px; right: 12px; background: none; border: none; color: #ccc; font-size: 0.75rem; cursor: pointer; }
.prof-addr-del:hover { color: #c0392b; }

.prof-form { background: #faf8f4; border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.prof-form-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #888; margin-bottom: 12px; }
.prof-input {
  width: 100%; padding: 11px 14px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.88rem; color: var(--dark);
  margin-bottom: 10px; box-sizing: border-box; transition: border-color 0.2s;
  resize: vertical;
}
.prof-input:focus { outline: none; border-color: var(--gold); }
