@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Archivo+Black&display=swap");

:root {
    --black: #08090c;
    --panel: rgba(255,255,255,0.055);
    --panel-2: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
    --white: #f3f5f8;
    --gray: #9499a6;
    --orange: #ff6b00;
    --orange-l: #ff8a33;
    --hivis: #d4ff2e;
    --primary: var(--orange);
    --primary-dark: #d95700;
    --secondary: var(--black);
    --accent: var(--hivis);
    --text: var(--white);
    --text-light: var(--gray);
    --bg: var(--black);
    --bg-light: rgba(255,255,255,0.045);
    --border: var(--glass-border);
    --success: #35d07f;
    --error: #ff5b68;
    --shadow: 0 12px 50px rgba(0,0,0,.35);
    --shadow-lg: 0 22px 70px rgba(0,0,0,.48);
    --radius: 20px;
    --container: 1180px;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

* {
    letter-spacing: 0;
}

html {
    background: var(--black);
    scroll-padding-top: 120px;
}

body {
    font-family: "Archivo", Inter, sans-serif;
    color: var(--white);
    background: var(--black);
    line-height: 1.5;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 84% 0%, rgba(255,107,0,.22), transparent 32%),
        radial-gradient(circle at 0% 88%, rgba(29,78,216,.18), transparent 30%),
        radial-gradient(circle at 55% 48%, rgba(212,255,46,.065), transparent 32%),
        var(--black);
}

.atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.atmosphere .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.atmosphere .blob-a {
    width: 520px;
    height: 520px;
    right: -90px;
    top: -170px;
    background: var(--orange);
    opacity: .30;
}

.atmosphere .blob-b {
    width: 460px;
    height: 460px;
    left: -120px;
    bottom: -140px;
    background: #1d4ed8;
    opacity: .25;
}

.atmosphere .blob-c {
    width: 390px;
    height: 390px;
    left: 52%;
    top: 45%;
    background: var(--hivis);
    opacity: .085;
}

body > main,
body > section,
body > footer {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container);
    padding-left: 28px;
    padding-right: 28px;
}

h1,
h2,
.display,
.logo,
.section-heading h2,
.products-header h2,
.bulk-header h2,
.page-hero h1,
.panel h2,
.modal-title,
.cart-header h2 {
    font-family: "Archivo Black", "Archivo", sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: .96;
    color: var(--white);
}

a,
button,
input,
select,
textarea {
    font-family: "Archivo", Inter, sans-serif;
}

.top-bar {
    display: none;
}

.top-bar-left i,
.top-bar-right i,
.top-bar a i {
    color: var(--hivis);
}

.top-bar-left span,
.top-bar-right a,
.top-bar a {
    color: rgba(243,245,248,.78);
}

.header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 5000 !important;
    margin: 0 !important;
    transform: none !important;
    background: rgba(20,22,28,.55);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 8px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    transition: background .22s ease, box-shadow .22s ease;
}

.header.is-scrolled {
    background: rgba(20,22,28,.78);
    box-shadow: 0 14px 50px rgba(0,0,0,.48), inset 0 1px 0 rgba(255,255,255,.08);
}

.header-main {
    position: relative;
    z-index: 2;
    min-height: 66px;
    padding: 12px 0;
}

.header .container,
.header .logo,
.header .header-actions {
    visibility: visible !important;
    opacity: 1 !important;
}

.search-bar {
    display: none !important;
}

.header-actions {
    gap: 14px;
}

.nav-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 18px;
    border-radius: 10px;
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    box-shadow: 0 4px 18px rgba(255,107,0,.32);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.nav-quote-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(255,107,0,.45);
}

.logo {
    font-size: 18px;
    color: #fff;
}

.logo i,
.footer-brand h3 i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    box-shadow: 0 4px 14px rgba(255,107,0,.4);
}

