/* =============================================================
   NEO COMPOUNDS — Main Stylesheet
   Clean build on Storefront parent theme
   ============================================================= */

/* ── Variables ── */
:root {
    --neo-bg:        #07101d;
    --neo-bg-2:      #0b1628;
    --neo-panel:     #0d1b2f;
    --neo-border:    rgba(255,255,255,0.10);
    --neo-text:      #f5f9ff;
    --neo-muted:     #a9b6cc;
    --neo-blue:      #3ea0ff;   /* UI blue — links, prices, badges */
    --neo-blue-2:    #00c4b4;   /* secondary accent — teal */
    --neo-hover:     #0000ff;   /* hover highlight — electric blue */
    --neo-accent:    #0000ff;   /* alias used by sort dropdown focus */
    --neo-shadow:    0 20px 60px rgba(0,0,0,0.35);
    --neo-radius:    22px;
    --neo-radius-sm: 14px;
    --neo-max:       1440px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: linear-gradient(180deg, #07101d 0%, #091322 100%);
    color: var(--neo-text);
    font-family: Inter, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: opacity 0.2s ease; }
img { max-width: 100%; height: auto; }

/* ── Override Storefront parent theme container ── */
/* Storefront caps .col-full at ~1180px — override to let our layout fill the viewport */
.col-full,
.site-header .col-full,
.site-footer .col-full {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ── Container ── */
.neo-container {
    width: min(calc(100% - 48px), var(--neo-max));
    margin: 0 auto;
}

/* ── Topbar ── */
.neo-topbar {
    background: #06101b;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 13px;
    color: #dce7f7;
}
.neo-topbar-inner {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
}
.neo-topbar-inner span { opacity: .92; }
.neo-topbar-inner span:not(:last-child)::after {
    content: "•";
    margin-left: 18px;
    color: rgba(255,255,255,0.35);
}

/* ── Compliance bar ── */
.neo-compliance-bar {
    background: #0f1c2f;
    border-bottom: 2px solid #ff5f5f;
    color: #ffdddd;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    padding: 11px 0;
    letter-spacing: 0.4px;
}

/* ── Header ── */
.neo-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(7,16,29,0.92);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.neo-header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}
.neo-manual-logo {
    display: block;
    width: 260px;
    height: auto;
    object-fit: contain;
}
.neo-search-form {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    padding: 6px 8px 6px 16px;
}
.neo-search-input {
    flex: 1;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 15px;
    outline: none;
}
.neo-search-input::placeholder { color: #95a6c2; }
.neo-search-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, var(--neo-blue), var(--neo-blue-2));
    color: #031321;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
}
.neo-search-btn svg { width: 17px; height: 17px; }
.neo-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.neo-action-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 14px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s ease;
}
.neo-action-link:hover { background: rgba(255,255,255,0.08); }
.neo-action-link svg { width: 17px; height: 17px; }

/* ── Navigation ── */
.neo-nav-wrap {
    border-top: 1px solid rgba(255,255,255,0.06);
}
.neo-main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 13px 0;
    list-style: none;
    margin: 0;
}
.neo-main-nav a {
    color: #d6e0ee;
    font-size: 14.5px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.neo-main-nav a:hover { color: #fff; }

/* ── WooCommerce wrapper ── */
.neo-woo-wrap {
    padding: 40px 0 80px;
}
.neo-woo-wrap .neo-container {
    width: min(calc(100% - 48px), var(--neo-max));
    margin: 0 auto;
}

/* ── Hide WooCommerce shop page title (redundant with category section) ── */
.woocommerce-products-header { display: none; }

/* ── Research Area grid ── */
#research-areas.neo-research-section {
    margin-bottom: 40px;
}
.neo-research-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}
.neo-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.neo-category-card {
    display: block;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
                rgba(13,27,47,0.92);
    border: 1px solid var(--neo-border);
    border-radius: var(--neo-radius);
    overflow: hidden;
    color: var(--neo-text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.neo-category-card:hover {
    border-color: var(--neo-hover);
    box-shadow: 0 0 0 2px rgba(0,0,255,0.35), 0 8px 28px rgba(0,0,255,0.18);
    transform: translateY(-3px);
}
.neo-category-image {
    height: 160px;
    overflow: hidden;
}
.neo-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.neo-category-card:hover .neo-category-image img { transform: scale(1.06); }
.neo-category-content { padding: 16px; }
.neo-category-content h3 {
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 2.6em;
    line-height: 1.3;
}
.neo-category-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}
.neo-cat-count {
    font-size: 0.82rem;
    color: var(--neo-blue-2);
    font-weight: 600;
    white-space: nowrap;
}
.neo-browse-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #d6e8ff;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}

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

/* Kill WooCommerce's clearfix pseudo-elements — they become ghost grid items */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none !important;
    content: none !important;
}

