/*
Theme Name: Lyfe Peptides
Theme URI: https://northpharma.ca
Author: Lyfe Peptides
Description: Clean retail WooCommerce theme for Lyfe Peptides
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: northpharma
Tags: woocommerce, e-commerce, pharmaceutical, light
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    color: #4b5563;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #3485c9;
    text-decoration: none;
}

a:hover {
    color: #2060a0;
}

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

ul {
    list-style: none;
}

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

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section {
    padding: 80px 0;
}

.section--gray {
    background: #f9fafb;
}

.section--white {
    background: #ffffff;
}

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-title {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1a2744;
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.05rem;
    margin-bottom: 48px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: #3485c9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Kanit', sans-serif;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a2744;
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: #6b7280;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
}

.site-nav ul {
    display: flex;
    gap: 8px;
}

.site-nav ul li a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #374151;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.site-nav ul li a:hover,
.site-nav ul li.current-menu-item a,
.site-nav ul li.current_page_item a {
    background: #f0f7ff;
    color: #3485c9;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #3485c9;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.header-cart:hover {
    background: #2060a0;
    color: #ffffff;
}

.header-cart-count {
    background: #f59e0b;
    color: #1a2744;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(245,158,11,0.2);
    border: 1px solid rgba(245,158,11,0.4);
    color: #fcd34d;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 3.2rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.82);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #ffffff;
    color: #2563eb;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    color: #1e3a5f;
}

.btn-hero-secondary {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
}

.btn-hero-secondary:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 52px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
}

.hero-trust-item span {
    color: #86efac;
    font-size: 1rem;
}

/* ============================================================
   TRUST STATS BAR
   ============================================================ */
.trust-bar {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 28px 0;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.trust-stat-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    color: #3485c9;
}

.trust-stat-content strong {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a2744;
    line-height: 1.2;
}

.trust-stat-content span {
    font-size: 0.82rem;
    color: #6b7280;
}

/* ============================================================
   FEATURED PRODUCTS SECTION
   ============================================================ */
.featured-products {
    padding: 80px 0;
    background: #ffffff;
}

.featured-products .section-title {
    margin-bottom: 8px;
}

.view-all-link {
    display: block;
    text-align: center;
    color: #3485c9;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 48px;
    text-decoration: none;
}

.view-all-link:hover {
    color: #2060a0;
    text-decoration: underline;
}

/* WooCommerce product grid overrides */
.featured-products .products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.featured-products .woocommerce-loop-product__title,
.products .woocommerce-loop-product__title {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #1a2744;
    margin: 0 0 8px;
}

.featured-products .price,
.products .price {
    color: #3485c9;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 16px;
    display: block;
}

.featured-products li.product,
.products li.product {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-products li.product:hover,
.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.featured-products li.product a.woocommerce-loop-product__link,
.products li.product a.woocommerce-loop-product__link {
    display: block;
    padding: 20px 20px 0;
    text-decoration: none;
    flex: 1;
}

.featured-products li.product img,
.products li.product img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 14px;
}

.featured-products li.product .button,
.products li.product .button,
.featured-products .add_to_cart_button,
.products .add_to_cart_button {
    display: block !important;
    width: calc(100% - 40px) !important;
    margin: 0 20px 20px !important;
    background: #3485c9 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 11px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    text-decoration: none !important;
}

.featured-products li.product .button:hover,
.products li.product .button:hover,
.featured-products .add_to_cart_button:hover,
.products .add_to_cart_button:hover {
    background: #2060a0 !important;
    color: #ffffff !important;
}

/* Product badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #3485c9;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.product-badge--amber {
    background: #f59e0b;
    color: #1a2744;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-section {
    padding: 80px 0;
    background: #f9fafb;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.category-icon {
    width: 64px;
    height: 64px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.7rem;
}

.category-card h3 {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a2744;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 18px;
    line-height: 1.5;
}

.category-link {
    display: inline-block;
    color: #3485c9;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #3485c9;
    padding-bottom: 1px;
    transition: color 0.2s;
}

.category-card:hover .category-link {
    color: #2060a0;
    border-bottom-color: #2060a0;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
    padding: 80px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 40px 32px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #f0f7ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    color: #3485c9;
}

.why-card h3 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #1a2744;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter-strip {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    padding: 60px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.newsletter-form input[type="email"] {
    padding: 14px 20px;
    border: none;
    font-size: 0.95rem;
    width: 300px;
    outline: none;
    color: #1a2744;
}

.newsletter-form button {
    background: #f59e0b;
    color: #1a2744;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 24px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #d97706;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #1a2744;
    color: #d1d5db;
}

.footer-top {
    padding: 64px 0 48px;
}

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

.footer-brand .logo-text {
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: #3485c9;
    color: #ffffff;
}

.footer-heading {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-contact-icon {
    color: #3485c9;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

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

.footer-disclaimer {
    font-size: 0.8rem;
    color: #6b7280;
    font-style: italic;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #6b7280;
}

/* ============================================================
   BUTTONS (GLOBAL)
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #3485c9;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2060a0;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52,133,201,0.3);
}

.btn-outline {
    background: transparent;
    color: #3485c9;
    border: 2px solid #3485c9;
}

.btn-outline:hover {
    background: #3485c9;
    color: #ffffff;
}

/* ============================================================
   WOOCOMMERCE - GLOBAL
   ============================================================ */