.search-bar input,
.form-group input,
.form-group select,
.form-group textarea,
.ctrl-select,
.ctrl-qty,
.modal-qty-input {
    color: var(--white);
    background: rgba(255,255,255,.06);
    border: 1px solid var(--glass-border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.search-bar input::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(148,153,166,.72);
}

.search-bar input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.ctrl-select:focus,
.ctrl-qty:focus,
.modal-qty-input:focus {
    outline: none;
    background: rgba(255,255,255,.09);
    border-color: rgba(255,107,0,.58);
    box-shadow: 0 0 0 4px rgba(255,107,0,.12), inset 0 1px 0 rgba(255,255,255,.09);
}

.search-bar button,
.btn-primary,
.checkout-btn,
.modal-add-cart,
.add-to-cart,
.cta a,
.floating-checkout-btn,
.cert-view-btn {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    border: 0;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 4px 18px rgba(255,107,0,.32);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.search-bar button:hover,
.btn-primary:hover,
.checkout-btn:hover,
.modal-add-cart:hover:not(:disabled),
.add-to-cart:hover:not(:disabled),
.cta a:hover,
.floating-checkout-btn:hover,
.cert-view-btn:hover {
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    color: #0a0a0a;
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 10px 32px rgba(255,107,0,.48);
}

.btn-secondary,
.btn-outline,
.quote-email-btn,
.continue-shopping,
.btn-glass {
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.btn-secondary:hover,
.btn-outline:hover,
.quote-email-btn:hover,
.continue-shopping:hover,
.btn-glass:hover {
    color: #fff;
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.25);
    transform: translateY(-2px);
}

.header-action {
    min-height: 38px;
    min-width: 42px;
    flex-direction: row;
    justify-content: center;
    color: var(--gray);
    background: rgba(255,255,255,.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 8px 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-action i,
.mobile-menu-btn {
    color: var(--white);
}

.header-action span:last-child {
    display: none;
}

.cart-count {
    color: #0a0a0a;
    background: var(--orange-l);
    box-shadow: 0 0 16px rgba(255,107,0,.44);
}

.nav {
    position: relative;
    z-index: 1;
    min-height: 64px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,.07);
}

.nav > .container {
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    list-style: none;
}

.nav-list a {
    color: var(--gray);
    padding: 13px 0;
    font-size: 14px;
    font-weight: 700;
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
}

.nav-list a::after {
    height: 1px;
    bottom: 7px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.categories,
.custom-logo-banner,
.pricing-guide {
    display: none;
}

.hero-banner {
    position: relative;
    min-height: max(90vh, 720px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 0;
    padding: 116px 0 0;
    background: var(--black);
}

.hero-bg-image,
.hero-background-fx,
.hero-scrim {
    position: absolute;
    inset: 0;
}

.hero-bg-image {
    z-index: 0;
}

.hero-background-fx {
    background:
        radial-gradient(100% 75% at 78% 26%, rgba(212,255,46,.13), transparent 58%),
        radial-gradient(88% 72% at 25% 70%, rgba(255,107,0,.16), transparent 62%),
        linear-gradient(135deg, #10131a 0%, #090b10 55%, #111017 100%);
}

.hero-background-fx::before,
.hero-background-fx::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 140%;
    height: 46px;
    transform: translateX(-50%) rotate(-8deg);
    background: linear-gradient(90deg, transparent, rgba(220,225,235,.40) 20%, rgba(255,255,255,.74) 50%, rgba(220,225,235,.40) 80%, transparent);
    opacity: .38;
}

.hero-background-fx::before {
    top: 43%;
}

.hero-background-fx::after {
    top: 56%;
}

.hero-fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top, var(--black) 0%, rgba(8,9,12,.88) 30%, transparent 100%);
}

.hero-scrim {
    z-index: 1;
    background:
        linear-gradient(to top, var(--black) 0%, rgba(8,9,12,.82) 18%, rgba(8,9,12,.34) 48%, rgba(8,9,12,.20) 72%, rgba(8,9,12,.56) 100%),
        linear-gradient(90deg, rgba(8,9,12,.76), rgba(8,9,12,.18) 60%, rgba(8,9,12,.52));
}

/* reflective-reveal canvas: the hi-vis vest close-up, pinned right */
.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-fade-bottom {
    z-index: 1;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--hivis);
    background: rgba(212,255,46,.08);
    border: 1px solid rgba(212,255,46,.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hivis);
    box-shadow: 0 0 10px var(--hivis);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    padding-bottom: 76px;
}

.hero-text {
    max-width: 760px;
    text-align: left;
    transform: translateY(-42px);
}

.hero-badge,
.section-heading .eyebrow,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--hivis);
    background: rgba(212,255,46,.08);
    border: 1px solid rgba(212,255,46,.22);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-badge i,
.section-heading .eyebrow i,
.eyebrow i {
    color: var(--hivis);
}

.hero-banner h1 {
    max-width: 760px;
    margin-top: 0;
    font-size: clamp(48px, 8vw, 104px);
    line-height: .95;
}

.hero-banner h1::after {
    content: ".";
    color: var(--orange);
}

.hero-banner h1::first-line {
    color: #fff;
}

.hero-banner p {
    max-width: 560px;
    margin: 24px 0 34px;
    color: #c7cbd4;
    font-size: 18px;
    opacity: 1;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.glass-stat-wrap {
    position: relative;
    z-index: 4;
    margin-top: -14px;
}

.glass-stat-strip {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    background: rgba(20,22,28,.50);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    box-shadow: 0 18px 60px rgba(0,0,0,.50), inset 0 1px 0 rgba(255,255,255,.08);
}

.glass-stat {
    padding: 24px 18px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.07);
}

.glass-stat:last-child {
    border-right: 0;
}

.glass-stat strong {
    display: block;
    font-family: "Archivo Black", "Archivo", sans-serif;
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.glass-stat strong span {
    color: var(--orange);
}

.glass-stat small {
    display: block;
    margin-top: 8px;
    color: var(--gray);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.categories,
.products,
.pricing-guide,
.trust-section,
.features,
.bulk-section,
.content,
.custom-logo-banner {
    position: relative;
    background: transparent;
}

.categories,
.pricing-guide,
.products,
.trust-section,
.features,
.bulk-section {
    padding-top: 84px;
    padding-bottom: 84px;
}

.section-tag {
    display: block;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.products-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    max-width: none;
    margin: 0 0 7px;
    text-align: left;
}

.products-filter {
    justify-content: flex-end;
    margin-top: 0;
}

.products {
    padding-top: 24px;
    padding-bottom: 52px;
}

.products .section-tag {
    margin-bottom: 3px;
    font-size: 9px;
}

.products-header h2 {
    font-size: 25px !important;
    line-height: 1.08;
}

.products-header p {
    max-width: 620px;
    font-size: 11px;
    line-height: 1.3;
}

.products .filter-btn {
    padding: 6px 14px;
    font-size: 11px;
}

.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.custom-logo-banner {
    margin: 0;
    padding: 84px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 50px;
}

.section-heading h2,
.products-header h2,
.bulk-header h2 {
    font-size: clamp(30px, 4.6vw, 48px) !important;
}

.section-heading p,
.products-header p,
.bulk-header p,
.panel p,
.pricing-tier-card p,
.pricing-note-item p,
.trust-card p,
.testimonial-card p,
.metric-card span,
.feature-content p,
.contact-card > p,
.contact-hours,
.modal-description,
.modal-category,
.product-category,
.cart-item-variant,
.remove-item,
.form-note,
.cert-copy {
    color: var(--gray) !important;
}

.category-card,
.product-card,
.pricing-tier-card,
.pricing-note-item,
.feature-box,
.cert-placeholder,
.cert-card,
.trust-card,
.metric-card,
.testimonial-card,
.bulk-form,
.contact-card,
.panel,
.summary-card,
.logo-banner-content {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    background: var(--panel);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 12px 50px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.07);
    transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.category-card:hover,
.product-card:hover,
.pricing-tier-card:hover,
.pricing-note-item:hover,
.feature-box:hover,
.cert-card:hover,
.cert-placeholder:hover,
.trust-card:hover,
.metric-card:hover,
.testimonial-card:hover,
.panel:hover {
    transform: translateY(-5px);
    background: var(--panel-2);
    border-color: rgba(255,255,255,.20);
    box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(255,107,0,.18), inset 0 1px 0 rgba(255,255,255,.10);
}

.category-icon,
.feature-icon,
.trust-card i,
.logo-icon,
.cert-placeholder i {
    color: var(--hivis);
    background: rgba(212,255,46,.08);
    border: 1px solid rgba(212,255,46,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.category-card h3,
.feature-content h3,
.product-title,
.pricing-tier-card h3,
.pricing-note-item h4,
.trust-card h3,
.testimonial-card h3,
.contact-card h3,
.panel h2,
.panel h3 {
    color: var(--white) !important;
}

.product-card {
    min-height: 100%;
}

.product-image {
    aspect-ratio: 1;
    min-height: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    background:
        radial-gradient(circle at 50% 42%, rgba(212,255,46,.12), transparent 46%),
        linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
}

.product-image::before {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,.16), transparent 70%);
    filter: blur(18px);
    opacity: .8;
    transition: transform .28s ease, opacity .28s ease;
}

.product-image img {
    position: relative;
    z-index: 1;
    max-height: 220px;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,.44));
}

.product-card:hover .product-image::before {
    transform: scale(1.08);
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.controls-grid,
.ctrl-qty,
.stock-display,
.product-actions {
    position: relative;
    z-index: 2;
}

.controls-grid {
    margin-top: 16px;
}

.add-to-cart {
    width: 100%;
    min-height: 42px;
}

.product-category,
.price-label,
.card .cat {
    font-size: 11px;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-title {
    font-size: 17px;
}

.product-cert,
#modalCertification {
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-cert-corner {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    max-width: calc(100% - 28px);
    margin: 0;
    padding: 6px 11px;
}

.product-cert-corner i {
    font-size: 8px;
}

.product-quick-view {
    display: none;
}

.product-cert i,
#modalCertification i {
    color: var(--hivis);
}

.price-tier,
.modal-price-tier {
    color: rgba(243,245,248,.88);
    border-bottom-color: rgba(255,255,255,.08);
}

.price-tier strong,
.modal-price-tier span:last-child,
.cart-item-price {
    color: var(--white);
}

.price-tier.highlight,
.modal-price-tier.highlight {
    color: #0a0a0a;
    background: linear-gradient(135deg, rgba(255,107,0,.95), rgba(255,138,51,.95));
    border: 0;
}

.price-tier.highlight span,
.price-tier.highlight strong,
.modal-price-tier.highlight span {
    color: #0a0a0a;
}

.filter-btn {
    color: var(--gray);
    background: rgba(255,255,255,.055);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
}

.filter-btn:hover,
.filter-btn.active {
    color: #0a0a0a;
    border-color: transparent;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    box-shadow: 0 6px 24px rgba(255,107,0,.34);
}

.cert-grid {
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-section {
    padding-top: 20px;
}

.trust-grid {
    gap: 26px;
}

.trust-proof-grid,
.metrics-grid,
.testimonial-grid {
    display: none;
}

.values-section {
    padding-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    background: var(--panel);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 12px 50px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.07);
}

.feature-box {
    display: block;
    box-shadow: none;
    border-color: transparent;
    background: transparent;
    padding: 30px 24px;
}

.feature-box:hover {
    background: rgba(255,255,255,.04);
    box-shadow: none;
    border-color: transparent;
}

.feature-icon {
    margin-bottom: 15px;
}

.cert-card {
    display: flex;
    flex-direction: column;
}

.cert-photo {
    position: relative;
    display: grid;
    min-height: 210px;
    aspect-ratio: 4 / 3;
    place-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background:
        repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0 14px, transparent 14px 28px),
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}

.cert-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 12px;
    background: #fff;
}