/* ── Product card ── */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products li.product.first,
.woocommerce ul.products li.product.last {
    float: none !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 18px 14px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #f4f6f8 !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
    cursor: pointer !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
    border-color: var(--neo-hover) !important;
    box-shadow: 0 0 0 2px rgba(0,0,255,0.25), 0 8px 28px rgba(0,0,255,0.14) !important;
    transform: translateY(-3px) !important;
}

/* Suppress all focus rings inside product cards */
.woocommerce ul.products li.product:focus,
.woocommerce ul.products li.product *:focus {
    outline: none !important;
}

/* ── Product card anchor ── */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
}

/* ── Product image ── */
.woocommerce ul.products li.product img {
    width: auto !important;
    height: auto !important;
    max-width: 120px !important;
    max-height: 120px !important;
    display: block !important;
    margin: 0 auto 10px !important;
    object-fit: contain !important;
}

/* ── Product title ── */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    margin: 0 0 6px !important;
    color: #1a2533 !important;
    word-break: break-word !important;
}

/* ── Product price ── */
.woocommerce ul.products li.product .price {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--neo-blue-2) !important;
    margin: 0 0 10px !important;
}

/* ── Product button ── */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    background: rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.15) !important;
    color: #1a2533 !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    margin-top: auto !important;
    box-sizing: border-box !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}
.woocommerce ul.products li.product:hover .button,
.woocommerce ul.products li.product:hover a.button,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: rgba(0,0,200,0.75) !important;
    border-color: rgba(0,0,200,0.9) !important;
    color: #ffffff !important;
}

/* ── Result count + ordering — see full rules in toolbar section below ── */

/* ── Pagination ── */
.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: #e8f1ff;        /* high-contrast white-blue */
    font-size: 14px;
    font-weight: 600;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: rgba(62,160,255,0.18);
    border-color: var(--neo-blue);
    color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--neo-blue);
    border-color: var(--neo-blue);
    color: #031321;
    font-weight: 700;
}
/* next/prev arrow links */
.woocommerce nav.woocommerce-pagination ul li a.next,
.woocommerce nav.woocommerce-pagination ul li a.prev {
    color: #e8f1ff;
    font-size: 16px;
}

/* ── Trust panel (single product) ── */
.neo-trust-panel {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.neo-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.neo-trust-item {
    padding: 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.neo-trust-item strong {
    display: block;
    color: #fff;
    font-size: 13px;
    margin-bottom: 4px;
}
.neo-trust-item span {
    display: block;
    color: var(--neo-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* ── Footer ── */
.neo-site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(5,12,21,0.92);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.neo-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding: 56px 0 40px;
    width: 100%;
}
.neo-footer-logo {
    display: block;
    width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 1;
}
.neo-footer-logo-link { display: inline-block; }
.neo-footer-col p {
    color: var(--neo-muted);
    line-height: 1.8;
    font-size: 14px;
    margin: 0 0 12px;
}
.neo-footer-compliance {
    font-size: 12.5px !important;
    color: #ffdddd !important;
    font-weight: 600 !important;
    line-height: 1.7 !important;
    border-top: 1px solid rgba(255,95,95,0.35);
    border-left: 3px solid #ff5f5f;
    padding: 10px 0 0 10px;
    margin-top: 8px;
}
.neo-footer-col h3,
.neo-footer-col h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.neo-footer-col a {
    color: var(--neo-muted);
    line-height: 1.9;
    font-size: 14px;
}
.neo-footer-col ul { list-style: none; margin: 0; padding: 0; }
.neo-footer-col li { margin-bottom: 4px; }
.neo-footer-col a:hover { color: #fff; }
.neo-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}
.neo-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.neo-footer-bottom p { margin: 0; color: #8ea2bf; font-size: 13px; }
.neo-footer-bottom-links {
    display: flex;
    gap: 20px;
}
.neo-footer-bottom-links a {
    color: #8ea2bf;
    font-size: 13px;
    transition: color 0.2s ease;
}
.neo-footer-bottom-links a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .neo-header-main { grid-template-columns: auto auto; }
    .neo-header-search { display: none; } /* simplify on tablet */
    .neo-category-grid { grid-template-columns: repeat(3, 1fr); }
    .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 767px) {
    .neo-header-main { grid-template-columns: 1fr auto; gap: 12px; }
    .neo-main-nav { gap: 14px; }
    .neo-main-nav a { font-size: 13px; }
    .neo-category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .neo-category-image { height: 130px; }
    .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
    .neo-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0 28px; }
    .neo-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .neo-topbar-inner { font-size: 11px; gap: 8px; }
    .neo-header-actions .neo-action-link span { display: none; }
}

/* ── Additional fixes ── */

/* Hide Shop page title */
.woocommerce-products-header,
.woocommerce-products-header__title,
body.archive.post-type-archive-product h1.page-title {
    display: none !important;
}

/* Move pagination below grid */
.woocommerce nav.woocommerce-pagination {
    order: 99;
    width: 100%;
    margin-top: 32px;
}

/* ── Storefront's sorting wrapper — style it as our toolbar ── */
.storefront-sorting {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

/* Tighten spacing between product name, price, button */
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 4px !important;
}

.woocommerce ul.products li.product .price {
    margin: 0 0 8px !important;
}

.woocommerce-result-count {
    color: var(--neo-muted);
    font-size: 13px;
    margin: 0 !important;
}

.woocommerce-ordering {
    margin: 0 !important;
}

.woocommerce-ordering select {
    background-color: rgba(255,255,255,0.07);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a0aec0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--neo-text);
    border-radius: 8px;
    padding: 8px 36px 8px 12px;
    font-size: 13px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 180px;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: var(--neo-accent, #3ea0ff);
}


/* =============================================================
   HOMEPAGE — front-page.php styles
   ============================================================= */

/* ── Shared section helpers ── */
.neo-section {
    padding: 48px 0;
}
.neo-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.neo-section-header--centered {
    justify-content: center;
    text-align: center;
}
.neo-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.3px;
}
.neo-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neo-blue);
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}
.neo-section-link:hover { opacity: 0.75; }
.neo-section-link svg { width: 16px; height: 16px; }

