/*
Theme Name: NXPeptides
Theme URI:
Author: NXPeptides
Description: Premium peptide store.
Version: 7.3.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: nxpeptides
*/

/* ========== RESET ========== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --bg: #F7F8FC;
  --bg-elevated: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F3F4F8;
  --border: #E2E4EB;
  --border-light: #D1D5DE;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --accent: #14B8A6;
  --accent-bright: #2DD4BF;
  --accent-dim: #F0FDFA;
  --accent-glow: rgba(20, 184, 166, 0.12);
  --green: #059669;
  --green-dim: rgba(5, 150, 105, 0.08);
  --amber: #D97706;
  --amber-dim: rgba(217, 119, 6, 0.08);
  --rose: #DC2626;
  --rose-dim: rgba(220, 38, 38, 0.08);
  --blue: #2563EB;
  --blue-dim: rgba(37, 99, 235, 0.08);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

/* Force all direct body children to not overflow */
body > * {
  max-width: 100vw;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4 { color: var(--text-primary); font-weight: 600; line-height: 1.2; }

/* ========== MICRO ANIMATIONS ========== */

/* Scroll reveal — opacity only, no movement */
.sr { opacity: 0; transition: opacity 0.3s ease; }
.sr.visible { opacity: 1; }

/* Stagger — slight scale from 0.98, barely perceptible */
.sr-stagger > * { opacity: 0; transform: scale(0.98); transition: opacity 0.2s ease, transform 0.2s ease; }
.sr-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.sr-stagger.visible > *:nth-child(2) { transition-delay: 0.03s; }
.sr-stagger.visible > *:nth-child(3) { transition-delay: 0.06s; }
.sr-stagger.visible > *:nth-child(4) { transition-delay: 0.09s; }
.sr-stagger.visible > *:nth-child(n+5) { transition-delay: 0.12s; }
.sr-stagger.visible > * { opacity: 1; transform: scale(1); }

/* Button press */
.vl-btn:active, a.button:active, button[type="submit"]:active { transform: scale(0.97); }

/* Header shrink */
.site-header { transition: padding 0.25s ease, box-shadow 0.25s ease; }
.site-header.scrolled { padding-top: 6px !important; padding-bottom: 6px !important; box-shadow: 0 1px 8px rgba(0,0,0,0.05); }

@media (prefers-reduced-motion: reduce) {
  .sr, .sr-stagger > * { opacity: 1; transform: none; transition: none; }
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ========== ANNOUNCEMENT BAR ========== */
.announcement {
  background: var(--accent);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.announcement a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #FFFFFF;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo__img,
.site-header .site-logo .site-logo__img {
  height: 42px !important;
  width: auto !important;
  max-height: 42px;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-primary);
  background: var(--bg);
}

.header-search {
  flex: 1;
  max-width: 320px;
  position: relative;
}

.header-search__form {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
  position: relative;
}
.header-search__form:focus-within { border-color: var(--accent); }

.header-search__icon {
  position: absolute;
  left: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
  pointer-events: none;
}

.header-search__form input[type="search"] {
  flex: 1;
  background: transparent;
  border: none;
  padding: 9px 8px 9px 34px;
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--text-primary);
  outline: none;
  min-width: 0;
}
.header-search__form input::placeholder { color: var(--text-muted); }

.header-search__btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 12px;
  margin: 4px 4px 4px 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}
.header-search__btn:hover { color: var(--text-primary); border-color: var(--text-muted); }

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
  position: relative;
}