.cert-photo-label {
    max-width: 230px;
    padding: 0 18px;
    text-align: center;
    color: rgba(255,255,255,.42);
}

.cert-photo-label i {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.48);
    font-size: 30px;
}

.cert-photo-label span {
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cert-seal {
    position: absolute;
    top: 14px;
    right: 14px;
    color: var(--hivis);
    background: rgba(212,255,46,.10);
    border: 1px solid rgba(212,255,46,.25);
    border-radius: 7px;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cert-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.cert-body h3 {
    margin-bottom: 10px;
    color: #fff;
    font-family: "Archivo Black", "Archivo", sans-serif;
    font-size: 18px;
    line-height: .98;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.cert-body h3 span {
    color: var(--orange);
}

.cert-copy {
    flex: 1;
    margin-bottom: 16px;
    font-size: 14px;
}

.cert-view-btn {
    align-self: flex-start;
    padding: 10px 16px;
    font-size: 12px;
}

.cert-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-pdf-link,
.cert-lightbox-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    transition: .2s ease;
}

.cert-pdf-link:hover,
.cert-lightbox-pdf:hover {
    color: #0a0a0a;
    border-color: var(--orange);
    background: var(--orange);
}

.cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.cert-lightbox.active {
    display: flex;
}

.cert-lightbox-panel {
    position: relative;
    width: min(760px, 100%);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    background: rgba(20,22,28,.82);
    box-shadow: 0 26px 80px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    padding: 24px;
}

.cert-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid var(--glass-border);
}

.cert-lightbox-title {
    padding-right: 52px;
    margin-bottom: 18px;
    font-family: "Archivo Black", "Archivo", sans-serif;
    text-transform: uppercase;
}

.cert-lightbox-image {
    min-height: 360px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.56);
    text-align: center;
    padding: 24px;
}

.cert-lightbox-image img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 12px;
}

.cert-lightbox-pdf {
    margin-top: 16px;
    border-color: rgba(255,107,0,.45);
}

@media (max-width: 1050px) {
    .cert-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Keep the fixed navigation from covering the first hero label. */
.hero-banner {
    min-height: max(100vh, 860px);
    align-items: center;
    padding-top: 150px;
    padding-bottom: 54px;
}

.hero-content {
    padding-top: 24px;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: max(100svh, 720px);
        align-items: flex-start;
        padding-top: 142px;
        padding-bottom: 58px;
    }

    .hero-content {
        padding-top: 22px;
    }

    .hero-text {
        transform: translateY(-18px);
    }
}

.bulk-section {
    padding-top: 40px;
    padding-bottom: 96px;
}

.bulk-section .container {
    max-width: 1180px;
}

.bulk-header {
    position: relative;
    max-width: none;
    margin: 0;
    padding: 70px 40px 28px;
    border: 1px solid var(--glass-border);
    border-bottom: 0;
    border-radius: 26px 26px 0 0;
    background: linear-gradient(120deg, rgba(255,107,0,.16), rgba(29,78,216,.12));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 16px 60px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.08);
}

.bulk-grid {
    grid-template-columns: 1.15fr .85fr !important;
    gap: 18px;
    padding: 0 18px 18px;
    border: 1px solid var(--glass-border);
    border-top: 0;
    border-radius: 0 0 26px 26px;
    background: linear-gradient(120deg, rgba(255,107,0,.10), rgba(29,78,216,.08));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 16px 60px rgba(0,0,0,.40);
}

.bulk-form,
.contact-card {
    box-shadow: none;
}

.custom-logo-banner .btn {
    color: #0a0a0a;
}

.logo-banner-content {
    border-left: 1px solid var(--glass-border);
}

