/* ===========================
   Tea For Guys: Nighttime Blend
   Midnight Indigo · Silver Slate · Pale Moon
   Deep, calm, nocturnal premium feel
   =========================== */

:root {
  --night-deep:    #0e1628;
  --night-mid:     #19253f;
  --night-card:    #1e2d4a;
  --night-soft:    #243354;
  --silver:        #8fa3bc;
  --silver-light:  #b8c9da;
  --silver-pale:   #dce7f0;
  --moon:          #c8d8e8;
  --moon-glow:     #e8f0f8;
  --indigo-accent: #4a6fa5;
  --slate-border:  #2e4168;
  --bg-page:       #0b1120;
  --bg-section:    #111d33;
  --card-bg:       #162036;
  --text-bright:   #e8f0f8;
  --text-mid:      #9ab0c8;
  --text-muted:    #5a7190;
  --star-color:    #c8a84a;
  --divider:       #243354;
  --shadow:        0 8px 32px rgba(8,14,28,0.55);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-pill:   50px;
}

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

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-bright);
  font-size: 15px;
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  background: var(--night-deep);
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-border);
}

/* subtle gradient glow at top */
.site-header::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(74,111,165,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* decorative "stars" via pseudo-random spans */
.header-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.header-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(200,216,232,0.55);
  border-radius: 50%;
}
.header-stars span:nth-child(1)  { top: 18%; left: 8%;  width: 1px; height: 1px; }
.header-stars span:nth-child(2)  { top: 60%; left: 15%; }
.header-stars span:nth-child(3)  { top: 25%; left: 28%; width: 1px; height: 1px; }
.header-stars span:nth-child(4)  { top: 75%; left: 38%; width: 3px; height: 3px; opacity: 0.3; }
.header-stars span:nth-child(5)  { top: 40%; left: 52%; width: 1px; height: 1px; }
.header-stars span:nth-child(6)  { top: 12%; left: 63%; }
.header-stars span:nth-child(7)  { top: 80%; left: 70%; width: 1px; height: 1px; }
.header-stars span:nth-child(8)  { top: 30%; left: 78%; width: 3px; height: 3px; opacity: 0.35; }
.header-stars span:nth-child(9)  { top: 55%; left: 85%; width: 1px; height: 1px; }
.header-stars span:nth-child(10) { top: 20%; left: 92%; }
.header-stars span:nth-child(11) { top: 65%; left: 5%;  width: 1px; height: 1px; }
.header-stars span:nth-child(12) { top: 10%; left: 44%; width: 1px; height: 1px; }
.header-stars span:nth-child(13) { top: 88%; left: 58%; }
.header-stars span:nth-child(14) { top: 45%; left: 96%; width: 1px; height: 1px; }
.header-stars span:nth-child(15) { top: 72%; left: 24%; width: 3px; height: 3px; opacity: 0.25; }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 28px 0 24px;
  position: relative;
  z-index: 1;
}

.site-logo {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--silver-light);
}

.header-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--moon-glow);
  max-width: 840px;
}

/* ===========================
   PRODUCT SECTION
   =========================== */
.product-section {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 16px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--slate-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

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

.gallery-col {
  padding: 28px 22px;
  background: var(--night-mid);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--slate-border);
}

.gal-main {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--slate-border);
  background: var(--night-deep);
  aspect-ratio: 1 / 1;
  box-shadow: 0 4px 20px rgba(8,14,28,0.45);
}

.gal-slide { display: none; position: absolute; inset: 0; }
.gal-slide img { width: 100%; height: 100%; object-fit: cover; }

#g5i1:checked ~ .gal-main #gs1,
#g5i2:checked ~ .gal-main #gs2,
#g5i3:checked ~ .gal-main #gs3,
#g5i4:checked ~ .gal-main #gs4 { display: block; }

.gal-thumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.gal-thumb {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  flex-shrink: 0;
  opacity: 0.55;
  background: var(--night-deep);
}

