/* ── ANNOUNCEMENT BAR ────────────────────────────────────────────── */
.announcement-wrap {
  overflow: hidden;
  width: 100%;
}
.announce-slide {
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ── HERO SLIDER ─────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a0a00;
}
.hero-slide {
  display: none;
  position: relative;
  width: 100%;
}
.hero-slide.active { display: block; }
.hero-img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
}
.hero-content {
  position: absolute;
  bottom: 0;
  padding: 40px 48px;
  max-width: 560px;
}
.hero-left   { left: 0; text-align: left; }
.hero-center { left: 50%; transform: translateX(-50%); text-align: center; }
.hero-right  { right: 0; text-align: right; }

.hero-title {
  font-size: clamp(22px, 4vw, 48px);
  font-weight: 700;
  color: white;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  line-height: 1.2;
}
.hero-sub {
  font-size: clamp(13px, 1.5vw, 18px);
  color: rgba(255,255,255,.85);
  margin: 0 0 20px;
}
.hero-cta {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: opacity .2s;
}
.hero-cta:hover { opacity: .85; }
.hero-cta-gold  { background: #d4a855; color: #1a0a00; }
.hero-cta-white { background: white;   color: #1a0a00; }
.hero-cta-dark  { background: #1a0a00; color: #d4a855; border: 1px solid #d4a855; }

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.35);
  color: white;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(0,0,0,.6); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.hero-dot.active {
  background: #d4a855;
  transform: scale(1.3);
}

/* ── TRUST BAR ───────────────────────────────────────────────────── */
.trust-bar {
  background: #1a0a00;
  border-bottom: 1px solid #2d1200;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  text-decoration: none;
  border-right: 1px solid #2d1200;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.trust-item:hover { background: #2d1200; }
.trust-icon { font-size: 16px; }
.trust-label { font-size: 13px; font-weight: 500; color: #f5e6c8; }

/* ── WHATSAPP BAR ────────────────────────────────────────────────── */
.whatsapp-bar {
  background: #1B4332;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  justify-content: center;
}
.wa-icon { font-size: 20px; }
.wa-text { display: flex; flex-direction: column; }
.wa-text strong { font-size: 14px; color: white; font-weight: 600; }
.wa-text span   { font-size: 12px; color: rgba(255,255,255,.75); }
.wa-btn {
  display: inline-block;
  padding: 7px 18px;
  background: #25D366;
  color: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 8px;
}

/* ── FEATURE ICONS ───────────────────────────────────────────────── */
.features-section {
  border-top: 1px solid #f0e8d8;
  border-bottom: 1px solid #f0e8d8;
  background: #faf7f2;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid #e8d8c0;
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 22px; flex-shrink: 0; }
.feature-text { display: flex; flex-direction: column; }
.feature-text strong { font-size: 13px; font-weight: 600; color: #1a0a00; }
.feature-text span   { font-size: 12px; color: #a08060; }

/* ── SECTION WRAPPER ─────────────────────────────────────────────── */
.section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px;
}
.section-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.section-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a0a00;
  margin: 0 0 6px;
}
.section-sub {
  font-size: 14px;
  color: #a08060;
  margin: 0 0 20px;
}
.view-all-link {
  font-size: 13px;
  color: #d4a855;
  text-decoration: none;
  margin-left: auto;
  font-weight: 600;
}
.view-all-link:hover { text-decoration: underline; }

/* ── HORIZONTAL SCROLL TRACK ─────────────────────────────────────── */
.hscroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: #e8d8c0 transparent;
  -webkit-overflow-scrolling: touch;
}
.hscroll-track::-webkit-scrollbar { height: 4px; }
.hscroll-track::-webkit-scrollbar-track { background: transparent; }
.hscroll-track::-webkit-scrollbar-thumb { background: #e8d8c0; border-radius: 2px; }

/* ── COLLECTION CARDS ────────────────────────────────────────────── */
.collection-card {
  flex-shrink: 0;
  width: 160px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.collection-card img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  background: #faf7f2;
  transition: transform .3s;
}
.collection-card:hover img { transform: scale(1.03); }
.collection-label {
  font-size: 13px;
  font-weight: 500;
  color: #1a0a00;
  text-align: center;
}

/* ── PROMO BANNER ────────────────────────────────────────────────── */
.promo-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 500px;
}
.promo-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}
.promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 40px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
}
.promo-title {
  font-size: clamp(18px, 3vw, 36px);
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.promo-sub {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
}
.promo-cta {
  display: inline-block;
  padding: 10px 28px;
  background: #d4a855;
  color: #1a0a00;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.promo-cta:hover { background: #c49845; }

/* ── CATEGORY GRID HOME ──────────────────────────────────────────── */
.category-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.cat-card-home {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cat-card-home img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: #faf7f2;
  border: 2px solid #e8d8c0;
  transition: border-color .2s;
}
.cat-card-home:hover img { border-color: #d4a855; }
.cat-label {
  font-size: 13px;
  font-weight: 500;
  color: #1a0a00;
  text-align: center;
}

/* ── PRICE RANGE ─────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.price-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #e8d8c0;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.price-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: #faf7f2;
}
.price-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-label { font-size: 15px; font-weight: 700; color: #1a0a00; }
.price-sub   { font-size: 12px; color: #a08060; }

/* ── PRODUCT CARD HOME ───────────────────────────────────────────── */
.product-card-home {
  flex-shrink: 0;
  width: 180px;
  text-decoration: none;
  border: 1px solid #e8d8c0;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  transition: box-shadow .2s, transform .2s;
}
.product-card-home:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.pch-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #faf7f2;
}
.pch-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.product-card-home:hover .pch-img img { transform: scale(1.04); }
.pch-badge {
  position: absolute;
  top: 6px; left: 6px;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
}
.badge-new  { background: #d4a855; color: #1a0a00; }
.badge-sale { background: #c62828; color: white; }
.pch-info   { padding: 8px 10px 12px; }
.pch-name   { font-size: 12px; font-weight: 500; color: #1a0a00; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.pch-prices { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.pch-price  { font-size: 14px; font-weight: 700; color: #1a0a00; }
.pch-mrp    { font-size: 11px; color: #a08060; text-decoration: line-through; }

/* ── HTML BLOCK ──────────────────────────────────────────────────── */
.html-block { max-width: 1200px; margin: 0 auto; padding: 16px 20px; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .price-grid     { grid-template-columns: repeat(2, 1fr); }
  .hero-content   { padding: 24px 20px; }
  .hero-prev, .hero-next { width: 36px; height: 36px; font-size: 18px; }
  .whatsapp-bar   { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .trust-item     { padding: 10px 14px; }
}
@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr 1fr; }
  .price-grid     { grid-template-columns: 1fr 1fr; }
  .category-grid-home { grid-template-columns: repeat(3, 1fr); }
  .product-card-home { width: 150px; }
  .collection-card   { width: 130px; }
}