.footer {
    background: rgba(255,255,255,.02);
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-column ul li,
.footer-column ul li a,
.footer-brand p,
.footer-bottom {
    color: var(--gray);
    opacity: 1;
}

.footer-column ul li a:hover {
    color: var(--orange);
}

.social-links a {
    background: rgba(255,255,255,.06);
    border: 1px solid var(--glass-border);
}

.social-links a:hover {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
}

.cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    z-index: 6000 !important;
    background: rgba(0,0,0,.66);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cart-sidebar,
.modal-content {
    color: var(--white);
    background: rgba(20,22,28,.82);
    border: 1px solid var(--glass-border);
    box-shadow: -24px 0 70px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.cart-sidebar {
    position: fixed !important;
    top: 0 !important;
    right: -460px !important;
    bottom: auto !important;
    left: auto !important;
    width: min(440px, 100vw) !important;
    max-width: 440px !important;
    height: 100vh !important;
    max-height: none !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 6001 !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 0 !important;
}

.cart-sidebar.active {
    right: 0 !important;
}

.cart-header,
.cart-footer,
.cart-item,
.modal-pricing,
.modal-gallery {
    background: rgba(255,255,255,.045);
    border-color: rgba(255,255,255,.08);
}

.cart-item-title,
.cart-subtotal span:last-child {
    color: #fff;
}

.cart-item-image,
.modal-thumb,
.qty-btn,
.modal-close {
    color: #fff;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--glass-border);
}

.modal-thumb:hover,
.modal-thumb.active,
.qty-btn:hover,
.modal-close:hover {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
}

.stock-badge,
.modal-stock-badge {
    color: #111;
    background: var(--hivis);
}

.stock-badge.low,
.toast.error {
    color: #fff;
    background: var(--error);
}

.stock-badge.empty {
    color: var(--gray);
    background: rgba(255,255,255,.07);
}

.toast {
    color: #fff;
    background: rgba(20,22,28,.88);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.toast.success {
    color: #0a0a0a;
    background: var(--hivis);
}

.whatsapp-float {
    position: fixed !important;
    left: auto !important;
    right: 25px !important;
    bottom: 25px !important;
    width: auto !important;
    max-width: calc(100vw - 50px) !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 12px 18px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    z-index: 998 !important;
    color: #06140b;
    background: linear-gradient(135deg, #25d366, #8df8b2);
}

.floating-checkout-btn {
    display: none !important;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 90px;
    background:
        radial-gradient(circle at 78% 20%, rgba(255,107,0,.18), transparent 34%),
        radial-gradient(circle at 12% 78%, rgba(29,78,216,.16), transparent 34%),
        var(--black);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(to top, var(--black), transparent);
}

.page-hero .container {
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(38px, 6vw, 72px);
}

.page-hero p {
    color: #c7cbd4;
}

.content {
    background: transparent;
}

.stat {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-left-color: rgba(255,107,0,.45);
    border-radius: 16px;
}

.stat strong {
    color: #fff;
}

.stat span,
.check-list li,
.policy-list li,
.steps li {
    color: var(--gray);
}

.check-list i,
.policy-list i {
    color: var(--hivis);
}

.steps li::before {
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
}

.visual-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

.visual-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.visual-reveal.is-visible:hover.product-card,
.visual-reveal.is-visible:hover.category-card,
.visual-reveal.is-visible:hover.pricing-tier-card,
.visual-reveal.is-visible:hover.pricing-note-item,
.visual-reveal.is-visible:hover.feature-box,
.visual-reveal.is-visible:hover.cert-card,
.visual-reveal.is-visible:hover.trust-card,
.visual-reveal.is-visible:hover.metric-card,
.visual-reveal.is-visible:hover.testimonial-card,
.visual-reveal.is-visible:hover.panel {
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .hero-banner {
        min-height: 86vh;
    }

    .hero-content {
        padding-bottom: 64px;
    }

    .hero-banner h1 {
        font-size: clamp(44px, 12vw, 72px);
    }

    .hero-text {
        text-align: left;
    }

    .glass-stat-strip {
        max-width: 520px;
        grid-template-columns: 1fr;
    }

    .glass-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .glass-stat:last-child {
        border-bottom: 0;
    }

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

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

    .bulk-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav {
        background: rgba(20,22,28,.92);
    }

    /* mobile: collapse the nav behind the hamburger on pages that have one
       (the secondary policy pages use a scrollable inline nav, so leave them) */
    body:not(.secondary-page) .nav {
        display: none;
    }

    body:not(.secondary-page) .nav.open {
        display: flex;
    }

    .hero-banner {
        padding-top: 66px;
    }

    .page-hero {
        padding-top: 130px;
        padding-bottom: 72px;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: transparent;
    }

    .nav-list a {
        display: block;
        padding: 13px 8px;
    }

    .top-bar-left span {
        display: inline-flex;
        margin: 0 12px 6px 0;
    }

    .products-filter {
        width: 100%;
    }

    .filter-btn {
        flex: 1 1 auto;
    }

    .quote-actions {
        grid-template-columns: 1fr;
    }

    .nav-quote-btn {
        display: none;
    }
}

@media (max-width: 560px) {
    .hero-banner {
        min-height: 82vh;
    }

    .hero-replace-note {
        top: 82px;
        width: calc(100% - 40px);
        text-align: center;
    }

    .hero-banner h1 {
        font-size: 42px;
    }

    .hero-banner p {
        font-size: 16px;
    }

    .hero-cta .btn,
    .hero-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .products-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .bulk-header {
        padding: 48px 22px 24px;
    }

    .bulk-grid {
        padding: 0 10px 10px;
    }

    .category-card,
    .product-card,
    .pricing-tier-card,
    .pricing-note-item,
    .feature-box,
    .cert-card,
    .cert-placeholder,
    .trust-card,
    .metric-card,
    .testimonial-card,
    .bulk-form,
    .contact-card,
    .panel,
    .summary-card,
    .logo-banner-content {
        border-radius: 16px;
    }
}

.product-carousel-shell {
    position: relative;
}

.product-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 6px;
}

.carousel-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255,255,255,.07);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.24);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.carousel-arrow:hover {
    transform: translateY(-2px);
    border-color: rgba(255,107,0,.58);
    background: rgba(255,107,0,.16);
    box-shadow: 0 10px 28px rgba(255,107,0,.18), inset 0 1px 0 rgba(255,255,255,.12);
}

.products-grid {
    display: grid !important;
    grid-template-columns: none !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(360px, 390px);
    align-items: stretch;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px 4px 30px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,107,0,.55) rgba(255,255,255,.06);
    overscroll-behavior-inline: contain;
}

.products-grid::-webkit-scrollbar {
    height: 7px;
}

.products-grid::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255,255,255,.05);
}

.products-grid::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--orange-l));
}

.products-grid .product-card {
    width: 100%;
    min-height: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 20px;
}

.products-grid .product-image {
    height: 360px;
    aspect-ratio: auto;
    padding: 30px 8px 6px;
}

.products-grid .product-image img {
    width: 100%;
    height: 100%;
    max-width: 366px;
    max-height: 324px;
    object-fit: contain;
}

.products-grid .product-info {
    padding: 8px 14px 10px;
}

.products-grid .product-category {
    margin-bottom: 2px;
    font-size: 9px;
}

.products-grid .product-title {
    min-height: 23px;
    margin-bottom: 3px;
    font-size: 14px;
    line-height: 1.16;
}

.product-price-summary {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 3px;
    color: var(--gray);
}

.product-price-summary span,
.product-price-summary small {
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-price-summary strong {
    color: var(--white);
    font-size: 20px;
    line-height: 1;
}

.price-tier-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px 7px;
    margin-bottom: 6px;
    color: var(--gray);
    font-size: 8px;
}

.price-tier-strip::before {
    content: "Volume pricing:";
    color: rgba(243,245,248,.48);
    font-weight: 700;
}

.price-tier-strip > span {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(243,245,248,.72);
    background: transparent;
    font-size: 8px;
    font-weight: 700;
    text-align: left;
}

.price-tier-strip small {
    display: inline;
    margin: 0;
    color: rgba(243,245,248,.46);
    font-size: 7px;
    font-weight: 600;
}

.price-tier-strip .best {
    color: rgba(243,245,248,.72);
    border: 0;
    background: transparent;
}

.price-tier-strip .best small {
    color: rgba(243,245,248,.46);
}

.feature-box:hover,
.visual-reveal.is-visible:hover.feature-box {
    transform: none !important;
}

.product-option-block {
    padding: 4px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 3px;
    color: var(--gray);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.option-heading strong {
    max-width: 70%;
    overflow: hidden;
    color: var(--white);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.color-options,
.size-options {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.color-swatch {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.045);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.color-swatch span {
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid rgba(255,255,255,.52);
    border-radius: 50%;
    background: var(--swatch);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.28);
}

.color-swatch:hover {
    transform: scale(1.06);
    border-color: rgba(255,255,255,.38);
}

.color-swatch.active {
    border-color: var(--orange-l);
    box-shadow: 0 0 0 2px rgba(255,107,0,.24), 0 0 18px rgba(255,107,0,.22);
}

.size-option {
    min-width: 34px;
    height: 30px;
    padding: 0 6px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255,255,255,.045);
    font-size: 10px;
    font-weight: 800;
    transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.size-option:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.09);
}

.size-option.active {
    color: #0a0a0a;
    border-color: var(--orange-l);
    background: linear-gradient(135deg, var(--orange), var(--orange-l));
    box-shadow: 0 5px 18px rgba(255,107,0,.26);
}

.size-option:disabled {
    position: relative;
    opacity: .28;
    cursor: not-allowed;
    text-decoration: line-through;
}

.purchase-row {
    display: grid;
    grid-template-columns: auto 58px 1fr;
    align-items: center;
    gap: 7px;
    margin: 0 0 5px;
}