/* WooCommerce inner wrapper only - not body */body .woocommerce-page > .woocommerce,main .woocommerce {    max-width: none;    margin: 0;    padding: 0;}







.woocommerce-notices-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Remove sidebar on WC pages */
.woocommerce-page .widget-area,
.woocommerce-page #secondary {
    display: none !important;
}

.woocommerce-page #primary,
.woocommerce-page #content {
    width: 100% !important;
    float: none !important;
}

/* WC Product Archive */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    float: none !important;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product a {
    text-decoration: none;
    display: block;
    padding: 16px 16px 0;
}

.woocommerce ul.products li.product img {
    border-radius: 6px;
    width: 100%;
    margin-bottom: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a2744;
    padding: 0 16px;
    margin-bottom: 6px;
}

.woocommerce ul.products li.product .price {
    display: block;
    padding: 0 16px;
    color: #3485c9;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 12px;
}

.woocommerce ul.products li.product .button {
    display: block !important;
    margin: 0 16px 16px !important;
    background: #3485c9 !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 10px 16px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    border: none !important;
    transition: background 0.2s !important;
    text-decoration: none !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #2060a0 !important;
    color: #ffffff !important;
}

/* WC Single Product */
.woocommerce div.product div.images img {
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.woocommerce div.product .product_title {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1a2744;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #3485c9 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.woocommerce div.product .cart .button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
    background: #3485c9 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: background 0.2s !important;
}

.woocommerce div.product .cart .button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: #2060a0 !important;
    color: #ffffff !important;
}

/* WC Breadcrumb */
.woocommerce-breadcrumb {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 24px;
}

.woocommerce-breadcrumb a {
    color: #6b7280;
}

/* WC Messages */
.woocommerce-message,
.woocommerce-info {
    border-top-color: #3485c9 !important;
    background: #f0f7ff !important;
    border-radius: 6px;
}

.woocommerce-error {
    border-top-color: #ef4444 !important;
    background: #fef2f2 !important;
    border-radius: 6px;
}

/* WC Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #3485c9;
    border-bottom: 2px solid #3485c9;
}

/* Cart & Checkout */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #place_order {
    background: #3485c9 !important;
    border-radius: 6px !important;
    color: #ffffff !important;
}

/* Ratings */
.woocommerce .star-rating span,
.woocommerce .star-rating::before {
    color: #f59e0b;
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-content h1,
.page-content h2,
.page-content h3 {
    font-family: 'Kanit', sans-serif;
    color: #1a2744;
    margin-bottom: 16px;
}

.page-content h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.page-content h2 {
    font-size: 1.6rem;
}

.page-content h3 {
    font-size: 1.2rem;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #4b5563;
}

.page-content ul,
.page-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: initial;
}

.page-content ul li,
.page-content ol li {
    margin-bottom: 6px;
    line-height: 1.7;
}

/* Page banner */
.page-banner {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    padding: 48px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-banner h1 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* ============================================================
   BLOG / SINGLE
   ============================================================ */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.single-post-content .entry-title {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: #1a2744;
    margin-bottom: 16px;
}

.single-post-content .entry-meta {
    font-size: 0.88rem;
    color: #9ca3af;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.single-post-content .entry-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4b5563;
}

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

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

    .featured-products .products {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .hero-title {
        font-size: 2.4rem;
    }

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

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

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 12px 0;
        gap: 10px;
    }

    .site-nav {
        order: 3;
        width: 100%;
    }

    .site-nav ul {
        flex-wrap: wrap;
        gap: 4px;
    }

    .site-nav ul li a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .featured-products .products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

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

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

    .newsletter-inner {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 220px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 56px 0;
    }
}

@media (max-width: 480px) {
    .featured-products .products {
        grid-template-columns: 1fr !important;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.6rem;
    }
}

/* === CART TABLE === */
.woocommerce-cart-form__cart-item td,
.woocommerce table.cart td,
.woocommerce table.cart th {
    vertical-align: middle;
    padding: 14px 12px;
    border-bottom: 1px solid #e5e7eb;
}

.woocommerce table.cart th {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    border-bottom: 2px solid #e5e7eb;
}

.woocommerce table.cart td.product-name a {
    font-weight: 600;
    color: #1a2744;
}

.woocommerce table.cart td.product-subtotal {
    font-weight: 700;
    color: #3485c9;
}