.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb:hover { opacity: 0.85; border-color: var(--silver); }

#g5i1:checked ~ .gal-thumbs label[for="g5i1"],
#g5i2:checked ~ .gal-thumbs label[for="g5i2"],
#g5i3:checked ~ .gal-thumbs label[for="g5i3"],
#g5i4:checked ~ .gal-thumbs label[for="g5i4"] {
  border-color: var(--indigo-accent);
  opacity: 1;
}

/* ===========================
   INFO COL
   =========================== */
.info-col {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: var(--card-bg);
}

.product-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(17px, 2.3vw, 22px);
  font-weight: 600;
  color: var(--moon-glow);
  line-height: 1.38;
}

/* BADGES */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--night-mid);
  border: 1px solid var(--slate-border);
  color: var(--silver-light);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.72;
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
}

.feature-list li:first-child { padding-top: 0; }
.feature-list li:last-child { border-bottom: none; padding-bottom: 0; }

.feat-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--indigo-accent);
  margin-top: 8px;
}

.feature-list strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--moon);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* DISCLAIMER */
.disclaimer-block {
  background: var(--night-soft);
  border-left: 3px solid var(--indigo-accent);
  padding: 12px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.disclaimer-block p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

.mt-2 { margin-top: 8px; }

/* ===========================
   CTA
   =========================== */
.cta-section {
  display: flex;
  justify-content: center;
  padding: 36px 16px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--indigo-accent), #2e4a7a);
  color: var(--moon-glow);
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 58px;
  border-radius: var(--radius-pill);
  box-shadow: 0 5px 28px rgba(74,111,165,0.38), 0 0 0 1px rgba(74,111,165,0.25);
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,216,232,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #5a80b8, var(--indigo-accent));
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(74,111,165,0.48), 0 0 0 1px rgba(100,140,200,0.30);
}

.cta-button:active { transform: translateY(0); }

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews-section {
  max-width: 860px;
  margin: 0 auto 52px;
  padding: 0 16px;
}

.reviews-heading {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--moon);
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--slate-border);
}

/* SINGLE REVIEW */
.review-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--divider);
}

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

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 10px;
}

.review-avatar {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--slate-border);
  background: var(--night-mid);
}

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

.review-meta { display: flex; flex-direction: column; gap: 2px; }

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--moon);
}

.review-stars {
  font-size: 15px;
  color: var(--star-color);
  letter-spacing: 1px;
}

.review-title-text {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
  line-height: 1.4;
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.review-attrs {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.review-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.78;
}

.review-body p + p { margin-top: 10px; }

.review-photos {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-photos img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-border);
  box-shadow: 0 2px 8px rgba(8,14,28,0.35);
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--night-deep);
  color: var(--text-muted);
  padding: 0 20px 28px;
  border-top: 1px solid var(--slate-border);
}

.site-footer::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo-accent), var(--silver-light), var(--indigo-accent), transparent);
  margin-bottom: 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-brand {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: var(--silver-light);
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--silver-light); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .product-card { grid-template-columns: 1fr; }

  .gallery-col {
    border-right: none;
    border-bottom: 1px solid var(--slate-border);
    padding: 16px;
    order: 1;
  }

  .info-col { padding: 20px; order: 2; }
  .gal-main { aspect-ratio: 4 / 3; }

  .gal-thumbs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gal-thumb { width: 60px; height: 60px; flex-shrink: 0; }

  .cta-button {
    font-size: 16px;
    padding: 16px 30px;
    width: 100%;
    max-width: 420px;
  }

  .reviews-section { padding: 0 12px; }
}

@media (max-width: 480px) {
  .header-title { font-size: 13px; }
  .gal-thumb { width: 52px; height: 52px; }
  .product-title { font-size: 16px; }

  .badges-row { gap: 6px; }
  .badge { font-size: 10px; padding: 3px 8px; }
}