.purchase-row label {
    color: var(--gray);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.purchase-row .ctrl-qty {
    width: 58px;
    height: 30px;
    margin: 0;
    padding: 5px 8px;
    text-align: center;
}

.purchase-row .stock-badge {
    justify-self: end;
    white-space: nowrap;
    font-size: 10px;
}

.products-grid .add-to-cart {
    min-height: 36px;
    border-radius: 9px;
    font-size: 11px;
}

@media (max-width: 768px) {
    .products-header {
        display: block;
        margin-bottom: 12px;
        text-align: center;
    }

    .products-filter {
        justify-content: center;
        margin-top: 10px;
    }

    .product-carousel-controls {
        margin-top: -2px;
    }

    .products-grid {
        grid-auto-columns: minmax(310px, 88vw);
        gap: 16px;
        margin-right: 0;
        padding-right: 4px;
    }

    .products-grid .product-image {
        height: 350px;
    }
}

@media (max-width: 420px) {
    .toast {
        right: auto;
        left: 20px;
        width: calc(100% - 40px);
        margin: 0;
    }

    .products-grid {
        grid-auto-columns: 88vw;
    }

    .products-grid .product-image {
        height: 345px;
        padding: 28px 7px 6px;
    }

    .products-grid .product-info {
        padding: 10px 14px 12px;
    }

    .purchase-row {
        grid-template-columns: auto 54px 1fr;
    }

    .purchase-row .ctrl-qty {
        width: 54px;
    }
}

/* Compact catalog viewport: keep the full purchasing card visible on common desktop screens. */
.products-header h2 {
    font-size: 24px !important;
    white-space: nowrap;
}

.products-grid .product-image {
    height: 345px;
}

.products-grid .product-image img {
    max-height: 310px;
}

@media (min-width: 769px) {
    .products-header p {
        white-space: nowrap;
    }

    .product-carousel-controls {
        position: absolute;
        inset: 0;
        z-index: 8;
        display: block;
        margin: 0;
        pointer-events: none;
    }

    .carousel-arrow {
        position: absolute;
        top: 43%;
        pointer-events: auto;
    }

    .carousel-arrow:first-child {
        left: -18px;
    }

    .carousel-arrow:last-child {
        right: -18px;
    }
}

@media (max-width: 768px) {
    .products-header h2 {
        font-size: 23px !important;
        white-space: normal;
    }

    .products-grid .product-image {
        height: 345px;
    }
}

/* Restore the original centered catalog introduction while keeping compact product cards. */
.products {
    padding-top: 84px;
    padding-bottom: 84px;
}

.products-header {
    display: block;
    max-width: 680px;
    margin: 0 auto 50px;
    text-align: center;
}

.products .section-tag {
    margin-bottom: 14px;
    font-size: 12px;
}

.products-header h2 {
    font-size: clamp(30px, 4.6vw, 48px) !important;
    line-height: 1.05;
    white-space: normal;
}

.products-header p {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
}

.products-filter {
    justify-content: center;
    margin-top: 22px;
}

.products .filter-btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* Improve catalog card readability without returning to the oversized card layout. */
.products-grid .product-cert {
    font-size: 11px;
}

.products-grid .product-category {
    font-size: 10px;
}

.products-grid .product-title {
    font-size: 16px;
    line-height: 1.15;
}

.product-price-summary span,
.product-price-summary small {
    font-size: 9px;
}

.product-price-summary strong {
    font-size: 24px;
}

.price-tier-strip,
.price-tier-strip > span {
    font-size: 9px;
}

.price-tier-strip small {
    font-size: 8px;
}

.option-heading {
    font-size: 10px;
}

.option-heading strong {
    font-size: 11px;
}

.size-option {
    font-size: 11px;
}

.purchase-row label {
    font-size: 10px;
}

.purchase-row .ctrl-qty {
    font-size: 13px;
}

.purchase-row .stock-badge {
    font-size: 11px;
}

.products-grid .add-to-cart {
    font-size: 12px;
}

/* Balanced product-card layout: clearer hierarchy with comfortable spacing. */
.products-grid .product-info {
    padding: 16px 18px 17px;
}

.product-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 14px;
    margin-bottom: 10px;
}

.product-heading-copy {
    min-width: 0;
}

.products-grid .product-category {
    margin-bottom: 4px;
    font-size: 10px;
}

.products-grid .product-title {
    min-height: 0;
    margin: 0;
    display: -webkit-box;
    min-height: 41px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 17px;
    line-height: 1.2;
}

.product-price-summary {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    justify-content: end;
    gap: 2px 5px;
    margin: 0;
    text-align: right;
}

.product-price-summary span {
    grid-column: 1;
    font-size: 9px;
}

.product-price-summary strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 25px;
}

.product-price-summary small {
    grid-column: 1;
    font-size: 8px;
    white-space: nowrap;
}

.price-tier-strip {
    gap: 6px 12px;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 10px;
}

.price-tier-strip::before,
.price-tier-strip > span {
    font-size: 10px;
}

.price-tier-strip small {
    font-size: 9px;
}

.product-option-block {
    padding: 8px 0;
    border-top: 0;
}

.product-option-block + .product-option-block {
    border-top: 1px solid rgba(255,255,255,.07);
}

.option-heading {
    margin-bottom: 6px;
    font-size: 10px;
}

.option-heading strong {
    font-size: 11px;
}

.color-options,
.size-options {
    gap: 7px;
}

.color-swatch {
    width: 34px;
    height: 34px;
}

.color-swatch span {
    width: 22px;
    height: 22px;
}

.size-option {
    min-width: 39px;
    height: 34px;
    padding: 0 8px;
    font-size: 11px;
}

.purchase-row {
    grid-template-columns: auto 62px 1fr;
    gap: 9px;
    margin: 6px 0 8px;
}

.purchase-row label {
    font-size: 10px;
}

.purchase-row .ctrl-qty {
    width: 62px;
    height: 34px;
    font-size: 13px;
}

.purchase-row .stock-badge {
    font-size: 11px;
}

.products-grid .add-to-cart {
    min-height: 42px;
    font-size: 12px;
}

.products-grid .product-actions {
    margin-top: 4px;
}

.products-grid .product-image {
    height: 335px;
}

.products-grid .product-image img {
    max-height: 300px;
}

@media (max-width: 420px) {
    .products-grid .product-info {
        padding: 14px 15px 15px;
    }

    .product-summary {
        gap: 10px;
    }

    .products-grid .product-title {
        font-size: 16px;
    }

    .product-price-summary strong {
        font-size: 23px;
    }

    .products-grid .product-image {
        height: 330px;
    }
}

/* Spacious catalog cards: larger typography and controls with a calmer rhythm. */
.products-grid {
    grid-auto-columns: minmax(390px, 430px);
    gap: 26px;
}

.products-grid .product-card {
    border-radius: 20px;
}

.products-grid .product-image {
    height: 385px;
    padding: 40px 14px 10px;
}

.products-grid .product-image img {
    max-width: 390px;
    max-height: 340px;
}

.products-grid .product-info {
    padding: 21px 22px 22px;
}

.product-summary {
    align-items: end;
    gap: 20px;
    margin-bottom: 15px;
}

.products-grid .product-category {
    margin-bottom: 5px;
    font-size: 11px;
}

.products-grid .product-title {
    min-height: 45px;
    font-size: 19px;
    line-height: 1.18;
}

.product-price-summary {
    display: inline-flex;
    grid-template-columns: none;
    align-items: baseline;
    align-self: end;
    justify-content: flex-end;
    gap: 7px;
    margin: 0 0 2px;
    white-space: nowrap;
}

.product-price-summary span {
    grid-column: auto;
    font-size: 11px;
}

.product-price-summary strong {
    grid-column: auto;
    grid-row: auto;
    font-size: 30px;
}

.price-tier-strip {
    gap: 7px 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
}

.price-tier-strip::before,
.price-tier-strip > span {
    font-size: 11px;
}

.price-tier-strip small {
    font-size: 10px;
}

