/* =============================================
   Cymuis Theme — Main Stylesheet (Dark)
   ============================================= */

/* Font import — Inter + DM Sans (Cymuis uses Gotham, Inter is a close Google alternative) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
    /* Brand-accent: Cymuis signature purple-cyan gradient */
    --accent: #7c4dff;
    --accent-alt: #00e5ff;
    --accent-dark: #5c3ddf;
    --accent-glow: rgba(124, 77, 255, 0.35);
    --text: #fff;
    --text-muted: #999;
    --bg: #050510;
    --bg-2: #0d0d1a;
    --bg-3: #141428;
    --bg-4: #1e1e38;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.2);
    --radius: 12px;
    --radius-sm: 6px;
    /* Typography scale — Cymuis-aligned (1rem = 16px) */
    --text-xs:   11px;   /* 0.6875rem — badges, tags */
    --text-sm:   13px;   /* 0.8125rem — meta, captions */
    --text-base: 14px;   /* 0.875rem  — body, nav, buttons */
    --text-md:   16px;   /* 1rem      — product info, inputs */
    --text-lg:   18px;   /* 1.125rem  — subtitles, lead text */
    --text-xl:   20px;   /* 1.25rem   — card titles */
    --text-2xl:  24px;   /* 1.5rem    — h3, section sub */
    --text-3xl:  30px;   /* 1.875rem  — h2 section titles */
    --text-4xl:  38px;   /* 2.375rem  — large h2 */
    --text-5xl:  48px;   /* 3rem      — h1, hero sub */
    --text-6xl:  60px;   /* 3.75rem   — hero h1 */
    --font: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --nav-h: 64px;
    --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px var(--accent-glow);
    --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* Smooth scroll + selection */
html { scroll-behavior: smooth; font-size: 16px; }
::selection { background: var(--accent); color: #fff; }

body {
    font-family: var(--font);
    font-size: var(--text-base);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: inherit; }
img { max-width: 100%; display: block; }

/* Focus ring for accessibility */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* Global heading resets */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', var(--font);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ---- Promo Banner ---- */
.promo-banner {
    background: #22cc95;
    color: #fff;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 101;
}
.promo-banner a { color: #fff; text-decoration: underline; margin-left: 6px; }

/* ---- Header ---- */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: var(--nav-h);
    background: rgba(5,5,16,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.site-logo { display: flex; align-items: center; }
.site-logo svg text { fill: #fff; }

/* ---- Primary Nav ---- */
.primary-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}
.primary-nav .nav-menu > li { position: relative; }
.primary-nav .nav-menu > li > a {
    display: block;
    font-size: var(--text-base);
    font-weight: 500;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background .15s;
    white-space: nowrap;
}
.primary-nav .nav-menu > li > a:hover { background: rgba(255,255,255,.08); }

/* Dropdown */
.primary-nav .nav-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-width: 180px;
    padding: 8px 0;
    list-style: none;
    z-index: 200;
}
.primary-nav .nav-menu li:hover > ul { display: block; }
.primary-nav .nav-menu li ul a {
    display: block;
    padding: 8px 16px;
    font-size: var(--text-base);
    color: #ccc;
    transition: color .15s, background .15s;
}
.primary-nav .nav-menu li ul a:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ---- Header Icons ---- */
.header-icons { display: flex; align-items: center; gap: 8px; }

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 4px;
    transition: background .15s;
}
.icon-btn:hover { background: #1a1a1a; }
.icon-btn svg line,
.icon-btn svg path,
.icon-btn svg circle { stroke: #fff; }
.icon-btn svg [fill="#252525"] { fill: #fff; }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px var(--accent-glow);
}

.menu-toggle { display: none; }

/* ---- Search Overlay ---- */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.8);
    z-index: 200;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.search-overlay.open { display: flex; }
.search-overlay-inner {
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    gap: 12px;
    align-items: center;
}
.search-overlay-inner .search-field,
.search-overlay-inner input[type="search"] {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    outline: none;
    background: #000;
    color: #fff;
}
.search-overlay-inner .search-field:focus,
.search-overlay-inner input[type="search"]:focus { border-color: var(--accent); }
.search-overlay-inner .search-submit,
.search-overlay-inner button[type="submit"] {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}
.search-close {
    position: absolute;
    top: -14px;
    right: -14px;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}
.search-close svg line { stroke: #fff; }

/* ---- Buttons ---- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: .5px;
    padding: 13px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px var(--accent-glow);
    text-transform: uppercase;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
    color: #fff;
}

.btn-dark {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: .5px;
    padding: 13px 32px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-dark:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: .5px;
    padding: 11px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px var(--accent-glow);
    text-transform: uppercase;
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--accent-glow);
    background: linear-gradient(135deg, var(--accent-alt), var(--accent));
    color: #fff;
}

/* ---- Section Wrappers ---- */
.section-wrap { padding: 72px 48px; }
.section-dark { background: var(--bg); }
.section-gray { background: var(--bg-2); }
.section-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: -.5px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-base);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.placeholder-msg { text-align: center; color: var(--text-muted); padding: 40px; }

/* Section divider accent line */
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-alt));
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ---- Trust Bar Top (page-top strip) ---- */
.trust-bar-top {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-bar-top > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
}
.trust-bar-top svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(124,77,255,.5));
}
.hero-carousel {
    position: relative;
    overflow: hidden;
}
.hero-track {
    display: flex;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.hero-slide {
    min-width: 100%;
    aspect-ratio: 16 / 6;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}
.hero-slide > * { position: relative; z-index: 1; }
.hero-slide img.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Ambient glow orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,77,255,.3) 0%, transparent 70%);
    top: -15%; right: 10%;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(0,229,255,.2) 0%, transparent 70%);
    bottom: -10%; left: 5%;
    animation-delay: -3s;
}
.hero-orb-3 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(124,77,255,.35) 0%, transparent 70%);
    top: -10%; right: 5%;
    animation-delay: -1s;
}
.hero-orb-4 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,229,255,.25) 0%, transparent 70%);
    top: 10%; right: 20%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.97); }
}

