/*
Theme Name: SheerPeptides
Theme URI: https://sheerpeptides.com
Author: bodevs
Author URI: https://bodevs.com
Description: Custom WordPress/WooCommerce theme for SheerPeptides — research-grade peptide supply brand.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: sheerpeptides
Tags: woocommerce, ecommerce, custom
*/


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

  :root {
    --navy:       #0e2346;
    --navy-light: #162d58;
    --navy-dark:  #0c121b;
    --gray:       #828385;
    --gray-light: #a2a3a5;
    --blue:       #0e2346;
    --cyan:       #c9a96e;
    --white:      #ffffff;
    --off-white:  #f2f4f8;
    --text:       #0e2346;
    --muted:      #828385;
    --border:     #dde1ea;
    --card-bg:    linear-gradient(160deg, #0e2346 0%, #162d58 100%);
    --heading:    'Plus Jakarta Sans', sans-serif;
    --body:       'DM Sans', sans-serif;
    --radius:     14px;
    --radius-lg:  24px;
    --shadow:     0 4px 24px rgba(14,35,70,0.10);
    --shadow-lg:  0 12px 48px rgba(14,35,70,0.18);
  }

  html { scroll-behavior: smooth; }

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

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  /* ── Typography ── */
  h1, h2, h3, h4, h5 {
    font-family: var(--heading);
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.025em;
  }
  h1 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; }
  h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
  h3 { font-size: 1.2rem; font-weight: 600; }

  .label {
    display: inline-block;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
  }

  /* ── Layout ── */
  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }

  section { padding: 72px 0; }

  /* ── Buttons ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.22s ease;
  }
  .btn-primary {
    background: var(--cyan);
    color: var(--navy-dark);
  }
  .btn-primary:hover { background: #d4b87e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.45);
  }
  .btn-outline:hover { background: rgba(255,255,255,0.12); }

  .btn-ghost {
    background: transparent;
    color: var(--navy);
    padding: 10px 0;
    font-size: 14px;
  }
  .btn-ghost:hover { color: var(--navy); }
  .btn-ghost svg { width: 16px; height: 16px; }

  .btn-navy {
    background: var(--navy);
    color: var(--white);
  }
  .btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow); }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 32px;
  }
  .nav-logo img { height: 32px; width: auto; }
  .nav-logo .logo-text {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.03em;
  }
  .nav-logo .logo-text span { color: var(--cyan); }

  .nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    padding: 8px 14px;
    border-radius: 7px;
    transition: all 0.18s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.09); }

  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .nav-cart {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.78);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    transition: all 0.18s;
  }
  .nav-cart:hover { background: rgba(201,169,110,0.2); color: var(--white); }
  .nav-cart svg { width: 18px; height: 18px; }

  .nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .nav-hamburger svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.85); }
  .nav-hamburger:hover { background: rgba(255,255,255,0.08); }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 520px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    display: block;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14,35,70,0.96) 0%, rgba(14,35,70,0.90) 30%, rgba(14,35,70,0.55) 55%, rgba(14,35,70,0.15) 75%, transparent 100%);
  }
  .hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 520px;
  }
  .hero-inner {
    width: 50%;
    padding: 80px 0;
    text-align: left;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 100px;
    padding: 6px 14px 6px 10px;
    margin-bottom: 24px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.04em;
  }
  .hero-badge::before {
    content: '★★★★★';
    font-size: 10px;
    letter-spacing: 1px;
  }
  .hero h1 { color: var(--white); margin-bottom: 16px; }
  .hero h1 span { color: var(--cyan); }
  .hero p {
    color: rgba(255,255,255,0.68);
    font-size: 17px;
    margin-bottom: 32px;
  }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

  @media (max-width: 600px) {
    .hero-overlay {
      background: linear-gradient(to top, rgba(14,35,70,0.98) 0%, rgba(14,35,70,0.82) 40%, rgba(14,35,70,0.35) 70%, transparent 100%);
    }
    .hero-inner {
      width: 100%;
      padding: 320px 0 48px;
      text-align: center;
    }
    .hero-actions { justify-content: center; }
    .hero-badge { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
    .trust-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      padding: 16px 8px;
    }
    .hero .container { align-items: flex-end; min-height: 580px; }
    .hero { min-height: 580px; }
  }

  /* ── TRUST STRIP ── */
  .trust-strip {
    background: var(--off-white);
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
  }
  .trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-right: 1px solid var(--border);
  }
  .trust-item:last-child { border-right: none; }
  .trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--border);
  }
  .trust-icon img { width: 100%; height: 100%; object-fit: cover; }
  .trust-text strong {
    display: block;
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
  }
  .trust-text span { font-size: 12px; color: var(--muted); }

  /* ── CATEGORY CARDS ── */
  .cat-section { padding: 52px 0; }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cat-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.22s;
  }
  .cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,35,70,0.82) 0%, rgba(14,35,70,0.35) 60%, transparent 100%);
    pointer-events: none;
  }
  .cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .cat-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); position: relative; z-index: 1; }
  .cat-card p { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; position: relative; z-index: 1; }
  .cat-card-bg {
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    width: 55%;
    object-fit: cover;
    opacity: 0.35;
  }

  /* ── SECTION HEADER ── */
  .section-header { margin-bottom: 40px; }
  .section-header h2 { margin-top: 8px; }
  .section-header h2 b { color: var(--navy); font-weight: 800; }

  /* ── PRODUCT CARDS ── */
  .products-section { background: var(--off-white); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.22s, box-shadow 0.22s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--navy); }

  .product-card-top {
    background: var(--card-bg);
    padding: 28px 24px 20px;
    position: relative;
    display: flex;
    gap: 12px;
    min-height: 200px;
  }
  .product-card-info { width: 100%; padding: 14px 20px 2px; }
  .product-name {
    font-family: var(--heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .product-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 2px 10px;
    margin-bottom: 4px;
  }
  .product-specs {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 10px;
  }
  .product-spec {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-family: var(--heading);
    font-weight: 500;
  }
  .product-spec strong { color: rgba(255,255,255,0.88); }

  .product-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f3f7;
  }
  .product-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
  }
  .product-card:hover .product-image-wrap img { transform: scale(1.03); }

  /* Navy info bar — name + price + purity badge */
  .product-card-bar {
    background: linear-gradient(135deg, #0e2346 0%, #162d58 100%);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .product-card-bar-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }
  .product-card-bar h3 {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-card-bar .product-price {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
  }
  .product-card-bar .product-price .woocommerce-Price-amount {
    color: rgba(255,255,255,0.75);
    font-size: inherit;
  }
  .product-purity-badge {
    flex-shrink: 0;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--cyan);
    background: rgba(201,169,110,0.15);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 100px;
    padding: 4px 12px;
    white-space: nowrap;
  }

  /* Card bottom — just the button */
  .product-card-bottom {
    padding: 14px 20px 18px;
    display: flex;
    flex-direction: column;
  }
  .product-price {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
  }
  .product-card-bottom .btn.btn-primary {
    background: var(--cyan);
    color: var(--navy-dark);
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--heading);
    letter-spacing: 0.03em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: all 0.22s;
    width: 100%;
  }
  .product-card-bottom .btn.btn-primary:hover {
    background: #d4b87e;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,169,110,0.35);
  }
  /* Hide WC default loop title injected into our custom cards */
  .products-grid .woocommerce-loop-product__title,
  .products-grid .ast-woo-product-category,
  .product-card > a > h2,
  .product-card > h2 { display: none !important; }

  .products-cta { text-align: center; margin-top: 36px; }

  /* ── QA SECTION ── */
  .qa-section {
    background: var(--navy);
    padding: 72px 0;
    overflow: hidden;
  }
  .qa-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .qa-left h2 { color: var(--white); margin-bottom: 16px; }
  .qa-left h2 span { color: var(--cyan); }
  .qa-left p { color: rgba(255,255,255,0.68); margin-bottom: 28px; font-size: 15.5px; }

  .qa-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .qa-badge {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 18px 22px;
  }
  .qa-badge h4 {
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .qa-badge p { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }

  /* ── SCIENCE SECTION ── */
  .science-section { text-align: center; }
  .science-section h2 { max-width: 520px; margin: 0 auto 20px; }
  .science-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
  }
  .science-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    text-align: left;
  }
  .science-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,25,65,0.92) 0%, rgba(14,35,70,0.55) 55%, rgba(10,20,50,0.18) 100%);
    z-index: 1;
  }
  .science-card-bg {
    position: absolute;
    inset: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 0.6s ease;
  }
  .science-card:hover .science-card-bg {
    transform: scale(1.13);
  }
  .science-card-content { position: relative; z-index: 1; }
  .science-card .label { color: var(--cyan); margin-bottom: 8px; }
  .science-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
  .science-card p { color: rgba(255,255,255,0.65); font-size: 13px; }

  .science-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
  }
  .science-stat {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: left;
    border: 1px solid var(--border);
  }
  .science-stat .label { margin-bottom: 8px; }
  .science-stat h3 { font-size: 1rem; color: var(--navy); }
  .science-stat p { font-size: 13px; color: var(--muted); margin-top: 4px; }

  /* ── MANUFACTURING ── */
  .mfg-section {
    background: var(--off-white);
  }
  .mfg-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .mfg-left {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mfg-left img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    object-fit: cover;
    max-height: 420px;
  }
  .mfg-result-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .mfg-result-box-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .mfg-result-box h4 {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }
  .mfg-result-box p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
  .mfg-right h2 { margin-bottom: 16px; }
  .mfg-right p { color: var(--muted); margin-bottom: 28px; font-size: 15.5px; }

  /* ── WHY CHOOSE US ── */
  .why-section { text-align: center; }
  .why-section h2 { margin-bottom: 48px; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px 28px;
    text-align: center;
    transition: all 0.22s;
  }
  .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--navy); }
  .why-card-img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
  }
  .why-card h4 {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .why-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

  /* ── FAQ ── */
  .faq-section { background: var(--off-white); }
  .faq-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-inner h2 { text-align: center; margin-bottom: 40px; }
  .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background 0.18s;
  }
  .faq-question:hover { background: var(--off-white); }
  .faq-question .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
    transition: all 0.22s;
  }
  .faq-item.open .faq-question { color: var(--cyan); }
  .faq-item.open .faq-icon {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--white);
    transform: rotate(45deg);
  }
  .faq-answer {
    display: none;
    padding: 14px 22px 18px;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-answer { display: block; }
  .faq-cta { text-align: right; margin-top: 20px; }

  /* ── NEWSLETTER / FOOTER ── */
  .newsletter-section {
    background: linear-gradient(135deg, #0c121b 0%, #0e2346 50%, #0c121b 100%);
    padding: 80px 0;
    text-align: center;
  }
  .newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
  }
  .newsletter-inner h2 { color: var(--white); margin-bottom: 12px; }
  .newsletter-inner p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 15px; }
  .newsletter-form {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 6px 6px 6px 18px;
  }
  .newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--heading);
    font-size: 15px;
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-form button {
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    background: var(--cyan);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.18s;
  }
  .newsletter-form button:hover { background: #d4b87e; }

  .site-footer {
    background: #0c121b;
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-family: var(--heading);
  }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .trust-inner, .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .qa-inner, .mfg-inner { grid-template-columns: 1fr; gap: 40px; }
    .science-grid, .science-bottom { grid-template-columns: 1fr; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item:last-child { border-bottom: none; }
  }
  @media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .products-grid, .cat-grid, .why-grid { grid-template-columns: 1fr; }
    .trust-inner { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: var(--navy-dark);
      border-top: 1px solid rgba(255,255,255,0.08);
      padding: 8px 0 20px;
      gap: 2px;
      z-index: 99;
      box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }
    .nav-links.open li { width: 100%; }
    .nav-links.open a {
      display: block;
      padding: 14px 24px;
      border-radius: 0;
      font-size: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-hamburger { display: flex; }
    h1 { font-size: 2rem; }
    .newsletter-form { flex-direction: column; padding: 12px; }
    .newsletter-form input { padding: 14px 16px; }
    .newsletter-form button { width: 100%; }
  }

  /* ── FOOTER MOBILE ACCORDION ── */
  @media (max-width: 600px) {
    .footer-col h5 {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      user-select: none;
    }
    .footer-col h5::after {
      content: '+';
      font-size: 18px;
      font-weight: 400;
      color: rgba(255,255,255,0.4);
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .footer-col.open h5::after { content: '−'; }
    .footer-col ul {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.28s ease, padding 0.2s;
      padding: 0;
    }
    .footer-col.open ul {
      max-height: 200px;
      padding: 10px 0 14px;
    }
  }

  /* ── FOOTER ── */
  .site-footer {
    background: #0c121b;
    padding: 64px 0 0;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    text-align: left;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .footer-logo {
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    text-align: left;
  }
  .footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    max-width: 280px;
    text-align: left;
  }
  .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
  .footer-badge {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cyan);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 100px;
    padding: 4px 12px;
  }
  .footer-col h5 {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 18px;
    text-align: left;
  }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
  .footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    transition: color 0.18s;
    text-align: left;
  }
  .footer-col ul li a:hover { color: var(--cyan); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-credit a { color: rgba(255,255,255,0.35); transition: color 0.18s; }
  .footer-credit a:hover { color: var(--cyan); }

  /* FAQ label */
  .faq-inner > .label { margin-bottom: 8px; }
  .faq-inner > h2 { text-align: center; margin-bottom: 40px; }

  @media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
    .footer-bottom { flex-direction: column; text-align: left; }
  }