.header-icon:hover {
  background: var(--bg);
  color: var(--text-primary);
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-header {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 20px;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-header:hover {
  background: var(--accent-bright);
  box-shadow: 0 4px 20px var(--accent-glow);
}

/* ========== CATEGORY STRIP ========== */
.cat-strip {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100vw;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
  display: flex;
}
.cat-strip::-webkit-scrollbar { display: none; }
.cat-strip::after {
  content: '';
  position: sticky;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  min-height: 100%;
  background: linear-gradient(to right, transparent, var(--bg-elevated, #fff) 80%);
  pointer-events: none;
  flex-shrink: 0;
}

.cat-strip-inner {
  display: flex;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
  padding: 0 12px;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
}

.cat-pill:hover {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.cat-pill.active {
  color: var(--accent);
  font-weight: 700;
  border-bottom-color: var(--accent);
}

.cat-dot { display: none; }

/* ========== HERO ========== */
.hero-shop {
  padding: 48px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  min-height: 480px;
}

.hero-feature {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #3730a3 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-feature::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #C7D2FE;
  background: rgba(99, 102, 241, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 24px;
}

.hero-tag .pulse-dot {
  width: 6px;
  height: 6px;
  background: #A5B4FC;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-feature h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #FFFFFF;
}

.hero-feature h1 span { color: #A5B4FC; }

.hero-desc {
  font-size: 0.95rem;
  color: #C7D2FE;
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-shop.primary {
  background: #FFFFFF;
  color: var(--accent);
}

.btn-shop.primary:hover {
  background: #F0F0FF;
  box-shadow: 0 4px 20px rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-shop.secondary {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-shop.secondary:hover {
  background: rgba(255,255,255,0.2);
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.hero-promo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-promo:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.promo-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.promo-label.green { color: var(--green); }
.promo-label.amber { color: var(--amber); }

.hero-promo h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.hero-promo p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 16px;
}

.promo-link::after {
  content: '\2192';
  transition: transform var(--transition);
}

.hero-promo:hover .promo-link::after {
  transform: translateX(4px);
}

/* ========== TRUST BAR ========== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg-elevated);
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.trust-badge-icon.purple { background: var(--accent-dim); }
.trust-badge-icon.green { background: var(--green-dim); }
.trust-badge-icon.amber { background: var(--amber-dim); }
.trust-badge-icon.blue { background: var(--blue-dim); }

.trust-badge strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ========== PRODUCT SECTIONS ========== */
.product-section {
  padding: 64px 0;
}

.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-top h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.section-top .view-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-top .view-all::after {
  content: '\2192';
  transition: transform var(--transition);
}

.section-top .view-all:hover::after { transform: translateX(3px); }

/* PRODUCT CARDS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.p-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.p-card-visual {
  aspect-ratio: 1;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.p-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Molecular placeholder */
.mol-placeholder {
  position: relative;
  width: 80px;
  height: 80px;
}

.mol-placeholder .ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

.mol-placeholder .ring:nth-child(2) {
  inset: 12px;
  border-color: var(--border-light);
  animation-direction: reverse;
  animation-duration: 15s;
}

.mol-placeholder .core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-glow);
}

.mol-placeholder .node {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
}

.mol-placeholder .node:nth-child(3) { top: 0; left: 50%; transform: translateX(-50%); }
.mol-placeholder .node:nth-child(4) { bottom: 15%; right: 10%; }
.mol-placeholder .node:nth-child(5) { bottom: 15%; left: 10%; }

@keyframes spin-slow { to { transform: rotate(360deg); } }

.p-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.p-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.p-tag.bestseller { background: var(--accent); color: #FFFFFF; }
.p-tag.new { background: var(--green); color: #FFFFFF; }
.p-tag.sale { background: var(--rose); color: white; }

.p-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
  opacity: 0;
  z-index: 2;
}

.p-card:hover .p-card-wishlist { opacity: 1; }
.p-card-wishlist:hover { color: var(--rose); background: rgba(220, 38, 38, 0.1); }

.p-card-info {
  padding: 20px;
}

.p-card-category {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}

.p-card-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color var(--transition);
}

.p-card:hover .p-card-info h3 { color: var(--accent); }

.p-card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p-card-rating {
  color: var(--amber);
  font-size: 0.7rem;
}

.p-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.p-card-price .orig {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
  margin-left: 6px;
}

.add-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.add-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

/* ========== FEATURED / LARGE PRODUCT ========== */
.featured-product {
  padding: 32px 0 64px;
}

.fp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-md);
}

.fp-visual {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px;
}

.fp-visual::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.fp-mol {
  position: relative;
  width: 160px;
  height: 160px;
  z-index: 1;
}

.fp-mol .ring-outer {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(165, 180, 252, 0.3);
  border-radius: 50%;
  animation: spin-slow 25s linear infinite;
}

.fp-mol .ring-inner {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(165, 180, 252, 0.2);
  border-radius: 50%;
  animation: spin-slow 18s linear infinite reverse;
}

.fp-mol .core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #818CF8;
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(129, 140, 248, 0.4), 0 0 80px rgba(129, 140, 248, 0.15);
}

.fp-mol .node {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.fp-mol .node:nth-child(4) { top: -3px; left: 50%; background: #818CF8; }
.fp-mol .node:nth-child(5) { bottom: 20%; right: 5%; background: var(--green); }
.fp-mol .node:nth-child(6) { bottom: 10%; left: 15%; background: var(--amber); }
.fp-mol .node:nth-child(7) { top: 30%; left: -3px; background: var(--blue); }

.fp-body {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 20px;
}

.fp-body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.fp-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.fp-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.fp-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.fp-benefit::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}

.fp-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fp-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fp-price-old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.fp-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.fp-actions {
  display: flex;
  gap: 12px;
}

/* ========== SOCIAL PROOF STRIP ========== */
.social-proof {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.sp-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========== REVIEWS ========== */
.reviews-section {
  padding: 64px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.review-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--amber);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFFFFF;
}

.review-avatar.v1 { background: var(--accent); }
.review-avatar.v2 { background: var(--green); }
.review-avatar.v3 { background: var(--amber); }

.review-name { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.review-meta { font-size: 0.72rem; color: var(--text-muted); }

.review-verified {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 0 28px 80px;
}

.cta-inner {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
}

.cta-content { position: relative; z-index: 1; }

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.cta-content p {
  font-size: 0.95rem;
  color: #C7D2FE;
  max-width: 400px;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
}

/* ========== FOOTER ========== */
.site-footer {
  background: #0f172a;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.footer-grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}

/* Footer top: logo + newsletter */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 60px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: block;
  margin-bottom: 16px;
}
.footer-logo__img {
  height: 42px;
  width: auto;
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 340px;
}
.footer-newsletter {
  max-width: 380px;
  flex-shrink: 0;
}
.footer-newsletter h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-newsletter > p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-bottom: 14px;
}
.footer-newsletter__form {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}
.footer-newsletter__form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  outline: none;
}
.footer-newsletter__form input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer-newsletter__form button {
  padding: 12px 22px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.footer-newsletter__form button:hover {
  background: var(--accent-bright);
}

/* Footer links grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-col a svg {
  flex-shrink: 0;
  opacity: 0.5;
}
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-hours {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  padding: 0;
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: rgba(255,255,255,0.25);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #FFFFFF; }

/* ========== MOBILE ========== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  outline: none;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-primary);
  margin: 4px 0;
  transition: all 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.mobile-toggle.active span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile search icon — hidden on desktop */
.mobile-search-toggle {
  display: none;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* Mobile search dropdown bar */
.mobile-search-bar {
  display: none;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  animation: mSearchSlide 0.18s ease;
}
.mobile-search-bar.active { display: block; }
@keyframes mSearchSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-search-bar form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
}
.mobile-search-bar input[type="search"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-primary);
  outline: none;
}
.mobile-search-bar input[type="search"]::placeholder { color: var(--text-muted); }
.mobile-search-bar button[type="submit"] {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.mobile-search-bar button[type="submit"]:hover { color: var(--accent); }

/* ========== NAV DRAWER (full-screen dark) ========== */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-drawer-overlay.open { opacity: 1; visibility: visible; }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nav-drawer.open { opacity: 1; visibility: visible; }
.nav-drawer__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}
.nav-drawer > * { position: relative; z-index: 1; }

/* Stagger-in for links */
.nav-drawer.open .nav-drawer__links a,
.nav-drawer.open .nav-drawer__cats a {
  animation: drawerFadeIn 0.3s ease both;
}
.nav-drawer.open .nav-drawer__links a:nth-child(1) { animation-delay: 0.04s; }
.nav-drawer.open .nav-drawer__links a:nth-child(2) { animation-delay: 0.07s; }
.nav-drawer.open .nav-drawer__links a:nth-child(3) { animation-delay: 0.10s; }
.nav-drawer.open .nav-drawer__links a:nth-child(4) { animation-delay: 0.13s; }
.nav-drawer.open .nav-drawer__cats a:nth-child(1) { animation-delay: 0.16s; }
.nav-drawer.open .nav-drawer__cats a:nth-child(2) { animation-delay: 0.18s; }
.nav-drawer.open .nav-drawer__cats a:nth-child(3) { animation-delay: 0.20s; }
.nav-drawer.open .nav-drawer__cats a:nth-child(4) { animation-delay: 0.22s; }
.nav-drawer.open .nav-drawer__cats a:nth-child(5) { animation-delay: 0.24s; }
.nav-drawer.open .nav-drawer__help { animation: drawerFadeIn 0.3s ease 0.26s both; }
.nav-drawer.open .nav-drawer__contact-card { animation: drawerFadeIn 0.35s ease 0.30s both; }
@keyframes drawerFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  flex-shrink: 0;
}
.nav-drawer__logo img { height: 28px; width: auto; }
.nav-drawer__close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.nav-drawer__close:active { background: rgba(255,255,255,0.15); color: #fff; }

.nav-drawer__links {
  display: flex;
  flex-direction: column;
  padding: 12px 0 0;
}
.nav-drawer__links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-drawer__links a:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.nav-drawer__links a svg { color: var(--accent); flex-shrink: 0; opacity: 0.7; }
.nav-drawer__links a:active { background: rgba(255,255,255,0.05); color: var(--accent-bright); }

.nav-drawer__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 12px 28px;
}

.nav-drawer__label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  padding: 8px 28px 10px;
}

.nav-drawer__cats {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.nav-drawer__cats a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.15s;
}
.nav-drawer__cats a:last-child { border-bottom: none; }
.nav-drawer__cats a:active { color: var(--accent-bright); }
.nav-drawer__cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Help Center highlight */
.nav-drawer__help {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 24px 0;
  padding: 16px 18px;
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.2);
  border-radius: 12px;
  transition: all 0.15s;
}
.nav-drawer__help:active { background: rgba(20,184,166,0.18); }
.nav-drawer__help-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(20,184,166,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-drawer__help-icon svg { color: var(--accent-bright); }
.nav-drawer__help strong {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.nav-drawer__help span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}
.nav-drawer__help-arrow {
  margin-left: auto;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* Contact card at bottom */
.nav-drawer__bottom {
  margin-top: auto;
  padding: 20px 24px 32px;
}
.nav-drawer__contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-drawer__contact-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2px;
}
.nav-drawer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}
.nav-drawer__contact svg { color: var(--accent); opacity: 0.6; flex-shrink: 0; }
.nav-drawer__contact:active { color: var(--accent-bright); }
.nav-drawer__hours {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 2px;
}

/* ========== WOOCOMMERCE SHOP / ARCHIVE ========== */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(20, 184, 166, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 20px 4px;
  color: var(--text-primary);
}

.woocommerce ul.products li.product .price {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--text-primary);
  padding: 0 20px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--font-sans) !important;
  background: var(--accent) !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 24px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all var(--transition) !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--accent-bright) !important;
  box-shadow: 0 4px 20px var(--accent-glow) !important;
}


/* ==========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================== */

.az-pdp-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: hidden;
  width: 100%;
}

