/* ============================================================
   Pepvela Shop -- shop.css
   ============================================================ */

/* Reset and base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, sans-serif;
  background: #f8f7ff;
  color: #1e1648;
  line-height: 1.6;
}
h1, h2, h3, h4 {
  font-family: Georgia, serif;
  color: #1e1648;
}
a { color: #6c52e3; text-decoration: none; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; }

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section helpers */
.section {
  padding: 64px 0;
}
.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #6b6890;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Compliance bar */
.compliance-bar {
  background: #1e1648;
  color: #ede9ff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Buttons */
.btn-primary {
  background: #6c52e3;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-ghost {
  background: transparent;
  color: #6c52e3;
  border: 2px solid #6c52e3;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: #ede9ff;
}
.btn-ghost-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
}
.btn-product {
  background: #6c52e3;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-top: 12px;
  transition: opacity 0.2s;
}
.btn-product:hover { opacity: 0.9; }
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.btn-whatsapp:hover { opacity: 0.9; }
.btn-request {
  background: #6c52e3;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

/* Nav */
.shop-nav {
  background: white;
  border-bottom: 1px solid #ddd8f5;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.1;
}
.logo-pep { color: #1e1648; }
.logo-vela { color: #6c52e3; }
.logo-sub {
  font-size: 0.65rem;
  color: #6b6890;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: -4px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: #6b6890;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1e1648; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #1e1648;
}
.mobile-nav {
  background: white;
  border-top: 1px solid #ddd8f5;
  padding: 16px 24px;
}
.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: #6b6890;
  border-bottom: 1px solid #f0eeff;
}
.mobile-nav a.btn-request {
  color: white;
  margin-top: 12px;
  text-align: center;
  border-bottom: none;
}

/* Hero (homepage) */
.shop-hero {
  background: #f8f7ff;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  background: #ede9ff;
  color: #6c52e3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-grid h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-grid h1 span {
  color: #6c52e3;
  display: block;
}
.hero-subtitle {
  color: #6b6890;
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-visual {
  background: linear-gradient(135deg, #ede9ff, #ddd8f5);
  border-radius: 16px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.hero-visual-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(108,82,227,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.hero-visual-text {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: #1e1648;
  font-weight: 700;
}
.hero-visual-sub {
  color: #6b6890;
  font-size: 0.9rem;
}

/* Dark hero (interior pages) */
.dark-hero {
  background: linear-gradient(135deg, #1e1648 0%, #2d1f6e 100%);
  padding: 64px 0;
  text-align: center;
}
.dark-hero h1 { color: white; font-size: 2.4rem; margin-bottom: 12px; }
.dark-hero p { color: #ede9ff; max-width: 640px; margin: 0 auto; }

/* Trust strip */
.trust-strip {
  background: white;
  border-top: 1px solid #ddd8f5;
  border-bottom: 1px solid #ddd8f5;
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.trust-item svg {
  width: 36px;
  height: 36px;
  color: #6c52e3;
  margin-bottom: 12px;
}
.trust-item h4 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 0.82rem;
  color: #6b6890;
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(108,82,227,0.1);
}
.product-img-placeholder {
  background: linear-gradient(135deg, #ede9ff, #ddd8f5);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6890;
  font-size: 0.9rem;
  text-align: center;
  padding: 16px;
}
.product-card-body {
  padding: 20px;
}
.category-badge {
  display: inline-block;
  background: #ede9ff;
  color: #6c52e3;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.product-strength {
  color: #6b6890;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* Filter pills */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  background: white;
  border: 1px solid #ddd8f5;
  color: #6b6890;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #6c52e3;
  color: white;
  border-color: #6c52e3;
}

/* Inquiry form */
.inquiry-form-section {
  background: #f8f7ff;
  padding: 60px 0;
}
.inquiry-form-card {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
}
.inquiry-form-card h2 {
  margin-bottom: 20px;
}
.inquiry-form-card input,
.inquiry-form-card select,
.inquiry-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd8f5;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #1e1648;
  background: white;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
.inquiry-form-card input:focus,
.inquiry-form-card select:focus,
.inquiry-form-card textarea:focus {
  border-color: #6c52e3;
  outline: none;
}
.inquiry-form-card textarea {
  height: 120px;
  resize: vertical;
}
.success-msg {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 20px;
  color: #166534;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: #6b6890;
}
.breadcrumb a {
  color: #6c52e3;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* Footer */
.shop-footer {
  background: #1e1648;
  color: #ede9ff;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 40px;
}
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.footer-about {
  color: rgba(237,233,255,0.7);
  font-size: 0.88rem;
  max-width: 260px;
}
.footer-grid h4 {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-grid a {
  display: block;
  color: rgba(237,233,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-grid a:hover {
  color: #ede9ff;
}
.footer-text {
  color: rgba(237,233,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 8px;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(237,233,255,0.6);
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
}
/* Copyright line -- final footer line, small and subtle, matches footer type */
.footer-copyright {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(237,233,255,0.4);
  padding: 0 24px 20px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Dark CTA / COA section */
.dark-section {
  background: linear-gradient(135deg, #1e1648 0%, #2d1f6e 100%);
  padding: 64px 0;
  text-align: center;
}
.dark-section h2 { color: white; font-size: 2rem; margin-bottom: 16px; }
.dark-section p { color: #ede9ff; max-width: 640px; margin: 0 auto 28px; }
.dark-section .dark-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lavender platform section */
.platform-section {
  background: #ede9ff;
  padding: 64px 0;
  text-align: center;
}
.platform-section h2 { font-size: 1.8rem; margin-bottom: 16px; }
.platform-section p { color: #6b6890; max-width: 640px; margin: 0 auto 20px; }

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 48px;
  padding: 48px 0;
}
.product-gallery-main {
  background: linear-gradient(135deg, #ede9ff, #ddd8f5);
  border-radius: 12px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b6890;
  text-align: center;
  padding: 16px;
  margin-bottom: 12px;
}
.product-thumbnails {
  display: flex;
  gap: 8px;
}
.product-thumb {
  background: linear-gradient(135deg, #ede9ff, #ddd8f5);
  border-radius: 8px;
  height: 72px;
  flex: 1;
}
.product-detail h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.trust-badges {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.trust-badge {
  background: #f8f7ff;
  border: 1px solid #ddd8f5;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #6b6890;
}
.product-divider {
  border: none;
  border-top: 1px solid #ddd8f5;
  margin: 20px 0;
}
.inquiry-note {
  color: #6b6890;
  font-size: 0.9rem;
  margin: 16px 0;
  padding: 12px 16px;
  background: #f8f7ff;
  border-radius: 8px;
  border-left: 3px solid #6c52e3;
}
.product-secure-note {
  font-size: 0.78rem;
  color: #6b6890;
  text-align: center;
  margin-top: 10px;
}

/* Product tabs */
.product-tabs {
  margin-top: 48px;
  border-top: 2px solid #ddd8f5;
}
.tab-buttons {
  display: flex;
  border-bottom: 1px solid #ddd8f5;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 20px;
  border: none;
  background: none;
  color: #6b6890;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: system-ui, sans-serif;
}
.tab-btn.active {
  color: #6c52e3;
  border-bottom-color: #6c52e3;
  font-weight: 600;
}
.tab-content {
  display: none;
  padding: 32px 0;
}
.tab-content.active {
  display: block;
}
.tab-content h3 { margin-bottom: 12px; }
.tab-content p { margin-bottom: 12px; color: #1e1648; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.data-table td {
  padding: 10px 16px;
  border-bottom: 1px solid #f0eeff;
  font-size: 0.9rem;
}
.data-table td:first-child {
  font-weight: 600;
  color: #1e1648;
  width: 40%;
}
.disclaimer-box {
  background: #fff8e6;
  border: 1px solid #f0c040;
  border-left: 4px solid #e6a800;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: #7a5500;
  margin: 20px 0;
}

/* Product embedded inquiry */
.product-inquiry {
  background: #f8f7ff;
  border: 1px solid #ddd8f5;
  border-radius: 16px;
  padding: 40px;
  margin: 48px 0;
  max-width: 600px;
}
.product-inquiry h2 { margin-bottom: 20px; }
.product-inquiry input,
.product-inquiry textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd8f5;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #1e1648;
  background: white;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
.product-inquiry input:focus,
.product-inquiry textarea:focus {
  border-color: #6c52e3;
  outline: none;
}
.product-inquiry textarea { height: 100px; resize: vertical; }

/* FAQ */
.faq-section { padding: 48px 0; }
.faq-group { margin-bottom: 40px; }
.faq-group h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #ede9ff;
}
.faq-item {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #1e1648;
}
.faq-item p {
  color: #6b6890;
  font-size: 0.92rem;
}

/* Info blocks (testing / coas pages) */
.info-block {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}
.info-block h2 { font-size: 1.3rem; margin-bottom: 12px; }
.info-block p { color: #6b6890; margin-bottom: 12px; }
.info-block ul { color: #6b6890; margin: 12px 0 12px 20px; }
.info-block li { margin-bottom: 8px; }

/* COA request card grid */
.coa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coa-card {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.coa-card h3 { font-size: 1rem; margin: 10px 0 4px; }

/* Contact extras */
.contact-direct {
  text-align: center;
  margin-top: 24px;
  color: #6b6890;
}
.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
  text-align: center;
}
.contact-detail-card {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 12px;
  padding: 24px;
}
.contact-detail-card h4 { font-size: 0.9rem; margin-bottom: 6px; }
.contact-detail-card p { color: #6b6890; font-size: 0.9rem; }
.form-disclaimer {
  font-size: 0.8rem;
  color: #6b6890;
  margin-top: 16px;
  text-align: center;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
}

/* ===================== ADMIN ===================== */
.admin-nav {
  background: #1e1648;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
}
.admin-badge {
  background: #6c52e3;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 8px;
}
.admin-nav-actions {
  display: flex;
  align-items: center;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
  background: #f8f7ff;
}
.stat-card {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1e1648;
  font-family: Georgia, serif;
}
.stat-card label {
  color: #6b6890;
  font-size: 0.85rem;
}
.stat-card.new span { color: #6c52e3; }
.stat-card.contacted span { color: #0891b2; }
.stat-card.completed span { color: #059669; }
.inquiry-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.inquiry-table th {
  background: #f8f7ff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.8rem;
  color: #6b6890;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ddd8f5;
}
.inquiry-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f0eeff;
  font-size: 0.9rem;
  color: #1e1648;
}
.inquiry-row:hover {
  background: #f8f7ff;
  cursor: pointer;
}
.status-badge {
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-select {
  border: 1px solid #ddd8f5;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.85rem;
  color: #1e1648;
}
.btn-export {
  background: #ede9ff;
  color: #6c52e3;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 8px;
}
.btn-logout {
  background: transparent;
  color: #ede9ff;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}
.login-card {
  background: white;
  border: 1px solid #ddd8f5;
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.login-logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.login-subtitle {
  color: #6b6890;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.login-card input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd8f5;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.login-card input:focus {
  border-color: #6c52e3;
  outline: none;
}
.login-card .btn-primary { width: 100%; }
.error-msg {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 8px;
}
.filter-bar {
  padding: 16px 24px;
  border-bottom: 1px solid #ddd8f5;
  background: white;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.no-data {
  text-align: center;
  padding: 48px;
  color: #6b6890;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-grid h1 { font-size: 2rem; }
  .hero-visual { height: 220px; }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .coa-grid {
    grid-template-columns: 1fr;
  }
  .contact-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Pricing */
.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6c52e3;
  font-family: Georgia, serif;
  margin: 12px 0 4px;
}
.price-note {
  font-size: 0.82rem;
  color: #6b6890;
  margin-bottom: 16px;
}
.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #6c52e3;
  margin: 4px 0 8px;
}

/* ============================================================
   PREMIUM DESIGN SYSTEM (v2) -- design polish override layer
   CSS-only. Overrides earlier rules via cascade. No HTML/JS change.
   ============================================================ */

/* NAVIGATION */
.shop-nav {
  background: #ffffff;
  border-bottom: 1px solid #f0eeff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(30,22,72,0.06);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-pep { color: #1e1648; }
.logo-vela { color: #6c52e3; }
.logo-sub {
  font-size: 0.6rem;
  color: #6b6890;
  display: block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: #4a4570;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: #1e1648; }
.btn-request {
  background: #6c52e3;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-request:hover {
  background: #5a42cc;
  transform: translateY(-1px);
}

/* HERO SECTION */
.shop-hero {
  background: #f8f7ff;
  padding: 100px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ede9ff;
  color: #6c52e3;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-grid h1 {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1.15;
  color: #1e1648;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero-grid h1 span {
  color: #6c52e3;
  display: block;
}
.hero-subtitle {
  color: #6b6890;
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: #6c52e3;
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: #5a42cc;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(108,82,227,0.3);
}
.btn-ghost {
  background: transparent;
  color: #1e1648;
  border: 1.5px solid #ddd8f5;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: #6c52e3;
  color: #6c52e3;
  background: #f8f7ff;
}
.hero-visual {
  background: linear-gradient(145deg, #f0eeff 0%, #e8e0ff 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108,82,227,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-visual-text {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: #1e1648;
  font-weight: 700;
  position: relative;
}
.hero-visual-sub {
  color: #6b6890;
  font-size: 0.88rem;
  position: relative;
}

/* TRUST STRIP */
.trust-strip {
  background: #ffffff;
  border-top: 1px solid #f0eeff;
  border-bottom: 1px solid #f0eeff;
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.trust-item svg {
  width: 32px;
  height: 32px;
  color: #6c52e3;
  margin: 0 auto 12px;
  display: block;
}
.trust-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e1648;
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 0.8rem;
  color: #6b6890;
  line-height: 1.5;
}

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: white;
  border: 1px solid #f0eeff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(30,22,72,0.04);
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(108,82,227,0.12);
  transform: translateY(-3px);
  border-color: #ddd8f5;
}
.product-img-placeholder {
  background: linear-gradient(145deg, #f0eeff 0%, #e8e0ff 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b94c4;
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  font-weight: 500;
}
.product-card-body {
  padding: 22px;
}
.category-badge {
  display: inline-block;
  background: #ede9ff;
  color: #6c52e3;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-card h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: #1e1648;
  margin-bottom: 4px;
  font-weight: 700;
}
.product-strength {
  color: #9b94c4;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e1648;
  margin: 8px 0 14px;
  font-family: Georgia, serif;
}
.btn-product {
  background: #6c52e3;
  color: white;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-product:hover {
  background: #5a42cc;
  transform: translateY(-1px);
}

/* PRODUCT DETAIL PAGE */
.product-detail {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  padding: 56px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.product-gallery-main {
  background: linear-gradient(145deg, #f0eeff 0%, #e8e0ff 100%);
  border-radius: 16px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b94c4;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
}
.product-thumb {
  background: linear-gradient(145deg, #f0eeff 0%, #e8e0ff 100%);
  border-radius: 10px;
  height: 76px;
  flex: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumb:hover {
  border-color: #6c52e3;
}
.product-detail h1 {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: #1e1648;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.product-price {
  font-size: 2rem;
  font-weight: 700;
  color: #6c52e3;
  font-family: Georgia, serif;
  margin: 12px 0 6px;
}
.price-note {
  font-size: 0.8rem;
  color: #9b94c4;
  margin-bottom: 20px;
}
.trust-badges {
  display: flex;
  gap: 8px;
  margin: 16px 0 24px;
  flex-wrap: wrap;
}
.trust-badge {
  background: #f8f7ff;
  border: 1px solid #ede9ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.76rem;
  color: #4a4570;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.inquiry-note {
  color: #6b6890;
  font-size: 0.88rem;
  margin: 16px 0;
  padding: 14px 18px;
  background: #f8f7ff;
  border-radius: 10px;
  border-left: 3px solid #6c52e3;
  line-height: 1.5;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-top: 10px;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-1px);
}

/* PRODUCT TABS */
.product-tabs {
  margin-top: 56px;
  border-top: 2px solid #f0eeff;
}
.tab-buttons {
  display: flex;
  border-bottom: 1px solid #f0eeff;
  overflow-x: auto;
  gap: 4px;
}
.tab-btn {
  padding: 16px 22px;
  border: none;
  background: none;
  color: #9b94c4;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.tab-btn.active {
  color: #6c52e3;
  border-bottom-color: #6c52e3;
}
.tab-btn:hover {
  color: #1e1648;
}
.tab-content {
  display: none;
  padding: 36px 0;
}
.tab-content.active {
  display: block;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f8f7ff;
  font-size: 0.88rem;
}
.data-table td:first-child {
  font-weight: 700;
  color: #1e1648;
  width: 36%;
}
.data-table td:last-child {
  color: #4a4570;
}
.disclaimer-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.85rem;
  color: #78350f;
  margin: 20px 0;
  line-height: 1.6;
}

/* FILTER PILLS */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  background: white;
  border: 1.5px solid #e8e0ff;
  color: #6b6890;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.filter-btn.active,
.filter-btn:hover {
  background: #6c52e3;
  color: white;
  border-color: #6c52e3;
  box-shadow: 0 2px 8px rgba(108,82,227,0.25);
}

/* DARK HERO (interior pages) */
.dark-hero {
  background: linear-gradient(135deg, #1e1648 0%, #2d2070 100%);
  padding: 72px 0;
  text-align: center;
}
.dark-hero h1 {
  color: white;
  font-family: Georgia, serif;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
}
.dark-hero p {
  color: rgba(237,233,255,0.8);
  font-size: 1rem;
  margin-top: 12px;
}

/* INQUIRY FORM */
.inquiry-form-card {
  background: white;
  border: 1px solid #f0eeff;
  border-radius: 16px;
  padding: 44px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(30,22,72,0.06);
}
.inquiry-form-card h2 {
  font-family: Georgia, serif;
  color: #1e1648;
  margin-bottom: 28px;
  font-size: 1.5rem;
}
.inquiry-form-card input,
.inquiry-form-card select,
.inquiry-form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e8e0ff;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #1e1648;
  background: #fafaff;
  box-sizing: border-box;
  transition: border-color 0.2s;
  font-family: system-ui, sans-serif;
}
.inquiry-form-card input:focus,
.inquiry-form-card select:focus,
.inquiry-form-card textarea:focus {
  border-color: #6c52e3;
  outline: none;
  background: white;
}
.inquiry-form-card textarea {
  height: 130px;
  resize: vertical;
}
.success-msg {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 24px;
  color: #166534;
  text-align: center;
  font-weight: 500;
}

/* FOOTER */
.shop-footer {
  background: #1e1648;
  color: #ede9ff;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 56px;
}
.footer-logo {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
  text-decoration: none;
}
.footer-desc {
  color: rgba(237,233,255,0.6);
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-grid h4 {
  color: white;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-grid a {
  display: block;
  color: rgba(237,233,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-grid a:hover {
  color: #ede9ff;
}
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(237,233,255,0.4);
  line-height: 1.7;
  max-width: 1280px;
  margin: 0 auto;
}

/* COMPLIANCE BAR */
.compliance-bar {
  background: #1e1648;
  color: rgba(237,233,255,0.85);
  text-align: center;
  padding: 9px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

/* STATS ROW (admin) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 32px;
  background: #f8f7ff;
  border-bottom: 1px solid #f0eeff;
}
.stat-card {
  background: white;
  border: 1px solid #f0eeff;
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(30,22,72,0.04);
}
.stat-card span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1e1648;
  font-family: Georgia, serif;
}
.stat-card label {
  color: #9b94c4;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-card.new span { color: #6c52e3; }
.stat-card.contacted span { color: #0891b2; }
.stat-card.completed span { color: #059669; }

/* SECTION HEADINGS (Task 2) */
.section-heading {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  color: #1e1648;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-subheading {
  color: #6b6890;
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6c52e3;
  margin-bottom: 12px;
  display: block;
}

/* BREADCRUMB (Task 3) */
.breadcrumb {
  padding: 18px 0;
  font-size: 0.82rem;
  color: #9b94c4;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
}
.breadcrumb a {
  color: #6c52e3;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #1e1648;
  text-decoration: underline;
}
.breadcrumb span {
  color: #9b94c4;
  margin: 0 6px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .hero-grid h1 { font-size: 2.2rem; }
  .hero-visual { height: 240px; }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px 40px;
  }
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
  }
  .nav-container { padding: 0 20px; }
  .inquiry-form-card { padding: 28px 20px; }
  .shop-hero { padding: 60px 0 48px; }
}

/* ============================================================
   PRODUCT + HERO IMAGERY (real vial photos / hero)
   ============================================================ */
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  display: block;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
}
.hero-visual {
  padding: 0;
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

/* ============================================================
   PRODUCT IMAGE FIT FIX -- contain full vial, no overflow
   Root cause: img is a flex child with default min-height:auto,
   so it would not shrink below intrinsic size and overflowed
   onto the text. Fix: container overflow:hidden + fixed height,
   img min-height:0 + object-fit:contain.
   ============================================================ */
.product-img-placeholder {
  height: 220px;
  overflow: hidden;
  background: #f8f7ff;
}
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 14px;
}
.product-gallery-main {
  height: 380px;
  overflow: hidden;
  background: #f8f7ff;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 18px;
}

/* ============================================================
   HERO BANNER (full-width image) + LARGER VIALS
   ============================================================ */
/* Full-width banner hero -- image is the complete hero graphic */
.shop-hero {
  background: #f8f7ff;
  padding: 0 0 28px;
}
.hero-banner {
  max-width: 1280px;
  margin: 0 auto;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-banner-cta {
  text-align: center;
  margin-top: 22px;
}

/* Enlarge vials: white background, minimal padding, full vial visible */
.product-img-placeholder {
  height: 240px;
  overflow: hidden;
  background: #ffffff;
}
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 5px;
}
.product-gallery-main {
  height: 400px;
  overflow: hidden;
  background: #ffffff;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 6px;
}

/* ============================================================
   AUTHORITATIVE FINAL OVERRIDE (v3)
   Full-bleed clickable hero + guaranteed vial containment.
   Appended last so it wins over all earlier duplicate blocks.
   ============================================================ */
/* Full-bleed hero: break out of the 1280px cap, span viewport edge to edge */
.shop-hero {
  background: #f8f7ff;
  padding: 0;
}
.hero-banner {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  cursor: pointer;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Vial containment -- box-sizing + max-height stop any overflow */
.product-img-placeholder {
  height: 240px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 6px;
  box-sizing: border-box;
}
.product-gallery-main {
  height: 400px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 6px;
  box-sizing: border-box;
}

/* ============================================================
   CLEANUP PASS: WhatsApp float bottom-LEFT + profile CTA spacing
   ============================================================ */
.whatsapp-float {
  left: 28px;
  right: auto;
}
.cta-profile {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .whatsapp-float {
    left: 16px;
    right: auto;
  }
}

/* ============================================================
   COAS PAGE: uniform, even verified-COA grid
   ============================================================ */
.coa-card {
  display: flex;
  flex-direction: column;
}
.coa-card .coa-image-container {
  height: 240px;
  overflow: hidden;
}
.coa-card .coa-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.coa-card .coa-caption {
  margin-top: auto;
}

/* ============================================================
   FOOTER 5-COLUMN GRID + LEGAL/POLICY PAGE PROSE
   ============================================================ */
.footer-grid {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}
.legal-page {
  padding: 48px 0 64px;
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-updated {
  color: #9b94c4;
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.legal-content h2 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: #1e1648;
  margin: 28px 0 8px;
}
.legal-content p,
.legal-content li {
  color: #4a4570;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul {
  margin: 0 0 12px 20px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER REBALANCE: logo left + 4 even columns right
   ============================================================ */
.footer-grid {
  grid-template-columns: 1.5fr 3fr;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   AGE / CONSENT GATE MODAL
   ============================================================ */
body.age-gate-locked { overflow: hidden; }
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 72, 0.72);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate-card {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(30, 22, 72, 0.4);
}
.age-gate-header {
  background: #6c52e3;
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 28px;
}
.age-gate-body { padding: 26px 28px 28px; }
.age-gate-intro {
  color: #4a4570;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.age-gate-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
  color: #1e1648;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}
.age-gate-check input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}
.age-gate-check a { color: #6c52e3; text-decoration: underline; }
/* Secondary, de-emphasized preference (kept on by default). */
.age-gate-remember {
  font-size: 0.8rem;
  color: #9b94c4;
  margin-top: 2px;
  margin-bottom: 6px;
}
.age-gate-remember input {
  width: 15px;
  height: 15px;
}
.age-gate-buttons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.age-gate-agree {
  flex: 1;
  background: #6c52e3;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: system-ui, sans-serif;
}
.age-gate-agree:hover { opacity: 0.92; }
.age-gate-agree:disabled {
  background: #ddd8f5;
  color: #9b94c4;
  cursor: not-allowed;
}
.age-gate-exit {
  background: transparent;
  color: #b91c1c;
  border: 1.5px solid #e7b3b3;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: system-ui, sans-serif;
}
.age-gate-exit:hover { background: #fdf2f2; }
@media (max-width: 480px) {
  .age-gate-card { max-height: 94vh; }
  .age-gate-buttons { flex-direction: column; margin-top: 18px; }
  .age-gate-agree, .age-gate-exit { padding: 15px 20px; }
  .age-gate-header { font-size: 1.1rem; padding: 16px 20px; }
  .age-gate-body { padding: 20px; }
}

/* ============================================================
   FOOTER EMAIL SIGNUP -- "Stay in the loop"
   ============================================================ */
.footer-signup { margin-top: 22px; max-width: 320px; }
.footer-signup h4 {
  color: #ffffff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  font-weight: 700;
}
.footer-signup-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.footer-signup-form input {
  flex: 1;
  min-width: 150px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 0.85rem;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
.footer-signup-form input::placeholder { color: rgba(237,233,255,0.5); }
.footer-signup-form input:focus { outline: none; border-color: #6c52e3; }
.footer-signup-form button {
  background: #6c52e3;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: system-ui, sans-serif;
}
.footer-signup-form button:hover { opacity: 0.92; }
.footer-signup-msg { width: 100%; font-size: 0.8rem; margin-top: 8px; color: #ede9ff; }
@media (max-width: 768px) {
  .footer-signup { max-width: none; }
  .footer-signup-form input,
  .footer-signup-form button { width: 100%; flex: none; }
}

/* ============================================================
   HOMEPAGE EDUCATION SECTIONS + FEATURED 4-UP + CTA
   ============================================================ */
/* What Are Peptides? -- two-column (image one side, text other) */
.edu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.edu-split-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.edu-heading { text-align: left; margin-bottom: 6px; }
.edu-subhead {
  color: #6c52e3;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
}
.edu-split-text p { color: #6b6890; line-height: 1.7; margin-bottom: 14px; }
.edu-split-text .btn-ghost { margin-top: 8px; }
@media (max-width: 768px) {
  .edu-split { grid-template-columns: 1fr; gap: 28px; }
  .edu-heading { text-align: center; }
}

/* Research Areas -- 6 icon cards */
.research-areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.research-card {
  display: block;
  background: #ffffff;
  border: 1px solid #f0eeff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(30,22,72,0.04);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  text-decoration: none;
}
.research-card:hover {
  box-shadow: 0 8px 32px rgba(108,82,227,0.12);
  transform: translateY(-3px);
  border-color: #ddd8f5;
}
.research-card svg { width: 36px; height: 36px; color: #6c52e3; margin-bottom: 14px; }
.research-card h3 { font-family: Georgia, serif; font-size: 1.05rem; color: #1e1648; margin-bottom: 6px; }
.research-card p { color: #6b6890; font-size: 0.85rem; line-height: 1.5; }
@media (max-width: 900px) { .research-areas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .research-areas { grid-template-columns: 1fr; } }

/* Featured 4-in-a-row -- SCOPED to featured only (catalog/related .products-grid untouched) */
.featured-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .featured-grid { grid-template-columns: 1fr; } }

/* View Full Catalog CTA */
.featured-cta { text-align: center; margin-top: 36px; }

/* ============================================================
   ORDER LIST -- nav button, add buttons, slide-out drawer (Stage 1)
   ============================================================ */
.btn-orderlist {
  background: #ede9ff;
  color: #6c52e3;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.btn-orderlist:hover { background: #ddd8f5; }
.mobile-nav .btn-orderlist { display: block; margin-top: 8px; text-align: center; }

.btn-add-list {
  background: transparent;
  color: #6c52e3;
  border: 1.5px solid #6c52e3;
  border-radius: 8px;
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: system-ui, sans-serif;
  transition: all 0.2s;
}
.btn-add-list:hover { background: #ede9ff; }
.btn-add-list.added { background: #6c52e3; color: #fff; }
.product-detail .btn-add-list { display: block; width: 100%; text-align: center; margin-top: 10px; }
.product-card .btn-add-list { display: block; width: 100%; text-align: center; margin-top: 8px; }

/* Drawer */
.order-overlay { position: fixed; inset: 0; background: rgba(30,22,72,0.55); z-index: 9500; display: flex; justify-content: flex-end; }
.order-drawer { background: #fff; width: 420px; max-width: 92vw; height: 100%; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(30,22,72,0.25); }
.order-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid #f0eeff; }
.order-drawer-head h3 { font-family: Georgia, serif; color: #1e1648; font-size: 1.2rem; }
.order-close { background: none; border: none; font-size: 1.7rem; line-height: 1; color: #6b6890; cursor: pointer; }
.order-drawer-body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.order-drawer-foot { border-top: 1px solid #f0eeff; padding: 18px 24px; }
.order-drawer-foot .order-submit { width: 100%; }
.order-submit-note { font-size: 0.82rem; color: #6b6890; text-align: center; margin-top: 10px; }
.order-item { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f0eeff; }
.order-item img { width: 54px; height: 54px; object-fit: contain; background: #f8f7ff; border-radius: 8px; flex-shrink: 0; }
.order-item-info { flex: 1; min-width: 0; }
.order-item-name { font-weight: 600; color: #1e1648; font-size: 0.9rem; }
.order-item-price { color: #6b6890; font-size: 0.8rem; margin: 2px 0 6px; }
.order-stepper { display: flex; align-items: center; gap: 10px; }
.order-stepper button { width: 26px; height: 26px; border: 1px solid #ddd8f5; background: #fff; border-radius: 6px; cursor: pointer; color: #1e1648; font-size: 1rem; line-height: 1; }
.order-stepper span { min-width: 20px; text-align: center; font-size: 0.9rem; color: #1e1648; }
.order-remove { background: none; border: none; color: #b91c1c; font-size: 0.8rem; cursor: pointer; flex-shrink: 0; }
.order-empty { text-align: center; padding: 40px 10px; color: #6b6890; }
.order-empty p { margin-bottom: 10px; }
.order-empty .btn-primary { margin-top: 8px; }
.order-bac-suggest { background: #f8f7ff; border: 1px solid #ede9ff; border-radius: 10px; padding: 16px; margin-top: 16px; }
.order-bac-suggest p { color: #6b6890; font-size: 0.85rem; margin-bottom: 10px; }
body.order-drawer-open { overflow: hidden; }
@media (max-width: 480px) { .order-drawer { width: 100%; max-width: 100%; } }

/* ============================================================
   ORDER LIST STAGE 2 -- submit form + BAC suggestion card
   ============================================================ */
.order-drawer-foot input,
.order-drawer-foot textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8e0ff;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #1e1648;
  background: #fafaff;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}
.order-drawer-foot input:focus,
.order-drawer-foot textarea:focus { border-color: #6c52e3; outline: none; background: #fff; }
.order-drawer-foot textarea { height: 70px; resize: vertical; }
.order-form-compliance { font-size: 0.76rem; color: #9b94c4; margin-bottom: 12px; line-height: 1.5; }
.order-phone-hint { font-size: 0.72rem; color: #9b94c4; margin: -4px 0 10px; }
.order-submit-msg { font-size: 0.82rem; margin-top: 10px; text-align: center; }
.order-bac-help { color: #6b6890; font-size: 0.85rem; margin-bottom: 4px; }
.order-bac-card { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.order-bac-card img { width: 48px; height: 48px; object-fit: contain; background: #fff; border-radius: 8px; flex-shrink: 0; }
.order-bac-info { flex: 1; min-width: 0; }
.order-bac-card .btn-ghost { padding: 8px 14px; font-size: 0.82rem; flex-shrink: 0; }

/* ============================================================
   ORDER LIST TOTAL (drawer) + ADMIN ROW ACTIONS
   ============================================================ */
.order-total-wrap { margin-bottom: 14px; }
.order-total { font-weight: 700; color: #1e1648; font-size: 1rem; }
.order-total-note { font-size: 0.74rem; color: #9b94c4; margin-top: 2px; }

.row-actions { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.btn-mini { font-size: 0.72rem; padding: 4px 9px; border-radius: 5px; border: 1px solid #ddd8f5; background: #fff; color: #1e1648; cursor: pointer; text-decoration: none; line-height: 1.4; }
.btn-mini:hover { background: #f8f7ff; }
.btn-danger { color: #b91c1c; border-color: #f0caca; }
.btn-danger:hover { background: #fdf0f0; }
.btn-wa { background: #25d366; color: #fff; border-color: #25d366; }
.btn-wa:hover { background: #1da851; }

/* ============================================================
   ADMIN LEAD DETAIL VIEW (modal)
   ============================================================ */
.lead-overlay { position: fixed; inset: 0; background: rgba(30,22,72,0.55); z-index: 9600; display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.lead-panel { background: #fff; width: 560px; max-width: 100%; border-radius: 14px; box-shadow: 0 20px 60px rgba(30,22,72,0.3); overflow: hidden; }
.lead-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; border-bottom: 1px solid #f0eeff; }
.lead-panel-head h3 { font-family: Georgia, serif; color: #1e1648; font-size: 1.2rem; }
.lead-panel-body { padding: 18px 24px; }
.lead-field { display: flex; gap: 14px; padding: 7px 0; border-bottom: 1px solid #f6f4ff; font-size: 0.9rem; }
.lead-flabel { flex: 0 0 88px; color: #9b94c4; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; padding-top: 2px; }
.lead-fval { color: #1e1648; word-break: break-word; }
.lead-muted { color: #9b94c4; }
.lead-msg-block { margin-top: 14px; }
.lead-msg { margin-top: 6px; background: #f8f7ff; border: 1px solid #ede9ff; border-radius: 10px; padding: 12px 14px; }
.lead-msg-line { color: #1e1648; font-size: 0.88rem; padding: 2px 0; word-break: break-word; }
.lead-panel-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; padding: 16px 24px; border-top: 1px solid #f0eeff; background: #fcfbff; }
.lead-panel-actions .status-select { margin: 0; }
@media (max-width: 560px) {
  .lead-panel-actions .btn-mini, .lead-panel-actions .btn-wa { flex: 1 1 calc(50% - 8px); text-align: center; }
}

/* ============================================================
   OUT OF STOCK -- badge + disabled add-to-list button
   ============================================================ */
.badge-oos {
  display: inline-block;
  background: #fbeaea;
  color: #b3261e;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-oos.card-oos { margin-bottom: 8px; }
.btn-add-list.btn-oos {
  background: #f1efe8;
  color: #8a8778;
  border: 1.5px solid #ddd8f5;
  cursor: not-allowed;
  opacity: .9;
}
.btn-add-list.btn-oos:hover { background: #f1efe8; }

/* Homepage H1 intro (SEO foundation, Phase 7B) */
.hero-intro { padding: 26px 24px 4px; max-width: 900px; }
.hero-intro h1 {
  font-family: Georgia, serif; font-size: 2rem; line-height: 1.2;
  color: #1e1648; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px;
}
.hero-intro p { color: #6b6890; font-size: 0.95rem; line-height: 1.65; margin: 0; }
@media (max-width: 640px) { .hero-intro h1 { font-size: 1.5rem; } .hero-intro p { font-size: 0.9rem; } }

/* Static catalog card research-use line */
.sf-card-use { font-size: 0.7rem; color: #9b94c4; margin: 4px 0 8px; letter-spacing: 0.01em; }

/* Branded 404 */
.notfound-links { list-style: none; padding: 0; margin: 14px 0 0; }
.notfound-links li { padding: 9px 0; border-bottom: 1px solid #f0eeff; color: #6b6890; font-size: 0.95rem; }
.notfound-links a { color: #6c52e3; font-weight: 600; text-decoration: none; }
.notfound-links a:hover { text-decoration: underline; }

/* ============================================================
   TOP UTILITY BAR -- slim research-use + contact strip that sits
   above the main header on every public page. Replaces the old
   plain "RESEARCH USE ONLY" compliance strip. Restrained, static.
   ============================================================ */
.util-bar { background: #1e1648; color: #d7d2f0; }
.util-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  min-height: 36px; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; letter-spacing: 0.01em;
}
.util-note, .util-mail { display: inline-flex; align-items: center; gap: 7px; min-width: 0; }
.util-ico { width: 14px; height: 14px; stroke: #9d93d6; flex: none; }
.util-mail { color: #e7e3fb; text-decoration: none; white-space: nowrap; }
.util-mail:hover { color: #ffffff; }
.util-mail:focus-visible { outline: 2px solid #6c52e3; outline-offset: 2px; border-radius: 3px; }
@media (max-width: 768px) {
  .util-inner { padding: 0 16px; min-height: 34px; font-size: 0.72rem; gap: 10px; }
  .util-ico { width: 13px; height: 13px; }
}
@media (max-width: 360px) {
  .util-inner { padding: 0 12px; font-size: 0.68rem; gap: 8px; }
}

/* ---- Compact cart icon + circular quantity badge (desktop header).
   Scoped to .nav-actions so it overrides the cart.css pill treatment by
   specificity, and leaves the mobile-menu cart list item untouched. ---- */
.nav-actions .sf-cart-link {
  position: relative; gap: 0; padding: 0; width: 42px; height: 42px;
  justify-content: center; background: transparent; color: #1e1648; border-radius: 10px;
}
.nav-actions .sf-cart-link:hover { background: #f4f1ff; }
.nav-actions .sf-cart-ico { width: 22px; height: 22px; display: block; stroke: #1e1648; }
.nav-actions .sf-cart-count {
  position: absolute; top: 2px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
  background: #6c52e3; color: #ffffff; border-radius: 9px; font-size: 11px; font-weight: 700;
  line-height: 1; display: flex; align-items: center; justify-content: center; box-sizing: border-box;
}
.nav-actions .sf-cart-link:focus-visible { outline: 2px solid #6c52e3; outline-offset: 2px; }
