/* ── LAYOUT ─────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

section[id],
footer[id] {
  scroll-margin-top: 68px;
}

.ms-auto {
  margin-left: auto;
}

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.88rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    background var(--t),
    transform var(--t),
    box-shadow var(--t);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(42, 77, 38, 0.25);
}

.btn-primary:disabled {
  background: var(--cream-dark);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    gap var(--t),
    color var(--t);
}

.btn-ghost:hover {
  gap: 0.75rem;
  color: var(--green-dark);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  padding: 0.88rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

/* ── SHARED UI ──────────────────────────── */
.label-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}

.check-list li i {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.check-list--spaced {
  gap: 0.85rem;
}

.alert {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  text-align: left;
}

.alert-error {
  background: #fff2f2;
  color: #c0392b;
  border-left: 3px solid #c0392b;
}

.alert-success {
  background: var(--green-light);
  color: var(--green-dark);
  border-left: 3px solid var(--green);
}

/* ── SHARED PRICE / PRODUCT ─────────────── */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.price {
  font-size: 2.9rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.original-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-tag {
  background: var(--gold-light);
  color: #7a5c0a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-left: 0.4rem;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  align-items: center;
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 500;
  background: var(--green-light);
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  width: fit-content;
}

.product-guarantee i {
  color: var(--green);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
}

.trust-pill i {
  font-size: 0.7rem;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
header {
  background: rgba(247, 243, 235, 0.9);
  position: sticky;
  top: 0;
  z-index: 19999;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0);
  transition:
    border-bottom-color 0.3s ease,
    box-shadow 0.3s ease;
}

header.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t);
}

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

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    background var(--t),
    color var(--t);
}

.nav-login-btn:hover {
  background: var(--green-dark);
  color: var(--white) !important;
}

.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  background: var(--green-light);
  transition: background var(--t);
}

.nav-account-btn:hover {
  background: #d2e5ce;
}

.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cart-badge {
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.cart-badge.is-hidden {
  display: none;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background var(--t);
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  /* background: var(--white); */
  background: rgba(247, 243, 235, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 2rem 0;
}

.mobile-menu ul li {
  margin: 1rem 0;
}

.mobile-link {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  transition: color var(--t);
}

.mobile-link:hover {
  color: var(--green);
}

.mobile-signin,
.mobile-account,
.mobile-cart {
  font-weight: 700;
  color: var(--green-dark) !important;
}

.mobile-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--green-deep);
}

.footer-top {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 240px;
}

.footer-logo img {
  height: 34px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}

.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color var(--t);
}

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

.visitor-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}

.visitor-box img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-certs {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-certs span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-certs span i {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   WHERE TO USE
   ══════════════════════════════════════════ */
.wtu-section {
  background: var(--cream-dark);
  padding: 6rem 0;
}

.wtu-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wtu-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.wtu-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

.wtu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.wtu-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform var(--t),
    box-shadow var(--t);
  position: relative;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.wtu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(28, 51, 24, 0.18);
}
.wtu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 28, 10, 0.78) 0%,
    rgba(10, 28, 10, 0.30) 55%,
    transparent 100%
  );
  transition: opacity var(--t);
}
.wtu-card:hover::before {
  opacity: 0.85;
}
.wtu-card-content {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1.5rem;
}
.wtu-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.wtu-tip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ── WTU RESPONSIVE ──────────────────────── */
@media (max-width: 820px) {
  .wtu-section {
    padding: 4rem 0;
  }
  .wtu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wtu-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 500px) {
  .wtu-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════ */
.testi-section {
  background: var(--cream);
  padding: 6rem 0;
  overflow: hidden;
}

.testi-header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 3rem;
}

.testi-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.testi-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── MARQUEE TRACK ───────────────────────── */
.testi-track-wrap {
  overflow: hidden;
  position: relative;
}

.testi-track-wrap::before,
.testi-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testi-track-wrap::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    rgba(247, 243, 235, 0) 100%
  );
}

.testi-track-wrap::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--cream) 0%,
    rgba(247, 243, 235, 0) 100%
  );
}

.testi-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: testi-scroll 36s linear infinite;
  padding: 0.5rem 0;
}

.testi-track-wrap:hover .testi-track {
  animation-play-state: paused;
}