/* Breadcrumb */
.az-crumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.az-crumb a {
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--text-secondary);
}
.az-crumb a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}
.az-crumb__sep {
  color: var(--text-muted);
  opacity: 0.3;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
.az-crumb__current {
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

/* Main grid */
.az-pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 48px;
}

/* ---- GALLERY ---- */
.az-pdp__media { max-width: 620px; width: 100%; }
.az-pdp__sticky { position: sticky; top: 80px; }

.az-gallery {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #F0F1F5;
}

.az-gallery__slide {
  display: none;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
.az-gallery__slide.active { display: block; }

.az-gallery__blur {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: blur(28px); transform: scale(1.3);
  opacity: 0.7; z-index: 1; pointer-events: none;
}

.az-gallery__slide > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; z-index: 2;
}

.az-gallery__slide--empty {
  background: linear-gradient(135deg, #EEF2FF, #F0F1F5);
}
.az-gallery__slide--empty.active { display: flex; align-items: center; justify-content: center; }
.az-mol { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120px; height: 120px; z-index: 2; }
.az-mol__r { position: absolute; inset: 0; border: 1px solid var(--border); border-radius: 50%; animation: spin-slow 20s linear infinite; }
.az-mol__r:nth-child(2) { inset: 20px; animation-direction: reverse; animation-duration: 14s; }
.az-mol__c { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 14px; height: 14px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 24px var(--accent-glow); }

.az-gal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #111; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); z-index: 10;
  transition: all 0.2s ease;
}
.az-gal-nav:hover { background: rgba(255,255,255,0.85); transform: translateY(-50%) scale(1.05); }
.az-gal-prev { left: 0.6rem; }
.az-gal-next { right: 0.6rem; }

.az-gal-dots { position: absolute; bottom: 0.6rem; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.az-gal-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: all 0.2s; }
.az-gal-dot.active { background: var(--accent); transform: scale(1.3); }

/* ---- PRODUCT INFO ---- */
.az-pdp__info {
  padding: 0;
  max-width: 520px;
}

/* Benefit Pills */
.az-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.85rem;
}
.az-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(20, 184, 166, 0.15);
}

/* Title */
.az-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

/* Rating */
.az-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.az-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; }

/* Price */
.az-price { margin-bottom: 0.75rem; }
.az-price .price,
.az-price .woocommerce-Price-amount {
  font-family: var(--font-display) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  line-height: 1.2 !important;
}
.az-price del .woocommerce-Price-amount {
  font-size: 1rem !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

/* Description Card */
.az-desc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.az-desc-card p { margin: 0 0 0.4em; }
.az-desc-card p:last-child { margin: 0; }

.az-desc-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.az-desc-card .az-pills {
  margin: 0;
}

/* ---- ADD TO CART ---- */
.az-cart { margin-bottom: 0.85rem; }
.az-cart form.cart {
  display: flex;
  align-items: center;
  gap: 8px;
}

.az-cart .variations { margin-bottom: 14px; width: 100%; }
.az-cart .variations td { display: block; padding: 0; }
.az-cart .variations td.label { padding-bottom: 5px; }
.az-cart .variations td.label label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-primary);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.az-cart .variations select {
  width: 100%; background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
  font-family: var(--font-sans); font-size: 0.88rem; color: var(--text-primary);
  cursor: pointer; outline: none; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color 0.2s;
}
.az-cart .variations select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

/* Modern quantity stepper */
.az-cart .quantity {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  background: #fff;
  height: 46px;
  width: 110px;
  flex-shrink: 0;
}
.az-cart .quantity .qty {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  width: 100%;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
  padding: 0;
}
.az-cart .quantity .qty::-webkit-outer-spin-button,
.az-cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.az-cart .quantity .az-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: background 0.15s ease, color 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}
.az-cart .quantity .az-qty-btn:hover {
  background: var(--bg);
  color: var(--text-primary);
}
.az-cart .quantity .az-qty-btn:active {
  background: var(--border);
}

.az-cart .single_add_to_cart_button {
  flex: 1;
  background: #111827 !important; color: #fff !important; border: none !important;
  border-radius: 10px !important; padding: 0 24px !important;
  font-family: var(--font-sans) !important; font-size: 0.82rem !important;
  font-weight: 700 !important; text-transform: uppercase !important;
  letter-spacing: 1.5px !important; cursor: pointer;
  transition: all 0.25s ease !important;
  height: 46px; box-shadow: 0 4px 16px rgba(17,24,39,0.12);
  white-space: nowrap;
}
.az-cart .single_add_to_cart_button:hover {
  background: #1F2937 !important; transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(17,24,39,0.18) !important;
}
.az-cart .reset_variations { font-size: 0.75rem; color: var(--text-muted); margin-left: 6px; }
.az-cart .woocommerce-variation-price .price { font-size: 1.5rem !important; margin-bottom: 8px; }

/* ---- PURCHASE REDIRECT NOTICE (wraps ATC) ---- */
.az-purchase-note {
  background: var(--accent-dim);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  padding: 0.75rem;
}
.az-purchase-note .az-cart {
  margin-bottom: 0.5rem;
}
.az-purchase-note__text {
  display: block;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
  text-align: left;
}
.az-purchase-note strong {
  color: var(--text-primary);
}

/* ---- HELP SNIPPET ---- */
.az-help-snippet {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0.65rem 0.9rem;
  margin-top: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}
.az-help-snippet::after {
  content: '';
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
  flex-shrink: 0;
  opacity: 0.7;
}
.az-help-snippet:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}
.az-help-snippet svg {
  flex-shrink: 0;
  color: var(--accent);
}
.az-help-snippet strong {
  color: var(--text-primary);
}

/* ---- MODAL EXTRAS ---- */
.az-modal__hours {
  background: var(--bg);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  margin: 0.5rem 0;
}
.az-modal__hours strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.az-modal__hours p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.az-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  margin-top: 0.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}
.az-modal__cta:hover {
  background: var(--accent-bright);
}

/* ---- BELOW-FOLD MAX WIDTH (keeps sections readable on wide screens) ---- */
@media (min-width: 769px) {
  .az-cards-section,
  .az-research,
  .az-faq,
  .az-safety {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- SECTION TITLES ---- */
.az-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  padding-left: 2px;
}
.az-section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  padding-left: 2px;
}

/* ---- SIDE EFFECTS & SAFETY ---- */
.az-safety {
  margin-top: 1.5rem;
  padding: 1.25rem 1.2rem;
  background: linear-gradient(135deg, var(--accent-dim) 0%, var(--bg-elevated) 70%);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.az-safety::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.06);
  pointer-events: none;
}
.az-safety__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.az-safety__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.az-safety__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.az-safety__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-dim);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-left: auto;
  white-space: nowrap;
}
.az-safety__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.az-safety__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.az-safety__col p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.az-safety__note {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

/* ---- HOW TO RECONSTITUTE ---- */
.az-recon {
  padding: 1.5rem 0 1rem;
  position: relative;
}
.az-recon .az-section-title {
  margin-bottom: 0.6rem;
}
.az-recon::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
.az-recon__scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.az-recon__scroll::after {
  content: '';
  flex-shrink: 0;
  width: 40px;
}
.az-recon__scroll::-webkit-scrollbar {
  display: none;
}
.az-recon__card {
  flex: 0 0 160px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 0.9rem;
  scroll-snap-align: start;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.az-recon__num {
  position: absolute;
  top: 6px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-light);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: -webkit-text-stroke 0.3s ease, color 0.3s ease;
}
.az-recon__card.in-view .az-recon__num {
  -webkit-text-stroke: 1.5px var(--accent);
  color: var(--accent-dim);
}
.az-recon__card h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}
.az-recon__card p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ---- RESEARCH & STUDIES ---- */
.az-research {
  padding: 1.25rem 0 1rem;
}
.az-research .az-section-title {
  margin-bottom: 0.2rem;
}
.az-research .az-section-sub {
  margin-bottom: 0.6rem;
}
.az-research__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.az-research__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 0.95rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.az-research__item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.az-research__badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  vertical-align: middle;
  margin-left: 4px;
}
.az-research__text {
  flex: 1;
  min-width: 0;
}
.az-research__text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.az-research__text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.az-research__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---- FAQ ---- */
.az-faq {
  padding: 1.25rem 0 1rem;
}
.az-faq .az-section-title {
  margin-bottom: 0.6rem;
}
.az-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.az-faq__item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.az-faq__item:hover {
  border-color: var(--border-light);
}
.az-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}
.az-faq__arrow {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.az-faq__item[data-open="true"] .az-faq__arrow {
  transform: rotate(180deg);
}
.az-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.az-faq__item[data-open="true"] .az-faq__a {
  grid-template-rows: 1fr;
}
.az-faq__a p {
  overflow: hidden;
  padding: 0 1rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  opacity: 0;
  transition: opacity 0.2s ease, padding 0.3s ease;
}
.az-faq__item[data-open="true"] .az-faq__a p {
  opacity: 1;
  padding: 0 1rem 0.85rem;
  transition: opacity 0.25s ease 0.1s, padding 0.3s ease;
}

/* ---- PAYMENT ROW ---- */
/* ---- TRUST BAR / POLICY LINKS ---- */
.az-trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 0;
}