/* === CART: REMOVE ITEM BUTTON === */
.woocommerce-cart-form__cart-item .product-remove a,
.woocommerce table.cart .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fee2e2;
    color: #dc2626 !important;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    border: 1px solid #fca5a5;
}

.woocommerce-cart-form__cart-item .product-remove a:hover,
.woocommerce table.cart .product-remove a:hover {
    background: #dc2626;
    color: #ffffff !important;
    border-color: #dc2626;
    text-decoration: none;
}

/* === CART TOTALS === */
.cart-collaterals {
    margin-top: 32px;
}

.woocommerce .cart_totals h2,
.woocommerce-cart .cart_totals h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 16px;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-weight: 700;
    font-size: 1.05rem;
    color: #3485c9;
    border-top: 2px solid #e5e7eb;
}

/* === RESPONSIVE CART === */
@media (max-width: 600px) {
    .woocommerce table.cart thead { display: none; }

    .woocommerce table.cart tr,
    .woocommerce table.cart td {
        display: block;
        width: 100%;
    }

    .woocommerce table.cart td {
        padding: 8px 12px;
        border-bottom: none;
    }

    .woocommerce table.cart tr {
        border-bottom: 1px solid #e5e7eb;
        margin-bottom: 12px;
    }
}

/* Logo image */
.site-logo .logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Logo wordmark next to image */
.site-logo a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}
.logo-wordmark {

    font-weight: 700;
    color: #222;
    white-space: nowrap;
}

/* Push related products section down */
.related.products {
    margin-top: 80px;
}

/* Pen upsell section */
.pen-upsell {
    margin-top: 32px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 24px;
}
.pen-upsell-header {
    margin-bottom: 20px;
}
.pen-upsell-badge {
    display: inline-block;
    background: #3485c9;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}
.pen-upsell-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.pen-upsell-header p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
.pen-upsell-product {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}
.pen-upsell-img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.pen-upsell-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pen-upsell-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pen-upsell-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}
.pen-upsell-price {
    font-size: 16px;
    font-weight: 700;
    color: #3485c9;
}
.btn-add-pen {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #3485c9;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}
.btn-add-pen:hover {
    background: #2a6ba8;
    color: #fff;
}

/* Uniform product gallery thumbnails */
.flex-control-thumbs {
    display: flex;
    gap: 8px;
}
.flex-control-thumbs li {
    width: 80px !important;
    height: 80px !important;
    flex-shrink: 0;
}
.flex-control-thumbs li img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Fix related products layout below product */
.woocommerce div.product {
    display: flex;
    flex-wrap: wrap;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none;
}
.woocommerce div.product .related.products,
.woocommerce div.product .woocommerce-tabs {
    width: 100%;
    flex-basis: 100%;
    clear: both;
}
.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.related.products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
}

/* Pen sold out button */
.btn-sold-out {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #999;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: default;
}

/* Pen notify form */
.pen-notify {
    margin-top: 4px;
}
.pen-notify-text {
    font-size: 13px;
    color: #555;
    margin: 0 0 8px 0;
    font-style: italic;
}
.pen-notify-form {
    display: flex;
    gap: 6px;
}
.pen-notify-form input[type=email] {
    padding: 7px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    width: 160px;
    outline: none;
}
.pen-notify-form input[type=email]:focus {
    border-color: #3485c9;
}
.pen-notify-btn {
    padding: 7px 14px;
    background: #3485c9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.pen-notify-btn:hover {
    background: #2a6ba8;
}

/* ============================================================
   SINGLE PRODUCT PAGE - SPACING FIX
   ============================================================ */
.woocommerce div.product {
    gap: 40px;
    padding: 40px 0;
}
.woocommerce div.product div.images {
    width: 48%;
    flex: 0 0 48%;
    margin-bottom: 0;
}
.woocommerce div.product div.summary {
    width: 48%;
    flex: 0 0 48%;
    margin-bottom: 0;
    padding-top: 0;
}
.woocommerce div.product .product_title {
    margin-top: 0;
    margin-bottom: 12px;
}
.woocommerce div.product p.price {
    margin-bottom: 20px !important;
}
.woocommerce div.product .cart {
    margin-bottom: 24px;
}
.woocommerce div.product .woocommerce-tabs {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 20px 0;
}
.woocommerce div.product .related.products {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}
.woocommerce div.product .related.products > h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 24px;
}
.woocommerce-breadcrumb {
    padding: 16px 0;
}
.pen-upsell {
    margin-top: 24px;
}

/* Fix pen upsell product card layout */
.pen-upsell-product {
    flex-wrap: wrap;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 20px !important;
}
.pen-upsell-info {
    gap: 8px !important;
}
.pen-notify {
    margin-top: 8px !important;
}
.btn-sold-out {
    align-self: flex-start;
    margin-top: 4px;
}

