/* ===================================================================
  ALPHABOUND - Vanilla CSS
   =================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

/* --- Design Tokens / Custom Properties --- */
:root {
  --color-alphabound-blue: #0039CB;
  --color-alphabound-navy: #0B0E13;
  --color-alphabound-gray: #F7F7F7;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  /* scroll-behavior: smooth; removed due to Chrome background-attachment: fixed bug */
}

body {
  background-color: #fff;
  color: var(--color-alphabound-navy);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body ::selection {
  background-color: rgba(0, 57, 203, 0.2);
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: -1px;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ===================================================================
   AUTH GATE
   =================================================================== */
.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/geo_zoom.jpg') center / cover no-repeat #050810;
}

.auth-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 57, 203, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(5, 8, 16, 0.9) 0%, transparent 60%),
    rgba(5, 8, 16, 0.75);
}

.auth-gate.dismissed {
  display: none;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  margin: 0 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #fff;
}

.auth-logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-logo-img {
  max-width: 180px;
  margin: 0 auto;
  mix-blend-mode: screen;
}

.auth-view {
  display: none;
}

.auth-view.active {
  display: block;
}

.auth-view h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.auth-input {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.auth-input:focus {
  border-color: var(--color-alphabound-blue);
}

.auth-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--color-alphabound-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-submit .btn-spinner {
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  position: absolute;
}

.auth-submit.loading .btn-text {
  opacity: 0;
}

.auth-submit.loading .btn-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.auth-submit:hover {
  background: #002da0;
}

.auth-submit-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-submit-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
}

.auth-switch a {
  color: var(--color-alphabound-blue);
  font-weight: 600;
}

.auth-error {
  color: #ff6b6b;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  min-height: 1.2em;
}

/* Auth Policy View */
.auth-policy-content {
  max-height: 50vh;
  overflow-y: auto;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  padding-right: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.auth-policy-content h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.auth-policy-content h4:first-child {
  margin-top: 0;
}

.auth-policy-content p {
  margin-bottom: 1rem;
}

.auth-policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.auth-policy-content ul li {
  margin-bottom: 0.25rem;
}

/* Custom Scrollbar for Policy */
.auth-policy-content::-webkit-scrollbar {
  width: 6px;
}

.auth-policy-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.auth-policy-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.auth-policy-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Auth Input Wrapper & Password Toggle */
.auth-input-wrapper {
  position: relative;
  width: 100%;
}

.auth-password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -0.5rem;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.auth-password-toggle:hover {
  color: #fff;
}

/* Auth Options (Remember Me & Forgot Password) */
.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.auth-checkbox-label input[type="checkbox"] {
  accent-color: var(--color-alphabound-blue);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.auth-link {
  color: var(--color-alphabound-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.auth-link:hover {
  color: #4d7bff;
}

.auth-link.show-policy {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

.auth-link.show-policy:hover {
  color: #e0e0e0;
}


/* ===================================================================
   NAVIGATION
   =================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 1.5rem 0;
  /* py-6  = 24px */
  background: transparent;
}

.site-nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  padding: 1rem 0;
  /* py-4  = 16px */
}

.nav-inner {
  max-width: 80rem;
  /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
  /* px-6 */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 3rem;
  /* gap-12 */
}

/* Logo */
.nav-logo {
  font-size: 1.25rem;
  /* text-xl */
  font-weight: 700;
  letter-spacing: -0.025em;
  transition: color 0.3s;
  color: #fff;
}

.site-nav.scrolled .nav-logo,
.site-nav.nav-dark .nav-logo {
  color: var(--color-alphabound-navy);
}

.nav-logo .logo-accent {
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

.site-nav.scrolled .nav-logo .logo-accent,
.site-nav.nav-dark .nav-logo .logo-accent {
  color: var(--color-alphabound-blue);
}

/* Desktop links */
.nav-links {
  display: none;
  gap: 2rem;
  /* gap-8 */
  font-size: 0.875rem;
  /* text-sm */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav.scrolled .nav-links,
.site-nav.nav-dark .nav-links {
  color: rgba(11, 14, 19, 0.7);
}

.nav-links a {
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.highlight {
  color: var(--color-alphabound-blue);
  text-shadow: 0 0 6px #fff, 0 0 12px #fff, 0 0 18px rgba(255, 255, 255, 0.9);
}

/* Right icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* gap-6 */
  color: #fff;
  transition: color 0.3s;
}

.site-nav.scrolled .nav-icons,
.site-nav.nav-dark .nav-icons {
  color: var(--color-alphabound-navy);
}

.nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  transition: color 0.3s;
  display: none;
}

.nav-icon:hover {
  color: var(--color-alphabound-blue);
}

.cart-wrapper {
  position: relative;
  cursor: pointer;
}

.cart-wrapper:hover .nav-icon-cart {
  color: var(--color-alphabound-blue);
}

.nav-icon-cart {
  width: 1.25rem;
  height: 1.25rem;
  transition: color 0.3s;
}

.cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--color-alphabound-blue);
  color: #fff;
  font-size: 10px;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
}

/* Mobile hamburger */
.nav-hamburger {
  padding: 0.25rem;
  display: block;
  color: inherit;
}

.nav-hamburger svg {
  width: 1.5rem;
  height: 1.5rem;
}


/* WooCommerce Shop & Subpage Nav Overrides */
body.woocommerce-shop .site-nav .nav-logo,
body.single-product .site-nav .nav-logo,
body.page-template-page-coa .site-nav .nav-logo {
  color: var(--color-alphabound-blue);
}

body.woocommerce-shop .site-nav .nav-logo .logo-accent,
body.single-product .site-nav .nav-logo .logo-accent,
body.page-template-page-coa .site-nav .nav-logo .logo-accent {
  color: var(--color-alphabound-navy);
}

body.woocommerce-shop .site-nav .nav-links,
body.single-product .site-nav .nav-links,
body.page-template-page-coa .site-nav .nav-links {
  color: #64748b;
}

body.woocommerce-shop .site-nav .nav-icons,
body.single-product .site-nav .nav-icons,
body.page-template-page-coa .site-nav .nav-icons {
  color: #64748b;
}

body.woocommerce-shop .site-nav .nav-hamburger,
body.single-product .site-nav .nav-hamburger,
body.page-template-page-coa .site-nav .nav-hamburger {
  color: #64748b;
}

/* ===================================================================
   MOBILE MENU OVERLAY
   =================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  display: none;
  /* toggled via JS */
  flex-direction: column;
  padding: 1.5rem;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  /* mb-12 */
}

.mobile-menu-header .nav-logo {
  color: var(--color-alphabound-navy);
}

.mobile-menu-header .logo-accent {
  color: var(--color-alphabound-blue) !important;
}

.mobile-menu-close {
  padding: 0.5rem;
}

.mobile-menu-close svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-alphabound-navy);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-alphabound-navy);
}