.az-trust-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}
.az-trust-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.az-trust-link svg { color: var(--accent); flex-shrink: 0; }

/* ---- INFO CARDS SECTION ---- */
.az-cards-section {
  margin-bottom: 0;
  padding: 1rem 0 0;
}

/* Highlight Cards (3 top) */
/* Highlight badges — inline strip */
.az-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.az-hl-card {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.7rem;
  white-space: nowrap;
}

.az-hl-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.az-hl-card__icon svg {
  width: 14px;
  height: 14px;
}

.az-hl-card h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1;
}

.az-hl-card p {
  display: none;
}

/* Detail Cards — full width, muted pro look, text fade */
.az-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.az-dcard {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.az-dcard:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.az-dcard__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.az-dcard__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.az-dcard__ico { flex-shrink: 0; color: var(--text-muted); }

.az-dcard__left span {
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--text-primary);
}

.az-dcard__arrow { display: none; }

/* Body — always visible preview with fade, expands on open */
.az-dcard__body {
  display: block;
  position: relative;
}

.az-dcard__content {
  overflow: hidden;
  padding: 0 1rem 0.6rem;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-height: 4em;
  position: relative;
  transition: max-height 0.4s ease;
}

/* Fade overlay on collapsed */
.az-dcard__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.2em;
  background: linear-gradient(to bottom, transparent, var(--bg-elevated));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Expanded state */
.az-dcard[data-open="true"] .az-dcard__content {
  max-height: 500px;
  padding-bottom: 1rem;
}
.az-dcard[data-open="true"] .az-dcard__content::after {
  opacity: 0;
}

.az-dcard__content p { margin: 0 0 0.4rem; }
.az-dcard__content p:last-child { margin: 0; }
.az-dcard__content ul { margin: 0.3rem 0; padding-left: 1.1rem; list-style: disc; }
.az-dcard__content li { margin-bottom: 0.15rem; list-style: disc; }

/* ---- POLICY MODALS ---- */
.az-modal-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.az-modal-overlay.open { opacity: 1; pointer-events: auto; }

.az-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 9999;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.15);
  width: 90%; max-width: 480px;
  opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.az-modal.open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.az-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.az-modal__head h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
