/* =============================================
   Peepers by PeeperSpecs — Shine On
   Editorial Magazine × Warm Rose-Cream
   Hindi Landing Page
   ============================================= */

:root {
  /* Palette */
  --cream:       #fdf8f3;
  --cream-warm:  #f7ede0;
  --cream-deep:  #efe3d4;
  --parchment:   #e8d9c5;

  --rose:        #c4748a;
  --rose-light:  #e8a8b8;
  --rose-faint:  rgba(196,116,138,.08);
  --rose-border: rgba(196,116,138,.22);

  --brown:       #7a5c48;
  --brown-light: #b08870;
  --brown-faint: rgba(122,92,72,.06);

  --text-ink:    #2c1f14;
  --text-mid:    #6b4f3a;
  --text-soft:   #a08070;
  --text-pale:   #c8b4a4;

  --white:       #ffffff;
  --rule-color:  #ddd0c0;

  /* Radii */
  --r-xs: 3px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --shadow-card: 0 8px 48px rgba(122,92,72,.14);
  --shadow-sm:   0 2px 12px rgba(122,92,72,.10);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Mulish', sans-serif;
  --font-hindi:   'Tiro Devanagari Hindi', 'Mulish', sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

/* =============================================
   HEADER BAND
   ============================================= */
.header-band {
  background: var(--rose);
  padding: 7px 16px;
  text-align: center;
  overflow: hidden;
}

.header-band-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

/* =============================================
   HEADER MAIN
   ============================================= */
.site-header { background: var(--white); border-bottom: 1px solid var(--rule-color); position: sticky; top: 0; z-index: 200; }

.header-main { padding: 0; }

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.header-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.logo-peepers {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: .02em;
}

.logo-by {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* H1 */
.header-title {
  font-family: var(--font-hindi);
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 400;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.5;
}

/* =============================================
   PRODUCT SECTION
   ============================================= */
.product-section {
  max-width: 1180px;
  margin: 52px auto 0;
  padding: 0 28px;
}

.product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--rule-color);
  overflow: hidden;
}

/* =============================================
   GALLERY
   ============================================= */
.slide-radio { display: none; }

.gallery-block {
  background: var(--cream-warm);
  border-right: 1px solid var(--rule-color);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slide-stage {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule-color);
}

.slide { display: none; width: 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: contain; }

#s1:checked ~ .slide-stage .slide:nth-child(1),
#s2:checked ~ .slide-stage .slide:nth-child(2),
#s3:checked ~ .slide-stage .slide:nth-child(3),
#s4:checked ~ .slide-stage .slide:nth-child(4) { display: block; }

.slide-rail {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.slide-rail label {
  width: 62px;
  height: 62px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: .55;
  transition: opacity .2s, border-color .2s;
  flex-shrink: 0;
  background: var(--white);
}

.slide-rail label img { width: 100%; height: 100%; object-fit: contain; }
.slide-rail label:hover { opacity: .8; border-color: var(--rose-light); }

#s1:checked ~ .slide-rail label:nth-child(1),
#s2:checked ~ .slide-rail label:nth-child(2),
#s3:checked ~ .slide-rail label:nth-child(3),
#s4:checked ~ .slide-rail label:nth-child(4) {
  opacity: 1;
  border-color: var(--rose);
}

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--parchment);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

#s1:checked ~ .slide-dots label:nth-child(1),
#s2:checked ~ .slide-dots label:nth-child(2),
#s3:checked ~ .slide-dots label:nth-child(3),
#s4:checked ~ .slide-dots label:nth-child(4) {
  background: var(--rose);
  transform: scale(1.4);
}

/* =============================================
   PRODUCT INFO
   ============================================= */
.product-info {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 4px 10px;
}

.badge-oprah {
  background: #fff8e6;
  color: #9a6a00;
  border: 1px solid #f0d080;
}

.badge-family {
  background: var(--rose-faint);
  color: var(--rose);
  border: 1px solid var(--rose-border);
}

.product-brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.35;
  margin-bottom: 16px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.stars { color: #e08060; font-size: 17px; letter-spacing: 2px; }
.half { opacity: .45; }
.rcount { font-size: 12.5px; color: var(--text-soft); }

/* Rule */
.rule { height: 1px; background: var(--rule-color); margin: 22px 0; }

/* Hero quote */
.hero-quote {
  border-left: 3px solid var(--rose);
  padding: 12px 18px;
  background: var(--rose-faint);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 0;
}

.hero-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Section label */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
}

