/* ════════════════════════════════════════
   SHRI SANGEETHAS – HOME PAGE STYLES
   ════════════════════════════════════════ */

/* ── HERO ── */
.hero { width: 100%; line-height: 0; }
.hero-img { width: 100%; height: auto; display: block; }

/* ── STATS STRIP ── */
.stats-strip {
  display: flex;
  background: var(--dark);
}
.stat-item {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,146,42,0.12) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.stat-item:hover::before { opacity: 1; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 2px;
}
.stat-num { display: inline-block; }
.stat-suffix { font-size: 0.55em; margin-left: 1px; }
.stat-label {
  font-size: 10.5px; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  font-weight: 500; text-align: center;
}

/* ── MARQUEE RIBBON ── */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden; padding: 13px 0;
  white-space: nowrap; cursor: default;
}
.marquee-track {
  display: inline-flex; align-items: center;
  animation: marquee-run 32s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.m-item {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; padding: 0 24px;
}
.m-dot {
  color: rgba(255,255,255,0.35);
  font-size: 20px; line-height: 0;
}

/* ── CATEGORIES ── */
.categories { background: var(--cream); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 16px; max-width: 1280px; margin: 0 auto;
}
.cat-card {
  position: relative; overflow: hidden;
  cursor: pointer; border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 22px 20px;
  transition: background 0.35s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600; color: #fff;
}
.cat-name small {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 3px; font-weight: 400;
  transform: translateY(4px); transition: transform 0.3s;
}
.cat-card:hover .cat-name small { transform: translateY(0); }

/* ── PROMO CARD ── */
.promo-card { display: flex; width: 100%; }
.promo-card-text {
  flex: 0 0 42%; background: #120d06;
  display: flex; flex-direction: column;
  justify-content: center; padding: 70px 68px;
}
.promo-label {
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 16px; display: block;
}
.promo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.2vw, 50px);
  color: #fff; font-weight: 600; line-height: 1.18; margin-bottom: 20px;
}
.promo-desc {
  font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.78; margin-bottom: 38px; max-width: 360px;
}
.btn-promo {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  padding: 14px 32px; font-size: 13.5px; font-weight: 500;
  text-decoration: none; align-self: flex-start;
  transition: background 0.25s, transform 0.25s;
}
.btn-promo:hover { background: #b83518; transform: translateX(5px); }
.btn-promo .arrow { transition: transform 0.25s; }
.btn-promo:hover .arrow { transform: translateX(4px); }
.promo-card-img { flex: 1; line-height: 0; }
.promo-card-img img { width: 100%; height: auto; display: block; }

/* ── BESTSELLERS ── */
.bestsellers { background: #fff; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1280px; margin: 0 auto;
}
.prod-card {
  background: #fff; border: 1px solid #eeecec;
  border-radius: 4px; overflow: hidden; cursor: pointer;
  transition: box-shadow 0.35s, transform 0.35s;
  position: relative;
}
.prod-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
  transform: translateY(-6px);
}
/* Shimmer sweep */
.prod-card::before {
  content: ''; position: absolute;
  top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none; z-index: 4;
}
.prod-card:hover::before { animation: shimmer-sweep 0.65s ease forwards; }
@keyframes shimmer-sweep {
  0%   { left: -80%; }
  100% { left: 130%; }
}
/* Dot hover overlay */
.prod-card::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,146,42,0.09) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
  border-radius: 4px; z-index: 1;
}
.prod-card:hover::after { opacity: 1; }

.prod-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.prod-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.prod-card:hover .prod-img-wrap img { transform: scale(1.08); }
.prod-badge {
  position: absolute; top: 11px; left: 11px;
  background: var(--gold); color: #fff;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 11px; z-index: 3;
}
.prod-info { padding: 16px 17px 17px; position: relative; z-index: 3; }
.prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 15.5px; font-weight: 600;
  color: var(--dark); margin-bottom: 4px;
}
.prod-wt { font-size: 11.5px; color: #b0b0b0; margin-bottom: 13px; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; }
.prod-price { font-size: 15px; font-weight: 600; color: var(--dark); }
.prod-link {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); transition: color 0.2s, letter-spacing 0.25s;
}
.prod-link:hover { color: var(--gold-dark); letter-spacing: 2.5px; }

.view-all { text-align: center; margin-top: 54px; }

/* ── CUSTOM BANNER ── */
.custom-banner { text-align: center; padding: 0 0 64px; background: #fff; }
.custom-banner img { width: 70%; height: auto; display: inline-block; }

/* ── FEATURES ── */
.features { background: linear-gradient(160deg, #E85A22 0%, #C9400E 100%); padding: 80px 60px; }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px; max-width: 1100px; margin: 0 auto; text-align: center;
}
.feat-icon {
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.35s;
}
.feat-icon svg { width: 90px; height: 90px; }
.feat-icon:hover { transform: scale(1.1); }
.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px;
}
.feat-desc { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); }
.testi-header { text-align: center; margin-bottom: 54px; }
.testi-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px; color: #7B3A10; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin: 0;
}
.testi-dot { color: #C8762A; font-size: 13px; }
.testi-wrap { position: relative; max-width: 1100px; margin: 0 auto; }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; text-align: center;
}
.testi-card { padding: 10px 32px 10px; }
.testi-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 28px;
  border: 3px solid #e6d0a8;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-text {
  font-size: 14px; line-height: 1.85; color: #888;
  font-style: normal; margin-bottom: 18px;
}
.testi-author {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 17px; color: #C8762A; margin-bottom: 10px;
}
.stars { color: #D4851F; font-size: 16px; letter-spacing: 3px; }
.testi-next {
  position: absolute; right: -52px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid #ccc; background: #fff;
  font-size: 22px; color: #888; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s; padding: 0;
}
.testi-next:hover { border-color: var(--gold); color: var(--gold); }

/* ── RESPONSIVE HOME ── */
@media (max-width: 1100px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:nth-child(even) { border-right: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 220px); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-card { flex-direction: column; }
  .promo-card-text { flex: none; padding: 52px 32px; }
  .promo-card-img { min-height: 300px; }
  .feat-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-grid { grid-template-columns: 1fr; gap: 36px; }
  .testi-next { right: -20px; }
  .features { padding: 60px 28px; }
  .custom-banner img { width: 92%; }
}
@media (max-width: 580px) {
  .stat-item { flex: 0 0 50%; padding: 24px 12px; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-value { font-size: 34px; }
  .stat-label { font-size: 9.5px; letter-spacing: 1.5px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 180px); gap: 10px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .promo-card-text { padding: 44px 24px; }
  .custom-banner img { width: 100%; }
}