.az-modal__close {
  width: 32px; height: 32px;
  background: var(--bg); border: none; border-radius: 50%;
  font-size: 1.2rem; color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.az-modal__close:hover { background: var(--border); color: var(--text-primary); }

.az-modal__body {
  padding: 1.25rem 1.5rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-height: 60vh;
  overflow-y: auto;
}
.az-modal__body p { margin: 0 0 0.75rem; }
.az-modal__body p:last-child { margin: 0; }

/* ---- RELATED PRODUCTS ---- */
/* ========== STORE REVIEWS (product page) ========== */
.az-store-reviews {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
}
.az-store-reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  margin-bottom: 24px;
}
.az-store-reviews__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}
.az-store-reviews__rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0;
}
.az-store-reviews__avg {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.az-store-reviews__stars { display: flex; gap: 2px; color: #D97706; }
.az-store-reviews__stars svg { width: 16px; height: 16px; }
.az-store-reviews__count {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.az-store-reviews__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.az-store-reviews__sort,
.az-store-reviews__filter {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 28px 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
  color: var(--text-secondary);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.az-store-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.az-store-reviews__more {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.az-store-reviews__more-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 28px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s;
}
.az-store-reviews__more-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Store reviews reuses .vl-rv card styles from homepage */

.az-related {
  padding: 1.5rem 0 2.5rem;
  position: relative;
}
.az-related__head {
  margin-bottom: 0.75rem;
}
.az-related .related > h2,
.az-related h2:not(.az-section-title) {
  display: none;
}
.az-related .woocommerce ul.products {
  display: flex !important;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.az-related .woocommerce ul.products::-webkit-scrollbar { display: none; }
.az-related .woocommerce ul.products li {
  flex: 0 0 260px;
  scroll-snap-align: start;
  max-width: 260px;
}

/* Product cards */
.az-pcard {
  list-style: none;
}
.az-pcard__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.az-pcard__link {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  outline: none !important;
}
.az-pcard__link:hover {
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12), 0 0 0 1px rgba(20, 184, 166, 0.08);
  transform: translateY(-2px);
}
.az-pcard__link:focus, .az-pcard__link:focus-visible {
  outline: none !important;
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
}
.az-pcard__img {
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.az-pcard__img img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.az-pcard__img--empty {
  color: var(--border-light);
}
.az-pcard__body {
  padding: 0.85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.az-pcard__cat {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 4px;
}
.az-pcard__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 6px;
  line-height: 1.3;
}
.az-pcard__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 auto;
  padding-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.az-pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.az-pcard__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.az-pcard__price del {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.78rem;
}
.az-pcard__price ins {
  text-decoration: none;
}
.az-pcard__cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: gap 0.2s ease;
}
.az-pcard__link:hover .az-pcard__cta {
  gap: 6px;
}


/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }


/* ========== RESPONSIVE ========== */
/* Desktop scale-up */
@media (min-width: 769px) {
  .az-highlights { gap: 8px; }
  .az-hl-card {
    padding: 0.4rem 0.85rem;
  }
  .az-hl-card__icon svg {
    width: 15px;
    height: 15px;
  }
  .az-hl-card h3 {
    font-size: 0.78rem;
  }
  .az-hl-card p {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  /* Detail cards → 2x2 open grid on desktop */
  .az-detail-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .az-dcard {
    background: linear-gradient(145deg, var(--accent-dim) 0%, var(--bg-elevated) 60%);
    border-color: var(--border);
  }
  .az-dcard__head {
    padding: 1rem 1.25rem 0.3rem;
    cursor: default;
    pointer-events: none;
  }
  .az-dcard__left span {
    font-size: 0.92rem;
  }
  .az-dcard__ico {
    color: var(--accent);
  }
  .az-dcard__content {
    padding: 0 1.25rem 1rem;
    font-size: 0.85rem;
    max-height: none !important;
  }
  .az-dcard__content::after {
    display: none !important;
  }
  .az-dcard__arrow {
    display: none;
  }

  /* Scale up lower sections on desktop */
  .az-section-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }
  .az-safety {
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
  }
  .az-safety__title {
    font-size: 1.15rem;
  }
  .az-safety__grid {
    gap: 20px;
  }
  .az-safety__col h4 {
    font-size: 0.92rem;
    margin-bottom: 6px;
  }
  .az-safety__col p {
    font-size: 0.92rem;
  }
  .az-safety__note {
    font-size: 0.88rem;
  }
  .az-store-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .az-store-reviews__title { font-size: 1.5rem; }

  .az-related {
    padding: 2rem 0 3rem;
  }
  .az-related .woocommerce ul.products li {
    flex: 0 0 280px;
    max-width: 280px;
  }
  .az-pcard__title {
    font-size: 1.08rem;
  }
  .az-pcard__desc {
    font-size: 0.88rem;
  }
  .az-pcard__price {
    font-size: 1.02rem;
  }
  .az-recon {
    padding: 1rem 0;
  }
  .az-recon__card {
    min-width: 220px;
    padding: 1.25rem;
    border-radius: 14px;
  }
  .az-recon__card h4 {
    font-size: 1.05rem;
  }
  .az-recon__card p {
    font-size: 0.92rem;
  }
  .az-recon__num {
    font-size: 2.8rem;
    -webkit-text-stroke: 2px var(--border-light);
  }
  .az-research {
    padding: 1rem 0;
  }
  .az-research__list {
    gap: 12px;
  }
  .az-research__item {
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    gap: 14px;
  }
  .az-research__text h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }
  .az-research__text span {
    font-size: 0.9rem;
  }
  .az-research__badge {
    font-size: 0.65rem;
    padding: 2px 7px;
  }
  .az-faq {
    padding: 1rem 0;
  }
  .az-faq__list {
    gap: 10px;
  }
  .az-faq__item {
    border-radius: 14px;
  }
  .az-faq__q {
    font-size: 1.05rem;
    padding: 1.1rem 1.3rem;
  }
  .az-faq__a p {
    font-size: 0.95rem;
    padding: 0 1.3rem;
  }
  .az-faq__item[data-open="true"] .az-faq__a p {
    padding: 0 1.3rem 1.1rem;
  }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .fp-card { grid-template-columns: 1fr; }
  .fp-visual { min-height: 280px; }
  .cta-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-content p { margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-newsletter { max-width: 100%; }

  .az-pdp { gap: 2rem; }
}

@media (max-width: 768px) {
  .main-nav, .header-search { display: none; }
  .mobile-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .mobile-search-toggle { display: flex; }

  /* Header mobile fix */
  .site-header {
    max-width: 100vw;
    overflow: hidden;
  }
  .container {
    padding: 0 12px;
  }
  .header-inner {
    gap: 6px;
    max-width: 100%;
  }
  .btn-header {
    display: none;
  }
  .header-right {
    gap: 2px;
  }
  .header-icon {
    width: 34px;
    height: 34px;
  }
  .site-logo__img,
  .site-header .site-logo .site-logo__img {
    height: 34px !important;
    max-height: 34px;
  }

  /* Cat strip contained */
  .cat-strip {
    padding: 0 12px;
    max-width: 100vw !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100% !important;
  }
  .cat-strip-inner {
    width: max-content;
  }
  .cat-pill {
    padding: 12px 16px;
    font-size: 0.82rem;
  }

  .hero-feature h1 { font-size: 2rem; }
  .hero-feature { padding: 36px; }
  .hero-side { grid-template-columns: 1fr; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }

  .trust-strip-inner { flex-wrap: wrap; gap: 20px; justify-content: center; }

  .sp-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }

  .cat-strip-inner { gap: 0; }

  .fp-body { padding: 32px; }
  .fp-body h2 { font-size: 1.6rem; }

  .cta-inner { padding: 40px 28px; }
  .footer-top { padding: 40px 0 32px; }
  .footer-logo__img { height: 34px; }
  .footer-tagline { font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 32px 0; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { font-size: 0.8rem; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* ---- Product page mobile ---- */
  .az-pdp-wrap {
    padding: 12px 1rem 0;
    overflow-x: hidden;
  }
  .az-pdp {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
  }
  .az-pdp__media {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .az-pdp__sticky { position: static; }
  .az-gallery {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
  }
  .az-gallery__slide > img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
  }
  .az-pdp__info {
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .az-title { font-size: 2rem; }
  .az-price .price,
  .az-price .woocommerce-Price-amount {
    font-size: 1.8rem !important;
  }
  .az-desc-card {
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .az-gal-nav { width: 40px; height: 40px; }
  .az-gal-prev { left: 0.5rem; }
  .az-gal-next { right: 0.5rem; }

  /* Trust bar mobile */
  .az-trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  /* Highlight + detail cards stay as base mobile styles */

  /* Cart form mobile */
  .az-cart .single_add_to_cart_button {
    padding: 14px 24px !important;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
  }
  .az-cart .variations select {
    padding: 11px 14px;
    font-size: 0.85rem;
  }
  .az-cart .quantity .qty {
    padding: 11px 14px;
  }
  .az-cart .variations,
  .az-cart .variations tbody,
  .az-cart .variations tr,
  .az-cart .variations td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .az-cart table.variations {
    border: none !important;
    border-collapse: collapse;
  }

  /* Cards section mobile */
  .az-cards-section { padding: 0.5rem 0 0; }

  /* Modal mobile */
  .az-modal { width: 95%; max-height: 85vh; }

  /* Related products mobile */
  .az-related .woocommerce ul.products li {
    flex: 0 0 220px;
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .sp-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }

  .az-pdp-wrap { padding: 8px 0.75rem 0; }
  .az-title { font-size: 1.6rem; }
  .az-price .price,
  .az-price .woocommerce-Price-amount {
    font-size: 1.6rem !important;
  }
  .az-gallery { border-radius: 10px; }
  .az-crumb { font-size: 0.7rem; margin-bottom: 16px; }
}

/* ============================================
   Collection / Category Archive
   ============================================ */
.az-collection {
  min-height: 60vh;
}
.az-col-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, var(--accent) 100%);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.az-col-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(20, 184, 166, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.az-col-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.az-col-hero__content {
  max-width: 560px;
}
.az-col-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
}
.az-col-hero__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.az-col-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin: 0 0 14px;
  max-width: 480px;
}
.az-col-hero__count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.az-col-hero__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-bright);
  flex-shrink: 0;
  backdrop-filter: blur(6px);
}
.az-col-products {
  padding: 2rem 0 3rem;
}
.az-col-products .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.az-col-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 3rem 0;
}

@media (max-width: 768px) {
  .az-col-hero {
    padding: 36px 0 28px;
  }
  .az-col-hero__title {
    font-size: 1.6rem;
  }
  .az-col-hero__desc {
    font-size: 0.88rem;
  }
  .az-col-hero__icon {
    display: none;
  }
  .az-col-products .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .az-col-products .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   Policy Page Template Styles
   ============================================ */

/* --- Hero Section --- */
.policy-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #14B8A6 100%);
  padding: 56px 20px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 0%, rgba(20, 184, 166, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.policy-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.policy-hero__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.policy-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 14px;
  line-height: 1.5;
  font-weight: 400;
}

.policy-hero__date {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media (min-width: 768px) {
  .policy-hero {
    padding: 72px 40px 60px;
  }
  .policy-hero__title {
    font-size: 2.6rem;
  }
  .policy-hero__subtitle {
    font-size: 1.15rem;
  }
}

/* --- Content Wrapper --- */
.policy-content-wrap {
  background: var(--bg);
  padding: 32px 16px 64px;
}

.policy-container {
  max-width: 780px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .policy-content-wrap {
    padding: 48px 40px 80px;
  }
}

/* --- Overview Card (first block in content) --- */
.policy-content .policy-overview {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.policy-overview p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

.policy-overview p + p {
  margin-top: 10px;
}

.policy-overview strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .policy-content .policy-overview {
    padding: 28px 32px;
  }
}

/* --- Content Typography --- */
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 28px 0 10px;
  line-height: 1.3;
}

.policy-content p {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 16px;
}

.policy-content ul,
.policy-content ol {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 16px;
  padding-left: 22px;
}

.policy-content li {
  margin-bottom: 6px;
}

.policy-content li::marker {
  color: var(--accent);
}

.policy-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(20, 184, 166, 0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}

.policy-content a:hover {
  text-decoration-color: var(--accent);
}

.policy-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-content em {
  font-style: italic;
}

/* --- Section Dividers --- */
.policy-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* --- Info Callout Box --- */
.policy-content .policy-callout {
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 20px;
  margin: 24px 0;
}

.policy-callout p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.policy-callout strong {
  color: var(--text-primary);
}

/* --- Contact Block --- */
.policy-content .policy-contact {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 36px;
}

.policy-contact h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.policy-contact p {
  margin-bottom: 8px;
}

.policy-contact p:last-child {
  margin-bottom: 0;
}

/* --- Table (for cookies, etc.) --- */
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.policy-content thead th {
  background: #F1F5F9;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-content tbody td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.policy-content tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive table wrapper */
.policy-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

.policy-table-wrap table {
  margin: 0;
  min-width: 520px;
}
/* ============================================================
   NXPeptides Extra Styles — az-extra-styles.css
   Mobile-first | Aquamarine accent | Compact layout
   ============================================================ */

/* ----------------------------------------------------------
   1. HOMEPAGE STYLES (.vl-* prefix)
   ---------------------------------------------------------- */

/* --- Hero --- */
.vl-hero {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 50%, #14B8A6 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.vl-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(20, 184, 166, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.vl-hero__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  position: relative;
}

.vl-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 28px;
  line-height: 1.5;
  position: relative;
}

.vl-hero__ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.vl-hero__cta--primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.vl-hero__cta--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.vl-hero__cta--secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.vl-hero__cta--secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .vl-hero {
    padding: 100px 40px;
  }
  .vl-hero__title {
    font-size: 3.2rem;
  }
  .vl-hero__subtitle {
    font-size: 1.15rem;
  }
}

/* --- Trust Strip --- */
.vl-trust {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vl-trust::-webkit-scrollbar {
  display: none;
}

.vl-trust__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  scroll-snap-align: start;
  white-space: nowrap;
}

.vl-trust__badge svg,
.vl-trust__badge img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .vl-trust {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
  }
}