.testi-track-2 {
  animation-direction: reverse;
  animation-duration: 42s;
}

@keyframes testi-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testi-track {
    animation: none;
  }
}

/* ── CARDS ───────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: box-shadow var(--t);
}

.testi-card:hover {
  box-shadow: 0 12px 32px rgba(28, 51, 24, 0.08);
}

.testi-card--gold {
  background: #fffaf0;
  border-color: rgba(197, 152, 30, 0.2);
}

.testi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 0.78rem;
}

.testi-quote-fa {
  color: #d4c5a0;
  font-size: 1.1rem;
}

.testi-card--gold .testi-quote-fa {
  color: var(--gold);
  opacity: 0.5;
}

.testi-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
}

.testi-card--gold .testi-text {
  color: var(--text-mid);
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cream-dark);
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--cream-dark);
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.testi-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.testi-meta i {
  font-size: 0.6rem;
  margin-right: 3px;
}

.testi-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 0.15rem;
}

/* ── STATS FOOTER ────────────────────────── */
.testi-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 2rem 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.testi-stat {
  text-align: center;
}

.testi-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.testi-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.testi-stat-div {
  width: 1px;
  height: 36px;
  background: var(--cream-dark);
}

/* ── TESTI RESPONSIVE ────────────────────── */
@media (max-width: 820px) {
  .testi-section {
    padding: 4rem 0;
  }
  .testi-header h2 {
    font-size: 2.1rem;
  }
  .testi-track-wrap::before,
  .testi-track-wrap::after {
    width: 60px;
  }
  .testi-overall {
    gap: 1.5rem;
  }
}

@media (max-width: 500px) {
  .testi-card {
    width: 260px;
  }
}

/* ══════════════════════════════════════════
   HOME — HERO
   ══════════════════════════════════════════ */
.hero {
  background: radial-gradient(ellipse at 68% 50%, #ddebd5 0%, var(--cream) 65%);
  overflow: hidden;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.4rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: block;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible;
}

.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: 0 30px 60px rgba(30, 51, 24, 0.18);
  transition: transform 0.5s ease;
}

.hero-img-wrap img:hover {
  transform: translateY(-8px);
}

.hero-float-card {
  position: absolute;
  bottom: 40px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--green);
  min-width: 180px;
}

.hero-float-card--2 {
  bottom: auto;
  top: 30px;
  left: auto;
  right: -24px;
  border-left: 3px solid var(--gold);
}

.float-icon {
  width: 36px;
  height: 36px;
  background: var(--green-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.float-icon--gold {
  background: var(--gold-light);
  color: var(--gold);
}

.float-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.float-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   HOME — ABOUT
   ══════════════════════════════════════════ */
.about-section {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
  box-shadow: 0 24px 52px rgba(30, 51, 24, 0.14);
}

.about-img-caption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-img-caption i {
  color: var(--gold);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.about-content p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════
   HOME — STATS BAR (MARQUEE)
   ══════════════════════════════════════════ */
.stats-bar {
  background: var(--green-deep);
  padding: 2.4rem 0;
  overflow: hidden;
  position: relative;
}

.stats-bar::before,
.stats-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.stats-bar::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--green-deep) 0%,
    rgba(28, 51, 24, 0) 100%
  );
}

.stats-bar::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--green-deep) 0%,
    rgba(28, 51, 24, 0) 100%
  );
}

.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: stats-marquee 28s linear infinite;
}

.stats-bar:hover .stats-grid {
  animation-play-state: paused;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 2.4rem;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.stat-num {
  /* font-family: var(--font-display); */
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-lbl {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

@keyframes stats-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-grid {
    animation: none;
  }
}

/* ══════════════════════════════════════════
   HOME — WHY
   ══════════════════════════════════════════ */
.why-section {
  background: var(--cream-dark);
  padding: 6rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--t),
    box-shadow var(--t);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.why-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   HOME — PRODUCT SECTION
   ══════════════════════════════════════════ */
.product-section {
  background: var(--cream);
  padding: 7rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}

.product-img-wrap {
  position: relative;
  height: 100%;
  background: var(--cream-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  /* height: 520px; */
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 52px rgba(30, 51, 24, 0.16);
  transition: transform 0.5s ease;
}

.product-img-wrap img:hover {
  transform: scale(1.02);
}

.product-info-col h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════ */
.pd-breadcrumb {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.75rem 0;
}

.pd-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pd-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}

.pd-breadcrumb a:hover {
  color: var(--green);
}

.pd-breadcrumb i {
  font-size: 0.6rem;
  color: var(--text-muted);
}

.pd-breadcrumb span {
  color: var(--green-dark);
  font-weight: 600;
}

.pd-hero {
  background: var(--cream);
  padding: 4rem 0 5rem;
}

.pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── GALLERY ────────────────────────────── */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 88px;
}

.pd-gallery-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--cream-dark);
}

