/* ============================================
   BestCBDCoffee.net — Main Stylesheet
   Aesthetic: Warm editorial / organic wellness
   Fonts: Playfair Display + DM Sans
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* === CSS VARIABLES === */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F0EBE1;
  --brown-light: #C8A882;
  --brown-mid: #8B6240;
  --brown-dark: #4A3020;
  --green-light: #E8F0E0;
  --green-mid: #5A7A3A;
  --green-dark: #2E4A1A;
  --gold: #C9973A;
  --gold-light: #F5E6C8;
  --white: #FFFFFF;
  --text-dark: #2A1F14;
  --text-mid: #6B5040;
  --text-light: #9E8070;
  --border: #E2D5C5;
  --shadow: rgba(74, 48, 32, 0.08);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --max-width: 1100px;
  --section-pad: 80px 24px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--brown-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--green-mid);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #B8862A;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brown-mid);
  border: 1.5px solid var(--brown-light);
}
.btn-outline:hover {
  background: var(--cream-dark);
}

.btn-lg {
  font-size: 15px;
  padding: 15px 36px;
  border-radius: var(--radius-md);
}

/* === BADGES === */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-gold { background: var(--gold-light); color: #7A5A10; }
.badge-blue { background: #E3EDF8; color: #1A4A7A; }
.badge-amber { background: #FEF3DC; color: #7A5210; }

/* === NAVIGATION === */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .leaf { color: var(--green-mid); font-size: 1.1rem; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-mid); }

.nav-cta {
  font-size: 13px !important;
  background: var(--green-mid);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

/* === HERO SECTION === */
.hero {
  background: var(--white);
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}

.hero h1 { margin-bottom: 20px; }

.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-bullets li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-bullets li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A7A3A' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  text-align: center;
  color: var(--text-light);
}

.hero-image-placeholder p {
  font-size: 13px;
  margin-top: 12px;
}

/* === SECTION HEADINGS === */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}

.section-heading h2 { margin-bottom: 12px; }

.section-heading p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* === COMPARISON TABLE === */
.comparison-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.comparison-table th {
  background: var(--brown-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr.featured td {
  background: #F0F6E8;
  font-weight: 500;
  color: var(--text-dark);
}

.comparison-table tr:hover td { background: var(--cream); }
.comparison-table tr.featured:hover td { background: #E8F0DE; }

.check { color: var(--green-mid); font-weight: 700; }
.cross { color: #C0A090; }

/* === PRODUCT CARDS === */
.products-section {
  padding: var(--section-pad);
  background: var(--white);
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--white);
  transition: box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 4px 24px var(--shadow);
}

.product-card.featured {
  border: 2px solid var(--green-mid);
}

.product-card-image {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 180px;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.product-card-image .img-placeholder {
  text-align: center;
  color: var(--text-light);
  font-size: 12px;
}

.product-card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.product-rank {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.product-subtitle {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.product-tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--cream-dark);
  color: var(--text-mid);
  padding: 4px 10px;
  border-radius: 20px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-dark);
}

.product-price span {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-body);
  color: var(--text-light);
}

.product-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* === WHY HEMPWORX WINS === */
.why-section {
  padding: var(--section-pad);
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 40px;
  height: 40px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.why-point-text h4 { font-size: 15px; margin-bottom: 4px; }
.why-point-text p { font-size: 14px; margin: 0; }

/* === TESTIMONIALS === */
.testimonials-section {
  padding: var(--section-pad);
  background: var(--brown-dark);
}

.testimonials-section .section-heading .tag { color: var(--brown-light); }
.testimonials-section .section-heading h2 { color: var(--white); }
.testimonials-section .section-heading p { color: var(--brown-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-light);
  letter-spacing: 0.03em;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

/* === FAQ === */
.faq-section {
  padding: var(--section-pad);
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-light);
  transition: all 0.2s;
}

.faq-item.open .faq-icon {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* === FOOTER === */
.site-footer {
  background: var(--brown-dark);
  color: var(--brown-light);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--brown-light);
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 13px;
  color: var(--brown-light);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(200,168,130,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(200,168,130,0.5);
}

/* ============================================
   ABOUT PAGE
============================================ */

.about-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px 64px;
  text-align: center;
}
.about-hero .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.about-hero h1 { max-width: 600px; margin: 0 auto 20px; }
.about-hero p {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-mid);
  line-height: 1.7;
}

.about-section { padding: 72px 24px; }
.about-section:nth-child(odd) { background: var(--white); }
.about-section:nth-child(even) { background: var(--cream); }

.about-inner { max-width: 760px; margin: 0 auto; }

.about-section .section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
}
.about-section h2 { margin-bottom: 24px; font-size: 2rem; }
.about-section p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 18px; }
.about-section p:last-child { margin-bottom: 0; }

.honest-box {
  background: var(--green-light);
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.honest-box p { color: var(--green-dark); font-size: 14px; margin: 0; line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.value-icon { font-size: 22px; margin-bottom: 10px; display: block; }
.value-card h4 { font-size: 15px; margin-bottom: 6px; color: var(--brown-dark); }
.value-card p { font-size: 13px; margin: 0; color: var(--text-light); line-height: 1.6; }

.method-list { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.method-step { display: flex; gap: 20px; align-items: flex-start; }
.method-num {
  width: 40px;
  height: 40px;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.method-step-text h4 { font-size: 15px; margin-bottom: 6px; color: var(--brown-dark); }
.method-step-text p { font-size: 14px; margin: 0; color: var(--text-mid); line-height: 1.7; }

.disclaimer-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 32px 0 0;
}
.disclaimer-box h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--brown-dark); }
.disclaimer-box p { font-size: 13px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ============================================
   CONTACT PAGE
============================================ */

.contact-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 72px 24px 64px;
  text-align: center;
}
.contact-hero .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.contact-hero h1 { max-width: 560px; margin: 0 auto 16px; }
.contact-hero p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 52px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--brown-dark);
}
.contact-info > p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-reasons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.reason-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 2px;
}
.reason-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 3px;
}
.reason-text span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--green-mid);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--brown-dark);
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select option { background: var(--white); color: var(--text-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(90,122,58,0.12);
  outline: none;
  background: var(--white);
}
.form-group textarea { height: 130px; resize: vertical; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--green-mid);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================
   RESOURCES PAGE
============================================ */

.resources-hero {
  background: var(--brown-dark);
  padding: 72px 24px 64px;
  text-align: center;
}
.resources-hero .tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 16px;
}
.resources-hero h1 {
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 16px;
}
.resources-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.resources-hero p {
  font-size: 17px;
  color: rgba(200,168,130,0.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.resources-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.resources-header {
  text-align: center;
  margin-bottom: 48px;
}
.resources-header h2 { margin-bottom: 12px; }
.resources-header p {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px var(--shadow);
}

.store-card-img {
  width: 100%;
  height: 120px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.store-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--brown-light);
  opacity: 0.6;
}
.store-placeholder svg { width: 32px; height: 32px; }
.store-placeholder span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.store-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.25;
}