.hero-content {
    color: #fff;
    max-width: 560px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 12px var(--accent-glow);
    width: fit-content;
}
.hero-content h1 {
    font-size: clamp(36px, 5vw, var(--text-6xl));
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-content p {
    font-size: var(--text-lg);
    opacity: .88;
    margin-bottom: 32px;
    max-width: 440px;
    line-height: 1.7;
}

/* CTA group — two buttons side by side */
.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

/* Floating product mini-cards */
.hero-float-products {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}
.hero-float-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    transition: var(--transition);
    cursor: pointer;
}
.hero-float-card:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.25);
    transform: translateY(-2px);
}
.hero-float-card img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.hero-float-card:hover img { transform: scale(1.1); }

/* Hero float cards — icon version (no external images) */
.hero-float-products {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.hero-float-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
    transition: var(--transition);
    text-decoration: none;
}
.hero-float-card:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.25);
    transform: translateY(-2px);
    color: rgba(255,255,255,1);
}
.float-card-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 28px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}
.scroll-wheel {
    width: 3px;
    height: 7px;
    background: rgba(255,255,255,.6);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
.scroll-text { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: 1px; text-transform: uppercase; }

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    80% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 0; transform: translateY(0); }
}

/* Hero arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}
.hero-arrow:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-50%) scale(1.08);
}
.hero-prev { left: 28px; }
.hero-next { right: 28px; }

/* Hero dots */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: #fff;
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(255,255,255,.5);
}

/* ---- Product Filter Tabs ---- */
.product-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: .3px;
    white-space: nowrap;
}
.filter-tab:hover {
    border-color: var(--border-hover);
    color: #fff;
    background: rgba(255,255,255,.05);
}
.filter-tab.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 14px var(--accent-glow);
}

.filter-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    white-space: nowrap;
    padding: 8px 0;
    text-decoration: none;
}
.filter-more-link:hover {
    color: var(--accent-alt);
}
.filter-more-link svg {
    transition: transform .2s;
}
.filter-more-link:hover svg {
    transform: translateX(3px);
}