.pd-gallery-main img {
  width: 100%;
  height: 480px;
  object-fit: contain;
  display: block;
  border-radius: var(--r-xl);
  box-shadow: 0 24px 52px rgba(30, 51, 24, 0.14);
  transition: transform 0.4s ease;
}

.pd-gallery-main img:hover {
  transform: scale(1.02);
}

.pd-gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}

.pd-thumb {
  flex: 1;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--t);
}

.pd-thumb img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--r-md) - 2px);
  opacity: 0.7;
  transition: opacity var(--t);
}

.pd-thumb:hover img,
.pd-thumb.active img {
  opacity: 1;
}

.pd-thumb.active {
  border-color: var(--green);
}

/* ── PRODUCT INFO ───────────────────────── */
.pd-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.pd-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.pd-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.pd-rating-num {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.pd-rating-count {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.pd-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}

/* ══════════════════════════════════════════
   PRODUCT REVIEWS
   ══════════════════════════════════════════ */
.pd-reviews {
  background: var(--cream);
  padding: 6rem 0;
}

.pd-review-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem 2.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pd-review-form-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 1.3rem;
}

.pd-review-login-prompt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--cream);
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--cream-dark);
}

.pd-review-login-prompt i {
  color: var(--green);
  font-size: 1rem;
}

.star-rating-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 0.15rem;
  padding: 0.6rem 0;
}

.star-rating-input input[type="radio"] {
  display: none;
}

.star-rating-input label {
  cursor: pointer;
  color: var(--cream-dark);
  font-size: 1.7rem;
  transition: color var(--t);
  line-height: 1;
}

.star-rating-input input:checked ~ label {
  color: var(--gold);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: var(--gold);
}

.review-img-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  transition:
    background var(--t),
    color var(--t);
  margin-top: 0.4rem;
}

.review-img-upload-label:hover {
  background: var(--green);
  color: var(--white);
}

.review-img-upload-label input {
  display: none;
}

.review-img-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.review-img-preview-item {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1.5px solid var(--cream-dark);
}

.review-img-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-img-preview-item button {
  position: absolute;
  top: 3px;
  right: 3px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.pd-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 3rem;
}

.pd-review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--t),
    box-shadow var(--t);
}

.pd-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pd-review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pd-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pd-review-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.pd-review-username {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.1rem;
}

.pd-review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pd-review-stars {
  margin-left: auto;
  display: flex;
  gap: 0.15rem;
  color: var(--gold);
  font-size: 0.78rem;
}

.pd-review-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.pd-review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pd-review-images img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--cream-dark);
  cursor: pointer;
  transition: transform var(--t);
}

.pd-review-images img:hover {
  transform: scale(1.05);
}

.pd-review-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.pd-review-action-btn {
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition:
    background var(--t),
    color var(--t),
    border-color var(--t);
}

.pd-review-action-btn--delete {
  color: #c0392b;
}

.pd-review-action-btn--delete:hover {
  background: #fff2f2;
  border-color: #c0392b;
}

.pd-inline-form {
  display: inline;
}

.pd-reviews-more {
  text-align: center;
  margin-top: 2rem;
}

.pd-no-reviews {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 3rem 0 1rem;
}

/* ── LIGHTBOX ───────────────────────────── */
.pd-lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.pd-lightbox-overlay.open {
  display: flex;
}

.pd-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ══════════════════════════════════════════
   FORMS (shared: auth + review)
   ══════════════════════════════════════════ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}

.form-error {
  font-size: 0.73rem;
  color: #ff0000;
}

.req {
  font-size: 0.73rem;
  color: #ff0000;
}