.mobile-nav-links a svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(0, 0, 0, 0.15);
}


/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/geo_zoom.jpg') center / cover #050810;
  clip-path: ellipse(150% 100% at 50% 0%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 40% 20%, rgb(18, 14, 255) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgb(255, 255, 255) 0%, transparent 70%),
    radial-gradient(circle at 80% 40%, rgb(0, 0, 0) 0%, transparent 70%);
  background-size: 200% 300%;
  mix-blend-mode: multiply;
  animation: gradientMove 12s ease infinite alternate;
  pointer-events: none;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 100%;
  }
}

/* Animated blobs */
.blob-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob-container {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  /* Removed expensive filter: blur(80px) */
}

.blob {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  animation: floatHW 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  /* Use will-change to hint the browser for hardware acceleration */
  will-change: transform;
}

.blob-1 {
  /* Baked-in blur via radial-gradient */
  background: radial-gradient(circle, rgba(0, 57, 203, 0.4) 0%, transparent 60%);
  top: -20%;
  left: -10%;
}

.blob-2 {
  background: radial-gradient(circle, rgba(11, 14, 19, 0.6) 0%, transparent 60%);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

.blob-3 {
  background: radial-gradient(circle, rgba(0, 57, 203, 0.3) 0%, transparent 60%);
  top: 10%;
  right: -5%;
  animation-delay: -10s;
}

@keyframes floatHW {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(8%, 8%) scale(1.1);
  }
}

/* Grid dots (disabled) */
.grid-dots {
  display: none;
}

/* Hero content */
.hero-content {
  max-width: 64rem;
  /* max-w-5xl */
  margin: 0 auto;
  padding: 5rem 1.5rem 0;
  /* pt-20 px-6 */
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 10;
  animation: heroFadeIn 0.8s ease both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 2rem;
  line-height: 1.1;
}