/* Force related products 4-col clean grid */
.woocommerce div.product .related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce div.product .related.products ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}
.woocommerce div.product .related.products ul.products::before,
.woocommerce div.product .related.products ul.products::after {
    display: none !important;
}

/* ============================================================
   PAGE CONTENT STYLES
   ============================================================ */
.page-intro {
    max-width: 720px;
    margin: 0 auto 40px;
}
.page-intro h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 16px;
}
.page-intro h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a2744;
    margin: 28px 0 12px;
}
.page-intro p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}
.page-intro ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.page-intro li {
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-wrap {
    max-width: 640px;
    margin: 0 auto 48px;
}
.lyfe-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.lyfe-contact-form .form-group {
    margin-bottom: 16px;
}
.lyfe-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.lyfe-contact-form input,
.lyfe-contact-form select,
.lyfe-contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.lyfe-contact-form input:focus,
.lyfe-contact-form select:focus,
.lyfe-contact-form textarea:focus {
    border-color: #3485c9;
}
.contact-submit {
    background: #3485c9;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-submit:hover {
    background: #2a6ba8;
}

/* Contact Details Cards */
.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}
.contact-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
}
.contact-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.contact-card p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* ============================================================
   AGE GATE
   ============================================================ */
#lyfe-age-gate {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-gate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
}
.age-gate-modal {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.age-gate-logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 70px;
    width: auto;
    margin-bottom: 24px;
}
.age-gate-modal h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 12px;
}
.age-gate-modal p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}
.age-gate-question {
    font-weight: 600;
    color: #222 !important;
    font-size: 15px !important;
    margin-top: 20px !important;
}
.age-gate-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}
.age-gate-yes {
    padding: 14px 36px;
    background: #3485c9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.age-gate-yes:hover {
    background: #2a6ba8;
}
.age-gate-no {
    padding: 14px 36px;
    background: #e5e5e5;
    color: #555;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.age-gate-no:hover {
    background: #d0d0d0;
}
.age-gate-disclaimer {
    font-size: 11px !important;
    color: #999 !important;
    margin-top: 8px !important;
}

/* ============================================================
   COMPOUND INFORMATION SECTION
   ============================================================ */
.compound-section,
.references-section {
    width: 100%;
    flex-basis: 100%;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}
.compound-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.compound-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 14px;
}
.compound-header h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2744;
    margin: 0;
}
.compound-header p {
    font-size: 13px;
    color: #888;
    margin: 2px 0 0;
}
.compound-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.compound-card {
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
}
.compound-card-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #3485c9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}
.compound-card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2744;
    margin: 0 0 16px;
}
.compound-table {
    width: 100%;
    border-collapse: collapse;
}
.compound-table tr {
    border-bottom: 1px solid #e5e7eb;
}
.compound-table tr:last-child {
    border-bottom: none;
}
.compound-table td {
    padding: 10px 0;
    font-size: 14px;
}
.compound-table td:first-child {
    color: #888;
    width: 40%;
    font-weight: 500;
}
.compound-table td:last-child {
    color: #222;
    font-weight: 600;
}
.compound-table code {
    background: #e8edf3;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    color: #333;
}
.compound-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #3485c9;
    text-decoration: none;
    transition: color 0.2s;
}
.compound-link:hover {
    color: #2060a0;
}

/* Storage */
.storage-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}
.storage-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}
.storage-icon {
    font-size: 24px;
    flex-shrink: 0;
}
.storage-item strong {
    display: block;
    font-size: 14px;
    color: #222;
    margin-bottom: 2px;
}
.storage-item span {
    font-size: 13px;
    color: #888;
}
.storage-notes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.storage-note {
    display: inline-block;
    padding: 5px 12px;
    background: #fff3e0;
    color: #b45309;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* ============================================================
   SOURCES & REFERENCES
   ============================================================ */
.references-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.reference-item {
    padding: 24px;
    background: #f8f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.2s;
}
.reference-item:hover {
    border-color: #3485c9;
}
.reference-journal {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #3485c9;
    margin-bottom: 6px;
}
.reference-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a2744;
    margin: 0 0 8px;
    line-height: 1.4;
}
.reference-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}
.reference-authors {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px;
}
.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #3485c9;
    text-decoration: none;
}
.reference-link:hover {
    color: #2060a0;
}

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

/* Force all product grids to 4 columns consistently */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last,
ul.products li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
    content: none !important;
}

/* Fix shop page width - prevent double container nesting */
.container .woocommerce,
.container .woocommerce-page .woocommerce {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Shop category filter bar */
.shop-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.shop-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}
.shop-filter-btn:hover {
    background: #e8f0fa;
    border-color: #3485c9;
    color: #3485c9;
}
.shop-filter-btn.active {
    background: #3485c9;
    border-color: #3485c9;
    color: #fff;
}
.shop-filter-icon {
    font-size: 16px;
}