.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-label {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-label-link {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: color var(--t);
}

.form-label-link:hover {
  color: var(--green-dark);
}

.form-optional {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.73rem;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 0.95rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  pointer-events: none;
  z-index: 1;
}

.form-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-md);
  padding: 0.8rem 1rem 0.8rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition:
    border-color var(--t),
    box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61, 107, 53, 0.1);
}

input[type="password"].form-input,
.input-wrap:has(.input-toggle-pw) .form-input {
  padding-right: 2.6rem;
}

textarea.form-input {
  padding-left: 1rem;
  resize: vertical;
  min-height: 110px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
}

.input-toggle-pw {
  position: absolute;
  right: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.82rem;
  padding: 0.25rem;
  line-height: 1;
  transition: color var(--t);
}

.input-toggle-pw:hover {
  color: var(--green);
}

.form-check {
  margin-bottom: 1.4rem;
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 500;
  user-select: none;
}

.check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #ccc;
  border-radius: var(--r-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t),
    border-color var(--t);
  margin-top: 1px;
}

.check-label input:checked + .checkmark {
  background: var(--green);
  border-color: var(--green);
}

.check-label input:checked + .checkmark::after {
  content: "";
  width: 4px;
  height: 8px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}

.form-link {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t);
}

.form-link:hover {
  color: var(--green-dark);
}

/* ══════════════════════════════════════════
   AUTH PAGE
   ══════════════════════════════════════════ */
.auth-section {
  height: 100dvh;
  display: flex;
  align-items: stretch;
}

.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100dvh;
}

.auth-brand {
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3.5rem;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.auth-brand::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(61, 107, 53, 0.35) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.auth-brand::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(197, 152, 30, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.auth-brand-inner {
  position: relative;
  z-index: 1;
  max-width: 400px;
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.auth-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  display: block;
}

.auth-brand h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.auth-brand h2 em {
  color: var(--gold);
  font-style: italic;
}

.auth-brand-inner > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.auth-brand-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.auth-brand-perks li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.auth-brand-perks li i {
  color: var(--gold);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.auth-brand-rating {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-brand-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.auth-brand-rating > span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.auth-form-col {
  display: flex;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--cream);
  overflow-y: auto;
}

.auth-form-inner {
  width: 100%;
  max-width: 440px;
}

.auth-tabs {
  display: flex;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 2rem;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  padding: 0.65rem 1rem;
  border-radius: 100px;
  transition:
    background var(--t),
    color var(--t),
    box-shadow var(--t);
}

.auth-tab.active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-tab:hover:not(.active) {
  color: var(--text);
}

.auth-form {
  display: flex;
  flex-direction: column;
}

.auth-form--hidden {
  display: none;
}

.btn-auth {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.auth-break {
  text-align: center;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 1.2rem;
}

.auth-switch {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

.auth-switch-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green);
  padding: 0;
  transition: color var(--t);
}

.auth-switch-btn:hover {
  color: var(--green-dark);
}

.pw-strength {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: -0.6rem;
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity var(--t);
}

.pw-strength.visible {
  opacity: 1;
}

.pw-strength-bar {
  flex: 1;
  height: 3px;
  background: var(--cream-dark);
  border-radius: 100px;
  overflow: hidden;
}

.pw-strength-fill {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.pw-strength-label {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--text-muted);
  min-width: 48px;
  text-align: right;
}

/* ══════════════════════════════════════════
   VERIFY OTP PAGE
   ══════════════════════════════════════════ */
.otp-section {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 60% 40%, #ddebd5 0%, var(--cream) 65%);
  padding: 3rem 1.5rem;
}

.otp-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 24px 60px rgba(30, 51, 24, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.otp-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.otp-logo i {
  color: var(--green);
  font-size: 1.2rem;
}

.otp-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.otp-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.otp-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.otp-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.otp-sub strong {
  color: var(--text);
  font-weight: 700;
}

#otp-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.otp-inputs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.8rem;
  width: 100%;
}

.otp-digit {
  flex: 1;
  max-width: 52px;
  height: 60px;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--green-deep);
  text-align: center;
  outline: none;
  transition:
    border-color var(--t),
    box-shadow var(--t),
    background var(--t);
  -webkit-appearance: none;
  appearance: none;
  caret-color: var(--green);
}

.otp-digit:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61, 107, 53, 0.12);
}