/* Tab panels */
.product-tabs-panel .tab-panel {
    animation: tabFadeIn .25s ease;
}
.product-tabs-panel .tab-panel[hidden] {
    display: none !important;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section header wrapper */
.section-header {
    text-align: center;
    margin-bottom: 0;
}

/* ---- WooCommerce Product Grid ---- */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
.woocommerce ul.products li.product {
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}

/* Product card item */
.woocommerce ul.products li.product-card-item {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: visible;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.woocommerce ul.products li.product-card-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* Product link covers image + title + price (WC default behavior) */
.woocommerce ul.products li.product-card-item a.woocommerce-LoopProduct-link {
    display: block;
    text-decoration: none;
}
.woocommerce ul.products li.product-card-item a.woocommerce-LoopProduct-link:hover {
    color: inherit;
}

/* Product image */
.woocommerce ul.products li.product-card-item .product-image-wrap {
    position: relative;
    overflow: hidden;
    line-height: 0;
}
.woocommerce ul.products li.product-card-item .product-image-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.woocommerce ul.products li.product-card-item:hover .product-image-wrap img {
    transform: scale(1.06);
}

/* Sale badge */
.woocommerce ul.products li.product-card-item .onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: .5px;
    box-shadow: 0 2px 12px rgba(255,71,87,.45);
    z-index: 5;
}

/* New badge */
.woocommerce ul.products li.product-card-item .New-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .5px;
    z-index: 5;
}

/* Product info (title + rating + price) */
.woocommerce ul.products li.product-card-item .product-info {
    padding: 10px 14px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Product title */
.woocommerce ul.products li.product-card-item .woocommerce-loop-product__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    transition: color .2s;
}
.woocommerce ul.products li.product-card-item a:hover .woocommerce-loop-product__title {
    color: var(--accent-alt);
}

/* Star rating */
.woocommerce ul.products li.product-card-item .star-rating {
    font-size: var(--text-xs);
    color: #f5a623;
}

/* Price */
.woocommerce ul.products li.product-card-item .price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--accent-alt);
    display: block;
    margin-top: 2px;
}
.woocommerce ul.products li.product-card-item .price del {
    color: #555;
    font-weight: 400;
    font-size: 13px;
    margin-right: 4px;
}
.woocommerce ul.products li.product-card-item .price ins {
    text-decoration: none;
}

/* Add to Cart button area */
.woocommerce ul.products li.product-card-item .product-actions {
    padding: 0 14px 14px;
}
.woocommerce ul.products li.product-card-item .product-actions .button {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 2px 12px var(--accent-glow);
    transition: var(--transition);
    border: none;
}
.woocommerce ul.products li.product-card-item .product-actions .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Image placeholder when no thumbnail */
.woocommerce ul.products li.product-card-item .product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Category Scroll Section (Cymuis-style) ---- */
.category-scroll-wrapper {
    position: relative;
    margin: 0 -8px;
    padding: 0 8px;
}

.category-scroll-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 8px 16px;
}
.category-scroll-track::-webkit-scrollbar { display: none; }

/* Category scroll tile — Cymuis: 180×180px desktop */
.category-scroll-tile {
    flex: 0 0 auto;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

/* Square tile — icon or image fills the box */
.cat-icon-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 16px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}
.category-scroll-tile:hover .cat-icon-wrap {
    border-color: var(--accent);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 0 1px var(--accent);
}

/* SVG icon centered */
.cat-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), filter .3s;
}
.category-scroll-tile:hover .cat-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px currentColor);
}

/* Category thumbnail — full bleed fill */
.cat-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 1;
    transition: transform .4s ease;
}
.category-scroll-tile:hover .cat-thumb-img {
    transform: scale(1.06);
}

/* All Products tile */
.cat-icon-all {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s;
}
.category-scroll-tile:hover .cat-icon-all { transform: scale(1.1); }

/* Gradient overlay for label text */
.cat-icon-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(5,5,16,.8));
    z-index: 2;
    pointer-events: none;
    border-radius: 0 0 16px 16px;
}