/* Desc body */
.desc-body {
  font-family: var(--font-hindi);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.desc-body strong { color: var(--text-ink); font-weight: 600; }

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 16px 0 4px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-hindi);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

.feature-icon { color: var(--rose); font-size: 10px; flex-shrink: 0; margin-top: 3px; }

/* Details table */
.details-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.details-table tr { border-bottom: 1px solid var(--rule-color); }
.details-table tr:last-child { border-bottom: none; }

.details-table td {
  padding: 9px 8px;
  vertical-align: top;
  line-height: 1.55;
  color: var(--text-mid);
}

.dk {
  font-weight: 600;
  color: var(--text-soft);
  width: 44%;
  font-size: 12px;
}

.sub-rank { font-size: 11px; color: var(--text-pale); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 80px 28px 72px;
  text-align: center;
  background: var(--cream-warm);
  border-top: 1px solid var(--rule-color);
  border-bottom: 1px solid var(--rule-color);
  margin-top: 60px;
}

.cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 18px; }

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
}

.cta-btn {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-hindi);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: .06em;
  padding: 20px 68px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(196,116,138,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
}

.cta-btn:hover {
  background: #b5607a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196,116,138,.45);
  text-decoration: none;
  color: #fff;
}

.cta-note {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: .08em;
}

/* =============================================
   REVIEWS SECTION
   ============================================= */
.reviews-section {
  padding: 72px 28px 80px;
  background: var(--white);
}

.reviews-wrap { max-width: 820px; margin: 0 auto; }

.reviews-hd { margin-bottom: 52px; }

.reviews-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}

.reviews-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.25;
  margin-bottom: 6px;
}

.reviews-sub {
  font-size: 13px;
  color: var(--text-soft);
}

/* Review card */
.review-card {
  display: flex;
  gap: 22px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule-color);
}

.review-card:last-child { border-bottom: none; }

.rc-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.rc-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rose-border);
  background: var(--cream-warm);
}

.rc-avatar img { width: 100%; height: 100%; object-fit: cover; }

.rc-stars { color: #e08060; font-size: 11px; letter-spacing: 1px; }
.rc-stars--4 { opacity: .85; }

.rc-body { flex: 1; min-width: 0; }

.rc-toprow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.rc-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-ink);
  font-family: var(--font-body);
}

.rc-verified {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown-light);
  background: var(--brown-faint);
  border: 1px solid rgba(122,92,72,.15);
  border-radius: var(--r-xs);
  padding: 2px 8px;
}

.rc-title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-ink);
  line-height: 1.35;
  margin-bottom: 4px;
}

.rc-date {
  font-size: 11.5px;
  color: var(--text-pale);
  margin-bottom: 12px;
  letter-spacing: .01em;
}

.rc-text {
  font-family: var(--font-hindi);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-ink);
  padding: 48px 28px 32px;
}

.footer-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand-block { display: flex; flex-direction: column; gap: 5px; align-items: center; }

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--rose-light);
  letter-spacing: .04em;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 6px;
  font-size: 12.5px;
}

.footer-nav a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-nav a:hover { color: var(--rose-light); text-decoration: none; }
.footer-nav span { color: rgba(255,255,255,.2); }

.footer-copy { font-size: 11px; color: rgba(255,255,255,.22); letter-spacing: .06em; }

/* =============================================
   RESPONSIVE ≤ 960px
   ============================================= */
@media (max-width: 960px) {
  .product-wrap { grid-template-columns: 1fr; }
  .gallery-block { border-right: none; border-bottom: 1px solid var(--rule-color); }
  .product-info { padding: 32px 28px; }
  .features-grid { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE ≤ 600px
   ============================================= */
@media (max-width: 600px) {
  .header-band-text { font-size: 9.5px; letter-spacing: .12em; }
  .header-inner { padding: 14px 16px; }
  .logo-peepers { font-size: 19px; }

  .product-section { padding: 0 14px; margin-top: 32px; }
  .gallery-block { padding: 18px 14px; }
  .slide-rail label { width: 52px; height: 52px; }

  .product-info { padding: 22px 16px; }
  .product-title { font-size: 16px; }

  .badge { font-size: 9px; padding: 3px 8px; }

  .cta-section { padding: 52px 16px; margin-top: 40px; }
  .cta-btn { padding: 18px 40px; font-size: 16px; }

  .reviews-section { padding: 52px 16px 60px; }
  .review-card { gap: 14px; }
  .rc-avatar { width: 42px; height: 42px; }
  .rc-title { font-size: 14px; }

  .site-footer { padding: 36px 16px 24px; }
}