/* Side-by-side compound + references layout */
.compound-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.compound-col {
    min-width: 0;
}
.references-section {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}
@media (max-width: 768px) {
    .compound-row {
        grid-template-columns: 1fr;
    }
}

/* Logo wordmark stacked layout */
.logo-wordmark {
    display: flex !important;
    flex-direction: column;
    line-height: 1;
    gap: 0;
}
.logo-wordmark strong {
    font-size: 22px;
    font-weight: 800;
    color: #1a2744;
    letter-spacing: 0.08em;
}
.logo-wordmark small {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Compact header + logo with PEPTIDES underneath */
.header-inner {
    height: 56px !important;
}
.logo-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}
.logo-mark .logo-img {
    height: 36px !important;
}
.logo-mark small {
    font-size: 9px;
    font-weight: 700;
    color: #888;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1px;
}
.site-logo a {
    gap: 0 !important;
}

/* Match qty input and add to cart button heights */
.woocommerce div.product .cart .quantity .qty {
    height: 48px;
    padding: 0 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ddd;
}
.woocommerce div.product .cart .button {
    height: 48px !important;
    padding: 0 28px !important;
    line-height: 48px !important;
    box-sizing: border-box;
}
.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Remove top whitespace - compact header */
html {
    margin-top: 0 !important;
}
body {
    margin: 0;
    padding: 0;
}
body.admin-bar .site-header {
    top: 32px;
}
.site-header {
    top: 0;
    padding: 0;
    margin: 0;
}
.site-header .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Tighter shop page banner */
.page-banner {
    padding: 28px 0 !important;
}
.page-banner h1 {
    font-size: 2rem !important;
    margin-bottom: 4px !important;
}

/* Shop page full-width wrapper like homepage sections */
.shop-content-wrap {
    background: #f9fafb;
    padding: 32px 0 60px;
    width: 100%;
}
.shop-content-wrap .container {
    max-width: 1400px;
}
/* Override boxed woocommerce inside shop wrapper */
.shop-content-wrap .woocommerce {
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* Wider page banner */
.page-banner {
    width: 100%;
}

/* Hide default sorting dropdown */
.woocommerce-ordering {
    display: none !important;
}

/* Nuclear whitespace removal at top */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}
html {
    margin-top: 0 !important;
}
body.logged-in.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
body.logged-in.admin-bar .site-header {
    top: 32px;
}
.site-header {
    margin: 0 !important;
    padding: 0 !important;
    top: 0 !important;
}
.page-banner {
    margin-top: 0 !important;
}
/* WP block library sometimes adds padding */
.wp-site-blocks {
    padding-top: 0 !important;
}
/* Results count above grid */
.woocommerce-result-count {
    display: none !important;
}

/* Hide empty WC notices wrapper whitespace */
.woocommerce-notices-wrapper:empty {
    display: none;
}
.woocommerce-notices-wrapper {
    padding: 0 !important;
    margin: 0 !important;
}

/* Full-width shop page fix */
.page-banner {
    /* width removed */
    /* margin removed */
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}
.shop-content-wrap {
    /* width removed */
    /* margin removed */
    box-sizing: border-box;
}
/* Hide redundant WC shop title */
.woocommerce-products-header__title {
    display: none !important;
}