/* ═══════════════════════════════════════════════
   INNER PAGE — Page Hero Banner
   ═══════════════════════════════════════════════ */
.page-hero {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, rgba(14,35,70,0.85) 100%);
  z-index: 1;
}
.page-hero-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 80% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  z-index: 1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 52px 0 44px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-hero-inner .page-label {
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cyan);
  opacity: 0.85;
}
.page-hero-inner h1 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.page-hero-inner .page-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 14.5px;
  margin-top: 4px;
}
.page-hero-separator {
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0%, rgba(201,169,110,0.3) 60%, transparent 100%);
  box-shadow: 0 4px 20px rgba(12,18,27,0.15);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 12px;
  font-family: var(--heading);
}
.breadcrumbs a { color: rgba(255,255,255,0.45); transition: color 0.18s; }
.breadcrumbs a:hover { color: var(--cyan); }
.breadcrumbs .sep { opacity: 0.35; }

/* ═══════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ═══════════════════════════════════════════════ */

/* Shop grid */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s;
  display: flex;
  flex-direction: column;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy);
}
.woocommerce ul.products li.product a img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f0f3f7;
  padding: 16px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 16px 4px;
}
.woocommerce ul.products li.product .price {
  font-family: var(--heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  padding: 0 16px 8px;
}
.woocommerce ul.products li.product .button {
  margin: auto 16px 16px;
  display: block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.woocommerce ul.products li.product .button:hover {
  background: var(--cyan);
  color: var(--navy-dark);
}

/* Single product */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 56px 0;
}
.woocommerce div.product .woocommerce-product-gallery { position: relative; }
.woocommerce div.product .woocommerce-product-gallery .wp-post-image {
  border-radius: var(--radius);
  background: #f0f3f7;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.woocommerce div.product .product_title {
  font-family: var(--heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.woocommerce div.product .price {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.woocommerce div.product form.cart .button {
  background: var(--cyan);
  color: var(--navy-dark);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
}
.woocommerce div.product form.cart .button:hover {
  background: #d4b87e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}
.woocommerce div.product form.cart .qty {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--heading);
  font-size: 15px;
  color: var(--navy);
  width: 72px;
  margin-right: 12px;
}

/* Cart */
.woocommerce table.cart {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce table.cart th {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.woocommerce table.cart td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.woocommerce-cart .cart-collaterals {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
}
.woocommerce-cart .cart-collaterals h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.woocommerce .button.checkout-button,
.woocommerce #place_order {
  background: var(--cyan);
  color: var(--navy-dark);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  display: block;
  text-align: center;
  transition: all 0.22s;
}
.woocommerce .button.checkout-button:hover,
.woocommerce #place_order:hover {
  background: #d4b87e;
  transform: translateY(-1px);
}


/* My Account */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 13px 20px;
  font-family: var(--heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: all 0.18s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--navy);
  color: var(--white);
}

/* Shop sidebar / filters */
.widget_product_categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget_product_categories ul li a {
  display: block;
  padding: 8px 0;
  font-family: var(--heading);
  font-size: 13.5px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color 0.18s;
}
.widget_product_categories ul li a:hover { color: var(--cyan); }

/* Notices */
.woocommerce-message, .woocommerce-info {
  background: rgba(14,35,70,0.06);
  border-left: 4px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  font-size: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.woocommerce-error {
  background: rgba(200,50,50,0.06);
  border-left: 4px solid #c83232;
  border-radius: 0 8px 8px 0;
  padding: 14px 20px;
  font-size: 14px;
  margin-bottom: 24px;
  list-style: none;
}

/* Purity badge on product */
.sp-purity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,35,70,0.06);
  border: 1px solid rgba(14,35,70,0.12);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.sp-purity-badge span { color: var(--cyan); }

/* COA download button */
.sp-coa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 14px;
  cursor: pointer;
  transition: all 0.18s;
}
.sp-coa-btn:hover { border-color: var(--navy); background: var(--white); }

/* ── RESPONSIVE additions for WooCommerce ── */
@media (max-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .woocommerce div.product { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .page-hero-inner { padding: 36px 0 28px; }
  .page-hero-inner h1 { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE STYLES  (pt_about template)
   ═══════════════════════════════════════════════ */

/* ── Mission section ── */
.about-mission { padding: 80px 0; }
.about-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-2col--reverse { direction: rtl; }
.about-2col--reverse > * { direction: ltr; }

.about-2col-text .label { margin-bottom: 12px; display: block; }
.about-2col-text h2 { margin-bottom: 24px; }
.about-2col-text h2 span { color: var(--cyan); }
.about-2col-text p { color: var(--muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }

.about-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.about-badge-item {
    text-align: center;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    flex: 1;
    min-width: 90px;
}
.about-badge-item strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
}
.about-badge-item span {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--heading);
    font-weight: 600;
}

/* Image wrap */
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.about-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(14,35,70,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 600;
}
.about-img-badge svg { stroke: var(--cyan); flex-shrink: 0; }

/* ── Stats strip ── */
.about-stats {
    background: var(--navy);
    padding: 56px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
    display: block;
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--cyan);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-family: var(--heading);
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ── Lab section ── */
.about-lab { padding: 80px 0; background: var(--off-white); }

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.55;
}
.about-checklist li svg {
    width: 18px;
    height: 18px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 1px;
}
.about-checklist li strong { color: var(--navy); }

/* ── Manufacturing ── */
.about-manufacturing {
    background: var(--navy-dark);
    padding: 80px 0;
}
.about-manufacturing .label { color: var(--cyan); }
.about-manufacturing h2 { color: var(--white); }

.mfg-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 56px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.mfg-step {
    display: flex;
    gap: 28px;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    align-items: flex-start;
    transition: background 0.2s;
}
.mfg-step:last-child { border-bottom: none; }
.mfg-step:hover { background: rgba(255,255,255,0.03); }

.mfg-step-num {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
    opacity: 0.35;
    line-height: 1;
    min-width: 48px;
    letter-spacing: -0.04em;
    padding-top: 3px;
}
.mfg-step-content h4 {
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.mfg-step-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    margin: 0;
}

.mfg-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.mfg-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ── Values ── */
.about-values { padding: 80px 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.22s;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
    background: var(--white);
}
.value-icon {
    width: 44px;
    height: 44px;
    background: rgba(14,35,70,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--navy);
}
.value-card h4 {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.value-card p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── About page responsive ── */
@media (max-width: 900px) {
    .about-2col,
    .about-2col--reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    .about-img-wrap img { height: 360px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .stat-item:last-child,
    .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .about-mission,
    .about-lab,
    .about-values { padding: 52px 0; }
    .about-img-wrap img { height: 280px; }
    .about-badges { gap: 12px; }
    .about-badge-item { padding: 12px 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
    .values-grid { grid-template-columns: 1fr; }
    .mfg-step { padding: 20px; gap: 16px; }
    .mfg-step-num { font-size: 1.5rem; min-width: 36px; }
    .mfg-image-wrap img { height: 240px; }
}

/* ── Core Values (dark bg, centered) ── */
.about-core-values {
    background: var(--off-white);
    padding: 80px 0;
}
.about-core-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.about-core-inner .label { display: block; margin-bottom: 12px; }
.about-core-inner h2 { margin-bottom: 20px; }
.about-core-inner p { color: var(--muted); font-size: 16px; line-height: 1.75; }

.about-emblem {
    width: 120px;
    height: auto;
    margin: 0 auto 28px;
    opacity: 0.15;
}
.about-emblem img { width: 100%; display: block; }
.about-emblem--dark { opacity: 0.08; }

/* ── Results section ── */
.about-results {
    padding: 80px 0;
    background: var(--white);
}

/* ── Security section ── */
.about-security {
    background: var(--off-white);
    padding: 80px 0;
}
.security-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 36px;
    flex-wrap: wrap;
}
.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}
.security-badge svg { stroke: var(--navy); opacity: 0.6; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   WOOCOMMERCE STORE NOTICE  (.demo_store)
   Replaces WooCommerce's default yellow bar
   ═══════════════════════════════════════════════ */
.woocommerce-store-notice,
p.woocommerce-store-notice,
.demo_store {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--navy) !important;
    color: rgba(255,255,255,0.9) !important;
    font-family: var(--heading) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 10px 24px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    z-index: 9999 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    /* Remove any WC default box-shadow or background overrides */
    box-shadow: none !important;
}

/* The dismiss link WC outputs */
.woocommerce-store-notice a,
p.woocommerce-store-notice a,
.demo_store a {
    color: var(--cyan) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    margin-left: 8px !important;
    white-space: nowrap !important;
    transition: opacity 0.18s !important;
}
.woocommerce-store-notice a:hover,
p.woocommerce-store-notice a:hover,
.demo_store a:hover {
    opacity: 0.75 !important;
}

/* Dismiss button (×) that WC adds */
.woocommerce-store-notice__dismiss-link,
.demo_store .woocommerce-store-notice__dismiss-link {
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: rgba(255,255,255,0.5) !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    transition: all 0.18s !important;
}
.woocommerce-store-notice__dismiss-link:hover {
    background: rgba(255,255,255,0.1) !important;
    color: var(--white) !important;
    opacity: 1 !important;
}

/* Push body down so nav doesn't overlap notice */
body.admin-bar .woocommerce-store-notice,
body.admin-bar p.woocommerce-store-notice {
    top: 32px !important;
}

/* ═══════════════════════════════════════════════
   SHOP LAYOUT
   ═══════════════════════════════════════════════ */
.shop-wrap { padding: 48px 0 80px; }
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
}
.shop-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.shop-result-count { font-size: 13px; color: var(--muted); font-family: var(--heading); white-space: nowrap; }
.sp-product-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.sp-product-search:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(14,35,70,0.08);
    background: var(--white);
}
.sp-product-search svg { color: var(--muted); flex-shrink: 0; }
.sp-product-search input[type="search"] {
    border: none;
    background: none;
    font-family: var(--body);
    font-size: 14px;
    color: var(--navy);
    outline: none;
    width: 200px;
}
.sp-product-search input[type="search"]::placeholder { color: var(--muted); }
.shop-ordering select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 32px 8px 12px;
    font-family: var(--heading);
    font-size: 13px;
    color: var(--navy);
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230e2346' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center / 16px;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════════════ */
.sp-single-wrap { padding: 48px 0 80px; }
.sp-single-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}



/* Info */
.sp-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.sp-price {
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.sp-short-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
}
.sp-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
}
.sp-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sp-spec--full { grid-column: 1 / -1; }
.sp-spec span {
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.sp-spec strong {
    font-family: var(--heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    word-break: break-word;
}
.sp-trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 16px;
}
.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}
.sp-trust-item svg { stroke: var(--cyan); }
.sp-research-note {
    font-size: 11.5px;
    color: var(--muted);
    background: var(--off-white);
    border-left: 3px solid var(--border);
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin-top: 16px;
    line-height: 1.6;
}