.product-option-block {
    padding: 12px 0;
}

.option-heading {
    margin-bottom: 9px;
    font-size: 12px;
}

.option-heading strong {
    font-size: 13px;
}

.color-options,
.size-options {
    gap: 9px;
}

.color-swatch {
    width: 39px;
    height: 39px;
}

.color-swatch span {
    width: 25px;
    height: 25px;
}

.size-option {
    min-width: 45px;
    height: 39px;
    padding: 0 10px;
    font-size: 12px;
}

.purchase-row {
    grid-template-columns: auto 70px 1fr;
    gap: 11px;
    margin: 10px 0 12px;
}

.purchase-row label {
    font-size: 12px;
}

.purchase-row .ctrl-qty {
    width: 70px;
    height: 39px;
    font-size: 15px;
}

.purchase-row .stock-badge {
    font-size: 12px;
}

.products-grid .product-actions {
    margin-top: 8px;
}

.products-grid .add-to-cart {
    min-height: 49px;
    border-radius: 11px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .products-grid {
        grid-auto-columns: minmax(330px, 92vw);
        gap: 18px;
    }

    .products-grid .product-image {
        height: 365px;
        padding: 38px 10px 8px;
    }

    .products-grid .product-info {
        padding: 19px 19px 20px;
    }
}

@media (max-width: 420px) {
    .products-grid {
        grid-auto-columns: 92vw;
    }

    .products-grid .product-image {
        height: 360px;
    }

    .product-summary {
        gap: 12px;
    }

    .products-grid .product-title {
        min-height: 43px;
        font-size: 18px;
    }

    .product-price-summary strong {
        font-size: 27px;
    }
}

/* Keep every available size on a single compact row. */
.size-picker .size-options {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
}

.size-picker .size-option {
    flex: 1 1 0;
    min-width: 0;
    max-width: 48px;
    height: 34px;
    padding: 0 3px;
    font-size: 10px;
}

.size-picker .size-option[data-size="Standard"] {
    flex: 0 0 auto;
    width: auto;
    min-width: 78px;
    max-width: none;
    padding: 0 12px;
}

/* Secondary pages: continuous hero, editorial content, and fewer boxed surfaces. */
.secondary-page {
    --page-accent-rgb: 255,107,0;
    --page-secondary-rgb: 29,78,216;
    background:
        linear-gradient(180deg, #0a0b0f 0%, #08090c 42%, #090a0d 100%);
}

.secondary-page.shipping-page {
    --page-accent-rgb: 212,255,46;
    --page-secondary-rgb: 255,107,0;
}

.secondary-page.returns-page {
    --page-accent-rgb: 255,107,0;
    --page-secondary-rgb: 72,94,255;
}

.secondary-page .header {
    background:
        linear-gradient(90deg, rgba(11,13,19,.88), rgba(18,16,17,.82)) !important;
    border-bottom-color: transparent;
    box-shadow: none;
}

.secondary-page .header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -34px;
    left: 0;
    height: 35px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10,11,15,.66), transparent);
}

.secondary-page .header.is-scrolled {
    background: rgba(13,14,19,.88) !important;
    border-bottom-color: rgba(255,255,255,.07);
    box-shadow: 0 14px 42px rgba(0,0,0,.34);
}

.secondary-page .nav {
    border-top-color: rgba(255,255,255,.045);
}

.secondary-page .page-hero {
    min-height: 600px;
    padding-top: 205px;
    padding-bottom: 145px;
    overflow: visible;
    background:
        linear-gradient(180deg, rgba(10,11,15,.2), rgba(8,9,12,.1)),
        radial-gradient(ellipse 72% 88% at 86% 22%, rgba(var(--page-accent-rgb),.19), transparent 66%),
        radial-gradient(ellipse 64% 78% at 10% 82%, rgba(var(--page-secondary-rgb),.15), transparent 70%),
        #08090c;
}

.secondary-page .page-hero::before {
    content: "";
    position: absolute;
    top: 24%;
    right: 0;
    width: 48%;
    height: 52%;
    pointer-events: none;
    opacity: .5;
    background:
        repeating-linear-gradient(122deg, transparent 0 42px, rgba(255,255,255,.035) 43px 44px, transparent 45px 88px);
    mask-image: linear-gradient(90deg, transparent, #000 34%, transparent);
}

.secondary-page .page-hero::after {
    height: 190px;
    bottom: -1px;
    background: linear-gradient(180deg, transparent, rgba(8,9,12,.76) 64%, #08090c);
}

.secondary-page .page-hero .container {
    position: relative;
    max-width: 1160px;
}

.secondary-page .page-hero .container::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: -58px;
    width: min(34vw, 430px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--page-accent-rgb),.8));
    box-shadow: 0 0 28px rgba(var(--page-accent-rgb),.28);
}

.secondary-page .page-hero .eyebrow {
    margin-bottom: 24px;
    color: rgb(var(--page-accent-rgb));
    border-color: rgba(var(--page-accent-rgb),.3);
    background: rgba(var(--page-accent-rgb),.07);
}

.secondary-page .page-hero h1 {
    max-width: 1080px;
    margin-bottom: 22px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .94;
    text-wrap: balance;
}

.secondary-page .page-hero p {
    max-width: 820px;
    color: rgba(213,217,225,.72);
    font-size: 17px;
    line-height: 1.65;
}

.secondary-page .content {
    z-index: 2;
    margin-top: -62px;
    padding: 0 0 120px;
}

.secondary-page .content-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(310px, .72fr);
    gap: clamp(52px, 7vw, 96px);
    max-width: 1160px;
}

.secondary-page .content-grid > div {
    counter-reset: editorial-section;
}

.secondary-page .content-grid > div > .panel {
    counter-increment: editorial-section;
    overflow: visible;
    padding: 44px 0 46px 78px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.11);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: none;
}

.secondary-page .content-grid > div > .panel:first-child {
    border-top-color: rgba(var(--page-accent-rgb),.4);
}

.secondary-page .content-grid > div > .panel + .panel {
    margin-top: 0;
}

.secondary-page .content-grid > div > .panel::before {
    content: "0" counter(editorial-section);
    position: absolute;
    top: 42px;
    left: 0;
    color: rgba(var(--page-accent-rgb),.78);
    font-family: "Archivo Black", "Archivo", sans-serif;
    font-size: 13px;
    letter-spacing: .08em;
}

.secondary-page .content-grid > div > .panel::after {
    content: "";
    position: absolute;
    top: 49px;
    left: 31px;
    width: 28px;
    height: 1px;
    background: rgba(var(--page-accent-rgb),.48);
}

.secondary-page .content-grid > div > .panel:hover,
.secondary-page .visual-reveal.is-visible:hover.panel {
    transform: none;
    border-color: rgba(255,255,255,.11);
    background: transparent;
    box-shadow: none;
}

.secondary-page .content-grid > div > .panel h2 {
    margin-bottom: 18px;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1;
}

.secondary-page .content-grid > div > .panel p {
    max-width: 720px;
    margin-bottom: 16px;
    color: rgba(199,203,213,.76) !important;
    font-size: 16px;
    line-height: 1.7;
}

.secondary-page .check-list,
.secondary-page .policy-list,
.secondary-page .steps {
    margin-top: 24px;
}

.secondary-page .check-list li,
.secondary-page .policy-list li,
.secondary-page .steps li {
    position: relative;
    margin: 0;
    padding: 15px 0 15px 40px;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(210,214,223,.78);
    font-size: 15px;
    line-height: 1.55;
}