/* ── Buttons ── */
.neo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: linear-gradient(135deg, var(--neo-blue), #0090e8);
    color: #031321;
    font-weight: 700;
    font-size: 15px;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}
.neo-btn-primary svg { width: 17px; height: 17px; }
.neo-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(62,160,255,0.35);
    opacity: 1;
}
.neo-btn-primary--large { padding: 16px 32px; font-size: 16px; }

.neo-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.18);
    color: #d6e8ff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.neo-btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.30);
    opacity: 1;
}
.neo-btn-ghost--large { padding: 16px 32px; font-size: 16px; }

/* ── HERO ── */
.neo-hero {
    position: relative;
    padding: 80px 0 56px;
    overflow: hidden;
}
.neo-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.neo-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(62,160,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62,160,255,0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}
.neo-hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(62,160,255,0.18) 0%, rgba(0,0,255,0.06) 40%, transparent 70%);
}
.neo-hero-glow-2 {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0,196,180,0.08) 0%, transparent 70%);
}
.neo-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}
.neo-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(62,160,255,0.10);
    border: 1px solid rgba(62,160,255,0.28);
    color: var(--neo-blue-2);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}
.neo-hero-headline {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -1px;
    color: #fff;
    margin: 0 0 24px;
}
.neo-hero-accent {
    background: linear-gradient(90deg, var(--neo-blue), var(--neo-blue-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.neo-hero-sub {
    max-width: 520px;
    font-size: 1.1rem;
    color: var(--neo-muted);
    line-height: 1.7;
    margin: 0 0 38px;
}
.neo-hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}
.neo-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    padding: 22px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}
.neo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}
.neo-stat-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
    margin-bottom: 4px;
}
.neo-stat-label {
    font-size: 12px;
    color: var(--neo-muted);
    font-weight: 500;
    white-space: nowrap;
}
.neo-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.10);
    flex-shrink: 0;
}

/* ── TRUST BAR ── */
.neo-trust-bar {
    background: rgba(255,255,255,0.025);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.neo-trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 32px;
}
.neo-trust-bar-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 500;
    color: #c8d9ee;
}
.neo-trust-bar-item svg {
    width: 18px;
    height: 18px;
    color: var(--neo-blue);
    flex-shrink: 0;
}

/* ── CATEGORY GRID (homepage) ── */
.neo-categories-section { padding-top: 40px; }
.neo-hp-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.neo-hp-cat-card {
    display: flex;
    flex-direction: column;
    background: rgba(13,27,47,0.85);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    overflow: hidden;
    color: var(--neo-text);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.neo-hp-cat-card:hover {
    border-color: var(--neo-hover);
    box-shadow: 0 0 0 2px rgba(0,0,255,0.35), 0 12px 32px rgba(0,0,255,0.18);
    transform: translateY(-3px);
    opacity: 1;
}
.neo-hp-cat-img {
    height: 150px;
    overflow: hidden;
}
.neo-hp-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.neo-hp-cat-card:hover .neo-hp-cat-img img { transform: scale(1.06); }
.neo-hp-cat-body {
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 4px 8px;
}
.neo-hp-cat-body h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    font-size: 0.90rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.neo-hp-cat-count {
    grid-column: 1;
    grid-row: 2;
    font-size: 12px;
    color: var(--neo-blue-2);
    font-weight: 600;
}
.neo-hp-cat-arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    color: var(--neo-blue-2);
    flex-shrink: 0;
    transition: background 0.2s ease;
}
.neo-hp-cat-arrow svg { width: 14px; height: 14px; }
.neo-hp-cat-card:hover .neo-hp-cat-arrow {
    background: rgba(0,0,255,0.15);
    border-color: rgba(0,0,255,0.4);
}