@keyframes shimmerGlow {
  0% {
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0)) drop-shadow(0 0 0px rgba(0, 57, 203, 0));
  }

  60% {
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 35px rgba(0, 57, 203, 0.8));
  }

  100% {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
  }
}

.hero-logo {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  animation: shimmerGlow 2.5s ease-out forwards;
}

.hero-subtitle {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: #fff;
  color: var(--color-alphabound-blue);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: background 0.3s;
  border: none;
}

.btn-primary:hover {
  background: #f3f4f6;
}

.btn-outline {
  padding: 1rem 2.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}


/* ===================================================================
   PRODUCT HIGHLIGHTS (Section 2)
   =================================================================== */
.section-products {
  padding: 6rem 0;
  background: #fff;
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-header .label {
  color: var(--color-alphabound-blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-header h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: #6b7280;
  max-width: 36rem;
  margin: 0 auto;
  font-weight: 300;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Product card — icon-pill style */
.product-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--color-alphabound-blue);
  padding: 1.5rem;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 57, 203, 0.1);
  transform: translateY(-2px);
  border-left-color: var(--color-alphabound-blue);
}

/* Icon circle */
.card-icon-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--color-alphabound-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}

.product-card:hover .card-icon-circle {
  background: var(--color-alphabound-blue);
}

/* Card body */
.product-card .card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
  margin-bottom: 0.35rem;
}

.product-card .card-body p {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.55;
  font-weight: 300;
}


/* ===================================================================
   INTEGRITY STANDARDS (Section 3)
   =================================================================== */
.section-integrity {
  padding: 5rem 0;
  background: url('images/bg02.jpg') center / cover no-repeat fixed #0b0e13;
}

.section-integrity .section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: 1rem;
}

.section-integrity .section-header .divider {
  width: 3rem;
  height: 0.25rem;
  background: var(--color-alphabound-blue);
  margin: 0 auto;
  border-radius: 9999px;
}

.integrity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.integrity-card {
  position: relative;
  background-color: #0b0e13;
  background-size: cover;
  background-position: center;
  border-radius: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.integrity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.integrity-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  color: #fff;
  width: 100%;
}

.integrity-card-content .card-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.integrity-card-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.integrity-card-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 300;
  margin: 0;
}


/* ===================================================================
   FAQ (Section 4)
   =================================================================== */
.section-faq {
  padding: 5rem 0;
  background: #fff;
}

.faq-container {
  max-width: 56rem;
  /* max-w-4xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.faq-label-row .label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-alphabound-blue);
  white-space: nowrap;
}

.faq-label-row .line {
  flex-grow: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.faq-container>h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
  margin-bottom: 3rem;
}

.faq-list {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Accordion item */
.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.accordion-trigger span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-alphabound-navy);
  transition: color 0.3s;
}

.accordion-trigger:hover span {
  color: var(--color-alphabound-blue);
}

.accordion-trigger .chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-trigger .chevron {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.accordion-item.open .accordion-panel {
  max-height: 200px;
  /* generous enough */
  opacity: 1;
}

.accordion-panel p {
  padding-bottom: 1.5rem;
  color: #6b7280;
  line-height: 1.625;
}


/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--color-alphabound-navy);
  padding: 4rem 0 2rem;
  color: #fff;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  /* spans 2 cols on large screens */
}