/* Proper full-width layout */
body {
    overflow-x: hidden;
}
.page-banner {
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
}
.shop-content-wrap {
    max-width: 100%;
}
.shop-content-wrap .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Ensure body is never constrained */
body, body.woocommerce, body.woocommerce-page {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide WC archive title since we have the banner */
.woocommerce-products-header,
.woocommerce-products-header__title,
h1.woocommerce-products-header__title {
    display: none !important;
}

/* Hide redundant Shop page title */
h1.page-title,
.page-title {
    display: none !important;
}

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.blog-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 48px;
    text-align: center;
}
.blog-hero h1 {
    font-family: 'Kanit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.blog-hero p {
    color: #9ca3af;
    font-size: 1.05rem;
}
.blog-archive {
    padding: 48px 0 80px;
    background: #f9fafb;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.blog-card-img {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e5e7eb;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    color: #6366f1;
}
.blog-card-body {
    padding: 20px 24px 24px;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 10px;
}
.blog-card-cat {
    background: #3485c9;
    color: #fff;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.blog-card-body h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.35;
}
.blog-card-body h2 a {
    color: inherit;
    text-decoration: none;
}
.blog-card-body h2 a:hover {
    color: #3485c9;
}
.blog-card-body p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 14px;
    line-height: 1.55;
}
.blog-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3485c9;
    text-decoration: none;
}
.blog-read-more:hover {
    color: #2060a0;
}
.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 20px 80px;
}
.single-post-content .entry-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 16px;
}
.single-post-content .entry-meta {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}
.single-post-content .entry-content h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 36px 0 14px;
}
.single-post-content .entry-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #374151;
    margin: 28px 0 10px;
}
.single-post-content .entry-content p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 18px;
}
.single-post-content .entry-content ul,
.single-post-content .entry-content ol {
    margin: 16px 0 20px 24px;
    color: #4b5563;
    line-height: 1.8;
}
.single-post-content .entry-content li {
    margin-bottom: 6px;
}
.single-post-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.9rem;
}
.single-post-content .entry-content th {
    background: #1f2937;
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.single-post-content .entry-content td {
    padding: 10px 16px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}
.single-post-content .entry-content tr:nth-child(even) td {
    background: #f9fafb;
}
.single-post-content .entry-content em {
    color: #6b7280;
}
.single-post-content .entry-content a {
    color: #3485c9;
    font-weight: 500;
}

/* ============================================================
   CANADIAN SOURCING BANNER
   ============================================================ */
.canadian-sourcing {
    background: linear-gradient(135deg, #fef2f2 0%, #fff 50%, #fef2f2 100%);
    border-top: 3px solid #FF0000;
    border-bottom: 1px solid #fecaca;
    padding: 32px 0;
}
.sourcing-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}
.sourcing-flag {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.sourcing-flag svg {
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}
.sourcing-text h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a2744;
    margin-bottom: 4px;
}
.sourcing-dot {
    color: #FF0000;
    margin: 0 2px;
}
.sourcing-text p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 600px;
}
@media (max-width: 600px) {
    .sourcing-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Canadian sourcing image */
.sourcing-img {
    text-align: center;
}
.sourcing-img img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
@media (max-width: 500px) {
    .sourcing-img img {
        max-width: 100%;
    }
}

/* ============================================================
   28-DAY SUPPLY SECTION
   ============================================================ */
.supply-section {
    background: #1a2744;
    padding: 64px 0;
    color: #e5e7eb;
}
.supply-inner {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.supply-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-top: 4px;
}
.supply-content h2 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.supply-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 28px;
    max-width: 680px;
}
.supply-facts {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.supply-fact {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px 28px;
    text-align: center;
    flex: 1;
    min-width: 160px;
}
.supply-fact-number {
    font-family: 'Kanit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #3485c9;
    line-height: 1;
    margin-bottom: 6px;
}
.supply-fact-label {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.4;
}
.supply-details h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 8px;
}
.supply-details p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 16px;
}
.supply-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.supply-details li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}
.supply-details li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3485c9;
    font-weight: 700;
}
.supply-details li strong {
    color: #fff;
}
.supply-cta-text {
    font-size: 0.95rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .supply-inner {
        flex-direction: column;
    }
    .supply-facts {
        flex-direction: column;
        gap: 16px;
    }
}