/* Tabs */
.sp-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
    overflow-x: auto;
}
.sp-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 12px 22px;
    font-family: var(--heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.sp-tab-btn.active, .sp-tab-btn:hover {
    color: var(--navy);
    border-bottom-color: var(--navy);
}
.sp-tab-panel { display: none; }
.sp-tab-panel.active {
    display: block;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ═══════════════════════════════════════════════
   CART
   ═══════════════════════════════════════════════ */
.sp-cart-wrap { padding: 48px 0 80px; }
.woocommerce-cart .woocommerce { width: 100%; }
.woocommerce-cart table.cart img { border-radius: 8px; max-width: 72px; }
.woocommerce-cart .wc-proceed-to-checkout { margin-top: 16px; }

/* ═══════════════════════════════════════════════
   MY ACCOUNT
   ═══════════════════════════════════════════════ */
.sp-account-wrap { padding: 48px 0 80px; }
.sp-account-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
}
.sp-account-nav {
    display: flex;
    flex-direction: column;
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    position: sticky;
    top: 88px;
}
.sp-account-nav-item {
    display: block;
    padding: 13px 20px;
    font-family: var(--heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--border);
    transition: all 0.18s;
}
.sp-account-nav-item:last-child { border-bottom: none; }
.sp-account-nav-item:hover, .sp-account-nav-item.active {
    background: var(--navy);
    color: var(--white);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .sp-single-grid { grid-template-columns: 1fr; gap: 32px; }
    .sp-main-img { height: 320px; }
    .sp-account-grid { grid-template-columns: 1fr; }
    .sp-account-nav { position: static; flex-direction: row; flex-wrap: wrap; }
    .sp-account-nav-item { flex: 1; text-align: center; border-right: 1px solid var(--border); border-bottom: none; }
}
@media (max-width: 600px) {
    .sp-main-img { height: 260px; }
    .sp-specs { grid-template-columns: 1fr; }
    .sp-trust-row { gap: 10px; }
    .sp-tab-btn { padding: 10px 14px; font-size: 12px; }
    .shop-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
    .shop-toolbar-right { justify-content: space-between; }
}



/* WooCommerce pagination */
.woocommerce-pagination {
  margin-top: 48px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
  transition: all 0.18s;
}
.woocommerce-pagination ul li a:hover {
  border-color: var(--navy);
  background: var(--off-white);
  color: var(--navy);
}
.woocommerce-pagination ul li span.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ═══════════════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════════════ */
.sp-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 56px 0 48px;
}
.sp-product-gallery {}
.sp-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #f0f3f7;
  object-fit: contain;
  padding: 24px;
}
.sp-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.sp-gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.18s;
}
.sp-gallery-thumb:hover,
.sp-gallery-thumb.active { border-color: var(--navy); }