.otp-digit:not(:placeholder-shown) {
  background: var(--white);
  border-color: var(--green);
  color: var(--green-deep);
}

.otp-resend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.otp-resend-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green);
  padding: 0;
  transition: color var(--t);
}

.otp-resend-btn:disabled {
  color: var(--text-muted);
  cursor: default;
  font-weight: 500;
}

.otp-resend-btn:not(:disabled):hover {
  color: var(--green-dark);
}

.otp-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t);
}

.otp-back:hover {
  color: var(--green);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 963px) {
  .auth-wrap {
    grid-template-columns: 1fr;
  }

  .auth-brand {
    display: none;
  }

  .auth-form-col {
    min-height: calc(100vh - 68px);
    padding: 2.5rem 1.5rem;
    padding-top: 3rem;
  }
}

@media (max-width: 820px) {
  .section-header h2 {
    font-size: 2.1rem;
  }

  /* Header */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3.5rem 1.5rem 4rem;
    gap: 3rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-img-wrap {
    display: none;
  }
  /* .hero-float-card {
    display: none;
  } */

  /* Why */
  .why-section {
    padding: 4rem 0;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Stats */
  .stats-bar {
    padding: 2rem 0;
  }

  .stats-bar::before,
  .stats-bar::after {
    width: 60px;
  }

  .stat-item {
    padding: 0 1.6rem;
  }

  /* Product section (home) */
  .product-section {
    padding: 4rem 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* About */
  .about-section {
    padding: 4rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-wrap img {
    height: 320px;
  }

  .about-img-caption {
    right: 16px;
    bottom: 16px;
  }

  /* Product detail */
  .pd-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pd-gallery {
    position: static;
  }

  .pd-gallery-main img {
    height: 340px;
  }

  .pd-title {
    font-size: 2rem;
  }

  /* Footer */
  .footer-grid {
    flex-direction: column;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-certs {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .pd-review-form-wrap {
    padding: 1.4rem 1.2rem;
  }
}

@media (max-width: 500px) {
  /* Hero */
  .hero-content h1 {
    font-size: 2.2rem;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stat-item {
    padding: 0 1.2rem;
  }

  .stats-grid {
    animation-duration: 20s;
  }

  /* Product actions */
  .product-actions {
    flex-direction: column;
  }

  .product-actions a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .product-guarantee {
    width: 100%;
    justify-content: center;
  }

  /* Gallery thumbs */
  .pd-gallery-thumbs {
    gap: 0.5rem;
  }

  .pd-thumb img {
    height: 64px;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* OTP */
  .otp-card {
    padding: 2.2rem 1.5rem;
  }

  .otp-digit {
    height: 52px;
    font-size: 1.4rem;
  }

  .otp-inputs {
    gap: 0.4rem;
  }
}

/* account.php */
.account-hero {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.5rem 0;
}
.account-hero-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
}
.account-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  overflow: hidden;
  font-size: 2rem;
  font-weight: 700;
}

.account-avatar img {
  width: 100%;
  height: 100%;
}

.account-identity h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green-deep);
  line-height: 1.1;
}
.account-identity p:last-child,
.account-muted {
  color: var(--text-muted);
  line-height: 1.7;
}
.account-section {
  background: var(--cream);
  padding: 2.5rem 0 5rem;
}
.account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
.account-stat,
.account-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.account-stat {
  padding: 1.15rem 1.3rem;
}
.account-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.account-stat p {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.account-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.account-side,
.account-main {
  display: grid;
  gap: 1rem;
}
.account-panel {
  padding: 1.45rem;
}
.account-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.account-panel-head h2 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.45rem;
}
.account-panel-head i,
.account-link,
.account-link-button {
  color: var(--green);
}
.account-link,
.account-link-button {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.account-link-button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.account-address {
  display: grid;
  gap: 0.35rem;
  line-height: 1.55;
  font-style: normal;
}
.account-address span {
  color: var(--text-muted);
}
.account-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.account-address-card {
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}
.account-address-top,
.account-address-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.account-address-actions {
  justify-content: flex-start;
}
.account-address-actions button {
  background: none;
  border: 0;
  color: var(--green);
  cursor: pointer;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.account-pill {
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.35rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 800;
}
.account-orders {
  display: grid;
}
.account-order {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}
.account-order strong,
.account-order span {
  display: block;
}
.account-order div span {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}
.account-total {
  color: var(--gold);
  font-weight: 800;
}
.account-empty {
  text-align: center;
  padding: 3rem 1rem;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}
.account-empty i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}
.account-empty h3 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.5rem;
}
.account-empty p {
  color: var(--text-muted);
}
.account-action {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
}
.account-check {
  margin: 0.2rem 0 1rem;
}
@media (max-width: 960px) {
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-address-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .account-hero-inner,
  .account-stats {
    grid-template-columns: 1fr;
  }
  .account-logout {
    justify-self: start;
  }
}
@media (max-width: 560px) {
  .account-order {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .account-identity h1 {
    font-size: 2rem;
  }
}
/* cart.php */
/* ══════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════ */

/* ── HERO ───────────────────────────────── */
.cart-hero {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 3rem 0 2.5rem;
}

.cart-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cart-heading {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.cart-subheading {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  min-height: 1.2em;
}

/* ── SECTION ────────────────────────────── */
.cart-section {
  padding: 3.5rem 0 6rem;
  background: var(--cream);
}

/* ── LAYOUT ─────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── ITEMS LIST ─────────────────────────── */
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-loading {
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

/* ── CART ITEM CARD ─────────────────────── */
.cart-item {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.4rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--t),
    box-shadow var(--t),
    opacity 0.28s ease;
}

.cart-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.cart-item-img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: var(--r-md);
  flex-shrink: 0;
  background: var(--cream-dark);
}

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

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  line-height: 1.2;
  display: block;
  margin-bottom: 0.25rem;
  transition: color var(--t);
}

.cart-item-name:hover {
  color: var(--green);
}

.cart-item-unit {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.cart-item-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cart-item-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.cart-item-orig {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── STEPPER ─────────────────────────────── */
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
  flex-shrink: 0;
}

.cart-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid var(--cream-dark);
}

.cart-stepper-btn {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t),
    color var(--t);
  flex-shrink: 0;
}

.cart-stepper-btn:hover {
  background: var(--green-light);
  color: var(--green);
}

.cart-stepper-btn:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

.cart-stepper-qty {
  min-width: 32px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  pointer-events: none;
  user-select: none;
}

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 0;
  transition: color var(--t);
}

.cart-remove-btn:hover {
  color: #c0392b;
}

/* ── EXIT ANIMATION ─────────────────────── */
@keyframes cart-item-out {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.94) translateX(12px);
  }
}