/* 28-day section centered with flag image */
.supply-inner--centered {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.supply-hero-img {
    margin-bottom: 24px;
}
.supply-hero-img img {
    width: 260px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.supply-inner--centered .supply-lead {
    margin-left: auto;
    margin-right: auto;
}
.supply-inner--centered .supply-facts {
    justify-content: center;
}
.supply-inner--centered .supply-details {
    text-align: left;
    max-width: 680px;
    margin: 0 auto;
}
.supply-inner--centered .supply-cta-text {
    text-align: center;
}



/* Blog card smaller thumbnail images */
.blog-card-img {
    aspect-ratio: 4/3;
}
.blog-card-img img {
    object-fit: contain;
    padding: 12px;
    background: #f9fafb;
}



/* Sold Out + Notify Me buttons */
.btn-sold-out-shop,
.btn-sold-out-single {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: #6b7280;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: not-allowed;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.btn-notify-me,
.btn-notify-me-single {
    display: block;
    width: 100%;
    padding: 10px 24px;
    background: transparent;
    color: #3485c9;
    border: 2px solid #3485c9;
    text-align: center;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.02em;
}
.btn-notify-me:hover,
.btn-notify-me-single:hover {
    background: #3485c9;
    color: #fff;
}
.pen-sold-out-wrap {
    margin: 20px 0;
}

/* Sold Out button styled like normal Add to Cart but disabled */
.btn-sold-out-shop,
.btn-sold-out-single {
    background: #9ca3af;
    pointer-events: none;
    opacity: 0.7;
}

/* Supply section: image left, content right */
.supply-inner--split {
    flex-direction: row;
    align-items: center;
    text-align: left;
}
.supply-inner--split .supply-hero-img {
    flex-shrink: 0;
    text-align: center;
}
.supply-inner--split .supply-hero-img img {
    width: 280px;
    border-radius: 12px;
}
.supply-inner--split .supply-content {
    flex: 1;
}
.supply-inner--split .supply-lead {
    margin-left: 0;
    margin-right: 0;
}
.supply-inner--split .supply-cta-text {
    text-align: left;
}
@media (max-width: 768px) {
    .supply-inner--split {
        flex-direction: column;
        text-align: center;
    }
    .supply-inner--split .supply-hero-img img {
        width: 200px;
    }
}

.supply-sourcing-label {
    font-family: 'Kanit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* ----------------------------------------------------------------
   VIDEO SECTION
   ---------------------------------------------------------------- */
.video-section {
    padding: 64px 0;
    background: #f3f4f6;
}
.video-section .section-title {
    margin-bottom: 32px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    .video-section {
        padding: 40px 0;
    }
}

/* Match sold-out and notify buttons to normal add-to-cart button sizing */
.products li.product .btn-sold-out-shop {
    width: calc(100% - 40px) !important;
    margin: 0 20px 8px !important;
    padding: 11px 20px !important;
    font-size: 0.9rem !important;
}
.products li.product .btn-notify-me {
    width: calc(100% - 40px) !important;
    margin: 0 20px 20px !important;
    padding: 11px 20px !important;
    font-size: 0.85rem !important;
    box-sizing: border-box;
}


/* ----------------------------------------------------------------
   28-DAY SUPPLY — REDESIGNED LAYOUT
   ---------------------------------------------------------------- */
.supply-heading {
    font-family: "Kanit", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}
.supply-section .supply-lead {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px;
}
.supply-section .supply-facts {
    justify-content: center;
    margin-bottom: 48px;
}
.supply-split {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 40px;
}
.supply-img-col {
    flex-shrink: 0;
    width: 260px;
    text-align: center;
}
.supply-img-col img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    margin-bottom: 16px;
}
.supply-sourcing-label {
    font-family: "Kanit", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.02em;
}
.supply-sourcing-label strong {
    color: #fff;
}
.supply-text-col {
    flex: 1;
}
.supply-text-col h3 {
    font-family: "Kanit", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}
.supply-text-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.supply-text-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.supply-text-col li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
}
.supply-text-col li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #3485c9;
    font-weight: 700;
}
.supply-text-col li strong {
    color: #fff;
}
.supply-section .supply-cta-text {
    text-align: center;
    font-size: 0.95rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 16px;
}
.supply-section .btn.btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .supply-split {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .supply-img-col {
        width: 200px;
    }
    .supply-text-col {
        text-align: left;
    }
}

/* Sold Out pill badge */
.sold-out-pill {
    display: inline-block;
    background: #ef4444;
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
    vertical-align: middle;
    line-height: 1.4;
}
.sold-out-pill--single {
    font-size: 0.75rem;
    padding: 4px 14px;
    margin-left: 0;
    margin-bottom: 12px;
}

/* Sold Out price replacement */
.sold-out-price {
    color: #9ca3af;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

/* Learn More button on single product (outline style) */
.btn-learn-more-single {
    display: block;
    width: 100%;
    padding: 11px 24px;
    background: transparent;
    color: #3485c9;
    border: 2px solid #3485c9;
    text-align: center;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.02em;
    margin-top: 8px;
    box-sizing: border-box;
}
.btn-learn-more-single:hover {
    background: #3485c9;
    color: #fff;
}

/* Learn More button on shop/homepage cards */
.products li.product .btn-learn-more-shop {
    display: block;
    width: calc(100% - 40px) !important;
    margin: 0 20px 20px !important;
    padding: 11px 20px !important;
    background: transparent;
    color: #3485c9;
    border: 2px solid #3485c9;
    text-align: center;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}
.products li.product .btn-learn-more-shop:hover {
    background: #3485c9;
    color: #fff;
}

/* Hide add-to-cart on sold out variable products but keep variation dropdown */
.product-type-variable.outofstock .single_add_to_cart_button,
.product-type-variable.outofstock .woocommerce-variation-add-to-cart .quantity {
    display: none !important;
}
.product-type-variable.outofstock .woocommerce-variation-price {
    display: none !important;
}

/* Pen compound selector */
.pen-compound-selector {
    margin-bottom: 20px;
}
.pen-compound-selector label {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2744;
    margin-bottom: 8px;
}
.pen-compound-dropdown {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    color: #1a2744;
    background: #fff;
    cursor: pointer;
    appearance: auto;
}
.pen-compound-dropdown:focus {
    outline: none;
    border-color: #3485c9;
    box-shadow: 0 0 0 2px rgba(52,133,201,0.2);
}
/* Hide WC out of stock notice on pen */
.product-type-variable.outofstock .stock.out-of-stock {
    display: none !important;
}

/* Compound buttons (non-interactive, display only) */
.pen-compound-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pen-compound-btn {
    display: inline-block;
    padding: 6px 14px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    cursor: default;
}

/* Product description table styling */
.woocommerce-Tabs-panel table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.9rem;
}
.woocommerce-Tabs-panel table thead tr {
    background: #1a2744;
}
.woocommerce-Tabs-panel table thead th {
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}
.woocommerce-Tabs-panel table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}
.woocommerce-Tabs-panel table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.woocommerce-Tabs-panel table tbody td {
    padding: 10px 16px;
    color: #374151;
}
.woocommerce-Tabs-panel table tbody td:first-child {
    font-weight: 600;
    color: #1a2744;
    white-space: nowrap;
}