/* ── FEATURED PRODUCTS (homepage) ── */
.neo-featured-section { padding-top: 32px; }
.neo-hp-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.neo-hp-product-card {
    display: flex;
    flex-direction: column;
    background: #f4f6f8;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    overflow: hidden;
    color: #1a2533;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}
.neo-hp-product-card:hover {
    border-color: var(--neo-hover);
    box-shadow: 0 0 0 2px rgba(0,0,255,0.25), 0 10px 28px rgba(0,0,255,0.14);
    transform: translateY(-2px);
    opacity: 1;
}
.neo-hp-product-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,0,0,0.02);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.neo-hp-product-img img {
    max-height: 120px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.neo-hp-product-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    text-align: center;
}
.neo-hp-product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a2533;
    margin: 0 0 6px;
    line-height: 1.35;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}
.neo-hp-product-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--neo-blue-2);
    margin-bottom: 12px;
    width: 100%;
}
.neo-hp-product-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.15);
    color: #1a2533;
    font-size: 12.5px;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.neo-hp-product-card:hover .neo-hp-product-btn {
    background: rgba(0,0,255,0.10);
    border-color: rgba(0,0,255,0.35);
    color: #0000cc;
}

/* ── VALUE PILLARS ── */
.neo-pillars-section {
    background: linear-gradient(180deg, transparent, rgba(62,160,255,0.03), transparent);
}
.neo-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.neo-pillar {
    padding: 28px 24px 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.neo-pillar:hover {
    border-color: rgba(0,0,255,0.4);
    transform: translateY(-2px);
}
.neo-pillar-icon {
    margin-bottom: 20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(62,160,255,0.08);
    border: 1px solid rgba(62,160,255,0.18);
    border-radius: 16px;
}
.neo-pillar-icon svg { width: 32px; height: 32px; }
.neo-pillar h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}
.neo-pillar p {
    font-size: 14px;
    color: var(--neo-muted);
    line-height: 1.7;
    margin: 0;
}

/* ── CTA BANNER ── */
.neo-cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    margin-top: 20px;
}
.neo-cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(62,160,255,0.07) 0%, rgba(14,34,60,0.95) 60%);
    border-top: 1px solid rgba(62,160,255,0.15);
    border-bottom: 1px solid rgba(62,160,255,0.15);
}
.neo-cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
}
.neo-cta-copy { flex: unset; min-width: unset; }
.neo-cta-copy h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.3px;
}
.neo-cta-copy p {
    font-size: 1rem;
    color: var(--neo-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 540px;
}
.neo-cta-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

/* ── Homepage responsive ── */
@media (max-width: 1100px) {
    .neo-hp-category-grid { grid-template-columns: repeat(3, 1fr); }
    .neo-hp-products { grid-template-columns: repeat(3, 1fr); }
    .neo-pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .neo-hero { padding: 80px 0 60px; }
    .neo-hero-stats { padding: 18px 20px; gap: 0; }
    .neo-stat { padding: 0 18px; }
    .neo-stat-num { font-size: 1.2rem; }
    .neo-cta-banner-inner { flex-direction: column; text-align: center; }
    .neo-cta-copy p { max-width: 100%; }
    .neo-cta-actions { justify-content: center; }
}
@media (max-width: 767px) {
    .neo-section { padding: 56px 0; }
    .neo-section-title { font-size: 1.45rem; }
    .neo-hp-category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .neo-hp-cat-img { height: 120px; }
    .neo-hp-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .neo-pillars-grid { grid-template-columns: 1fr; gap: 14px; }
    .neo-trust-bar-inner { gap: 10px 20px; }
    .neo-hero-stats { flex-direction: column; gap: 16px; }
    .neo-stat-divider { width: 48px; height: 1px; }
}

/* ── Standard WordPress pages (FAQ, About, etc.) ── */
/* page.php renders neo-page-wrap > neo-container, same pattern as woocommerce.php.
   No Storefront layout machinery involved — these are clean standalone rules. */
.neo-page-wrap {
    padding: 40px 0 80px;
}
.neo-page-header {
    margin-bottom: 28px;
    border-bottom: 1px solid var(--neo-border);
    padding-bottom: 16px;
}
.neo-page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neo-text);
    margin: 0;
}
.neo-page-content {
    color: var(--neo-text);
    line-height: 1.8;
}
.neo-page-content p {
    margin-bottom: 1.2em;
}
.neo-page-content strong,
.neo-page-content b {
    color: #fff;
}