.secondary-page .check-list i,
.secondary-page .policy-list i {
    position: absolute;
    top: 19px;
    left: 2px;
    margin: 0;
}

.secondary-page .steps li {
    display: block;
    padding-left: 48px;
}

.secondary-page .steps li::before {
    position: absolute;
    top: 12px;
    left: 0;
    width: 30px;
    height: 30px;
    color: rgb(var(--page-accent-rgb));
    border: 1px solid rgba(var(--page-accent-rgb),.34);
    background: rgba(var(--page-accent-rgb),.08);
}

.secondary-page aside {
    position: sticky;
    top: 150px;
    padding-top: 34px;
}

.secondary-page aside .panel {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
    box-shadow: 0 22px 65px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.07);
}

.secondary-page aside .panel:hover,
.secondary-page aside .visual-reveal.is-visible:hover.panel {
    transform: none;
    border-color: rgba(255,255,255,.16);
    background:
        linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.03));
    box-shadow: 0 22px 65px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.07);
}

.secondary-page aside .panel + .panel {
    margin-top: 22px;
}

.secondary-page aside .panel h2 {
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1;
}

.secondary-page aside .panel p {
    margin: 0;
    padding: 13px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    color: rgba(199,203,213,.76) !important;
    font-size: 14px;
    line-height: 1.5;
}

.secondary-page aside .summary-card {
    border-top: 2px solid rgba(var(--page-accent-rgb),.68);
}

.secondary-page aside .summary-card strong {
    color: #fff;
}

.secondary-page .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 6px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.secondary-page .stat {
    min-height: 100px;
    padding: 21px 14px 17px 0;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    background: transparent;
}

.secondary-page .stat:nth-child(even) {
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.08);
}

.secondary-page .stat strong {
    color: #fff;
    font-size: 23px;
}

.secondary-page .stat span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
}

.secondary-page aside .cta {
    overflow: hidden;
    border-color: rgba(var(--page-accent-rgb),.2);
    background:
        linear-gradient(145deg, rgba(var(--page-accent-rgb),.12), rgba(255,255,255,.035) 58%);
}

.secondary-page aside .cta::after {
    content: "";
    position: absolute;
    right: -30%;
    bottom: -65%;
    width: 90%;
    height: 120%;
    pointer-events: none;
    background: linear-gradient(130deg, transparent 36%, rgba(var(--page-accent-rgb),.1));
    transform: rotate(-12deg);
}

.secondary-page aside .cta p {
    padding-top: 0;
    border-top: 0;
}

.secondary-page aside .cta a {
    position: relative;
    z-index: 1;
    margin-top: 17px;
}

.secondary-page .footer {
    border-top: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 900px) {
    .secondary-page .page-hero {
        min-height: auto;
        padding-top: 170px;
        padding-bottom: 110px;
    }

    .secondary-page .page-hero h1 {
        font-size: clamp(42px, 10vw, 68px);
    }

    .secondary-page .content {
        margin-top: -36px;
    }

    .secondary-page .content-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .secondary-page aside {
        position: static;
        padding-top: 0;
    }
}

@media (max-width: 560px) {
    .secondary-page .header::after {
        bottom: -20px;
        height: 21px;
    }

    .secondary-page .nav {
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }

    .secondary-page .nav::-webkit-scrollbar {
        display: none;
    }

    .secondary-page .nav .container {
        padding-right: 10px;
        padding-left: 10px;
    }

    .secondary-page .nav-list {
        width: max-content;
        min-width: 100%;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .secondary-page .nav-list a {
        padding: 11px 9px;
        white-space: nowrap;
        font-size: 11px;
    }

    .secondary-page .page-hero {
        padding-top: 150px;
        padding-bottom: 94px;
    }

    .secondary-page .page-hero .container::after {
        right: 20px;
        bottom: -40px;
        width: 48%;
    }

    .secondary-page .page-hero h1 {
        font-size: 40px;
    }

    .secondary-page .page-hero p {
        font-size: 15px;
    }

    .secondary-page .content-grid > div > .panel {
        padding: 34px 0 36px 48px;
    }

    .secondary-page .content-grid > div > .panel::before {
        top: 34px;
    }

    .secondary-page .content-grid > div > .panel::after {
        display: none;
    }

    .secondary-page aside .panel {
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .visual-reveal {
        opacity: 1;
        transform: none;
    }
}

/* Wide-layout preview: reduce unused desktop gutters without changing mobile layout. */
@media (min-width: 1200px) {
    :root {
        --container: min(1540px, calc(100vw - 72px));
    }

    .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .hero-text {
        max-width: 900px;
    }

    .hero-banner h1 {
        max-width: 820px;
        font-size: clamp(66px, 7vw, 112px);
    }

    .hero-banner p {
        max-width: 680px;
    }

    .glass-stat-strip {
        max-width: 1120px;
    }

    .products-header,
    .section-heading {
        max-width: 820px;
    }

    .products-header p {
        max-width: 800px;
    }

    .products-grid {
        grid-auto-columns: minmax(410px, 450px);
    }

    .bulk-section .container {
        max-width: min(1440px, calc(100vw - 96px));
    }

    .secondary-page .page-hero .container,
    .secondary-page .content-grid {
        max-width: min(1440px, calc(100vw - 96px));
    }

    .secondary-page .content-grid {
        grid-template-columns: minmax(0, 1.55fr) minmax(340px, .62fr);
        gap: clamp(60px, 6vw, 104px);
    }

    .secondary-page .page-hero h1 {
        max-width: 1250px;
    }

    .secondary-page .page-hero p {
        max-width: 940px;
    }
}

@media (min-width: 1700px) {
    :root {
        --container: min(1680px, calc(100vw - 88px));
    }

    .bulk-section .container,
    .secondary-page .page-hero .container,
    .secondary-page .content-grid {
        max-width: min(1560px, calc(100vw - 120px));
    }
}

/* Cinematic motion system: scroll-linked depth, focused cards, and restrained micro-interactions. */
:root {
    --hero-progress: 0;
    --pointer-x: 50vw;
    --pointer-y: 50vh;
}

.ambient-cursor {
    position: fixed !important;
    z-index: 0;
    top: 0;
    left: 0;
    width: 480px;
    height: 480px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(calc(var(--pointer-x) - 50%), calc(var(--pointer-y) - 50%), 0);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,.07), rgba(212,255,46,.025) 34%, transparent 70%);
    filter: blur(12px);
    transition: opacity .5s ease;
    will-change: transform;
}

.ambient-cursor.is-visible {
    opacity: 1;
}

.header-main,
.nav {
    transition: min-height .45s cubic-bezier(.22,1,.36,1), padding .45s cubic-bezier(.22,1,.36,1), background .3s ease;
}

.header.is-scrolled .header-main {
    min-height: 58px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.header.is-scrolled .nav {
    min-height: 52px;
}

.hero-background-fx {
    transform: translate3d(0, calc(var(--hero-progress) * 42px), 0) scale(calc(1 + var(--hero-progress) * .045));
    transform-origin: 50% 45%;
    will-change: transform;
}

.hero-background-fx::before {
    transform: translateX(calc(-50% - var(--hero-progress) * 90px)) rotate(-8deg);
}

.hero-background-fx::after {
    transform: translateX(calc(-50% + var(--hero-progress) * 120px)) rotate(-8deg);
}

.hero-background-fx::before,
.hero-background-fx::after {
    transition: opacity .35s ease;
    will-change: transform;
}

.hero-content {
    transform: translate3d(0, calc(var(--hero-progress) * 54px), 0);
    opacity: calc(1 - var(--hero-progress) * .48);
    will-change: transform, opacity;
}

.motion-ready .hero-text .motion-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(34px) rotateX(-18deg);
    transform-origin: 50% 100%;
    animation: hero-word-enter .9s cubic-bezier(.22,1,.36,1) forwards;
    animation-delay: calc(.12s + var(--word-index) * .065s);
}