.store-card-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.btn-store {
  display: block;
  text-align: center;
  background: var(--green-mid);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s;
}
.btn-store:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  color: var(--white);
}

.resources-note {
  margin-top: 52px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
}
.resources-note p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.75;
  margin: 0;
}
.resources-note strong { color: var(--brown-dark); }

/* ============================================
   PRODUCT REVIEW PAGES
============================================ */

.product-hero-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 56px;
}

.product-hero-section .product-h1 {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 36px;
}

.product-breadcrumb {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}
.product-breadcrumb a { color: var(--text-light); transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--green-mid); }
.product-breadcrumb span { color: var(--text-mid); }

.product-hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: start;
}

.product-hero-image {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-hero-info .badge {
  margin-bottom: 12px;
  display: inline-block;
}

.product-hero-info h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.product-hero-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.product-stat {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
}
.product-stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.product-stat-label {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.3;
}

.product-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.product-hero-tags .product-tag {
  font-size: 12px;
}

.product-buy-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-buy-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown-dark);
}
.product-buy-price span {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  display: block;
}

/* === PRODUCT CONTENT SECTIONS === */
.product-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.product-section:last-child { border-bottom: none; }

.product-section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.product-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.product-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.product-section p:last-child { margin-bottom: 0; }

/* Pros cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.pros-box, .cons-box {
  border-radius: var(--radius-md);
  padding: 20px;
}
.pros-box {
  background: var(--green-light);
  border: 1px solid #C0DD97;
}
.cons-box {
  background: var(--gold-light);
  border: 1px solid #F5E6C8;
}
.pros-box h4 { color: var(--green-dark); margin-bottom: 12px; font-size: 14px; }
.cons-box h4 { color: #7A5A10; margin-bottom: 12px; font-size: 14px; }
.pros-box li, .cons-box li {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 4px;
}
.pros-box li { color: var(--green-dark); }
.cons-box li { color: #7A5A10; }
.pros-box li::before { content: '✓  '; font-weight: 700; }
.cons-box li::before { content: '✗  '; font-weight: 700; }

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 12px 16px; }
.specs-table td:first-child {
  font-weight: 500;
  color: var(--text-mid);
  background: var(--cream);
  width: 40%;
}
.specs-table td:last-child { color: var(--text-dark); }

/* Reviews */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
}
.review-date {
  font-size: 12px;
  color: var(--text-light);
  margin-left: 8px;
  font-weight: 400;
}
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.review-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Who it's for */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.who-item {
  background: var(--green-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--green-dark);
  font-weight: 500;
  line-height: 1.5;
}
.who-item::before { content: '✓  '; }

/* How to use */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.how-num {
  width: 32px;
  height: 32px;
  background: var(--brown-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.how-step p { font-size: 14px; margin: 6px 0 0; }

/* Product FAQ */
.product-faq-list { display: flex; flex-direction: column; }
.product-faq-item { border-bottom: 1px solid var(--border); }
.product-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.product-faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--text-light);
  transition: all 0.2s;
}
.product-faq-item.open .product-faq-icon {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
  transform: rotate(45deg);
}
.product-faq-answer {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.product-faq-item.open .product-faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* Verdict box */
.verdict-box {
  background: var(--brown-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 48px 0;
}
.verdict-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.verdict-box p {
  color: var(--brown-light);
  font-size: 15px;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 24px;
}

/* Also reviewed */
.also-reviewed {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.also-reviewed a {
  font-size: 13px;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--text-mid);
  transition: all 0.2s;
}
.also-reviewed a:hover {
  border-color: var(--green-mid);
  color: var(--green-mid);
  background: var(--green-light);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  :root { --section-pad: 48px 20px; }

  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { aspect-ratio: 16/9; max-height: 280px; }

  .product-card { grid-template-columns: 1fr; }
  .product-card-image { min-height: 200px; }

  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .product-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .product-buy-box { flex-direction: column; align-items: flex-start; }
  .verdict-box { padding: 24px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-hero p { font-size: 15px; }
  .about-section h2 { font-size: 1.6rem; }
  .values-grid { grid-template-columns: 1fr; }
  .disclaimer-box { padding: 22px 20px; }

  .nav-links { display: none; }

  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .product-card-header { flex-direction: column; }
  .product-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .product-card-actions { width: 100%; }
  .product-card-actions .btn { flex: 1; text-align: center; }
  .store-grid { grid-template-columns: 1fr; }
}