/* Label text inside the image */
.cat-label-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 12px 10px 12px;
    border-radius: 0 0 16px 16px;
}
.cat-label {
    font-size: var(--text-base);
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: block;
    line-height: 1.3;
    letter-spacing: .2px;
    text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.category-scroll-tile:hover .cat-label { color: #fff; }

/* Scroll arrows — appear on hover */
.cat-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(5,5,16,.92);
    border: 1px solid var(--border);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.category-scroll-wrapper:hover .cat-scroll-btn { opacity: 1; pointer-events: auto; }
.cat-scroll-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}
.cat-scroll-prev { left: 0; }
.cat-scroll-next { right: 0; }

@media (max-width: 1024px) {
    .category-scroll-tile { width: 150px; }
    .cat-icon-wrap { width: 150px; height: 150px; }
    .cat-icon { width: 40px; height: 40px; }
}

@media (max-width: 768px) {
    .category-scroll-tile { width: 140px; }
    .cat-icon-wrap { width: 140px; height: 140px; border-radius: 12px; }
    .cat-icon { width: 36px; height: 36px; }
    .cat-scroll-btn { display: none; }
}

/* ---- Tech Features ---- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.tech-block {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.tech-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-glow), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.tech-block:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}
.tech-block:hover::before { opacity: 1; }
.tech-icon { display: flex; justify-content: center; margin-bottom: 14px; position: relative; z-index: 1; }
.tech-block h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: 8px; color: #fff; position: relative; z-index: 1; }
.tech-block p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; }

/* ---- Trust Bar ---- */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 40px 48px;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.trust-item svg { flex-shrink: 0; }
.trust-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; color: #fff; }
.trust-item p { font-size: 12px; color: var(--text-muted); }

/* ---- Blog Grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.blog-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    transition: var(--transition);
}
.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.blog-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb { transform: scale(1.05); }
.blog-thumb-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-card-body { padding: 16px; }
.blog-date { font-size: var(--text-xs); color: var(--text-muted); letter-spacing: .3px; }
.blog-card-body h3 {
    font-size: var(--text-base);
    font-weight: 700;
    margin: 8px 0 10px;
    line-height: 1.45;
    color: #fff;
    transition: color .2s;
}
.blog-card:hover .blog-card-body h3 { color: var(--accent-alt); }
.blog-card-body p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: .3px;
    text-transform: uppercase;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 50;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); }
.back-to-top svg circle { fill: linear-gradient(135deg, var(--accent), var(--accent-alt)); }
.back-to-top:hover svg circle { fill: url(#grad); }

/* ---- Footer ---- */
.site-footer { background: #0a0a0a; color: #aaa; padding: 56px 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.footer-col h4 { color: #fff; font-size: var(--text-base); font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-menu { list-style: none; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { font-size: var(--text-base); color: #888; transition: color .2s; }
.footer-menu a:hover { color: #fff; }

.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: var(--text-base);
    transition: border-color .2s, background .2s;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,.1);
    outline: none;
}
.newsletter-form button {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: var(--text-base);
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: .3px;
    box-shadow: 0 2px 12px var(--accent-glow);
    transition: var(--transition);
}
.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* Footer social icons */
.footer-newsletter .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #888;
    transition: var(--transition);
}
.footer-newsletter .social-link:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #555;
}

/* ---- WooCommerce General Overrides ---- */
.woocommerce-page,
.woocommerce { color: var(--text);background: var(--bg) !important; }

/* Forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
input[type="text"], input[type="email"], input[type="password"],
input[type="tel"], input[type="number"], textarea, select {
    background: var(--bg-2) !important;
    color: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
    
    font-size: 14px !important;
    width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus,
input[type="tel"]:focus, input[type="number"]:focus, textarea:focus, select:focus {
    border-color: var(--accent) !important;
    outline: none !important;
}

/* WC Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    padding: 10px 24px !important;
    transition: background .2s !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--accent-dark) !important;
    color: #fff !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: #fff !important;
    color: #000 !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: #e0e0e0 !important; }

/* WC Tables */
.woocommerce table.shop_table {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    background: var(--bg-2) !important;
    color: #fff !important;
}
.woocommerce table.shop_table th { background: var(--bg-3) !important; color: #fff !important; border-bottom: 1px solid var(--border) !important; }
.woocommerce table.shop_table td { border-bottom: 1px solid var(--border) !important; color: #ccc !important; }

/* WC Notices */
.woocommerce-message, .woocommerce-info {
    background: var(--bg-2) !important;
    border-top-color: var(--accent) !important;
    color: #fff !important;
}
.woocommerce-error { background: #2a0a0a !important; border-top-color: #e44 !important; color: #fff !important; }

/* WC Price */
.woocommerce .price, .woocommerce-Price-amount { color: var(--accent) !important; }
.woocommerce del .woocommerce-Price-amount { color: #666 !important; }

/* WC Breadcrumb */
.woocommerce .woocommerce-breadcrumb { color: #888; font-size: 13px; margin-bottom: 20px; }
.woocommerce .woocommerce-breadcrumb a { color: #888; }
.woocommerce .woocommerce-breadcrumb a:hover { color: #fff; }

/* WC Product Single */
.woocommerce div.product div.images { background: var(--bg-2); border-radius: var(--radius); overflow: hidden; }
.woocommerce div.product div.summary { color: #fff; }
.woocommerce div.product p.price { font-size: 24px !important; }
.woocommerce div.product .product_title { color: #fff !important; font-size: 24px !important; font-weight: 700 !important; }
.woocommerce div.product .woocommerce-product-rating .star-rating { color: var(--accent); }
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--bg-2); border: 1px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--bg-3); border-bottom-color: var(--bg-3); }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: #ccc; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #fff; }
.woocommerce div.product .woocommerce-tabs .panel { background: var(--bg-2); border: 1px solid var(--border); border-top: none; padding: 24px; color: #ccc; }

/* WC Cart */
.woocommerce-cart .woocommerce { background: transparent; }
.woocommerce .cart-collaterals .cart_totals { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.woocommerce .cart-collaterals h2 { color: #fff; }

/* WC Checkout */
.woocommerce-checkout #order_review { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.woocommerce-checkout h3 { color: #fff !important; }
.woocommerce form .form-row label { color: #ccc !important; }

/* WC My Account */
.woocommerce-account .woocommerce-MyAccount-navigation { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a { color: #ccc; display: block; padding: 8px 12px; border-radius: 4px; transition: background .15s; }
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a { background: var(--bg-3); color: #fff; }

/* ---- Search Results Page ---- */
.search-results-wrap { padding: 40px; }
.search-results-wrap h1 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }

/* ---- Page Wrapper ---- */
.page-wrap { max-width: 1280px; margin: 0 auto; padding: 40px; }
.page-wrap h1 { font-size: 28px; font-weight: 700; margin-bottom: 24px; }

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-bar { gap: 32px; }
    .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .site-header { padding: 0 20px; }
    .section-wrap { padding: 48px 20px; }
    .section-title { font-size: 24px; }
    .primary-nav {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5,5,16,.97);
        backdrop-filter: blur(20px);
        z-index: 99;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }
    .primary-nav.open { display: block; }
    .primary-nav .nav-menu { flex-direction: column; gap: 0; padding: 8px 0; }
    .primary-nav .nav-menu > li > a { padding: 14px 24px; font-size: 16px; border-bottom: 1px solid var(--border); border-radius: 0; }
    .primary-nav .nav-menu li ul { position: static; border: none; border-radius: 0; background: #111; padding-left: 16px; }
    .menu-toggle { display: flex; }

    .hero-slide { padding: 0 24px; aspect-ratio: 4/3; }
    .hero-content h1 { font-size: 28px; }
    .hero-arrow { display: none; }

    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .trust-bar { flex-direction: column; gap: 24px; padding: 32px 20px; align-items: flex-start; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .page-wrap { padding: 24px 20px; }
}

@media (max-width: 480px) {
    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tech-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero-slide { aspect-ratio: 3/4; }
    .hero-cta-group { margin-bottom: 24px; }
    .hero-float-products { display: none; }
    .hero-scroll-hint { display: none; }
    .hero-content h1 { font-size: 28px; }
    .hero-content p { font-size: 14px; margin-bottom: 24px; }
}

/* ---- Page Content (WC pages, blog, etc.) ---- */
.page-content { color: #ccc; line-height: 1.7; }
.page-content h1, .page-content h2, .page-content h3 { color: #fff; margin-bottom: 12px; }
.page-content p { margin-bottom: 16px; }
.page-content a { color: var(--accent); }
.page-content a:hover { text-decoration: underline; }

/* WC My Account login/register forms */
.woocommerce-account .woocommerce { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.woocommerce-account .woocommerce-form { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.woocommerce-account .woocommerce-form h2 { color: #fff; margin-bottom: 20px; font-size: 20px; }
.woocommerce-account .woocommerce-form .form-row { margin-bottom: 16px; }
.woocommerce-account .woocommerce-form label { color: #ccc; font-size: 13px; display: block; margin-bottom: 6px; }
.woocommerce-account .woocommerce-form .lost_password a { color: var(--accent); font-size: 13px; }

/* WC Cart page */
.woocommerce-cart .woocommerce-cart-form { margin-bottom: 40px; }
.woocommerce-cart .quantity input { background: var(--bg-2) !important; color: #fff !important; border: 1px solid var(--border) !important; width: 60px !important; text-align: center; }
.woocommerce-cart .cart-collaterals { margin-top: 40px; }
.woocommerce-cart .cart_totals h2 { color: #fff; margin-bottom: 16px; }
.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    background: #fff !important;
    color: #000 !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    width: 100%;
    display: block;
    text-align: center;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover { background: #e0e0e0 !important; }

/* WC Checkout */
.woocommerce-checkout .woocommerce { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.woocommerce-checkout #customer_details { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.woocommerce-checkout #order_review_heading { color: #fff; font-size: 18px; margin-bottom: 16px; }
.woocommerce-checkout #place_order {
    background: #fff !important;
    color: #000 !important;
    font-size: 16px !important;
    padding: 14px 32px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    width: 100%;
}
.woocommerce-checkout #place_order:hover { background: #e0e0e0 !important; }

/* WC Product Single */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.woocommerce div.product .woocommerce-tabs { grid-column: 1 / -1; margin-top: 40px; }
.woocommerce div.product .related.products { grid-column: 1 / -1; }
.woocommerce div.product form.cart { display: flex; gap: 12px; align-items: center; margin-top: 20px; }
.woocommerce div.product form.cart .quantity { display: flex; align-items: center; gap: 8px; }
.woocommerce div.product form.cart .qty {
    width: 60px !important;
    text-align: center;
    background: var(--bg-2) !important;
    color: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 4px !important;
    padding: 10px !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 1;
    background: #fff !important;
    color: #000 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 12px 24px !important;
}
.woocommerce div.product .woocommerce-product-details__short-description { color: #ccc; margin: 16px 0; line-height: 1.7; }
.woocommerce div.product .product_meta { color: #888; font-size: 13px; margin-top: 16px; }
.woocommerce div.product .product_meta a { color: var(--accent); }

/* Star ratings */
.star-rating { color: #f5a623 !important; }
.woocommerce .star-rating span { color: #f5a623 !important; }

/* Pagination */
.woocommerce-pagination ul { display: flex; gap: 8px; list-style: none; justify-content: center; margin-top: 40px; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: var(--bg-2); border: 1px solid var(--border); border-radius: 50px;
    color: #ccc; font-size: 14px; transition: var(--transition);
}
.woocommerce-pagination ul li a:hover { background: var(--bg-3); color: #fff; border-color: var(--border-hover); }
.woocommerce-pagination ul li span.current {
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 10px var(--accent-glow);
}

/* WC Notices */
.woocommerce-notices-wrapper { padding: 0 40px; }

/* Shop page header */
.woocommerce-products-header { padding: 40px 40px 0; }
.woocommerce-products-header h1 { color: #fff; font-size: 28px; font-weight: 700; }

/* WC ordering/result count */
.woocommerce-ordering select { background: var(--bg-2) !important; color: #fff !important; border: 1px solid var(--border) !important; }
.woocommerce-result-count { color: #888; font-size: 13px; }

@media (max-width: 768px) {
    .woocommerce div.product { grid-template-columns: 1fr; }
    .woocommerce-checkout .woocommerce { grid-template-columns: 1fr; }
    .woocommerce-account .woocommerce { grid-template-columns: 1fr; }
}

/* ── WooCommerce page background — white ── */
body.woocommerce-page,
body.woocommerce {
    background-color: #ffffff !important;
}