.footer-brand .nav-logo {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand .logo-accent {
  color: var(--color-alphabound-blue) !important;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.5;
  max-width: 24rem;
  margin-bottom: 1rem;
}

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

.footer-social a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/* Footer link columns */
.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-col ul li a {
  color: inherit;
  text-decoration: none;
}

.footer-col ul li:hover,
.footer-col ul li a:hover {
  color: #fff;
}

/* Footer bottom bar */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  max-width: 50rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.footer-cards-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-pci-img {
  max-width: 90px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-bottom-links a {
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #fff;
}


/* ===================================================================
   RESPONSIVE — sm  (≥ 640px)
   =================================================================== */
@media (min-width: 640px) {
  .nav-icon {
    display: block;
  }

  .hero-cta {
    flex-direction: row;
  }
}


/* ===================================================================
   RESPONSIVE — md  (≥ 768px)
   =================================================================== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .integrity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-integrity {
    padding: 8rem 0;
  }

  .section-faq {
    padding: 8rem 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ===================================================================
   RESPONSIVE — lg  (≥ 1024px)
   =================================================================== */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ===================================================================
   SHOP PAGE (OPTION B LAYOUT)
   =================================================================== */

/* Shop Hero B */
.shop-hero-b {
  margin-top: 72px;
  /* nav height */
  background: linear-gradient(rgba(11, 14, 19, 0), rgba(11, 14, 19, 0)), url('images/geo_zoom.jpg') left / cover no-repeat fixed #0b0e13;
  color: #fff;
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-hero-b-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .shop-hero-b-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-b-text h2 {
  color: rgb(255, 255, 255);
  text-shadow: #3341552d 2px 2px 2px;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-b-text p {
  /* color: rgba(0, 0, 0, 1); */
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
}

.hero-b-stats {
  display: flex;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: rgb(243, 243, 243);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Shop Container Minimalist */
.shop-main-minimal {
  background: #fff;
  padding: 4rem 1.5rem;
  min-height: 80vh;
}

.shop-container-minimal {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .shop-container-minimal {
    grid-template-columns: 280px 1fr;
    gap: 4rem;
  }

  .shop-container-minimal.no-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   WOOCOMMERCE CHECKOUT FIXES
   =================================================================== */

.woocommerce-checkout .shop-content-area,
.woocommerce-cart .shop-content-area,
.woocommerce-account .shop-content-area {
  width: 100%;
}

.wc-block-components-product-details,
.wc-block-components-product-metadata,
.wc-block-cart-item__prices {
  display: none !important;
}

.woocommerce-checkout-review-order-table dl.variation,
.woocommerce-checkout-review-order-table .wc-item-meta {
  display: none !important;
}

/* Move line total price below the product name */
.wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  grid-template-rows: auto auto;
  align-items: start !important;
  gap: 0 1rem !important;
}

.wc-block-components-order-summary-item__image {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.wc-block-components-order-summary-item__description {
  grid-column: 2;
  grid-row: 1;
  padding: 0 !important;
}

.wc-block-components-order-summary-item__total-price {
  grid-column: 2;
  grid-row: 2;
  margin-left: 0 !important;
  text-align: left !important;
  padding-top: 0.25rem;
  color: var(--color-alphabound-navy);
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  table-layout: fixed;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 1rem;
  word-wrap: break-word;
}

/* Sidebar */
.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 100px;
}

.sidebar-widget h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-alphabound-navy);
}

.shop-search {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.shop-search:focus {
  border-color: var(--color-alphabound-blue);
}

.shop-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shop-categories li a {
  color: #64748b;
  font-size: 0.95rem;
  transition: color 0.2s;
  font-weight: 400;
}

.shop-categories li a:hover,
.shop-categories li a.active {
  color: var(--color-alphabound-blue);
  font-weight: 600;
}

/* WooCommerce Header Elements */
.woocommerce-breadcrumb {
  margin-bottom: 1.5rem;
  color: #64748b;
  font-size: 0.9rem;
}

.woocommerce-breadcrumb a {
  color: var(--color-alphabound-navy);
  font-weight: 500;
}

.woocommerce-result-count {
  color: #64748b;
  font-size: 0.95rem;
  float: left;
  margin-bottom: 2rem;
}

.woocommerce-ordering {
  float: right;
  margin-bottom: 2rem;
}

.woocommerce-ordering select {
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #fff;
  color: var(--color-alphabound-navy);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

/* Grid */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  min-width: 0;
  clear: both;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.shop-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.shop-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.card-img-link {
  display: block;
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-alphabound-blue);
  border-bottom: 1px solid #f1f5f9;
}

.card-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-alphabound-navy);
}

.product-title a {
  transition: color 0.2s;
}

.product-title a:hover {
  color: var(--color-alphabound-blue);
}

.sku {
  font-size: 0.8rem;
  color: #94a3b8;
  font-family: monospace;
  margin-bottom: 0.75rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-alphabound-navy);
}

.card-actions {
  padding: 0 1.5rem 1.5rem;
}

.btn-add-cart {
  width: 100%;
  background: #fff;
  color: var(--color-alphabound-navy);
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
}

.btn-add-cart:hover {
  background: var(--color-alphabound-blue);
  color: #fff;
  border-color: var(--color-alphabound-blue);
}

/* ===================================================================
   SECURE CART DRAWER
   =================================================================== */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e2e8f0;
  background: var(--color-alphabound-navy);
  color: #fff;
}