.motion-ready .hero-badge,
.motion-ready .hero-text > p,
.motion-ready .hero-cta {
    opacity: 0;
    transform: translateY(18px);
    animation: hero-detail-enter .7s cubic-bezier(.22,1,.36,1) forwards;
}

.motion-ready .hero-badge {
    animation-delay: .06s;
}

.motion-ready .hero-text > p {
    animation-delay: .72s;
}

.motion-ready .hero-cta {
    animation-delay: .86s;
}

@keyframes hero-word-enter {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes hero-detail-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-stat-strip {
    animation: stat-strip-enter .9s .92s cubic-bezier(.22,1,.36,1) both;
}

@keyframes stat-strip-enter {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.97);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.visual-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(44px) scale(.985);
    transition:
        opacity .85s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms),
        transform .85s cubic-bezier(.22,1,.36,1) var(--reveal-delay, 0ms),
        filter .72s ease var(--reveal-delay, 0ms);
}

.visual-reveal.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
}

.products,
.trust-section,
.bulk-section {
    position: relative;
    isolation: isolate;
}

.products::before,
.trust-section::before,
.bulk-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: min(62vw, 760px);
    height: min(62vw, 760px);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .52;
}

.products::before {
    top: 5%;
    right: -18%;
    background: radial-gradient(circle, rgba(31,73,255,.13), transparent 68%);
}

.trust-section::before {
    top: 18%;
    left: -18%;
    background: radial-gradient(circle, rgba(212,255,46,.09), transparent 68%);
}

.bulk-section::before {
    right: -16%;
    bottom: -22%;
    background: radial-gradient(circle, rgba(255,107,0,.12), transparent 68%);
}

.products-grid {
    perspective: 1400px;
}

.products-grid .product-card {
    --carousel-focus: .72;
    --card-tilt-x: 0deg;
    --card-tilt-y: 0deg;
    opacity: calc(.7 + var(--carousel-focus) * .3);
    filter: saturate(calc(.84 + var(--carousel-focus) * .16)) brightness(calc(.88 + var(--carousel-focus) * .12));
    transform:
        perspective(1400px)
        rotateX(var(--card-tilt-x))
        rotateY(var(--card-tilt-y))
        translateY(calc((1 - var(--carousel-focus)) * 14px))
        scale(calc(.965 + var(--carousel-focus) * .035)) !important;
    transform-origin: 50% 55%;
    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        opacity .45s ease,
        filter .45s ease,
        border-color .3s ease,
        box-shadow .4s ease;
    will-change: transform;
}

.products-grid .product-card::after {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    border-radius: inherit;
    background:
        radial-gradient(360px circle at var(--card-pointer-x, 50%) var(--card-pointer-y, 30%), rgba(255,255,255,.11), transparent 56%),
        linear-gradient(120deg, transparent 34%, rgba(255,255,255,.055) 47%, transparent 59%);
    mix-blend-mode: screen;
    transition: opacity .3s ease;
}

.products-grid .product-card.is-pointer-active::after {
    opacity: 1;
}

.products-grid .product-card:hover {
    border-color: rgba(255,107,0,.42);
    box-shadow: 0 28px 70px rgba(0,0,0,.46), 0 0 0 1px rgba(255,107,0,.1);
}

.products-grid .product-image img {
    transition: transform .65s cubic-bezier(.22,1,.36,1), filter .4s ease;
}

.products-grid .product-card:hover .product-image img {
    transform: scale(1.045) translateY(-4px);
    filter: drop-shadow(0 20px 20px rgba(0,0,0,.12));
}

.carousel-arrow {
    overflow: hidden;
}

.carousel-arrow::after {
    content: "";
    position: absolute;
    inset: -45%;
    opacity: 0;
    background: conic-gradient(from 180deg, transparent, rgba(255,107,0,.45), transparent 35%);
    transition: opacity .25s ease;
    animation: arrow-orbit 3.8s linear infinite;
}

.carousel-arrow:hover::after {
    opacity: .7;
}

@keyframes arrow-orbit {
    to { transform: rotate(360deg); }
}

.btn,
.nav-quote-btn,
.checkout-btn,
.cert-view-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn::after,
.nav-quote-btn::after,
.checkout-btn::after,
.cert-view-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -80%;
    opacity: 0;
    background: radial-gradient(circle at var(--button-x, 50%) var(--button-y, 50%), rgba(255,255,255,.44), transparent 24%);
    transition: opacity .28s ease;
}

.btn:hover::after,
.nav-quote-btn:hover::after,
.checkout-btn:hover::after,
.cert-view-btn:hover::after {
    opacity: .62;
}

.modal-overlay.active,
.cert-lightbox.active,
.cart-overlay.active {
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
}

.modal-overlay.active .modal-content {
    animation: premium-modal-enter .55s cubic-bezier(.16,1,.3,1) both;
}

@keyframes premium-modal-enter {
    from {
        opacity: 0;
        transform: translateY(32px) scale(.965);
        filter: blur(9px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.cart-sidebar {
    transition: right .52s cubic-bezier(.16,1,.3,1), box-shadow .4s ease !important;
}

.cart-sidebar.active {
    box-shadow: -30px 0 90px rgba(0,0,0,.58) !important;
}

.secondary-page .page-hero .container {
    animation: secondary-hero-enter .9s .1s cubic-bezier(.22,1,.36,1) both;
}

@keyframes secondary-hero-enter {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@media (max-width: 768px) {
    .ambient-cursor {
        display: none;
    }

    .hero-content {
        transform: translate3d(0, calc(var(--hero-progress) * 24px), 0);
        opacity: calc(1 - var(--hero-progress) * .28);
    }

    .products-grid .product-card {
        opacity: 1;
        filter: none;
        transform: none !important;
    }

    .products::before,
    .trust-section::before,
    .bulk-section::before {
        width: 110vw;
        height: 110vw;
        opacity: .34;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ambient-cursor {
        display: none !important;
    }

    .hero-background-fx,
    .hero-background-fx::before,
    .hero-background-fx::after,
    .hero-content,
    .products-grid .product-card {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .motion-ready .hero-text .motion-word,
    .motion-ready .hero-badge,
    .motion-ready .hero-text > p,
    .motion-ready .hero-cta,
    .glass-stat-strip,
    .secondary-page .page-hero .container {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
    }

    .carousel-arrow::after {
        animation: none !important;
    }
}

/* ===== header polish: logo hard-left, actions hard-right, clean cart ===== */
.header .container { max-width: none !important; width: 100% !important; margin: 0 !important; box-sizing: border-box; padding-left: clamp(20px, 3.5vw, 46px); padding-right: clamp(20px, 3.5vw, 46px); }
.header-main { justify-content: space-between; }
.cart-count { background: transparent; box-shadow: none; color: var(--orange-l); }
.mobile-menu-btn { background: transparent; border: none; box-shadow: none; }
@media (min-width: 769px) { .mobile-menu-btn { display: none; } }