/* --- Categories --- */
.vl-categories {
  padding: 2rem 0;
}

.vl-categories__heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

.vl-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 20px;
}

.vl-categories__card {
  background: linear-gradient(135deg, var(--accent-dim) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.vl-categories__card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.vl-categories__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.1rem;
}

.vl-categories__card-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.vl-categories__card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0 0 8px;
}

.vl-categories__card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

@media (min-width: 768px) {
  .vl-categories__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* --- Product Grids (Bestsellers / Arrivals) --- */
.vl-bestsellers,
.vl-arrivals {
  padding: 2rem 0;
}

.vl-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 1rem;
}

.vl-section-header__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.vl-section-header__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}

.vl-section-header__link:hover {
  color: var(--accent-bright);
}

.vl-bestsellers .woocommerce ul.products,
.vl-arrivals .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 20px;
  margin: 0;
  list-style: none;
}

.vl-bestsellers .woocommerce ul.products::before,
.vl-bestsellers .woocommerce ul.products::after,
.vl-arrivals .woocommerce ul.products::before,
.vl-arrivals .woocommerce ul.products::after {
  display: none;
}

.vl-bestsellers .woocommerce ul.products li.product,
.vl-arrivals .woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

@media (min-width: 600px) {
  .vl-bestsellers .woocommerce ul.products,
  .vl-arrivals .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 960px) {
  .vl-bestsellers .woocommerce ul.products,
  .vl-arrivals .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* --- Spotlight --- */
.vl-spotlight {
  padding: 2rem 20px;
}

.vl-spotlight__card {
  background: linear-gradient(135deg, var(--accent-dim) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.vl-spotlight__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vl-spotlight__content {
  padding: 1.5rem;
}

.vl-spotlight__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 6px;
}

.vl-spotlight__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.vl-spotlight__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 14px;
}

.vl-spotlight__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.vl-spotlight__benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 3px 0;
}

.vl-spotlight__benefits li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.vl-spotlight__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 14px;
}

.vl-spotlight__price .vl-spotlight__price-old {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
}

.vl-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.vl-spotlight__cta:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .vl-spotlight__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .vl-spotlight__image {
    height: 100%;
    aspect-ratio: unset;
  }
  .vl-spotlight__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* --- Stats --- */
.vl-stats {
  padding: 2rem 20px;
}

.vl-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.vl-stats__item {
  text-align: center;
  padding: 16px 8px;
}

.vl-stats__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.vl-stats__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

@media (min-width: 768px) {
  .vl-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Reviews --- */
.vl-reviews {
  padding: 2rem 0;
}

.vl-reviews__heading {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.25rem;
  padding: 0 20px;
  color: var(--text-primary);
}

.vl-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0 20px;
}

.vl-reviews__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.vl-reviews__stars {
  color: #F59E0B;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.vl-reviews__quote {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 12px;
}

.vl-reviews__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vl-reviews__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.vl-reviews__author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.vl-reviews__verified {
  font-size: 0.75rem;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 3px;
}

@media (min-width: 768px) {
  .vl-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* --- Quality --- */
.vl-quality {
  padding: 2rem 20px;
}

.vl-quality__card {
  background: var(--accent-dim);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.vl-quality__icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.vl-quality__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.vl-quality__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.vl-quality__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
}

.vl-quality__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.vl-quality__feature-icon {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .vl-quality__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* --- Newsletter --- */
.vl-newsletter {
  background: #0f172a;
  padding: 2.5rem 20px;
  text-align: center;
  color: #fff;
}

.vl-newsletter__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.vl-newsletter__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 20px;
}

.vl-newsletter__form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.vl-newsletter__input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  min-width: 0;
}

.vl-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.vl-newsletter__btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.vl-newsletter__btn:hover {
  background: var(--accent-bright);
}

@media (min-width: 768px) {
  .vl-newsletter__form {
    max-width: 600px;
  }
}


/* ============================================================
   2. SHOP / ARCHIVE PAGE STYLES
   ============================================================ */

/* ── Shop hero section ── */
.az-shop {
  background: var(--bg);
}

.az-shop-hero {
  background: linear-gradient(135deg, #0F172A 0%, #134E4A 60%, var(--accent) 100%);
  padding: 2.5rem 0 2rem;
  text-align: center;
}

@media (min-width: 769px) {
  .az-shop-hero {
    padding: 3.5rem 0 2.5rem;
  }
}

.az-shop-hero__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem;
}

@media (min-width: 769px) {
  .az-shop-hero__title {
    font-size: 2.4rem;
  }
}

.az-shop-hero__desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin: 0 0 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.az-shop-hero__count {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-bright);
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

/* ── Shop controls bar ── */
.az-shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 14px;
}

.az-shop-controls__count .woocommerce-result-count {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
}

.az-shop-controls__ordering select.orderby {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 5px 26px 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-elevated) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center;
  color: var(--text-secondary);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease;
}

.az-shop-controls__ordering select.orderby:hover {
  border-color: var(--accent);
}

.az-shop-controls__ordering select.orderby:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

/* ── Shop product grid ── */
.az-shop-grid .woocommerce ul.products,
.az-shop-grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

