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

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

body {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    background: #FAFAF5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    animation: pageIn 0.4s ease forwards;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.2; }

/* ===== ANIMATIONS ===== */
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes heroMainIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes heroSideIn {
    to { opacity: 1; transform: translateX(0); }
}

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

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.64s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.72s; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.80s; }

/* ===== HEADER ===== */
.header {
    background: #1B4332;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: height 0.3s, box-shadow 0.3s;
}
.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: height 0.3s;
}
.header.scrolled .header-inner { height: 56px; }
.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
    transition: font-size 0.3s;
}
.header.scrolled .logo { font-size: 1.35rem; }
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 8px 14px;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.nav a:hover, .nav a.active { color: #fff; }
.header-actions { display: flex; gap: 16px; align-items: center; }
.header-actions a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}
.header-actions a:hover { color: #fff; }
.cart-icon { position: relative; }
.cart-dot {
    position: absolute;
    top: -4px;
    right: -8px;
    width: 16px;
    height: 16px;
    background: #2D6A4F;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* ===== USP STRIP ===== */
.usp-strip {
    background: #2D6A4F;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.usp-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.usp-strip-item {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== HERO / BENTO ===== */
.bento-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: 240px 240px;
    gap: 12px;
}
.bento-main {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.97);
    animation: heroMainIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.bento-main::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.bento-main-content {
    position: relative;
    z-index: 1;
    padding: 48px;
}
.bento-main-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: heroCascade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.bento-main-content > *:nth-child(1) { animation-delay: 0.4s; }
.bento-main-content > *:nth-child(2) { animation-delay: 0.55s; }
.bento-main-content > *:nth-child(3) { animation-delay: 0.7s; }
.bento-main h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 16px;
    max-width: 440px;
}
.bento-main p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 380px;
    margin-bottom: 24px;
}
.bento-side {
    background: #D4A373;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    opacity: 0;
    transform: translateX(20px);
    animation: heroSideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.bento-side h2 { font-size: 1.5rem; color: #1B4332; text-align: center; }
.bento-side p { font-size: 0.85rem; color: rgba(27,67,50,0.7); text-align: center; margin-top: 8px; }
.bento-category {
    background: #f0ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    opacity: 0;
    animation: heroSideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    background: #fff;
    border-bottom: 1px solid #E0DDD5;
    position: sticky;
    top: 64px;
    z-index: 90;
    transition: top 0.3s;
}
.header.scrolled ~ .category-tabs,
.header.scrolled + .usp-strip + .bento-hero + .category-tabs { top: 56px; }
.category-tabs-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: relative;
}
.category-tabs-inner::-webkit-scrollbar { display: none; }
.category-tab {
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5A5A5A;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
    position: relative;
}
.category-tab:hover { color: #2D6A4F; }
.category-tab.active { color: #2D6A4F; border-bottom-color: #2D6A4F; }
.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 2px;
    background: #2D6A4F;
    transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1), width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== SECTIONS (homepage) ===== */
.section { max-width: 1400px; margin: 0 auto; padding: 72px 24px; }
.section-header { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; }
.section-header h2 { font-size: 2rem; color: #1A1A1A; }
.section-header a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D6A4F;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.section-header a:hover { gap: 8px; text-decoration: underline; }

/* ===== PRODUCT GRID ===== */
/* Product cards, overlay, badges -- used on homepage, shop, related products */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.product-card {
    background: #FAFAF5;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.product-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e5dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* Skeleton loading pulse */
.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}
.product-image-placeholder {
    font-size: 3.5rem;
    opacity: 0.35;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}
.product-card:hover .product-image-placeholder { transform: scale(1.15); }
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27,67,50,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 2;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay-btn {
    background: #D4A373;
    color: #1B4332;
    border: none;
    padding: 10px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, opacity 0.4s 0.05s, background 0.2s;
    position: relative;
    overflow: hidden;
}
.product-card:hover .product-overlay-btn { transform: translateY(0); opacity: 1; }
.product-overlay-btn:hover { background: #c4925f; }
.product-overlay-btn:active { transform: scale(0.97) !important; }
.product-overlay-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 500;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, opacity 0.4s 0.12s, color 0.2s;
}
.product-card:hover .product-overlay-link { transform: translateY(0); opacity: 1; }
.product-overlay-link:hover { color: #fff; }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 3;
}
.product-badge.sale { background: #E76F51; color: #fff; }
.product-badge.new { background: #D4A373; color: #1B4332; }
.product-badge.oos { background: #5A5A5A; color: #fff; }
.product-info { padding: 14px 0; }
.product-brand {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5A5A5A;
    margin-bottom: 4px;
}
.product-name { font-size: 0.9rem; font-weight: 500; color: #1A1A1A; margin-bottom: 6px; }
.product-weight { font-size: 0.75rem; color: #999; margin-bottom: 4px; }
.product-price { font-size: 0.95rem; font-weight: 700; color: #1A1A1A; }
.product-price-old { font-size: 0.8rem; font-weight: 400; color: #5A5A5A; text-decoration: line-through; margin-left: 8px; }

/* ===== BUTTONS ===== */
/* .btn, .btn-tan, .btn-white-outline, micro-interactions */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn-tan {
    background: #D4A373;
    color: #1B4332;
}
.btn-tan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-tan:hover::before { left: 100%; }
.btn-tan:hover {
    background: #c4925f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,163,115,0.4);
}
.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    margin-left: 8px;
}
.btn-white-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.btn-outline {
    display: block;
    padding: 14px;
    border: 2px solid #1A1A1A;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.btn-outline:hover { background: #1A1A1A; color: #fff; }
.btn-primary {
    display: block;
    padding: 14px;
    background: #D4A373;
    border: 2px solid #D4A373;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}
.btn-primary:hover { background: #c4935f; border-color: #c4935f; }

/* Button micro-interactions */
.btn, .load-more-btn, .product-overlay-btn, .add-to-cart-btn, .r-overlay-btn,
button[type="submit"], .checkout-btn, .proceed-btn { position: relative; overflow: hidden; }
.btn:active, .load-more-btn:active, .product-overlay-btn:active,
.add-to-cart-btn:active, .r-overlay-btn:active, button[type="submit"]:active { transform: scale(0.97); }

/* ===== BREADCRUMB (shared) ===== */
.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    font-size: 0.8rem;
    color: #5A5A5A;
}
.breadcrumb a { color: #2D6A4F; }
.breadcrumb a:hover { color: #D4A373; }

/* ===== CONTAINER (shared for cart/checkout) ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}
.page-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* ===== WOOCOMMERCE: SHOP PAGE ===== */
body.woocommerce-shop .shop-top ,
body.tax-product_cat .shop-top { max-width: 1400px; margin: 0 auto; padding: 0 24px 24px; }
body.woocommerce-shop .shop-header ,
body.tax-product_cat .shop-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
body.woocommerce-shop .shop-header h1 ,
body.tax-product_cat .shop-header h1 { font-size: 2.5rem; }
body.woocommerce-shop .result-count ,
body.tax-product_cat .result-count { font-size: 0.85rem; color: #5A5A5A; }

/* Horizontal Filter Bar */
body.woocommerce-shop .filter-bar ,
body.tax-product_cat .filter-bar {
    background: #fff;
    border: 1px solid #E0DDD5;
    padding: 0;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 24px;
}
body.woocommerce-shop .filter-bar-item ,
body.tax-product_cat .filter-bar-item {
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5A5A5A;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    border-right: 1px solid #E0DDD5;
    transition: all 0.2s;
    position: relative;
}
body.woocommerce-shop .filter-bar-item:hover ,
body.tax-product_cat .filter-bar-item:hover { color: #2D6A4F; background: #f9f9f5; }
body.woocommerce-shop .filter-bar-item::after ,
body.tax-product_cat .filter-bar-item::after { content: ' \25BE'; font-size: 0.65rem; }
body.woocommerce-shop .filter-bar-item:last-child ,
body.tax-product_cat .filter-bar-item:last-child { border-right: none; margin-left: auto; }

/* Filter bar select elements */
.filter-bar-item select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5A5A5A;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding-right: 16px;
    outline: none;
}
.filter-bar-item select:hover { color: #2D6A4F; }
.filter-bar-item label.screen-reader-text { display: none; }
/* Hide the ::after arrow on items with selects (select has its own) */
.filter-bar-item:has(select)::after { display: none; }
/* WooCommerce ordering dropdown inside filter bar */
.filter-bar-item .woocommerce-ordering {
    margin: 0;
}
.filter-bar-item .woocommerce-ordering select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5A5A5A;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    outline: none;
    padding: 0;
}
/* WooCommerce result count inside p tag */
.result-count p { margin: 0; font-size: 0.85rem; color: #5A5A5A; }

/* WooCommerce default product images */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Active Filters */
body.woocommerce-shop .active-filters ,
body.tax-product_cat .active-filters {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 16px;
    display: flex;
    gap: 8px;
}
body.woocommerce-shop .filter-pill ,
body.tax-product_cat .filter-pill {
    background: #1B4332;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
body.woocommerce-shop .filter-pill button ,
body.tax-product_cat .filter-pill button {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 0.8rem;
}
body.woocommerce-shop .filter-pill button:hover ,
body.tax-product_cat .filter-pill button:hover { color: #fff; }

/* Ingredient Filter */
body.woocommerce-shop .ingredient-filter ,
body.tax-product_cat .ingredient-filter {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 24px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
body.woocommerce-shop .ingredient-filter-label ,
body.tax-product_cat .ingredient-filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B6B6B;
}
body.woocommerce-shop .ingredient-filter-buttons ,
body.tax-product_cat .ingredient-filter-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
body.woocommerce-shop .ingredient-btn ,
body.tax-product_cat .ingredient-btn {
    background: #fff;
    border: 1px solid #E0DDD5;
    color: #1A1A1A;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s ease;
}
body.woocommerce-shop .ingredient-btn:hover ,
body.tax-product_cat .ingredient-btn:hover {
    border-color: #2D6A4F;
    color: #2D6A4F;
}
body.woocommerce-shop .ingredient-btn.active ,
body.tax-product_cat .ingredient-btn.active {
    background: #1B4332;
    border-color: #1B4332;
    color: #fff;
}
body.woocommerce-shop .ingredient-btn--clear ,
body.tax-product_cat .ingredient-btn--clear {
    background: none;
    border: 1px dashed #ccc;
    color: #999;
    font-size: 0.7rem;
}
body.woocommerce-shop .ingredient-btn--clear:hover ,
body.tax-product_cat .ingredient-btn--clear:hover {
    border-color: #999;
    color: #666;
}

/* Trade Price Badge */
.trade-badge {
    display: inline-block;
    background: #2D6A4F;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: 3px;
    vertical-align: middle;
    margin-left: 4px;
}

/* Products Section */
body.woocommerce-shop .products-section ,
body.tax-product_cat .products-section { max-width: 1400px; margin: 0 auto; padding: 0 24px 80px; }

/* Load More */
.load-more { text-align: center; margin-top: 48px; }
.load-more-btn {
    display: inline-block;
    padding: 14px 48px;
    border: 2px solid #1B4332;
    background: transparent;
    color: #1B4332;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
}
.load-more-btn:hover { background: #1B4332; color: #fff; }
.load-more p { font-size: 0.8rem; color: #999; margin-top: 12px; }

/* ===== WOOCOMMERCE: SINGLE PRODUCT ===== */
body.single-product .product-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Gallery */
body.single-product .gallery { position: sticky; top: 88px; }
body.single-product .gallery-main {
    background: #f0ede6;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    opacity: 0.4;
    margin-bottom: 12px;
    transition: opacity 0.3s;
    cursor: zoom-in;
}
body.single-product .gallery-main:hover { opacity: 0.9; }
body.single-product .gallery-thumbs { display: flex; gap: 8px; }
body.single-product .gallery-thumb {
    width: 80px;
    height: 80px;
    background: #f0ede6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    opacity: 0.3;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}
body.single-product .gallery-thumb:hover,
body.single-product .gallery-thumb.active { border-color: #2D6A4F; opacity: 0.6; }

/* Product Details */
body.single-product .product-details { padding-top: 8px; }
body.single-product .product-brand-link {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2D6A4F;
    margin-bottom: 8px;
    display: inline-block;
}
body.single-product .product-brand-link:hover { text-decoration: underline; }
body.single-product .product-title { font-size: 2.25rem; margin-bottom: 12px; }
body.single-product .product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
body.single-product .product-stars { color: #D4A373; font-size: 0.9rem; letter-spacing: 2px; }
body.single-product .product-review-count { font-size: 0.8rem; color: #5A5A5A; }
body.single-product .product-price-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #E0DDD5; }
body.single-product .product-price-main { font-size: 2rem; font-weight: 700; color: #1A1A1A; }
body.single-product .product-price-vat { font-size: 0.8rem; color: #5A5A5A; margin-top: 4px; }
body.single-product .product-loyalty-earn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #B7E4C7;
    color: #1B4332;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    margin-top: 8px;
}
body.single-product .product-short-desc { font-size: 0.95rem; color: #5A5A5A; line-height: 1.7; margin-bottom: 24px; }

/* Variation Selector */
body.single-product .variation-group { margin-bottom: 24px; }
body.single-product .variation-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1A1A1A;
    margin-bottom: 10px;
}
body.single-product .variation-options { display: flex; gap: 8px; flex-wrap: wrap; }
body.single-product .variation-option {
    padding: 10px 20px;
    border: 2px solid #E0DDD5;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
body.single-product .variation-option:hover { border-color: #2D6A4F; }
body.single-product .variation-option.selected { border-color: #1B4332; background: #1B4332; color: #fff; }
body.single-product .variation-price { font-size: 0.75rem; color: #5A5A5A; display: block; margin-top: 2px; }
body.single-product .variation-option.selected .variation-price { color: rgba(255,255,255,0.7); }

/* Add to Cart Row */
body.single-product .add-to-cart-row { display: flex; gap: 12px; margin-bottom: 24px; align-items: stretch; }
body.single-product .qty-selector { display: flex; border: 2px solid #E0DDD5; }
body.single-product .qty-btn {
    width: 44px;
    background: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #1A1A1A;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
body.single-product .qty-btn:hover { background: #f5f5f0; }
body.single-product .qty-input {
    width: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid #E0DDD5;
    border-right: 1px solid #E0DDD5;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}
body.single-product .add-to-cart-btn {
    flex: 1;
    background: #D4A373;
    color: #1B4332;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s;
    padding: 16px 32px;
}
body.single-product .add-to-cart-btn:hover { background: #c4925f; }

/* Stock indicator */
body.single-product .stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
body.single-product .stock-dot { width: 8px; height: 8px; border-radius: 50%; }
body.single-product .stock-dot.in-stock { background: #40916C; }
body.single-product .stock-status.in-stock { color: #40916C; }

/* Meta info */
body.single-product .product-meta { border-top: 1px solid #E0DDD5; padding-top: 20px; }
body.single-product .product-meta-item { font-size: 0.82rem; color: #5A5A5A; margin-bottom: 6px; }
body.single-product .product-meta-item strong { color: #1A1A1A; font-weight: 600; }

/* Product Tabs */
body.single-product .product-tabs-section { max-width: 1400px; margin: 0 auto; padding: 0 24px 64px; }
body.single-product .tabs-nav { display: flex; border-bottom: 2px solid #E0DDD5; margin-bottom: 32px; }
body.single-product .tab-btn {
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5A5A5A;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: all 0.2s;
}
body.single-product .tab-btn:hover { color: #2D6A4F; }
body.single-product .tab-btn.active { color: #1B4332; border-bottom-color: #1B4332; }
body.single-product .tab-panel { display: none; }
body.single-product .tab-panel.active { display: block; }
body.single-product .tab-content { max-width: 800px; }
body.single-product .tab-content h3 { font-size: 1.25rem; margin-bottom: 12px; }
body.single-product .tab-content p { font-size: 0.95rem; color: #5A5A5A; line-height: 1.8; margin-bottom: 16px; }
body.single-product .tab-content ul { padding-left: 20px; margin-bottom: 16px; }
body.single-product .tab-content li { font-size: 0.9rem; color: #5A5A5A; margin-bottom: 8px; line-height: 1.6; }

/* Feeding Guide Table */
body.single-product .feeding-table { width: 100%; max-width: 600px; border-collapse: collapse; margin: 16px 0; }
body.single-product .feeding-table th,
body.single-product .feeding-table td { padding: 10px 16px; text-align: left; font-size: 0.85rem; border-bottom: 1px solid #E0DDD5; }
body.single-product .feeding-table th { font-weight: 700; color: #1A1A1A; background: #f5f3ee; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.06em; }
body.single-product .feeding-table td { color: #5A5A5A; }

/* Reviews */
body.single-product .reviews-summary { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid #E0DDD5; }
body.single-product .reviews-average { text-align: center; }
body.single-product .reviews-average-number { font-family: 'DM Serif Display', serif; font-size: 3rem; color: #1A1A1A; }
body.single-product .reviews-average-stars { color: #D4A373; font-size: 1rem; letter-spacing: 2px; }
body.single-product .reviews-average-count { font-size: 0.8rem; color: #5A5A5A; margin-top: 4px; }
body.single-product .review-item { padding: 20px 0; border-bottom: 1px solid #E0DDD5; }
body.single-product .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
body.single-product .review-stars { color: #D4A373; font-size: 0.8rem; letter-spacing: 2px; }
body.single-product .review-author { font-size: 0.82rem; font-weight: 600; color: #1A1A1A; }
body.single-product .review-verified { font-size: 0.7rem; color: #2D6A4F; font-weight: 600; }
body.single-product .review-date { font-size: 0.75rem; color: #999; margin-left: auto; }
body.single-product .review-text { font-size: 0.9rem; color: #5A5A5A; line-height: 1.7; }

/* Related Products */
body.single-product .related-section { max-width: 1400px; margin: 0 auto; padding: 0 24px 80px; }
body.single-product .related-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
body.single-product .related-header h2 { font-size: 1.75rem; }
body.single-product .related-header a { font-size: 0.82rem; font-weight: 600; color: #2D6A4F; text-transform: uppercase; letter-spacing: 0.06em; }
body.single-product .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
body.single-product .related-card { cursor: pointer; }
body.single-product .related-card .r-image { aspect-ratio: 1; background: #f0ede6; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: 0.35; position: relative; overflow: hidden; }
body.single-product .related-card .r-overlay { position: absolute; inset: 0; background: rgba(27,67,50,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
body.single-product .related-card:hover .r-overlay { opacity: 1; }
body.single-product .r-overlay-btn { background: #D4A373; color: #1B4332; border: none; padding: 10px 20px; font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; }
body.single-product .related-card .r-info { padding: 12px 0; }
body.single-product .related-card .r-brand { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #5A5A5A; margin-bottom: 4px; }
body.single-product .related-card .r-name { font-size: 0.85rem; font-weight: 500; margin-bottom: 4px; }
body.single-product .related-card .r-price { font-size: 0.9rem; font-weight: 700; }

/* ===== WOOCOMMERCE: CART ===== */
body.woocommerce-cart .cart-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
body.woocommerce-cart .cart-table th {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #5A5A5A;
    text-align: left;
    padding: 0 0 1rem 0;
    border-bottom: 2px solid #1A1A1A;
}
body.woocommerce-cart .cart-table td { padding: 1.5rem 0; border-bottom: 1px solid #E0DDD5; vertical-align: middle; }
body.woocommerce-cart .cart-product { display: flex; align-items: center; gap: 1rem; }
body.woocommerce-cart .cart-product-img {
    width: 90px;
    height: 90px;
    background: #E0DDD5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #5A5A5A;
}
body.woocommerce-cart .cart-product-info { display: flex; flex-direction: column; gap: 0.2rem; }
body.woocommerce-cart .cart-product-name { font-weight: 600; font-size: 0.95rem; }
body.woocommerce-cart .cart-product-meta { font-size: 0.78rem; color: #5A5A5A; }
body.woocommerce-cart .cart-price { font-weight: 600; }
body.woocommerce-cart .cart-total { font-weight: 700; }
body.woocommerce-cart .qty-control { display: inline-flex; align-items: center; border: 1px solid #E0DDD5; }
body.woocommerce-cart .qty-btn {
    width: 36px;
    height: 36px;
    background: #FAFAF5;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
body.woocommerce-cart .qty-btn:hover { background: #E0DDD5; }
body.woocommerce-cart .qty-btn:active { transform: scale(0.9); }
body.woocommerce-cart .qty-input {
    width: 42px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid #E0DDD5;
    border-right: 1px solid #E0DDD5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    background: #fff;
}
body.woocommerce-cart .remove-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #5A5A5A;
    transition: color 0.2s;
    padding: 4px 8px;
}
body.woocommerce-cart .remove-btn:hover { color: #E76F51; }

/* Coupon & Loyalty */
body.woocommerce-cart .cart-bottom { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
body.woocommerce-cart .cart-left { flex: 1; min-width: 280px; }
body.woocommerce-cart .coupon-row { display: flex; gap: 0; margin-bottom: 1.5rem; }
body.woocommerce-cart .coupon-input {
    flex: 1;
    max-width: 300px;
    padding: 12px 16px;
    border: 1px solid #E0DDD5;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    background: #fff;
    outline: none;
}
body.woocommerce-cart .coupon-input:focus { border-color: #2D6A4F; }
body.woocommerce-cart .coupon-btn {
    padding: 12px 24px;
    background: #2D6A4F;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
body.woocommerce-cart .coupon-btn:hover { background: #1B4332; }
body.woocommerce-cart .loyalty-bar {
    background: #B7E4C7;
    padding: 14px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1B4332;
}

/* Cart Totals */
body.woocommerce-cart .cart-right { width: 380px; flex-shrink: 0; }
body.woocommerce-cart .cart-totals { border: 2px solid #1A1A1A; padding: 2rem; }
body.woocommerce-cart .cart-totals h3 { font-family: 'DM Serif Display', serif; font-size: 1.3rem; margin-bottom: 1.5rem; }
body.woocommerce-cart .totals-row { display: flex; justify-content: space-between; padding: 0.7rem 0; font-size: 0.9rem; }
body.woocommerce-cart .totals-row.total { border-top: 2px solid #1A1A1A; margin-top: 0.5rem; padding-top: 1rem; font-size: 1.15rem; font-weight: 700; }
body.woocommerce-cart .totals-row .label { color: #5A5A5A; }
body.woocommerce-cart .totals-row .value { font-weight: 600; }
body.woocommerce-cart .totals-row .free { color: #40916C; font-weight: 600; }
body.woocommerce-cart .cart-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; }
body.woocommerce-cart .cart-buttons .btn-outline,
body.woocommerce-cart .cart-buttons .btn-primary { flex: 1; }

/* Cart item animations */
body.woocommerce-cart .cart-item { transition: opacity 0.4s, transform 0.4s; }
body.woocommerce-cart .cart-item.removing { opacity: 0; transform: translateX(-30px); }
body.woocommerce-cart .cart-total-value { transition: color 0.3s; display: inline-block; }
body.woocommerce-cart .cart-total-value.updating { color: #2D6A4F; transform: scale(1.05); }

/* ===== WOOCOMMERCE: CHECKOUT ===== */
body.woocommerce-checkout .checkout-grid { display: grid; grid-template-columns: 1fr 420px; gap: 3rem; }
body.woocommerce-checkout .section-title { font-family: 'DM Serif Display', serif; font-size: 1.6rem; margin-bottom: 1.5rem; }

/* Forms */
body.woocommerce-checkout label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #1A1A1A;
}
body.woocommerce-checkout input[type="text"],
body.woocommerce-checkout input[type="email"],
body.woocommerce-checkout input[type="tel"],
body.woocommerce-checkout select,
body.woocommerce-checkout textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0DDD5;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
}
body.woocommerce-checkout input:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus { border-color: #2D6A4F; }
body.woocommerce-checkout textarea { resize: vertical; min-height: 80px; }
body.woocommerce-checkout select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
body.woocommerce-checkout .form-row { margin-bottom: 1.2rem; }
body.woocommerce-checkout .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }

/* Checkbox */
body.woocommerce-checkout .checkbox-row { display: flex; align-items: flex-start; gap: 0.6rem; margin: 1.5rem 0; }
body.woocommerce-checkout .checkbox-row input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: #2D6A4F; flex-shrink: 0; }
body.woocommerce-checkout .checkbox-row span { font-size: 0.85rem; }
body.woocommerce-checkout .checkbox-note { font-size: 0.78rem; color: #5A5A5A; margin: -0.8rem 0 1.5rem 1.6rem; }

/* Shipping toggle */
body.woocommerce-checkout .shipping-fields { display: none; padding: 1.5rem 0 0; }
body.woocommerce-checkout .shipping-fields.open { display: block; }

/* Order Summary */
body.woocommerce-checkout .order-summary { border: 2px solid #1A1A1A; padding: 2rem; }
body.woocommerce-checkout .order-table { width: 100%; margin-bottom: 1rem; }
body.woocommerce-checkout .order-table td { padding: 0.6rem 0; font-size: 0.88rem; border-bottom: 1px solid #E0DDD5; }
body.woocommerce-checkout .order-table td:last-child { text-align: right; font-weight: 600; }
body.woocommerce-checkout .order-table .product-name { color: #1A1A1A; }
body.woocommerce-checkout .order-table .product-qty { color: #5A5A5A; }
body.woocommerce-checkout .summary-row { display: flex; justify-content: space-between; padding: 0.7rem 0; font-size: 0.9rem; }
body.woocommerce-checkout .summary-row .label { color: #5A5A5A; }
body.woocommerce-checkout .summary-row .value { font-weight: 600; }
body.woocommerce-checkout .summary-row .free { color: #40916C; font-weight: 600; }
body.woocommerce-checkout .summary-row.total { border-top: 2px solid #1A1A1A; margin-top: 0.5rem; padding-top: 1rem; font-size: 1.15rem; font-weight: 700; }

/* Payment */
body.woocommerce-checkout .payment-section { margin-top: 1.5rem; }
body.woocommerce-checkout .payment-section h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 1rem; }
body.woocommerce-checkout .radio-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 16px;
    border: 1px solid #E0DDD5;
    margin-bottom: -1px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
}
body.woocommerce-checkout .radio-option input[type="radio"] { accent-color: #2D6A4F; }
body.woocommerce-checkout .radio-option.selected { background: #fff; border-color: #2D6A4F; }
body.woocommerce-checkout .card-fields { padding: 1rem 1rem 1rem 2rem; border: 1px solid #E0DDD5; border-top: none; background: #fff; }
body.woocommerce-checkout .card-fields .form-row-2 { margin-bottom: 0.8rem; }
body.woocommerce-checkout .card-fields .form-row { margin-bottom: 0.8rem; }
body.woocommerce-checkout .card-fields label { font-size: 0.7rem; }
body.woocommerce-checkout .card-fields input { padding: 10px 14px; font-size: 0.85rem; }
body.woocommerce-checkout .card-fields-hidden { display: none; }
body.woocommerce-checkout .btn-place-order {
    width: 100%;
    padding: 16px;
    background: #D4A373;
    border: 2px solid #D4A373;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1.5rem;
}
body.woocommerce-checkout .btn-place-order:hover { background: #c4935f; border-color: #c4935f; }

/* ===== WOOCOMMERCE: MY ACCOUNT ===== */
body.woocommerce-account .account-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
    display: flex;
    gap: 40px;
}

/* Sidebar */
body.woocommerce-account .sidebar { width: 200px; flex-shrink: 0; }
body.woocommerce-account .sidebar a {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 16px;
    color: #5A5A5A;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
body.woocommerce-account .sidebar a:hover { color: #1A1A1A; background: rgba(0,0,0,0.02); }
body.woocommerce-account .sidebar a.active { color: #1B4332; border-left-color: #1B4332; font-weight: 600; }

/* Main Content */
body.woocommerce-account .account-main { flex: 1; min-width: 0; }
body.woocommerce-account .welcome-heading { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: #1A1A1A; margin-bottom: 8px; }
body.woocommerce-account .welcome-sub { color: #5A5A5A; font-size: 0.9rem; line-height: 1.6; margin-bottom: 32px; }

/* Stat Cards */
body.woocommerce-account .stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
body.woocommerce-account .stat-card { border: 1px solid #E0DDD5; padding: 24px; background: #fff; }
body.woocommerce-account .stat-card-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #5A5A5A; margin-bottom: 12px; }
body.woocommerce-account .stat-card-number { font-family: 'DM Serif Display', serif; font-size: 2.5rem; color: #1B4332; margin-bottom: 4px; }
body.woocommerce-account .stat-card-sub { font-size: 0.82rem; color: #5A5A5A; }
body.woocommerce-account .stat-card-sub a { color: #2D6A4F; font-weight: 500; }
body.woocommerce-account .stat-card-sub a:hover { text-decoration: underline; }

/* Orders Table */
body.woocommerce-account .section-title { font-family: 'DM Serif Display', serif; font-size: 1.25rem; margin-bottom: 16px; }
body.woocommerce-account .orders-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
body.woocommerce-account .orders-table th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #5A5A5A;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid #E0DDD5;
}
body.woocommerce-account .orders-table td { font-size: 0.88rem; padding: 14px 16px; border-bottom: 1px solid #E0DDD5; }
body.woocommerce-account .orders-table tr:hover { background: rgba(0,0,0,0.01); }
body.woocommerce-account .status-badge { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; display: inline-block; }
body.woocommerce-account .status-delivered { background: #B7E4C7; color: #1B4332; }
body.woocommerce-account .status-processing { background: #FFF3E0; color: #E76F51; }
body.woocommerce-account .status-shipped { background: #E8F5E9; color: #40916C; }

/* Referral */
body.woocommerce-account .referral-section { margin-top: 8px; }
body.woocommerce-account .referral-box { display: flex; gap: 0; margin-top: 12px; }
body.woocommerce-account .referral-url {
    flex: 1;
    border: 1px solid #E0DDD5;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #5A5A5A;
    background: #fff;
    font-family: 'Inter', sans-serif;
}
body.woocommerce-account .copy-btn {
    background: #1B4332;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
}
body.woocommerce-account .copy-btn:hover { background: #2D6A4F; }

/* ===== CONTENT PAGES ===== */
/* About, Contact, Stores, Loyalty, Referral, Delivery hero + content styles */
/* These use shared .section, .split-banner, .stores-minimal, etc. */

/* ===== SPLIT BANNER / LOYALTY ===== */
.split-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}
.split-left {
    background: #1B4332;
    padding: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-left h2 { font-size: 2.25rem; color: #fff; margin-bottom: 12px; }
.split-left p { font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; max-width: 400px; }
.split-right {
    background: #B7E4C7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    opacity: 0.4;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}
.split-right span { transition: transform 0.1s linear; }

/* Counter animation */
.count-up { display: inline-block; }

/* ===== BRAND LOGOS ===== */
.brands-strip {
    border-top: 1px solid #E0DDD5;
    border-bottom: 1px solid #E0DDD5;
    padding: 32px 0;
    overflow: hidden;
}
.brands-strip-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.brand-logo {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    white-space: nowrap;
    transition: color 0.3s, transform 0.3s;
}
.brand-logo:hover { color: #2D6A4F; transform: translateY(-2px); }

/* ===== STORES ===== */
.stores-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.stores-map {
    background: #f0ede6;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #5A5A5A;
}
.stores-info h2 { font-size: 2rem; margin-bottom: 24px; }
.store-row { margin-bottom: 20px; }
.store-row h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2D6A4F;
    margin-bottom: 4px;
}
.store-row p { font-size: 0.9rem; color: #5A5A5A; }

/* ===== NEWSLETTER ===== */
.newsletter {
    background: #1B4332;
    padding: 48px 0;
}
.newsletter-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.newsletter h3 { font-size: 1.25rem; color: #fff; }
.newsletter p { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-right: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    width: 280px;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus {
    border-color: #D4A373;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(212,163,115,0.2);
}
.newsletter-form button {
    padding: 14px 24px;
    background: #D4A373;
    color: #1B4332;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}
.newsletter-form button:hover { background: #c4925f; }
.newsletter-form button:active { transform: scale(0.97); }

/* ===== FOOTER ===== */
.footer {
    background: #1B4332;
    color: rgba(255,255,255,0.6);
    padding: 48px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.footer p { font-size: 0.82rem; line-height: 1.7; }
.footer a {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}
.footer a:hover { color: #D4A373; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s, padding-left 0.3s;
}
.footer-links a:hover { color: #D4A373; padding-left: 4px; }
.footer-bottom {
    max-width: 1400px;
    margin: 32px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #D4A373; }

/* ===== CONTENT PAGE: HERO (shared across info pages) ===== */
.hero { background: #1B4332; padding: 48px 24px; text-align: center; }
.hero h1 { font-size: 3rem; color: #fff; max-width: 1400px; margin: 0 auto; }
.hero p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 12px auto 0; }

/* Shared content page section (overrides homepage .section padding) */
.content-page .section { padding: 48px 24px; }
.section-title { font-size: 1.75rem; text-align: center; margin-bottom: 32px; color: #1B4332; }

/* Shared CTA section */
.cta-section { text-align: center; padding: 48px 24px 64px; }
.cta-section h2 { font-size: 1.75rem; margin-bottom: 12px; color: #1B4332; }
.cta-section p { font-size: 0.95rem; color: #5A5A5A; margin-bottom: 24px; }

/* ===== CONTENT PAGE: LOYALTY ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 16px; }
.step { text-align: center; }
.step-number { width: 56px; height: 56px; background: #D4A373; color: #1B4332; font-family: 'DM Serif Display', serif; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin: 0 auto 16px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; color: #1B4332; }
.step p { font-size: 0.88rem; color: #5A5A5A; max-width: 280px; margin: 0 auto; }

.earn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.earn-card { background: #fff; border: 1px solid #E0DDD5; padding: 24px; text-align: center; }
.earn-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1B4332; }
.earn-card .points { font-size: 1.5rem; font-weight: 700; color: #2D6A4F; margin-bottom: 8px; }
.earn-card p { font-size: 0.82rem; color: #5A5A5A; }

.faq-section { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E0DDD5; }
.faq-question { width: 100%; background: none; border: none; padding: 20px 0; font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600; color: #1A1A1A; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 1.2rem; color: #5A5A5A; transition: transform 0.2s; }
.faq-question.active::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 0.88rem; color: #5A5A5A; }

/* ===== CONTENT PAGE: REFERRAL ===== */
.referral-box { max-width: 600px; margin: 0 auto; background: #fff; border: 1px solid #E0DDD5; padding: 32px; text-align: center; }
.referral-box h3 { font-size: 1.2rem; margin-bottom: 16px; color: #1B4332; }
.referral-input-wrap { display: flex; gap: 0; margin-bottom: 12px; }
.referral-input { flex: 1; border: 1px solid #E0DDD5; border-right: none; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #5A5A5A; background: #FAFAF5; outline: none; }
.btn-copy { padding: 12px 24px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; background: #1B4332; color: #fff; border: 1px solid #1B4332; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.3s; }
.btn-copy:hover { background: #2D6A4F; border-color: #2D6A4F; }
.referral-note { font-size: 0.8rem; color: #5A5A5A; }
.referral-note a { color: #2D6A4F; font-weight: 500; }

.stats-section { text-align: center; padding: 32px 24px; }
.stats-section p { font-size: 1.1rem; color: #5A5A5A; }
.stats-section strong { color: #2D6A4F; font-weight: 700; }

/* ===== CONTENT PAGE: DELIVERY ===== */
.delivery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.delivery-card { background: #fff; border: 1px solid #E0DDD5; padding: 32px; text-align: center; }
.delivery-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1B4332; }
.delivery-card .price { font-size: 1.75rem; font-weight: 700; color: #2D6A4F; margin-bottom: 8px; }
.delivery-card p { font-size: 0.85rem; color: #5A5A5A; }
.delivery-card .tag { display: inline-block; background: #B7E4C7; color: #1B4332; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; margin-top: 12px; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.info-card { background: #fff; border: 1px solid #E0DDD5; padding: 24px; }
.info-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: #1B4332; }
.info-card p { font-size: 0.88rem; color: #5A5A5A; }

/* ===== CONTENT PAGE: ABOUT ===== */
.about-hero { background: #1B4332; padding: 80px 24px; text-align: center; }
.about-hero h1 { font-family: 'DM Serif Display', serif; font-size: 3rem; color: #fff; margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; line-height: 1.6; }

.about-content { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
.about-content p { font-size: 1rem; line-height: 1.8; color: #1A1A1A; margin-bottom: 24px; }
.about-content h2 { font-family: 'DM Serif Display', serif; font-size: 1.75rem; margin-bottom: 32px; margin-top: 48px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 24px; }
.value-block { }
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-block h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.value-block p { font-size: 0.9rem; color: #5A5A5A; line-height: 1.7; margin-bottom: 0; }

.stores-link { color: #2D6A4F; font-weight: 500; }
.stores-link:hover { text-decoration: underline; }

.cta-banner { background: #D4A373; padding: 60px 24px; text-align: center; }
.cta-banner p { font-family: 'DM Serif Display', serif; font-size: 1.75rem; color: #1A1A1A; max-width: 700px; margin: 0 auto 28px; line-height: 1.4; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* ===== CONTENT PAGE: CONTACT ===== */
.contact-section { max-width: 1400px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #5A5A5A; margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; border: 1px solid #E0DDD5; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #1A1A1A; background: #fff; outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #2D6A4F; }
.form-textarea { min-height: 160px; resize: vertical; }
.btn-submit { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; background: #D4A373; color: #1B4332; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 0.06em; transition: background 0.3s; }
.btn-submit:hover { background: #c4925f; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-card a { color: #2D6A4F; }
.info-card a:hover { text-decoration: underline; }
.info-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #5A5A5A; margin-top: 12px; margin-bottom: 4px; }

/* ===== CONTENT PAGE: STORES ===== */
.stores-section { max-width: 1400px; margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.store-card { background: #fff; border: 1px solid #E0DDD5; }
.store-photo { background: #E0DDD5; height: 200px; display: flex; align-items: center; justify-content: center; color: #5A5A5A; font-size: 0.85rem; }
.store-body { padding: 32px; }
.store-body h2 { font-size: 1.5rem; margin-bottom: 16px; color: #1B4332; }
.store-body p { font-size: 0.88rem; color: #5A5A5A; margin-bottom: 4px; }
.store-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #5A5A5A; margin-top: 16px; margin-bottom: 8px; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.hours-table td { font-size: 0.85rem; padding: 4px 0; color: #5A5A5A; }
.hours-table td:first-child { font-weight: 500; color: #1A1A1A; width: 120px; }
.store-list { list-style: none; margin-bottom: 20px; }
.store-list li { font-size: 0.85rem; color: #5A5A5A; padding: 3px 0; padding-left: 16px; position: relative; }
.store-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: #D4A373; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    /* Hero */
    .bento-hero { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; }
    .bento-main h1 { font-size: 2.25rem; }
    .bento-main-content { padding: 32px; }

    /* Product grid */
    .products-grid { grid-template-columns: repeat(3, 1fr); }

    /* Split banner */
    .split-banner { grid-template-columns: 1fr; }
    .split-right { min-height: 200px; }

    /* Stores */
    .stores-minimal { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Content pages */
    .earn-grid { grid-template-columns: repeat(2, 1fr); }
    .delivery-grid { grid-template-columns: repeat(3, 1fr); }
    .info-grid { grid-template-columns: 1fr; }
    .contact-section { gap: 32px; }

    /* Nav */
    .nav { gap: 0; }
    .nav a { padding: 8px 10px; font-size: 0.78rem; }

    /* Single product */
    body.single-product .product-layout { gap: 32px; }
    body.single-product .product-title { font-size: 1.75rem; }
    body.single-product .related-grid { grid-template-columns: repeat(3, 1fr); }

    /* Cart */
    body.woocommerce-cart .cart-right { width: 340px; }

    /* Checkout */
    body.woocommerce-checkout .checkout-grid { grid-template-columns: 1fr 360px; gap: 2rem; }

    /* Account */
    body.woocommerce-account .stat-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav { display: none; }
    .hamburger { display: flex; }
    .nav.active,
    .nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #1B4332;
        padding: 16px 24px;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .header.scrolled .nav.active { top: 56px; }
    .nav.active a,
    .nav.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

    /* Hero */
    .bento-hero { grid-template-columns: 1fr; grid-template-rows: auto; padding: 12px; }
    .bento-main { grid-row: auto; min-height: 360px; }
    .bento-main h1 { font-size: 2rem; }
    .bento-side, .bento-category { display: none; }

    /* USP */
    .usp-strip-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }

    /* Category tabs */
    .category-tabs-inner { padding: 0 12px; }
    .category-tab { padding: 12px 14px; font-size: 0.72rem; }

    /* Sections */
    .section { padding: 48px 24px; }

    /* Product grid */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    /* Split banner */
    .split-left { padding: 40px 24px; }
    .split-left h2 { font-size: 1.75rem; }

    /* Newsletter */
    .newsletter-inner { flex-direction: column; text-align: center; }
    .newsletter-form { width: 100%; }
    .newsletter-form input { flex: 1; width: auto; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    /* Content pages */
    .hero h1 { font-size: 2rem; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .earn-grid { grid-template-columns: 1fr; }
    .delivery-grid { grid-template-columns: 1fr; }
    .referral-input-wrap { flex-direction: column; }
    .referral-input { border-right: 1px solid #E0DDD5; border-bottom: none; }
    .contact-section { grid-template-columns: 1fr; }
    .stores-section { grid-template-columns: 1fr; }
    .about-hero { padding: 60px 24px; }
    .about-hero h1 { font-size: 2.25rem; }
    .values-grid { grid-template-columns: 1fr; gap: 28px; }
    .cta-banner p { font-size: 1.4rem; }
    .cta-buttons { flex-direction: column; align-items: center; }

    /* Shop */
    body.woocommerce-shop .shop-header h1 ,
body.tax-product_cat .shop-header h1 { font-size: 1.75rem; }
    body.woocommerce-shop .shop-header ,
body.tax-product_cat .shop-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    body.woocommerce-shop .filter-bar ,
body.tax-product_cat .filter-bar { flex-wrap: wrap; margin-left: 24px; margin-right: 24px; }

    /* Single product */
    body.single-product .product-layout { grid-template-columns: 1fr; }
    body.single-product .gallery { position: static; }
    body.single-product .product-title { font-size: 1.5rem; }
    body.single-product .related-grid { grid-template-columns: repeat(2, 1fr); }
    body.single-product .tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Cart */
    body.woocommerce-cart .cart-table thead { display: none; }
    body.woocommerce-cart .cart-table,
    body.woocommerce-cart .cart-table tbody,
    body.woocommerce-cart .cart-table tr,
    body.woocommerce-cart .cart-table td { display: block; }
    body.woocommerce-cart .cart-table tr { padding: 1.5rem 0; border-bottom: 1px solid #E0DDD5; position: relative; }
    body.woocommerce-cart .cart-table td { padding: 0.3rem 0; border: none; }
    body.woocommerce-cart .cart-table td:first-child { margin-bottom: 0.5rem; }
    body.woocommerce-cart .cart-table td::before { content: attr(data-label); display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; color: #5A5A5A; margin-bottom: 0.3rem; }
    body.woocommerce-cart .cart-bottom { flex-direction: column; }
    body.woocommerce-cart .cart-right { width: 100%; }
    body.woocommerce-cart .cart-buttons { flex-direction: column; }

    /* Checkout */
    body.woocommerce-checkout .checkout-grid { grid-template-columns: 1fr; }

    /* Account */
    body.woocommerce-account .account-layout { flex-direction: column; gap: 24px; }
    body.woocommerce-account .sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        border-bottom: 1px solid #E0DDD5;
        padding-bottom: 16px;
    }
    body.woocommerce-account .sidebar a { border-left: none; border-bottom: 3px solid transparent; padding: 8px 12px; }
    body.woocommerce-account .sidebar a.active { border-left: none; border-bottom-color: #1B4332; }
    body.woocommerce-account .stat-cards { grid-template-columns: 1fr; }
    body.woocommerce-account .orders-table { font-size: 0.82rem; }
    body.woocommerce-account .orders-table th,
    body.woocommerce-account .orders-table td { padding: 10px 10px; }

    /* Disable parallax on mobile */
    .parallax-target { transform: none !important; }
}

@media (max-width: 480px) {
    .bento-main h1 { font-size: 1.75rem; }
    .bento-main-content { padding: 24px; }
    .btn { padding: 12px 20px; font-size: 0.8rem; }
    .section-header h2 { font-size: 1.5rem; }

    .container { padding: 1.5rem 1rem; }
    .page-title { font-size: 2rem; }
    .header-inner { padding: 0 1rem; }
    .header-actions a:not(.cart-icon) { display: none; }

    /* Content pages */
    .hero h1 { font-size: 1.75rem; }
    .btn-submit { padding: 12px 20px; font-size: 0.8rem; }
    .about-hero { padding: 48px 16px; }
    .about-hero h1 { font-size: 2rem; }
    .about-hero p { font-size: 1rem; }
    .about-content { padding: 40px 16px; }
    .cta-banner { padding: 40px 16px; }
    .cta-banner p { font-size: 1.2rem; }

    /* Checkout */
    body.woocommerce-checkout .form-row-2 { grid-template-columns: 1fr; }

    /* Account */
    body.woocommerce-account .breadcrumb { padding: 12px 16px; }
    body.woocommerce-account .account-layout { padding: 0 16px 40px; }
    body.woocommerce-account .sidebar { flex-direction: column; }
    body.woocommerce-account .sidebar a { border-bottom: none; border-left: 3px solid transparent; }
    body.woocommerce-account .sidebar a.active { border-left-color: #1B4332; }
    body.woocommerce-account .referral-box { flex-direction: column; }
    body.woocommerce-account .copy-btn { text-align: center; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .reveal-stagger > * { opacity: 1; transform: none; }
}