/* Blog post embedded video */
.blog-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 32px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.blog-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Pen callout in 28-day supply section */
.supply-pen-callout {
    background: rgba(52,133,201,0.1);
    border: 1px solid rgba(52,133,201,0.25);
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 32px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.supply-pen-callout h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}
.supply-pen-callout p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 12px;
}
.supply-pen-callout a {
    color: #3485c9;
    text-decoration: none;
}
.supply-pen-callout a:hover {
    text-decoration: underline;
}
.supply-pen-link {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Notify Me modal */
#notify-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.notify-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.notify-modal-box {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 40px 36px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 1;
}
.notify-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}
.notify-close:hover {
    color: #374151;
}
.notify-modal-box h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2744;
    margin: 0 0 8px;
}
.notify-modal-box p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 20px;
}
#notify-form input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 12px;
    box-sizing: border-box;
}
#notify-form input:focus {
    outline: none;
    border-color: #3485c9;
    box-shadow: 0 0 0 2px rgba(52,133,201,0.2);
}
#notify-form button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #3485c9;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
}
#notify-form button:hover {
    background: #2060a0;
}
.notify-success {
    font-family: 'Kanit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #16a34a;
    padding: 20px 0;
}

/* hero-badge de-pill (no pill look) */
.hero-badge{background:transparent !important;border:none !important;padding:0 !important;border-radius:0 !important;letter-spacing:.15em;}

/* lab-tested badge */
.pen-upsell .lab-tested{display:inline-flex;align-items:center;gap:6px;margin-top:6px;font-family:'Kanit',sans-serif;font-size:13px;font-weight:600;color:#1a7f4b}
.pen-upsell .lab-tested svg{flex:0 0 auto}

/* ============================================================
   MOBILE NAV — hamburger menu (overrides old wrapping nav)
   ============================================================ */
.nav-toggle { display: none; }
.nav-toggle {
    flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; margin-left: 4px;
    background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 100%; height: 2.5px; background: #1a2744;
    border-radius: 2px; transition: transform .25s ease, opacity .2s ease;
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .header-inner {
        flex-wrap: nowrap !important;
        height: 64px !important;
        padding: 0 !important;
        gap: 8px;
    }
    .site-logo .logo-img { max-height: 34px; width: auto; }
    .site-nav {
        order: 0 !important;
        position: absolute;
        top: 100%; left: 0; right: 0; width: 100%;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 14px 26px rgba(0,0,0,.10);
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease;
    }
    .site-header.nav-open .site-nav { max-height: 85vh; overflow-y: auto; }
    .site-nav ul {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        padding: 6px 0;
    }
    .site-nav ul li { width: 100%; }
    .site-nav ul li a {
        display: block; width: 100%;
        padding: 15px 24px !important;
        font-size: 1rem !important;
        border-radius: 0 !important;
        border-bottom: 1px solid #f1f3f5;
    }
}

/* Mobile: 2-up product grid (override single-column) */
@media (max-width: 480px) {
    .woocommerce ul.products,
    .featured-products .products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .products .woocommerce-loop-product__title { font-size: 0.82rem; }
    .woocommerce ul.products li.product .price,
    .products .price { font-size: 0.9rem; }
    .woocommerce ul.products li.product .button,
    .products .add_to_cart_button { font-size: 0.72rem !important; padding: 9px 8px !important; }
}

/* Mobile: related products 2-up instead of cramped 4-up */
@media (max-width: 600px) {
    .woocommerce div.product .related.products ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* Shop nav dropdown (effect categories) */
.site-nav ul li.menu-item-has-children { position: relative; }
.site-nav ul li.menu-item-has-children > a::after { content: " \25BE"; font-size: 0.75em; }
.site-nav ul .sub-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
    padding: 6px 0;
    min-width: 215px;
    z-index: 1000;
}
.site-nav ul li.menu-item-has-children:hover > .sub-menu,
.site-nav ul li.menu-item-has-children:focus-within > .sub-menu { display: flex; }
.site-nav ul .sub-menu li { width: 100%; }
.site-nav ul .sub-menu li a { display: block; padding: 9px 18px; border-radius: 0; white-space: nowrap; }
@media (max-width: 900px) {
    .site-nav ul .sub-menu {
        display: flex !important;
        position: static;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
    }
    .site-nav ul li.menu-item-has-children > a::after { content: ""; }
    .site-nav ul .sub-menu li a { padding: 12px 24px 12px 42px !important; font-size: 0.95rem !important; border-bottom: 1px solid #f6f7f9; }
}
@media (max-width: 900px) {
    .site-nav ul { width: 100%; }
}