.cart-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-cart-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.close-cart-btn:hover {
  color: #fff;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-empty-msg {
  text-align: center;
  color: #64748b;
  margin-top: 2rem;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 1.5rem;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-alphabound-blue);
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-alphabound-navy);
  margin-bottom: 0.25rem;
}

.cart-item-sku {
  font-size: 0.75rem;
  color: #64748b;
  font-family: monospace;
  margin-bottom: 0.75rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.cart-qty-btn {
  background: #f8fafc;
  border: none;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  color: #475569;
  transition: background 0.2s;
}

.cart-qty-btn:hover {
  background: #e2e8f0;
}

.cart-qty-val {
  padding: 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-alphabound-navy);
}

.cart-item-price {
  font-weight: 700;
  color: var(--color-alphabound-navy);
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.5rem;
  padding: 0;
}

.cart-item-remove:hover {
  text-decoration: underline;
}

.cart-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
  margin-bottom: 1.5rem;
}

.btn-checkout {
  width: 100%;
  background: var(--color-alphabound-blue);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-checkout:hover {
  background: #002da0;
}

.btn-checkout:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.checkout-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #64748b;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===================================================================
   GENERIC / LEGAL PAGES
   =================================================================== */

/* Ensure Nav is visible on white generic pages */
body.page:not(.home) .site-nav .nav-logo {
  color: var(--color-alphabound-blue);
}

body.page:not(.home) .site-nav .nav-logo .logo-accent {
  color: var(--color-alphabound-navy);
}

body.page:not(.home) .site-nav .nav-links,
body.page:not(.home) .site-nav .nav-icons,
body.page:not(.home) .site-nav .nav-hamburger {
  color: #64748b;
}

.legal-main {
  padding: 8rem 1.5rem 4rem;
  background: #f8fafc;
  min-height: 80vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.legal-header {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.legal-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
}

.legal-content {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content h2,
.legal-content h3 {
  color: var(--color-alphabound-navy);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content ul {
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  font-weight: 700;
  color: var(--color-alphabound-navy);
}

.legal-content em {
  font-style: italic;
}

.legal-content a {
  color: var(--color-alphabound-blue);
  text-decoration: underline;
}

/* ===================================================================
   PRODUCTS SPLIT LAYOUT
   =================================================================== */
.products-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .products-split-layout {
    grid-template-columns: 1fr 1fr;
  }

  /* Force 2 columns inside split layout to avoid cramped 3-col grid */
  .products-split-layout .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.products-hero-image {
  width: 100%;
  min-height: 600px;
  background: url('images/vials.png') center / cover no-repeat;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Tablet Layout: Main Page Header & Hero Image side-by-side */
@media (min-width: 768px) and (max-width: 1023px) {
  .section-products .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "header image"
      "grid grid";
    gap: 2rem;
  }

  .section-products .section-header {
    grid-area: header;
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .section-products .products-split-layout {
    display: contents;
  }

  .section-products .products-hero-image {
    grid-area: image;
    min-height: 350px;
  }

  .section-products .product-grid {
    grid-area: grid;
  }
}

/* Hide product category in single product view */
.single-product .product_meta .posted_in {
  display: none !important;
}

/* ===================================================================
   CART & CHECKOUT OVERRIDES
   =================================================================== */

/* Cart Proceed to Checkout Button */
.wc-block-cart__submit-button {
  background-color: #ffffff !important;
  color: var(--color-alphabound-navy, #1e293b) !important;
  border: 1px solid #e2e8f0 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.wc-block-cart__submit-button:hover {
  background-color: #f8fafc !important;
  color: var(--color-alphabound-blue, #2563eb) !important;
  border-color: #cbd5e1 !important;
}

.wc-block-cart__submit-button * {
  color: inherit !important;
  /* Ensure inner text spans take the button color */
}

/* ===================================================================
   CONTACT US SECTION
   =================================================================== */
.section-contact {
  padding: 5rem 1.5rem;
  background-color: #050810;
  background-image: url('images/geo_zoom.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 72rem;
  width: 100%;
  background: #ffffffef;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-header {
  text-align: left;
  margin-bottom: 0;
}

.contact-header .label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-alphabound-blue);
  margin-bottom: 0.5rem;
}

.contact-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-alphabound-navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-subheading {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-alphabound-navy);
}

.form-group .required {
  color: #ef4444;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  background-color: #ffffff;
  color: var(--color-alphabound-navy);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--color-alphabound-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  align-self: center;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.contact-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.contact-feedback:empty {
  display: none;
}

.contact-feedback.success {
  color: #10b981;
}

.contact-feedback.error {
  color: #ef4444;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
  }

  .contact-header {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 2rem 1.5rem;
  }

  .contact-submit {
    width: 100%;
  }
}

/* ===================================================================
   COA PAGE REDESIGN
   =================================================================== */
.coa-header {
  margin-bottom: 3rem;
  text-align: center;
}

.coa-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
  margin-bottom: 1rem;
}

.coa-description {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.coa-library-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-alphabound-navy);
}

.coa-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.coa-product-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s, box-shadow 0.2s;
}

.coa-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.coa-card-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 1.25rem;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coa-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coa-card-icon svg {
  color: #a0aec0;
}

.coa-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.coa-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-alphabound-navy);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.coa-card-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-alphabound-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coa-card-link:hover {
  color: #002da0;
}

.coa-card-missing {
  font-size: 0.85rem;
  font-weight: 500;
  color: #94a3b8;
}

/* ===================================================================
   SCROLL REVEAL ANIMATIONS
   =================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   MOBILE OVERRIDES
   =================================================================== */
@media (max-width: 767px) {
  .products-hero-image {
    min-height: 300px;
    background-position: bottom center;
  }

  .section-header h3 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Research is 2nd div, Contact is 3rd */
  .footer-col:nth-child(2) {
    order: 2;
  }

  .footer-col:nth-child(3) {
    order: 1;
  }

  .footer-col:nth-child(4) {
    grid-column: 1 / -1;
    order: 3;
  }
}

/* ===================================================================
   MOBILE/TABLET OVERRIDES - SHOP PAGE
   =================================================================== */
@media (max-width: 1023px) {

  /* Remove sidebar space by forcing 1-column layout */
  .shop-container-minimal {
    grid-template-columns: 1fr !important;
  }

  /* Hide Available Products widget and breadcrumbs */
  .shop-sidebar .sidebar-widget:nth-child(2),
  .woocommerce-breadcrumb {
    display: none !important;
  }

  /* Center the search box and make it not sticky */
  .shop-sidebar {
    position: static !important;
    text-align: center;
    margin-bottom: -1rem;
  }

  .shop-search {
    max-width: 400px;
    margin: 0 auto;
    display: inline-block;
  }

  /* Center the results tally and sorting using flex-wrap */
  .shop-content-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .woocommerce-result-count,
  .woocommerce-ordering {
    float: none !important;
    margin-bottom: 2rem !important;
    flex: 0 0 auto;
  }

  .woocommerce-result-count {
    margin-right: 1rem;
    margin-top: 0;
  }

  .woocommerce-ordering {
    margin-left: 0;
  }

  /* Product grid layout: 3 across on tablet, 100% width in flex container */
  .shop-grid {
    flex: 0 0 100%;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 767px) {

  /* Product grid layout: 2 across on mobile */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
}

/* ===================================================================
   FINAL CTA SECTION
   =================================================================== */
.section-final-cta {
  padding: 5rem 1.5rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.final-cta-container {
  max-width: 72rem;
  /* 1152px */
  width: 100%;
}

.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.cta-feature-item {
  text-align: center;
}

.cta-feature-item .feature-icon {
  width: 120px;
  height: 120px;
  background: #eef2ff;
  color: var(--color-alphabound-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.cta-feature-item .feature-icon svg {
  width: 50px;
  height: 50px;
}

.cta-feature-item h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-alphabound-navy);
  margin-bottom: 0.75rem;
}

.cta-feature-item p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
}

/* CTA Box */
.cta-box {
  background-color: var(--color-alphabound-blue);
  background-image: url('images/geoback.webp');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 5rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px -10px rgba(0, 57, 203, 0.4);
}

.cta-box-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-box-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-box-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-box-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  background: #ffffff;
  color: var(--color-alphabound-navy);
  padding: 1.1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-outline {
  background: transparent;
  color: #ffffff;
  padding: 1.1rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cta-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .cta-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .cta-features-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 4rem 1.5rem;
  }

  .cta-box-content h2 {
    font-size: 2.5rem;
  }

  .cta-box-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-cta-white,
  .btn-cta-outline {
    width: 100%;
  }
}