.cart-item.removing {
  animation: cart-item-out 0.25s ease forwards;
  pointer-events: none;
}

/* ── SUMMARY ─────────────────────────────── */
.cart-summary-col {
  position: sticky;
  top: 88px;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 1.5rem;
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.cart-summary-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: 0.25rem;
}

.cart-summary-total span:last-child {
  font-size: 1.3rem;
  color: var(--gold);
}

.cart-free-shipping {
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
}

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.cart-summary-trust {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── EMPTY ───────────────────────────────── */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem 3rem;
  gap: 1rem;
  grid-column: 1 / -1;
}

.cart-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cart-empty-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
}

.cart-empty-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .cart-summary-col {
    position: static;
  }
}

@media (max-width: 820px) {
  .cart-heading {
    font-size: 2.1rem;
  }

  .cart-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-actions {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
/* checkout.php */
.checkout-layout,
.checkout-confirm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 1.5rem;
  align-items: start;
}

.checkout-receipt,
.checkout-card {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.6rem;
}

.checkout-receipt {
  position: relative;
  overflow: hidden;
}

.checkout-receipt::before,
.checkout-receipt::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--cream-dark) 0 14px,
    transparent 14px 28px
  );
}

.checkout-receipt::before {
  top: 0;
}

.checkout-receipt::after {
  bottom: 0;
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--cream-dark);
}

.receipt-head span,
.checkout-card h2 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.55rem;
}