.sp-price {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.sp-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 13px;
}
.sp-specs-table tr { border-bottom: 1px solid var(--border); }
.sp-specs-table th {
  padding: 9px 0;
  color: var(--muted);
  font-weight: 600;
  font-family: var(--heading);
  width: 120px;
  text-align: left;
}
.sp-specs-table td {
  padding: 9px 0;
  color: var(--navy);
  font-weight: 500;
}
.sp-research-note {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  margin-top: 16px;
  line-height: 1.55;
}
.sp-product-tabs { padding: 0 0 56px; }

/* Related products */
.related.products { padding-bottom: 72px; }
.related.products h2 {
  font-size: 1.3rem;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* ═══════════════════════════════════════════════
   CART
   ═══════════════════════════════════════════════ */
.sp-cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.sp-cart-form table { width: 100%; }
.coupon { display: flex; gap: 10px; align-items: center; }
.coupon .input-text {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
}
.coupon .input-text:focus { border-color: var(--navy); }
.sp-btn-secondary {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.18s;
}
.sp-btn-secondary:hover { border-color: var(--navy); background: var(--white); }
.sp-cart-collaterals {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 88px;
}
.cart_totals h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.cart_totals table { width: 100%; font-size: 14px; }
.cart_totals table th { padding: 8px 0; color: var(--muted); font-weight: 600; }
.cart_totals table td { padding: 8px 0; text-align: right; font-weight: 600; color: var(--navy); }
.cart_totals table .order-total td { font-size: 1.1rem; color: var(--navy); }

/* ═══════════════════════════════════════════════
   CHECKOUT
   ═══════════════════════════════════════════════ */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-family: var(--heading); font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus { border-color: var(--navy); }
#place_order {
  background: var(--cyan);
  color: var(--navy-dark);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.22s;
}
#place_order:hover { background: #d4b87e; transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   MY ACCOUNT
   ═══════════════════════════════════════════════ */
