/* ================================================
   DR. LU'S HAPPY TEA — style.css
   Color system: Deep Indigo + Warm Olive + Soft Sand
   RTL Arabic layout
   Unique from FreshDrinkUS (teal/gold) & Health King (jade/copper)
   Mobile-first · Amazon-style reviews · No JS
   Language: Arabic (RTL)
   ================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette — Deep Indigo + Warm Olive + Soft Sand */
  --indigo-deep:  #2a2260;
  --indigo-mid:   #3c3488;
  --indigo-soft:  #7068b8;
  --indigo-pale:  #eeedf8;
  --indigo-border:#c4c0e8;
  --olive:        #6a7a30;
  --olive-mid:    #849438;
  --olive-pale:   #f4f7e8;
  --olive-border: #ccd8a0;
  --sand-bg:      #fdfcf8;
  --sand-card:    #f6f4ee;
  --sand-rule:    #e6e0d4;
  --white:        #ffffff;
  --text-dark:    #14121e;
  --text-mid:     #2e2a40;
  --text-muted:   #6a6880;
  --text-link:    #2a2260;
  --star-on:      #d4a010;
  --star-off:     #d4cee0;
  --radius-sm:    6px;
  --radius-md:    12px;
  --shadow:       0 3px 20px rgba(42,34,96,0.11);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Arial', sans-serif;
  background: var(--sand-bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
}

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

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--indigo-deep);
  padding: 13px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  border-bottom: 2px solid var(--olive-mid);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.site-name {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo-border);
  font-weight: 700;
  margin-bottom: 4px;
}

.header-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .header-title { font-size: 0.9rem; }
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-card {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-col {
  flex: 0 0 auto;
  width: 100%;
  background: var(--indigo-pale);
  padding: 18px 14px;
}

@media (min-width: 768px) {
  .gallery-col {
    width: 42%;
    padding: 26px 22px;
    border-left: 1px solid var(--sand-rule);
    border-right: none;
  }
}

.gallery-wrap input[type="radio"] { display: none; }

.slides { width: 100%; overflow: hidden; }
.slide  { display: none; }

.slide img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #fff;
}

@media (min-width: 768px) {
  .slide img { height: 350px; }
}

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

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumb {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.18s;
}

.thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .thumb img { width: 64px; height: 64px; }
}

#s1:checked ~ .gallery-thumbs label:nth-child(1),
#s2:checked ~ .gallery-thumbs label:nth-child(2),
#s3:checked ~ .gallery-thumbs label:nth-child(3),
#s4:checked ~ .gallery-thumbs label:nth-child(4) {
  border-color: var(--indigo-mid);
}

.thumb:hover { border-color: var(--olive-mid); }

/* ================================================
   INFO COLUMN
   ================================================ */
.info-col {
  flex: 1;
  padding: 22px 18px 26px;
}

@media (min-width: 768px) {
  .info-col { padding: 28px 30px 30px; }
}

.brand-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--indigo-mid);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .product-title { font-size: 1.18rem; }
}

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

.bdg {
  background: var(--indigo-pale);
  color: var(--indigo-mid);
  border: 1px solid var(--indigo-border);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
}

.bdg-main {
  background: var(--olive-pale);
  color: var(--olive);
  border-color: var(--olive-border);
}

.bdg-usa {
  background: #eef4fd;
  color: #1a3a7a;
  border-color: #c0ccec;
}

/* About list */
.about-section { margin-bottom: 14px; }

.about-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1.5px solid var(--sand-rule);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex-direction: row-reverse;
}

.item-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  margin-top: 2px;
  line-height: 1.3;
}

.about-list strong { color: var(--text-dark); }

/* Herbs block */
.herbs-block {
  background: var(--olive-pale);
  border: 1px solid var(--olive-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 14px;
}

.herbs-heading {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--olive);
  letter-spacing: 0.04em;
  margin-bottom: 9px;
}

.herbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.herb-tag {
  background: var(--white);
  border: 1px solid var(--olive-border);
  color: var(--text-mid);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.herbs-note {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Disclaimer */
.disclaimer-block {
  background: #fef9ec;
  border-right: 3px solid #d4a010;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  border-left: none;
  padding: 10px 13px;
  margin-bottom: 20px;
  font-size: 0.79rem;
  color: #5a4810;
  line-height: 1.6;
}

/* CTA inline */
.cta-inline { text-align: center; }

/* ================================================
   CTA BUTTON
   ================================================ */
.cta-btn {
  display: inline-block;
  background: var(--indigo-deep);
  color: #ffffff;
  font-family: 'Cairo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(42,34,96,0.28);
}

.cta-btn:hover {
  background: #1a1440;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42,34,96,0.38);
  text-decoration: none;
  color: #fff;
}

.cta-section {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 16px;
  text-align: center;
}

.cta-large {
  font-size: 1.15rem;
  padding: 18px 50px;
}

@media (max-width: 480px) {
  .cta-large {
    font-size: 1rem;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

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

.reviews-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--sand-rule);
  padding: 28px 22px;
}

.reviews-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--sand-rule);
}

/* Single review */
.review {
  padding: 22px 0;
  border-bottom: 1px solid var(--sand-rule);
}

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

.review:first-of-type { padding-top: 0; }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  /* flex-direction: row-reverse; */
}

.avatar-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--indigo-border);
  background: var(--indigo-pale);
}

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

.reviewer-info {
  flex: 1;
  text-align: right;
}

.reviewer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.stars {
  display: flex;
  gap: 1px;
  margin-bottom: 3px;
  direction: ltr;
  justify-content: flex-end;
}

.star { font-size: 1rem; line-height: 1; }
.star.on  { color: var(--star-on); }
.star.off { color: var(--star-off); }

.review-headline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

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

.verified {
  color: var(--indigo-mid);
  font-weight: 600;
}

.review-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 12px;
}

.review-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  /* justify-content: flex-end; */
}

.review-imgs img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--indigo-border);
}

@media (min-width: 480px) {
  .review-imgs img { width: 110px; height: 110px; }
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--indigo-deep);
  border-top: 2px solid var(--olive-mid);
  padding: 22px 16px;
  color: #a8a4d0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 10px;
  direction: rtl;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--olive-mid);
  text-decoration: underline;
  transition: color 0.15s;
}

.footer-nav a:hover { color: #ffffff; }

.sep {
  color: #3a3068;
  font-size: 0.8rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: #3a3068;
}