:root {
    --cybix-bg: #06070d;
    --cybix-surface: #0f1320;
    --cybix-surface-soft: #171d2b;
    --cybix-card: #fcfcfd;
    --cybix-text: #eef1f7;
    --cybix-muted: #a3adc2;
    --cybix-line: rgba(255, 255, 255, 0.08);
    --cybix-primary: #2f6bff;
    --cybix-primary-soft: #9db6ff;
    --cybix-accent: #d8ff3f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(47, 107, 255, 0.26), transparent 32%),
        radial-gradient(circle at left center, rgba(216, 255, 63, 0.12), transparent 28%),
        linear-gradient(180deg, #05060a 0%, #090d17 42%, #f4f6fb 42%, #f4f6fb 100%);
    color: var(--cybix-text);
}

h1,
h2,
h3,
.navbar .nav-link,
.btn,
.brand-title {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 15, 0.76);
    border-bottom: 1px solid var(--cybix-line);
}

.navbar {
    padding: 1rem 0;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(47, 107, 255, 0.22);
}

.brand-title {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.brand-subtitle {
    color: var(--cybix-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    font-size: 1rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

.navbar-toggler {
    background: rgba(255, 255, 255, 0.08);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn-primary {
    --bs-btn-bg: var(--cybix-primary);
    --bs-btn-border-color: var(--cybix-primary);
    --bs-btn-hover-bg: #1c56e3;
    --bs-btn-hover-border-color: #1c56e3;
    --bs-btn-active-bg: #184cc8;
    --bs-btn-active-border-color: #184cc8;
}

.btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.28);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-dark {
    --bs-btn-color: #0d1320;
    --bs-btn-border-color: rgba(13, 19, 32, 0.18);
    --bs-btn-hover-bg: #0d1320;
    --bs-btn-hover-border-color: #0d1320;
}

.service-card .btn-outline-dark,
.contact-card .btn-outline-dark,
.product-gallery-card ~ div .btn-outline-dark,
.section-heading .btn-outline-dark,
.category-panel .btn-outline-dark,
.services-highlight .btn-outline-dark,
.social-strip .btn-outline-dark {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.28);
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.4);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--cybix-primary-soft);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    font-weight: 700;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: currentColor;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.landing-hero {
    padding-top: 3rem;
}

.hero-banner,
.services-highlight,
.social-strip,
.final-cta,
.benefit-card {
    background: linear-gradient(180deg, rgba(18, 22, 33, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.hero-copy {
    max-width: 40rem;
    color: rgba(238, 241, 247, 0.8);
}

.py-lg-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.hero-section .lead,
.page-intro .lead {
    color: rgba(238, 241, 247, 0.78) !important;
}

.page-intro .text-body-secondary,
.section-heading .text-body-secondary,
.glass-panel .text-body-secondary,
.category-panel .text-body-secondary,
.service-card .text-body-secondary,
.contact-card .text-body-secondary,
.cart-panel .text-body-secondary,
.cart-summary .text-body-secondary,
.hero-banner .text-body-secondary,
.benefit-card .text-body-secondary,
.social-strip .text-body-secondary,
.final-cta .text-body-secondary {
    color: rgba(238, 241, 247, 0.72) !important;
}

.category-panel .text-primary-emphasis,
.glass-panel .text-primary-emphasis {
    color: var(--cybix-primary-soft) !important;
}

.glass-panel,
.category-panel,
.promo-strip,
.service-card,
.contact-card,
.cart-panel,
.cart-summary,
.product-gallery-card {
    background: linear-gradient(180deg, rgba(24, 29, 42, 0.98), rgba(18, 22, 33, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-visual {
    min-height: 460px;
}

.hero-showcase {
    position: relative;
    min-height: 560px;
}

.hero-showcase-main {
    position: absolute;
    inset: 0 0 2rem 5rem;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at center, rgba(47, 107, 255, 0.35), rgba(8, 10, 18, 0.95));
}

.hero-showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-showcase-card {
    position: absolute;
    background: linear-gradient(180deg, rgba(24, 29, 42, 0.98), rgba(16, 19, 29, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-showcase-card-top {
    top: 2rem;
    left: 0;
    width: 240px;
}

.hero-showcase-card-bottom {
    right: 1rem;
    bottom: 0;
    width: 300px;
    padding: 1.25rem;
}

.hero-showcase-card-top img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-main {
    right: 0;
    left: 4rem;
    top: 1rem;
}

.hero-card-main img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-card-floating {
    width: 250px;
    left: 0;
    bottom: 0;
    background: rgba(8, 12, 20, 0.92);
}

.hero-card-floating img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-intro h1,
.section-heading h2,
.promo-strip h2,
.service-card h2,
.service-card h3,
.contact-card h2,
.cart-summary h2,
.cart-panel h2,
.hero-banner h1,
.social-strip h2,
.final-cta h2,
.benefit-card h3,
.hero-showcase-card-bottom h2 {
    color: #fff;
}

.category-panel {
    padding: 2rem;
    min-height: 100%;
}

.category-feature .ratio img {
    transition: transform 0.35s ease;
}

.category-feature:hover .ratio img {
    transform: scale(1.04);
}

.product-card {
    border-radius: 1.5rem;
    background: #fff;
}

.demo-breadcrumb {
    --bs-breadcrumb-divider-color: rgba(238, 241, 247, 0.45);
    --bs-breadcrumb-item-active-color: rgba(238, 241, 247, 0.72);
    color: rgba(238, 241, 247, 0.72);
}

.demo-breadcrumb a {
    color: #fff;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0.32rem 0.68rem;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.88);
    color: #ffffff;
    border: 1px solid rgba(173, 197, 255, 0.38);
    box-shadow: 0 8px 18px rgba(47, 107, 255, 0.22);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
}

.product-badge-floating {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    right: auto;
    bottom: auto;
    max-width: max-content;
}

.product-card-media > .product-badge-floating {
    width: auto;
    height: auto;
}

.product-stock {
    color: var(--cybix-accent);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.product-thumb {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.row.g-4.g-lg-5.align-items-start > .col-lg-6:last-child,
.row.g-4.g-lg-5.align-items-start > .col-lg-6:last-child p,
.row.g-4.g-lg-5.align-items-start > .col-lg-6:last-child strong {
    color: #fff;
}

.row.g-4.g-lg-5.align-items-start > .col-lg-6:last-child .text-body-secondary {
    color: rgba(238, 241, 247, 0.72) !important;
}

.product-card-media img {
    width: 100%;
    height: 100%;
}

.product-price {
    font-weight: 700;
    color: var(--cybix-primary);
}

.product-gallery-card,
.cart-panel,
.cart-summary,
.service-card,
.contact-card,
.glass-panel,
.category-panel,
.hero-banner,
.benefit-card,
.social-strip,
.final-cta {
    color: #fff;
}

.product-gallery-card strong,
.cart-panel strong,
.cart-summary strong,
.service-card strong,
.contact-card strong,
.category-panel h3,
.glass-panel strong,
.hero-banner strong,
.benefit-card strong {
    color: #fff;
}

.promo-strip {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(47, 107, 255, 0.26), rgba(216, 255, 63, 0.08));
}

.page-intro,
.section-heading,
.filter-bar,
.product-gallery-card,
.cart-panel,
.cart-summary,
.service-card,
.contact-card {
    color: var(--cybix-text);
}

.filter-bar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-bar .btn-light {
    --bs-btn-bg: #fff;
    --bs-btn-border-color: #fff;
    --bs-btn-color: #0d1320;
    --bs-btn-hover-bg: #edf1ff;
    --bs-btn-hover-border-color: #edf1ff;
}

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

.benefit-index {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.18);
    color: var(--cybix-primary-soft);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

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

.social-card img {
    width: 100%;
    height: 100%;
}

.cart-item {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.cart-item h2,
.cart-item strong,
.cart-summary span,
.cart-summary p,
.service-card li,
.product-detail-info p,
.product-detail-info strong {
    color: #fff;
}

.product-detail-info .text-body-secondary,
.cart-item .text-body-secondary,
.cart-summary .text-body-secondary,
.service-card .text-body-secondary,
.contact-card .text-body-secondary {
    color: rgba(238, 241, 247, 0.72) !important;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.dot {
    width: 0.6rem;
    height: 0.6rem;
    background: var(--cybix-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.cart-item-image {
    width: 116px;
    height: 116px;
    object-fit: cover;
}

.site-footer {
    background: #f4f6fb;
    color: #0d1320;
    border-top: 1px solid rgba(13, 19, 32, 0.08);
}

.contact-card a:not(.btn) {
    color: #fff !important;
}

.glass-panel,
.category-panel,
.service-card,
.contact-card,
.cart-panel,
.cart-summary,
.hero-banner,
.benefit-card,
.social-strip,
.final-cta {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer a {
    color: rgba(13, 19, 32, 0.72);
}

.site-footer a:hover {
    color: #0d1320;
}

.footer-title {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(13, 19, 32, 0.5);
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 54px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1fd169, #12a14f);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(18, 161, 79, 0.26);
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    body {
        background:
            radial-gradient(circle at top right, rgba(47, 107, 255, 0.22), transparent 28%),
            linear-gradient(180deg, #05060a 0%, #090d17 36%, #f4f6fb 36%, #f4f6fb 100%);
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-showcase {
        min-height: 480px;
    }

    .hero-showcase-main {
        inset: 0 0 1rem 3rem;
    }

    .hero-card-main {
        left: 2rem;
    }

    .hero-card-main img {
        min-height: 320px;
    }

    .hero-card-floating {
        width: 180px;
    }

    .hero-card-floating img {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .brand-title {
        font-size: 1.3rem;
    }

    .hero-banner,
    .services-highlight,
    .social-strip,
    .final-cta {
        border-radius: 1.5rem;
    }

    .hero-showcase {
        min-height: 430px;
    }

    .hero-showcase-main {
        position: relative;
        inset: auto;
        min-height: 280px;
    }

    .hero-showcase-card-top {
        width: 170px;
        top: 1rem;
        left: 1rem;
    }

    .hero-showcase-card-top img {
        height: 220px;
    }

    .hero-showcase-card-bottom {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-card-main {
        position: relative;
        left: auto;
        top: auto;
    }

    .hero-card-floating {
        left: auto;
        right: 1rem;
        bottom: -1rem;
    }

    .hero-visual {
        padding-bottom: 6rem;
        min-height: auto;
    }

    .whatsapp-float {
        min-width: 56px;
        min-height: 56px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
    }

    .whatsapp-float::before {
        content: 'WA';
        font-size: 0.95rem;
    }
}

.checkout-panel,
.checkout-summary,
.confirmation-panel {
    background: linear-gradient(180deg, rgba(18, 22, 33, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
    color: #fff;
}

.demo-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.demo-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(157, 182, 255, 0.7);
    box-shadow: 0 0 0 0.25rem rgba(47, 107, 255, 0.18);
    color: #fff;
}

.demo-input::placeholder {
    color: rgba(238, 241, 247, 0.45);
}

.cart-qty-input {
    max-width: 96px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.cart-qty-input:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(157, 182, 255, 0.7);
    box-shadow: 0 0 0 0.25rem rgba(47, 107, 255, 0.18);
}

.checkout-mini-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-mini-item:last-child {
    border-bottom: 0;
}

.checkout-mini-image {
    width: 68px;
    height: 68px;
    object-fit: cover;
}

.confirmation-icon {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.2);
    color: var(--cybix-primary-soft);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.trust-panel,
.faq-panel,
.map-demo-panel,
.faq-item {
    background: linear-gradient(180deg, rgba(18, 22, 33, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    color: #fff;
}

.trust-step {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-step strong,
.faq-item h3,
.map-demo-panel h3 {
    color: #fff;
}

.map-demo-panel {
    background: radial-gradient(circle at top right, rgba(47, 107, 255, 0.18), rgba(18, 22, 33, 0.98));
}

.site-footer .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.admin-shell {
    background: linear-gradient(180deg, #070912 0%, #0c1120 100%);
}

.admin-container {
    max-width: 1560px;
}

.admin-sidebar,
.admin-main,
.admin-card {
    background: linear-gradient(180deg, rgba(18, 22, 33, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.admin-sidebar {
    top: 6rem;
}

.admin-main {
    min-height: calc(100vh - 10rem);
}

.admin-nav-link {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 0.95rem;
    color: rgba(238, 241, 247, 0.72);
    text-decoration: none;
    border: 1px solid transparent;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    color: #fff;
    background: rgba(47, 107, 255, 0.12);
    border-color: rgba(47, 107, 255, 0.24);
}

.admin-note {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.admin-metric {
    font-size: 2.15rem;
    line-height: 1;
}

.admin-delta {
    color: var(--cybix-accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
    background: rgba(47, 107, 255, 0.18);
    color: var(--cybix-primary-soft);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.admin-pill.warning {
    background: rgba(216, 255, 63, 0.14);
    color: var(--cybix-accent);
}

.admin-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.admin-list-row:last-child {
    border-bottom: 0;
}

.admin-table {
    --bs-table-bg: transparent;
    --bs-table-color: #fff;
    --bs-table-border-color: rgba(255, 255, 255, 0.08);
}

.admin-table thead th {
    color: rgba(238, 241, 247, 0.58);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom-width: 1px;
}

.activity-chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
    min-height: 240px;
}

.activity-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.activity-bar {
    width: 100%;
    max-width: 56px;
    border-radius: 1rem 1rem 0.4rem 0.4rem;
    background: linear-gradient(180deg, rgba(47, 107, 255, 0.95), rgba(103, 142, 255, 0.35));
    min-height: 40px;
}

.activity-bar-wrap span {
    color: rgba(238, 241, 247, 0.64);
    font-size: 0.82rem;
}

@media (max-width: 991.98px) {
    .admin-sidebar {
        position: static !important;
    }

    .admin-main {
        min-height: auto;
    }
}

.hero-banner-strong {
    position: relative;
}

.hero-banner-strong::after {
    content: '';
    position: absolute;
    inset: auto -6rem -5rem auto;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 255, 63, 0.14), transparent 68%);
    pointer-events: none;
}

.hero-trust-strip span,
.footer-microcopy span {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.88rem;
}

.section-heading-wide h2,
.page-intro h1,
.hero-banner h1 {
    max-width: 15ch;
}

.filter-copy,
.admin-header-copy,
.footer-cta-copy {
    color: rgba(238, 241, 247, 0.72);
    max-width: 36rem;
}

.shop-intro-card {
    min-height: 100%;
}

.product-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 16px 38px rgba(8, 13, 25, 0.08);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(8, 13, 25, 0.14);
}

.product-card-media {
    background: linear-gradient(135deg, rgba(47, 107, 255, 0.08), rgba(13, 19, 32, 0.08));
}

.product-card .card-body,
.product-card h3,
.product-card .text-body-secondary,
.product-card .small {
    color: #0d1320 !important;
}

.product-card .product-stock {
    color: #86b500 !important;
}

.product-detail-note,
.footer-cta {
    background: linear-gradient(180deg, rgba(18, 22, 33, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    color: #fff;
}

.footer-cta h2 {
    color: #fff;
}

.site-footer .text-body-secondary,
.site-footer .footer-cta-copy {
    color: rgba(13, 19, 32, 0.72) !important;
}

.site-footer .footer-cta {
    background: linear-gradient(135deg, #0b1020, #151d34);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-cta-copy,
.site-footer .footer-microcopy span,
.site-footer .footer-title,
.site-footer .brand-subtitle {
    color: rgba(238, 241, 247, 0.74) !important;
}

.site-footer .footer-microcopy span {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
}

.admin-kicker {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-metric-card {
    position: relative;
    overflow: hidden;
}

.admin-metric-card::after {
    content: '';
    position: absolute;
    inset: auto -2rem -2rem auto;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 107, 255, 0.24), transparent 68%);
}

@media (max-width: 991.98px) {
    .section-heading-wide h2,
    .page-intro h1,
    .hero-banner h1 {
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .hero-trust-strip,
    .footer-microcopy {
        gap: 0.5rem !important;
    }

    .hero-trust-strip span,
    .footer-microcopy span {
        font-size: 0.8rem;
    }

    .filter-copy {
        width: 100%;
        font-size: 0.92rem;
    }

    .product-card .card-body,
    .cart-panel,
    .cart-summary,
    .checkout-panel,
    .checkout-summary,
    .confirmation-panel,
    .contact-card,
    .trust-panel,
    .faq-panel {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
    }
}

.checkout-summary .text-body-secondary,
.confirmation-panel .text-body-secondary,
.checkout-panel .text-body-secondary,
.checkout-summary span,
.checkout-summary p,
.checkout-summary h2,
.checkout-summary h3,
.checkout-summary strong,
.confirmation-panel span,
.confirmation-panel p,
.confirmation-panel h2,
.confirmation-panel h3,
.confirmation-panel strong,
.checkout-panel label,
.checkout-panel .form-label {
    color: #fff !important;
}

.checkout-summary .text-body-secondary,
.confirmation-panel .text-body-secondary,
.checkout-panel .text-body-secondary {
    color: rgba(238, 241, 247, 0.74) !important;
}

.checkout-summary .checkout-mini-item,
.confirmation-panel .checkout-mini-item {
    color: #fff;
}

.site-header .brand-title {
    color: #ffffff;
}

.site-header .brand-subtitle {
    color: rgba(238, 241, 247, 0.78) !important;
}

.scroll-reveal {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.hero-showcase [data-parallax] {
    will-change: transform;
    transition: transform 0.18s linear;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal.is-visible,
    .hero-showcase [data-parallax] {
        opacity: 1;
        transform: none !important;
        transition: none;
    }
}

.home-section-heading {
    padding: 1.25rem 1.35rem;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(12, 16, 26, 0.92), rgba(12, 16, 26, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.home-section-heading h2,
.home-section-heading h3,
.home-section-heading p,
.home-section-heading .text-body-secondary {
    color: #ffffff !important;
}

.home-section-heading .text-body-secondary {
    color: rgba(238, 241, 247, 0.74) !important;
}

.home-section-heading .eyebrow {
    color: var(--cybix-primary-soft) !important;
}

.home-section-heading .eyebrow::before {
    background: currentColor;
}

@media (max-width: 767.98px) {
    .home-section-heading {
        padding: 1rem 1rem;
        border-radius: 1.2rem;
    }
}



.product-detail-info {
    position: relative;
    z-index: 1;
}

.product-detail-info .btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.28);
    --bs-btn-hover-color: #fff;
}

.site-footer .btn-primary,
.site-footer .btn-primary:hover,
.site-footer .btn-primary:focus,
.site-footer .btn-primary:active {
    color: #fff !important;
}

@media (max-width: 767.98px) {
    .product-detail-info {
        margin-top: -0.25rem;
        padding: 1.1rem 1rem 0;
        background: linear-gradient(180deg, rgba(12, 16, 26, 0.98), rgba(10, 14, 22, 0.98));
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

    .product-detail-info h1,
    .product-detail-info p,
    .product-detail-info strong,
    .product-detail-info .text-body-secondary,
    .product-detail-info .lead,
    .product-detail-info .fs-2,
    .product-detail-info .fs-5 {
        color: #fff !important;
    }

    .product-detail-info .text-body-secondary,
    .product-detail-note .text-body-secondary {
        color: rgba(238, 241, 247, 0.76) !important;
    }

    .product-detail-info .btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .product-detail-info .btn-outline-light {
        background: rgba(255, 255, 255, 0.04);
    }

    .product-detail-note {
        margin-top: 0.25rem;
    }

    .product-detail-info + .row,
    .product-detail-info .row.g-3 {
        margin-bottom: 0;
    }

    .product-page-related-heading,
    .product-page-related-heading h2,
    .product-page-related-heading p,
    .product-page-related-heading .text-body-secondary,
    .product-page-related-heading .eyebrow {
        color: #0d1320 !important;
    }

    .product-page-related-heading .eyebrow {
        color: #5c7cff !important;
    }

    .product-page-related-heading .btn-outline-dark {
        --bs-btn-color: #0d1320;
        --bs-btn-border-color: rgba(13, 19, 32, 0.2);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #0d1320;
        --bs-btn-hover-border-color: #0d1320;
    }
}

.product-detail-panel {
    padding: 0;
}

.product-detail-panel h1,
.product-detail-panel p,
.product-detail-panel strong,
.product-detail-panel .text-body-secondary,
.product-detail-panel .lead,
.product-detail-panel .fs-2,
.product-detail-panel .fs-5 {
    color: #fff !important;
}

.product-detail-panel .text-body-secondary,
.product-detail-note .text-body-secondary {
    color: rgba(238, 241, 247, 0.76) !important;
}

.product-detail-panel .btn-outline-light {
    --bs-btn-color: #fff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.28);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
    --bs-btn-hover-border-color: rgba(255, 255, 255, 0.4);
}

.product-page-related-panel {
    padding: 1rem 0 0;
}

.product-page-related-panel h2,
.product-page-related-panel p,
.product-page-related-panel .text-body-secondary {
    color: #0d1320 !important;
}

.product-page-related-panel .eyebrow {
    color: #5c7cff !important;
}

.product-page-related-panel .eyebrow::before {
    background: currentColor;
}

@media (max-width: 767.98px) {
    .product-detail-info {
        margin-top: 0.25rem;
    }

    .product-detail-panel {
        padding: 1.15rem 1rem 0;
        background: linear-gradient(180deg, rgba(12, 16, 26, 0.985), rgba(10, 14, 22, 0.985));
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

    .product-detail-panel .btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .product-detail-panel .btn-outline-light {
        background: rgba(255, 255, 255, 0.04);
    }

    .product-page-related-panel {
        padding-top: 0.25rem;
    }

    .product-page-related-panel .btn-outline-dark {
        --bs-btn-color: #0d1320;
        --bs-btn-border-color: rgba(13, 19, 32, 0.2);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #0d1320;
        --bs-btn-hover-border-color: #0d1320;
    }
}

@media (max-width: 991.98px) {
    .product-detail-info {
        margin-top: 0.5rem;
    }

    .product-detail-panel {
        padding: 1.15rem 1rem 0;
        background: linear-gradient(180deg, rgba(12, 16, 26, 0.985), rgba(10, 14, 22, 0.985));
        border-radius: 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    }

    .product-detail-panel h1,
    .product-detail-panel p,
    .product-detail-panel strong,
    .product-detail-panel .text-body-secondary,
    .product-detail-panel .lead,
    .product-detail-panel .fs-2,
    .product-detail-panel .fs-5,
    .product-detail-panel .btn-outline-light {
        color: #fff !important;
    }

    .product-detail-panel .text-body-secondary,
    .product-detail-note .text-body-secondary {
        color: rgba(238, 241, 247, 0.76) !important;
    }

    .product-detail-panel .btn {
        flex: 1 1 100%;
        justify-content: center;
    }

    .product-detail-panel .btn-outline-light {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.28);
    }

    .product-page-related-panel {
        padding-top: 0.25rem;
    }

    .product-page-related-panel h2,
    .product-page-related-panel p,
    .product-page-related-panel .text-body-secondary {
        color: #0d1320 !important;
    }

    .product-page-related-panel .eyebrow {
        color: #5c7cff !important;
    }

    .product-page-related-panel .btn-outline-dark {
        --bs-btn-color: #0d1320;
        --bs-btn-border-color: rgba(13, 19, 32, 0.2);
        --bs-btn-hover-color: #fff;
        --bs-btn-hover-bg: #0d1320;
        --bs-btn-hover-border-color: #0d1320;
    }
}

.faq-panel .faq-item,
.faq-panel .faq-item h3,
.faq-panel .faq-item p,
.faq-panel .faq-item .text-body-secondary,
.trust-panel .faq-item,
.trust-panel .faq-item h3,
.trust-panel .faq-item p,
.trust-panel .faq-item .text-body-secondary {
    color: #fff !important;
}

.faq-panel .faq-item .text-body-secondary,
.trust-panel .faq-item .text-body-secondary {
    color: rgba(238, 241, 247, 0.74) !important;
}

.site-footer .footer-title,
.site-footer .footer-title + ul,
.site-footer .footer-title + ul li,
.site-footer .footer-title + ul li a,
.site-footer .list-unstyled.text-body-secondary,
.site-footer .list-unstyled.text-body-secondary li {
    color: #0d1320 !important;
}

.site-footer .footer-title {
    color: rgba(13, 19, 32, 0.58) !important;
}

.site-footer .list-unstyled.text-body-secondary li,
.site-footer .list-unstyled.text-body-secondary {
    color: rgba(13, 19, 32, 0.72) !important;
}

.hero-showcase-wide {
    min-height: 500px;
}

.hero-banner h1.display-3 {
    max-width: 11ch;
}

.hero-banner-strip {
    position: relative;
    z-index: 2;
}

.promo-banner-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(14, 19, 30, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.promo-banner-image {
    position: relative;
    min-height: 180px;
    overflow: hidden;
}

.promo-banner-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 15, 0.12), rgba(5, 8, 15, 0.58));
}

.promo-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner-copy {
    position: relative;
    padding: 1.15rem 1.15rem 1.25rem;
    color: #fff;
}

.promo-banner-copy h2 {
    color: #fff;
}

.promo-banner-copy .text-body-secondary {
    color: rgba(238, 241, 247, 0.74) !important;
}

@media (max-width: 991.98px) {
    .hero-banner h1.display-3 {
        max-width: none;
    }

    .hero-showcase-wide {
        min-height: 440px;
    }
}

@media (max-width: 767.98px) {
    .promo-banner-image {
        min-height: 160px;
    }

    .promo-banner-copy {
        padding: 1rem 1rem 1.1rem;
    }
}

.horizontal-banner-card {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(14, 19, 30, 0.98), rgba(12, 15, 24, 0.98));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.horizontal-banner-image {
    display: block;
    min-height: 280px;
    max-height: 340px;
    object-fit: cover;
}

.horizontal-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(90deg, rgba(8, 11, 20, 0.82) 0%, rgba(8, 11, 20, 0.38) 55%, rgba(8, 11, 20, 0.72) 100%);
}

.horizontal-banner-overlay h2,
.horizontal-banner-overlay p,
.horizontal-banner-overlay .text-body-secondary {
    color: #fff !important;
}

.horizontal-banner-overlay .text-body-secondary {
    color: rgba(238, 241, 247, 0.76) !important;
    max-width: 34rem;
}

@media (max-width: 767.98px) {
    .horizontal-banner-image {
        min-height: 220px;
        max-height: 220px;
    }

    .horizontal-banner-overlay {
        position: absolute;
        inset: auto 0 0 0;
        flex-direction: column;
        align-items: start;
        padding: 1rem;
        background: linear-gradient(180deg, rgba(8, 11, 20, 0) 0%, rgba(8, 11, 20, 0.82) 34%, rgba(8, 11, 20, 0.92) 100%);
    }
}

.admin-shell .text-body-secondary,
.admin-sidebar .text-body-secondary,
.admin-main .text-body-secondary,
.admin-card .text-body-secondary,
.admin-note .text-body-secondary,
.admin-kicker .text-body-secondary,
.admin-table .text-body-secondary,
.admin-list-row .text-body-secondary {
    color: rgba(238, 241, 247, 0.74) !important;
}

.admin-sidebar,
.admin-sidebar p,
.admin-sidebar strong,
.admin-main,
.admin-main p,
.admin-main strong,
.admin-card,
.admin-card p,
.admin-card strong,
.admin-note,
.admin-kicker {
    color: #fff;
}

.admin-table td,
.admin-table th,
.admin-table span,
.admin-table strong,
.admin-table a,
.admin-main .small,
.admin-main .form-label {
    color: #fff;
}

.admin-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(18, 22, 33, 0.98), rgba(12, 15, 24, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    color: #fff;
}

.admin-mobile-bar strong {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.35rem;
    line-height: 1;
}

.admin-mobile-toggle {
    min-width: 96px;
}

.admin-offcanvas {
    --bs-offcanvas-width: min(88vw, 320px);
    background: linear-gradient(180deg, rgba(10, 14, 22, 0.995), rgba(8, 11, 18, 0.995));
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-offcanvas .offcanvas-header,
.admin-offcanvas .offcanvas-body {
    color: #fff;
}

.admin-offcanvas .admin-nav-link {
    color: rgba(238, 241, 247, 0.8);
}

.admin-offcanvas .admin-note,
.admin-offcanvas .text-body-secondary,
.admin-mobile-bar .text-body-secondary {
    color: rgba(238, 241, 247, 0.74) !important;
}

@media (max-width: 991.98px) {
    .admin-shell {
        padding-top: 0.35rem;
    }

    .admin-main {
        min-height: auto;
        padding-top: 1.15rem !important;
    }
}

@media (max-width: 767.98px) {
    .admin-mobile-bar {
        padding: 0.9rem 1rem;
        border-radius: 1rem;
    }

    .admin-mobile-bar strong {
        font-size: 1.15rem;
    }

    .admin-mobile-toggle {
        min-width: auto;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }
}