.sp-account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}
.sp-account-nav .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
}
.sp-account-nav .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 13px 20px;
  font-family: var(--heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: all 0.18s;
}
.sp-account-nav .woocommerce-MyAccount-navigation ul li a:hover,
.sp-account-nav .woocommerce-MyAccount-navigation ul li.is-active a {
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   CART BUMP ANIMATION
   ═══════════════════════════════════════════════ */
40%  { transform: scale(1.25); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
/* NAV scrolled state */
#site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.18); }

/* ── WooCommerce responsive ── */
@media (max-width: 900px) {
  .shop-body { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .sp-single-product { grid-template-columns: 1fr; gap: 36px; padding: 36px 0; }
  .sp-cart-layout { grid-template-columns: 1fr; }
  .sp-cart-collaterals { position: static; }
  .sp-account-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .shop-layout { padding: 28px 0 48px; }
}

/* ═══════════════════════════════════════════════
   BLOG / ARCHIVE / SINGLE POST
   ═══════════════════════════════════════════════ */
.sp-archive { padding: 48px 24px 72px; }
.sp-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.sp-post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.22s;
}
.sp-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.sp-post-card-img { display: block; overflow: hidden; }
.sp-post-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.sp-post-card:hover .sp-post-card-img img { transform: scale(1.04); }
.sp-post-card-body { padding: 20px; }
.sp-post-card-meta { font-size: 11px; color: var(--muted); font-family: var(--heading); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.sp-post-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.sp-post-card-body h3 a { color: var(--navy); }
.sp-post-card-body h3 a:hover { color: var(--cyan); }
.sp-post-card-body p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

/* Single post */
.sp-single-post { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.sp-post-thumbnail { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.sp-post-thumbnail img { width: 100%; height: 420px; object-fit: cover; }
.sp-post-meta { font-size: 12px; color: var(--muted); font-family: var(--heading); margin-bottom: 16px; }
.sp-post-content { font-size: 16px; line-height: 1.8; color: var(--text); }
.sp-post-content h2, .sp-post-content h3 { margin: 36px 0 16px; }
.sp-post-content p { margin-bottom: 20px; }
.sp-post-nav { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.sp-post-nav .nav-links { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.sp-post-nav a { font-family: var(--heading); font-size: 13px; font-weight: 600; color: var(--navy); }
.sp-post-nav a:hover { color: var(--cyan); }

/* 404 */
.sp-404 {
  padding: 120px 24px;
  text-align: center;
  background: var(--off-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.sp-404 .label { display: block; margin-bottom: 12px; }
.sp-404 h1 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--navy); margin-bottom: 16px; }
.sp-404 p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
.sp-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* No results */
.sp-no-results { text-align: center; padding: 80px 0; }
.sp-no-results h2 { margin-bottom: 12px; }
.sp-no-results p { color: var(--muted); }
.sp-no-results a { color: var(--cyan); }

/* ── Responsive blog ── */
@media (max-width: 900px) {
  .sp-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sp-posts-grid { grid-template-columns: 1fr; }
  .sp-post-thumbnail img { height: 240px; }
}

/* ═══════════════════════════════════════════════
   SINGLE PRODUCT — Full Redesign
   ═══════════════════════════════════════════════ */

.sp-product-wrap { padding: 52px 0 64px; }

.sp-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Gallery thumbnails */
.sp-gallery-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.sp-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid var(--border);
    overflow: hidden;
    padding: 0;
    background: #f0f3f7;
    cursor: pointer;
    transition: border-color 0.18s;
    flex-shrink: 0;
}
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-thumb.active, .sp-thumb:hover { border-color: var(--navy); }

/* Details */
.sp-cat-tag {
    display: inline-block;
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 12px;
    margin-bottom: 14px;
}
.sp-product-title {
    font-family: var(--heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
}
.sp-product-price {
    font-family: var(--heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
}
.sp-product-price .woocommerce-Price-amount { font-size: inherit; }
.sp-short-desc {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

/* Specs grid */
.sp-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-bottom: 24px;
}
.sp-spec { display: flex; flex-direction: column; gap: 2px; }
.sp-spec-full { grid-column: 1 / -1; }
.sp-spec span {
    font-family: var(--heading);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.sp-spec strong {
    font-family: var(--heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    word-break: break-word;
}

/* Cart form wrapper — no background, variations sit outside */
.sp-cart-form {
    margin-bottom: 20px;
}
.sp-cart-form form.cart {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Simple product: qty + button row in a card */
.sp-cart-form form.cart > .qty,
.sp-cart-form form.cart > .single_add_to_cart_button {
    /* These get wrapped in sp-cart-action-row via JS below */
}
.sp-cart-action-row,
.sp-cart-form .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}
.sp-cart-form .qty {
    width: 72px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 14px 10px;
    font-family: var(--heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    background: var(--white);
}
.sp-cart-form .qty:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.sp-cart-form .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    font-family: var(--heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.03em;
    padding: 14px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.22s;
    flex: 1;
    text-transform: uppercase;
}
.sp-cart-form .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14,35,70,0.35);
}

/* Variation selector — sits outside the grey box */
.sp-cart-form .variations {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.sp-cart-form .variations td,
.sp-cart-form .variations th {
    border: none;
    padding: 4px 0;
    vertical-align: middle;
}
.sp-cart-form .variations tr {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sp-cart-form .variations .label {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--off-white);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
}
.sp-cart-form .variations .label label { margin: 0; }
.sp-cart-form .variations .label::after { display: none; }
.sp-cart-form .variations select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230e2346' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 14px 40px 14px 16px;
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.sp-cart-form .variations select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(14,35,70,0.1);
}
.sp-cart-form .variations .reset_variations {
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    margin-top: 4px;
    display: inline-block;
    transition: color 0.18s;
}
.sp-cart-form .variations .reset_variations:hover { color: var(--navy); }

/* Selected variation info — inside the grey box */
.sp-cart-form .woocommerce-variation {
    margin-bottom: 14px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}
.sp-cart-form .woocommerce-variation-price .price {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}
.sp-cart-form .woocommerce-variation-description p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 6px;
}
.sp-cart-form .woocommerce-variation-availability p {
    font-size: 13px;
    font-weight: 600;
}
.sp-cart-form .woocommerce-variation-availability .in-stock { color: #16a34a; }
.sp-cart-form .woocommerce-variation-availability .out-of-stock { color: #dc2626; }

/* Single variation wrap — the grey card for price + qty + button */
.sp-cart-form form.cart .variations + .single_variation_wrap {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}
.sp-cart-form .woocommerce-variation-add-to-cart {
    display: flex;
    gap: 10px;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}
.sp-cart-form .woocommerce-variation-add-to-cart .qty {
    width: 72px;
}
.sp-cart-form .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    flex: 1;
}

/* Trust pills row */
.sp-trust-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
    margin-bottom: 14px;
}
.sp-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 12px;
    font-family: var(--heading);
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
}
.sp-trust-pill svg { stroke: var(--cyan); flex-shrink: 0; }

/* Research note */
.sp-research-note {
    font-size: 11.5px;
    color: var(--muted);
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 14px;
    line-height: 1.6;
}

/* ── Tabs ── */
.sp-tabs-section {
    background: var(--off-white);
    padding: 52px 0;
}
.sp-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
    overflow-x: auto;
}
.sp-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 12px 24px;
    font-family: var(--heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.sp-tab-btn.active, .sp-tab-btn:hover { color: var(--navy); border-bottom-color: var(--navy); }
.sp-tab-panel { display: none; }
.sp-tab-panel.active { display: block; }
.sp-tab-body {
    max-width: 760px;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--muted);
}
.sp-tab-body p { margin-bottom: 16px; }
.sp-tab-body strong { color: var(--navy); }

/* ── Quality strip (3 cols) ── */
.sp-quality-strip {
    padding: 60px 0;
    background: var(--white);
}
.sp-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sp-quality-item {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.22s;
}
.sp-quality-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}
.sp-quality-icon {
    width: 56px;
    height: 56px;
    background: rgba(14,35,70,0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.sp-quality-icon svg { stroke: var(--navy); }
.sp-quality-item h4 {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.sp-quality-item p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Related products ── */
.sp-related-section { padding: 60px 0; background: var(--off-white); }
.sp-related-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .sp-product-grid { grid-template-columns: 1fr; gap: 36px; }
    .sp-quality-grid { grid-template-columns: 1fr; gap: 16px; }
    .sp-quality-item { padding: 24px 20px; text-align: left; }
    .sp-quality-icon { margin: 0 0 14px; }
}
@media (max-width: 600px) {
    .sp-product-wrap { padding: 28px 0 40px; }
    .sp-specs-grid { grid-template-columns: 1fr; }
    .sp-cart-form form.cart { flex-direction: column; }
    .sp-cart-form .qty,
    .sp-cart-form .woocommerce-variation-add-to-cart .qty { width: 100%; }
    .sp-cart-form .woocommerce-variation-add-to-cart { flex-direction: column; }
    .sp-cart-form .variations td { display: block; width: 100%; padding: 2px 0; }
    .sp-cart-form .variations .label { padding-bottom: 4px; }
    .sp-quality-grid { grid-template-columns: 1fr; }
    .shop-toolbar { flex-direction: column; align-items: stretch; }
    .shop-toolbar-right { justify-content: space-between; }
    .sp-product-search input[type="search"] { width: 100%; }
}

/* ═══════════════════════════════════════════════
   SINGLE PRODUCT — REDESIGN v2
   ═══════════════════════════════════════════════ */

/* Gallery — full image */
.sp-gallery-main {
    background: #eef1f6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.sp-main-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    display: block;
    transition: opacity 0.2s;
}

/* Purity inline badge */
.sp-purity-inline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14,35,70,0.05);
    border: 1px solid rgba(14,35,70,0.1);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: var(--heading);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.sp-purity-inline svg { stroke: var(--cyan); flex-shrink: 0; }

/* Research notice */
.sp-research-notice {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: rgba(201,169,110,0.07);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}
.sp-research-notice svg { stroke: var(--cyan); flex-shrink: 0; margin-top: 1px; }

/* Description section */
.sp-description-section {
    padding: 60px 0;
    background: var(--white);
}
.sp-description-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
.sp-description-body h3 {
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.sp-description-body p {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 16px;
}
.sp-description-body strong { color: var(--navy); }

/* Sidebar info card */
.sp-info-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    top: 88px;
}
.sp-info-card h5 {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.sp-info-rows { display: flex; flex-direction: column; gap: 0; }
.sp-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.sp-info-row:last-child { border-bottom: none; }
.sp-info-row span {
    font-family: var(--heading);
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    flex-shrink: 0;
}
.sp-info-row strong {
    font-family: var(--heading);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
    .sp-description-grid { grid-template-columns: 1fr; }
    .sp-info-card { position: static; }
}

/* ═══════════════════════════════════════════════
   STANDARD PAGE TEMPLATE
   ═══════════════════════════════════════════════ */
/* Contact page */
.sp-contact-wrap { padding: 56px 0 80px; }
.sp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.sp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sp-contact-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sp-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 14px;
}
.sp-contact-card h4 {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.sp-contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.sp-email-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.18s;
}
.sp-email-link:hover { color: var(--navy); }
.sp-contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
@media (max-width: 768px) {
  .sp-contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Page content typography */
.entry-content {
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.8;
  color: #2a3042;
}
.entry-content h1 {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.entry-content h2 {
  font-family: var(--heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  line-height: 1.25;
}
.entry-content h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.entry-content h4 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol {
  margin: 0 0 20px 24px;
  padding: 0;
}
.entry-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.entry-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.entry-content a:hover { color: var(--cyan); }
.entry-content blockquote {
  border-left: 3px solid var(--cyan);
  padding: 14px 20px;
  margin: 24px 0;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--muted);
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.entry-content th, .entry-content td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.entry-content th {
  background: var(--off-white);
  font-family: var(--heading);
  font-weight: 600;
  color: var(--navy);
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.entry-content > *:first-child { margin-top: 0; }
.entry-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════
   FAQ PAGE TEMPLATE
   ═══════════════════════════════════════════════ */
.sp-faq-page-wrap { padding: 72px 0 80px; }
.sp-faq-page-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}
.sp-faq-category { margin-bottom: 40px; }
.sp-faq-cat-title {
    font-family: var(--heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--border);
}
.sp-faq-cat-title::after { display: none; }

/* FAQ sidebar card */
.sp-faq-contact-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: sticky;
    top: 88px;
}
.sp-faq-contact-card h4 {
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.sp-faq-contact-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}
.sp-faq-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}
.sp-faq-links a {
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: color 0.18s;
}
.sp-faq-links a:hover { color: var(--cyan); }

/* Newsletter form feedback */
.newsletter-msg {
    font-family: var(--heading);
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    display: none;
}
.newsletter-msg:not(:empty) { display: block; }
.newsletter-msg.success {
    background: rgba(201,169,110,0.15);
    color: var(--cyan);
    border: 1px solid rgba(201,169,110,0.35);
}
.newsletter-msg.error {
    background: rgba(255,100,100,0.12);
    color: #ff9e9e;
    border: 1px solid rgba(255,100,100,0.25);
}

@media (max-width: 900px) {
    .sp-faq-page-grid { grid-template-columns: 1fr; }
    .sp-faq-contact-card { position: static; }
}

/* ═══════════════════════════════════════════════
   HOMEPAGE ANIMATIONS & VISUAL POLISH
   ═══════════════════════════════════════════════ */

/* FunnelKit cart in nav */
.nav-fk-cart { display: flex; align-items: center; }
.nav-fk-cart .fk-cart-container,
.nav-fk-cart a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.78) !important;
    font-family: var(--heading) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    border: 1.5px solid rgba(255,255,255,0.22) !important;
    border-radius: 8px !important;
    transition: all 0.18s !important;
    text-decoration: none !important;
}
.nav-fk-cart a:hover { background: rgba(201,169,110,0.2) !important; color: var(--white) !important; }
.nav-fk-cart .fk-cart-count {
    background: var(--cyan) !important;
    color: var(--navy-dark) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Product image link */
.product-image-link { display: block; }

/* ── Scroll-triggered fade-in ── */
.sp-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.sp-animate.sp-in {
    opacity: 1;
    transform: translateY(0);
}
.sp-animate-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.sp-animate-left.sp-in { opacity: 1; transform: translateX(0); }
.sp-animate-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.sp-animate-right.sp-in { opacity: 1; transform: translateX(0); }

/* Stagger children */
.sp-animate:nth-child(1) { transition-delay: 0s; }
.sp-animate:nth-child(2) { transition-delay: 0.1s; }
.sp-animate:nth-child(3) { transition-delay: 0.2s; }
.sp-animate:nth-child(4) { transition-delay: 0.3s; }
.sp-animate:nth-child(5) { transition-delay: 0.4s; }
.sp-animate:nth-child(6) { transition-delay: 0.5s; }

/* ── Section dividers ── */
.sp-wave-divider {
    line-height: 0;
    overflow: hidden;
    margin-top: -2px;
}
.sp-wave-divider svg { display: block; width: 100%; }

/* ── Floating label on hero ── */
.hero-badge {
    animation: heroBadgePulse 3s ease-in-out infinite;
}
@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
    50%       { box-shadow: 0 0 0 6px rgba(201,169,110,0.12); }
}

/* ── Trust strip icons ── */
.trust-icon {
    transition: transform 0.3s ease;
}
.trust-item:hover .trust-icon { transform: scale(1.1) rotate(-3deg); }

/* ── Product card image zoom on hover ── */
.product-card:hover .product-image-wrap img {
    transform: scale(1.05);
}

/* ── Why card icon spin on hover ── */
.why-card:hover .why-card-img {
    transform: scale(1.08);
    transition: transform 0.3s ease;
}

/* ── QA badges slide in ── */
.qa-badge {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.qa-badge:hover {
    transform: translateX(6px);
    box-shadow: -4px 0 0 var(--cyan);
}

/* ── Science cards parallax-feel zoom ── */
.science-card { overflow: hidden; }

/* ── Number counter animation (stats) ── */
.stat-counter { display: inline-block; }

/* ── Gradient text on select headings ── */
.hero h1 span {
    background: linear-gradient(135deg, var(--cyan) 0%, #e8c87a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section label underline animate ── */
.label {
    position: relative;
    display: inline-block;
}
.label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--cyan);
    transition: width 0.4s ease 0.3s;
}
.sp-in .label::after,
.label.sp-in::after { width: 100%; }

/* ── Mfg steps number glow ── */
.mfg-step:hover .mfg-step-num {
    opacity: 1;
    text-shadow: 0 0 20px rgba(201,169,110,0.4);
    transition: all 0.3s ease;
}