.receipt-head strong {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.receipt-line,
.receipt-total {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px dashed var(--cream-dark);
}

.receipt-line span {
  display: grid;
  gap: 0.2rem;
  color: var(--text);
}

.receipt-line small {
  color: var(--text-muted);
  font-size: 0.78rem;
}

.receipt-line strong,
.receipt-total strong {
  color: var(--gold);
}

.receipt-total {
  border-bottom: 0;
  margin-top: 0.4rem;
  font-weight: 800;
  font-size: 1.08rem;
}

.receipt-notes {
  margin-top: 1rem;
}

.checkout-card {
  position: sticky;
  top: 88px;
}

.checkout-card h2 {
  margin-bottom: 1rem;
}

.checkout-choice,
.saved-address {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  border: 1px solid var(--cream-dark);
  border-radius: var(--r-md);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.checkout-choice span {
  font-weight: 800;
  color: var(--green-deep);
}

.saved-addresses {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.saved-address {
  margin-bottom: 0;
  background: var(--cream);
}

.saved-address span {
  display: grid;
  gap: 0.25rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.saved-address strong {
  color: var(--text);
}

.new-address {
  display: none;
  padding-top: 0.4rem;
}

.new-address.active {
  display: block;
}

.checkout-check {
  margin: 0.2rem 0 0.8rem;
}

.checkout-address-text {
  display: grid;
  gap: 0.35rem;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.checkout-address-text strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .checkout-layout,
  .checkout-confirm {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    position: static;
  }
}
/* products.php */
/* ══════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════ */

/* ── HERO ───────────────────────────────── */
.products-hero {
  background: radial-gradient(ellipse at 60% 50%, #ddebd5 0%, var(--cream) 65%);
  padding: 5rem 0 4rem;
  text-align: center;
}

.products-heading {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.products-heading em {
  font-style: italic;
  color: var(--green);
}

.products-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── SECTION ────────────────────────────── */
.products-section {
  padding: 4rem 0 6rem;
  background: var(--cream);
}

/* ── STANDARD GRID (3+) ─────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

/* ── DUO LAYOUT (2 products) ────────────── */
.products-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

/* ── CARD (shared) ──────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--t),
    box-shadow var(--t);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

/* ── CARD IMAGE ─────────────────────────── */
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

/* Grid cards: fixed ratio */
.products-grid .product-card-img-wrap {
  aspect-ratio: 4 / 3;
}

/* Duo cards: taller, more feature-like */
.products-duo .product-card-img-wrap {
  aspect-ratio: 3 / 2;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

/* ── CARD BODY ──────────────────────────── */
.product-card-body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  line-height: 1.2;
  margin-bottom: 0.3rem;
  transition: color var(--t);
  display: block;
}

.products-duo .product-card-name {
  font-size: 1.6rem;
}

.product-card-name:hover {
  color: var(--green);
}

.product-card-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

/* ── RATING ─────────────────────────────── */
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.pc-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--gold);
  font-size: 0.75rem;
}

.pc-rating-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.pc-rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── PRICE ──────────────────────────────── */
.product-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.75rem;
  margin-bottom: 1.2rem;
}

/* ── ACTIONS ─────────────────────────────── */
.product-card-actions {
  display: flex;
  gap: 0.75rem;
}

.product-card-actions .btn-primary,
.product-card-actions .btn-outline-dark {
  flex: 1;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
}

/* ── EMPTY ───────────────────────────────── */
.products-empty {
  text-align: center;
  padding: 5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.products-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.products-empty h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green-deep);
}

.products-empty p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 820px) {
  .products-heading {
    font-size: 2.4rem;
  }

  .products-hero {
    padding: 3.5rem 0 3rem;
  }

  .products-duo {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 500px) {
  .products-heading {
    font-size: 2rem;
  }

  .product-card-actions {
    flex-direction: column;
  }
}

/* ══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8125rem 1.25rem 0.8125rem 0.875rem;
  background: #25d366;
  color: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--t),
    box-shadow var(--t),
    background var(--t);
  animation: whatsapp-pop 0.4s ease 0.6s backwards;
}

.whatsapp-float i {
  font-size: 1.375rem;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  background: #1ebe5a;
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}

.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #25d366;
  opacity: 0.55;
  animation: whatsapp-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes whatsapp-pop {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    animation: none;
  }
  .whatsapp-float__pulse {
    animation: none;
    display: none;
  }
}

@media (max-width: 30rem) {
  .whatsapp-float {
    bottom: 1.125rem;
    right: 1.125rem;
    padding: 0.8125rem;
  }

  .whatsapp-float__text {
    display: none;
  }
}