@media (min-width: 600px) {
  .az-shop-grid .woocommerce ul.products,
  .az-shop-grid ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 960px) {
  .az-shop-grid .woocommerce ul.products,
  .az-shop-grid ul.products {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* ── Pagination ── */
.az-shop-pagination {
  padding: 1.5rem 0 2rem;
  text-align: center;
}

/* ── Empty state ── */
.az-shop-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.woocommerce-page .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Archive page title */
.woocommerce-products-header__title,
.woocommerce-page .page-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 1.5rem 0 1rem;
}

@media (min-width: 768px) {
  .woocommerce-products-header__title,
  .woocommerce-page .page-title {
    font-size: 2.2rem;
  }
}

/* Result count + ordering row */
.woocommerce-page .woocommerce-result-count,
.woocommerce-page .woocommerce-ordering {
  float: none !important;
}

.woocommerce-page .woocommerce-notices-wrapper + .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

.woocommerce-page .woocommerce-ordering select {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 6px 30px 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  color: var(--text-secondary);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease;
}

.woocommerce-page .woocommerce-ordering select:hover {
  border-color: var(--text-muted);
}

.woocommerce-page .woocommerce-ordering select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-glow);
}

/* Product grid — kill WooCommerce float layout */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 600px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 960px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* Pagination */
.woocommerce-pagination {
  text-align: center;
  padding: 1.5rem 0;
}

.woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-pagination ul.page-numbers li {
  margin: 0;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.woocommerce-pagination .page-numbers:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.woocommerce-pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 700;
}

.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
  font-size: 1rem;
}


/* ============================================================
   3. CART PAGE STYLES
   ============================================================ */

.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
}

/* Cart table overrides */
.woocommerce table.shop_table {
  border: none !important;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.woocommerce table.shop_table th {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 10px 12px;
  border-bottom: 1px solid var(--border) !important;
  background: transparent;
}

.woocommerce table.shop_table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border) !important;
  border-top: none !important;
  vertical-align: middle;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.woocommerce table.shop_table tr:last-child td {
  border-bottom: none !important;
}

/* Product thumbnail in cart */
.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Product name in cart */
.woocommerce-cart table.shop_table .product-name a {
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.woocommerce-cart table.shop_table .product-name a:hover {
  color: var(--accent);
}

/* Quantity input */
.woocommerce .quantity .qty {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  width: 56px;
  padding: 8px 6px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--bg-card);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.woocommerce .quantity .qty:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Remove button */
.woocommerce a.remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  color: #ef4444 !important;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s;
}

.woocommerce a.remove:hover {
  background: #ef4444 !important;
  color: #fff !important;
}

/* Price in cart */
.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
  font-weight: 600;
  color: var(--text-primary);
}

/* Update cart button */
.woocommerce-cart table.shop_table .actions .button {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.woocommerce-cart table.shop_table .actions .button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Coupon input */
.woocommerce-cart .coupon .input-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  margin-right: 6px;
}

.woocommerce-cart .coupon .input-text:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Cart totals */
.woocommerce .cart-collaterals .cart_totals {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.woocommerce .cart_totals table.shop_table {
  margin: 0;
}

.woocommerce .cart_totals table.shop_table th {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-secondary);
  padding: 10px 0;
}

.woocommerce .cart_totals table.shop_table td {
  text-align: right;
  padding: 10px 0;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

.woocommerce .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  background: var(--accent) !important;
  color: #fff !important;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-pill) !important;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.2s, transform 0.2s;
}

.woocommerce .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-1px);
}

/* Mobile cart — stack into cards */
@media (max-width: 767px) {
  .woocommerce-cart table.shop_table thead {
    display: none;
  }

  .woocommerce-cart table.shop_table tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
  }

  .woocommerce-cart table.shop_table td {
    border: none !important;
    padding: 0;
  }

  .woocommerce-cart table.shop_table td.product-remove {
    position: absolute;
    right: 0;
    top: 14px;
  }

  .woocommerce-cart table.shop_table td.product-thumbnail {
    width: 60px;
  }

  .woocommerce-cart table.shop_table td.product-name {
    flex: 1;
    min-width: 0;
  }

  .woocommerce-cart table.shop_table td.product-price {
    width: 100%;
    padding-left: 68px;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .woocommerce-cart table.shop_table td.product-quantity {
    padding-left: 68px;
  }

  .woocommerce-cart table.shop_table td.product-subtotal {
    margin-left: auto;
    font-size: 0.95rem;
  }

  .woocommerce-cart table.shop_table td.actions {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border) !important;
  }
}

@media (min-width: 960px) {
  .woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
  }

  .woocommerce .cart-collaterals {
    margin-top: 0;
  }

  .woocommerce .cart-collaterals .cart_totals {
    margin-top: 0;
    position: sticky;
    top: 20px;
  }
}


/* ============================================================
   4. MY ACCOUNT PAGE STYLES
   ============================================================ */

/* Hide raw "My account" page title */
.woocommerce-account .az-wc-page > .container > h1,
.woocommerce-account .page-content > h2:first-child {
  display: none;
}

.woocommerce-account .woocommerce {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 20px;
}

/* Navigation */
.woocommerce-MyAccount-navigation {
  margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
  display: none;
}

.woocommerce-MyAccount-navigation ul li {
  flex-shrink: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: all 0.2s;
}

.woocommerce-MyAccount-navigation ul li a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard.is-active a {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}

/* Nav icons via pseudo */
.woocommerce-MyAccount-navigation-link--dashboard a::before { content: '\1F4CA'; margin-right: 2px; }
.woocommerce-MyAccount-navigation-link--orders a::before { content: '\1F4E6'; margin-right: 2px; }
.woocommerce-MyAccount-navigation-link--downloads a::before { content: '\2B07'; margin-right: 2px; }
.woocommerce-MyAccount-navigation-link--edit-address a::before { content: '\1F4CD'; margin-right: 2px; }
.woocommerce-MyAccount-navigation-link--edit-account a::before { content: '\2699'; margin-right: 2px; }
.woocommerce-MyAccount-navigation-link--customer-logout a::before { content: '\1F6AA'; margin-right: 2px; }

@media (min-width: 768px) {
  .woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
  }

  .woocommerce-MyAccount-navigation {
    margin-bottom: 0;
  }

  .woocommerce-MyAccount-navigation ul {
    flex-direction: column;
    overflow-x: visible;
  }

  .woocommerce-MyAccount-navigation ul li a {
    width: 100%;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }
}

/* Content area */
.woocommerce-MyAccount-content {
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
}

/* Order history table */
.woocommerce-MyAccount-content table.woocommerce-orders-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table th {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg);
  padding: 10px 14px;
  text-align: left;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table .button {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: none;
  transition: background 0.2s;
}

.woocommerce-MyAccount-content table.woocommerce-orders-table .button:hover {
  background: var(--accent-bright);
}

/* Addresses */
.woocommerce-MyAccount-content .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.woocommerce-MyAccount-content .woocommerce-Address {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.woocommerce-MyAccount-content .woocommerce-Address header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.woocommerce-MyAccount-content .woocommerce-Address header h3 {
  font-size: 1rem;
  margin: 0;
}

.woocommerce-MyAccount-content .woocommerce-Address header a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 600px) {
  .woocommerce-MyAccount-content .woocommerce-Addresses {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Forms (edit account, etc.) */
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-form-row,
.woocommerce-MyAccount-content form .form-row {
  margin-bottom: 14px;
}

.woocommerce-MyAccount-content form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.woocommerce-MyAccount-content form input[type="text"],
.woocommerce-MyAccount-content form input[type="email"],
.woocommerce-MyAccount-content form input[type="password"],
.woocommerce-MyAccount-content form input[type="tel"],
.woocommerce-MyAccount-content form select,
.woocommerce-MyAccount-content form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-card);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.woocommerce-MyAccount-content form input:focus,
.woocommerce-MyAccount-content form select:focus,
.woocommerce-MyAccount-content form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.woocommerce-MyAccount-content form .button {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.woocommerce-MyAccount-content form .button:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* Login / Register forms */
.woocommerce-form-login,
.woocommerce-form-register {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  max-width: 440px;
  margin: 0 auto;
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

.woocommerce-form-login .form-row,
.woocommerce-form-register .form-row {
  margin-bottom: 14px;
}

.woocommerce-form-login label,
.woocommerce-form-register label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.woocommerce-form-login input[type="text"],
.woocommerce-form-login input[type="email"],
.woocommerce-form-login input[type="password"],
.woocommerce-form-register input[type="text"],
.woocommerce-form-register input[type="email"],
.woocommerce-form-register input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-card);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.woocommerce-form-login input:focus,
.woocommerce-form-register input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Remember me checkbox */
.woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  border-radius: 4px;
  cursor: pointer;
}

/* Submit buttons */
.woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register .woocommerce-form-register__submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}

.woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce-form-register .woocommerce-form-register__submit:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

/* Lost password + register links */
.woocommerce-form-login .woocommerce-LostPassword a,
.woocommerce-form-login + p a,
.woocommerce-form-register + p a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
  color: var(--accent-bright);
}

/* Side-by-side login/register on desktop */
@media (min-width: 768px) {
  .woocommerce-account:not(.logged-in) .u-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
  }

  .woocommerce-form-login,
  .woocommerce-form-register {
    max-width: none;
    margin: 0;
  }
}


/* ============================================================
   5. RELATED PRODUCTS FIX
   ============================================================ */

.az-related .woocommerce ul.products li.product {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.az-related .woocommerce ul.products li.product:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
  outline: none !important;
}

.az-related .woocommerce ul.products li.product .az-pcard {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  outline: none !important;
}

.az-related .woocommerce ul.products li.product:hover .az-pcard {
  border-color: rgba(20, 184, 166, 0.35);
  box-shadow: 0 4px 20px rgba(20, 184, 166, 0.12);
}

/* Cap card widths on desktop */
@media (min-width: 960px) {
  .az-related .woocommerce ul.products {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .az-related .woocommerce ul.products li.product {
    flex: 0 1 240px;
    max-width: 240px;
  }
}


/* ============================================================
   6. GLOBAL WOOCOMMERCE CLEANUP
   ============================================================ */

/* WooCommerce notices / messages */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--accent) !important;
  background: var(--accent-dim);
  color: var(--text-primary);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
  color: var(--accent) !important;
}

.woocommerce .woocommerce-error {
  border-top-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.06);
  color: var(--text-primary);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

/* WooCommerce breadcrumb — match product page style */
.woocommerce .woocommerce-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.woocommerce .woocommerce-breadcrumb a {
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.woocommerce .woocommerce-breadcrumb > span:last-child {
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 600;
}

/* Star ratings (global) */
.woocommerce .star-rating {
  color: #F59E0B;
}

/* General button resets */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--accent) !important;
  color: #fff !important;
  border: none;
  border-radius: var(--radius-pill);
}

.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-1px);
}

/* Loading spinner color override */
.woocommerce .blockUI.blockOverlay::before {
  border-color: var(--accent) transparent transparent !important;
}

/* ============================================================
   7. PAGE CONTENT WRAPPER (cart, account, policy pages)
   ============================================================ */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 20px 3rem;
}

/* ============================================================
   8. WC BLOCK-BASED CART STYLES
   ============================================================ */
.woocommerce-cart .page-content {
  max-width: 1100px;
}

/* Main cart block container */
.wp-block-woocommerce-cart {
  font-family: var(--font-sans) !important;
}

/* Cart line items area */
.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row {
  border-bottom: 1px solid var(--border) !important;
  padding: 16px 0 !important;
}

.wc-block-cart .wc-block-cart-items .wc-block-cart-items__row:last-child {
  border-bottom: none !important;
}

/* Product image in block cart */
.wc-block-cart .wc-block-cart-item__image img {
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--border);
}

/* Product name */
.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-name {
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
}

.wc-block-cart .wc-block-cart-item__product .wc-block-components-product-name:hover {
  color: var(--accent) !important;
}

/* Quantity selector in block cart */
.wc-block-cart .wc-block-components-quantity-selector {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}

.wc-block-cart .wc-block-components-quantity-selector input {
  font-family: var(--font-sans) !important;
  font-size: 0.9rem !important;
  color: var(--text-primary) !important;
}

.wc-block-cart .wc-block-components-quantity-selector button {
  color: var(--text-secondary) !important;
  border: none !important;
  background: transparent !important;
}

.wc-block-cart .wc-block-components-quantity-selector button:hover {
  color: var(--accent) !important;
  background: var(--accent-dim) !important;
}

/* Remove item link */
.wc-block-cart .wc-block-cart-item__remove-link {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
}

.wc-block-cart .wc-block-cart-item__remove-link:hover {
  color: #ef4444 !important;
}

/* Price display */
.wc-block-cart .wc-block-components-product-price {
  font-weight: 600 !important;
  color: var(--text-primary) !important;
}

/* Cart totals sidebar */
.wc-block-cart .wp-block-woocommerce-cart-totals-block {
  background: var(--bg-card) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 1.25rem !important;
}

/* Order summary heading */
.wc-block-cart .wp-block-woocommerce-cart-order-summary-heading-block {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

/* Summary rows */
.wc-block-cart .wc-block-components-totals-item {
  border-color: var(--border) !important;
}

.wc-block-cart .wc-block-components-totals-item__label {
  font-size: 0.88rem !important;
  color: var(--text-secondary) !important;
}

.wc-block-cart .wc-block-components-totals-item__value {
  font-weight: 600 !important;
  color: var(--text-primary) !important;
}

/* Proceed to checkout button */
.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button {
  background: var(--accent) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  padding: 14px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.wc-block-cart .wp-block-woocommerce-proceed-to-checkout-block .wc-block-components-button:hover {
  background: var(--accent-bright) !important;
  transform: translateY(-1px);
}

/* Coupon code input in block cart */
.wc-block-cart .wc-block-components-text-input input {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-sans) !important;
  padding: 10px 14px !important;
}

.wc-block-cart .wc-block-components-text-input input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
}

/* Empty cart state */
.wc-block-cart__empty-cart__title {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  color: var(--text-primary) !important;
}

/* New products grid in empty cart */
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

.wc-block-grid__product {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wc-block-grid__product:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
  border-color: var(--accent);
}

.wc-block-grid__product-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wc-block-grid__product-title {
  font-family: var(--font-display) !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  padding: 10px 12px 2px !important;
  color: var(--text-primary) !important;
}

.wc-block-grid__product-price {
  padding: 0 12px 6px !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  font-size: 0.95rem !important;
}

.wc-block-grid__product .wp-block-button .wp-block-button__link {
  background: var(--accent) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  border-radius: var(--radius-pill) !important;
  padding: 8px 16px !important;
  margin: 4px 12px 12px !important;
  border: none !important;
  transition: background 0.2s !important;
}

.wc-block-grid__product .wp-block-button .wp-block-button__link:hover {
  background: var(--accent-bright) !important;
}

@media (max-width: 767px) {
  .wc-block-grid__products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* ============================================================
   9. WC BLOCK-BASED CHECKOUT STYLES
   ============================================================ */
.woocommerce-checkout .page-content {
  max-width: 900px;
}

.wc-block-checkout .wc-block-components-text-input input,
.wc-block-checkout .wc-block-components-text-input textarea {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-sans) !important;
}

.wc-block-checkout .wc-block-components-text-input input:focus,
.wc-block-checkout .wc-block-components-text-input textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow) !important;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button {
  background: var(--accent) !important;
  color: #fff !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  padding: 14px !important;
  transition: background 0.2s !important;
}

.wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
  background: var(--accent-bright) !important;
}
