@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Newsreader:opsz,wght@6..72,500;6..72,700&display=swap');

:root {
    --primary: #07111f;
    --primary-light: #132338;
    --accent: #ff7a1a;
    --accent-light: #f2b94b;
    --bg-light: #0a1727;
    --text-dark: #f7f2e8;
    --text-medium: #a8b0bd;
    --text-light: #7f8aa0;
    --border-subtle: rgba(255,255,255,0.12);
    --white: #ffffff;
    --shadow-sm: 0 18px 45px rgba(0,0,0,0.18);
    --shadow-hover: 0 28px 70px rgba(0,0,0,0.32);
    --transition: all 0.22s ease;
}

* {
    box-sizing: border-box;
    font-family: 'Archivo', sans-serif;
}

body {
    color: var(--text-dark);
    background:
        radial-gradient(circle at 14% 8%, rgba(255,122,26,.18), transparent 28rem),
        radial-gradient(circle at 84% 8%, rgba(71,167,255,.14), transparent 28rem),
        linear-gradient(180deg, #07111f 0%, #0a1727 48%, #07111f 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.75), transparent 76%);
}

a {
    color: inherit;
}

h1, h2, h3, h4,
.section-title,
.section-title h2,
.page-title,
.page-banner h1,
.hero-banner h1,
.collection-banner h1,
.product-details h1,
.sidebar-section h3,
.process-box h3,
.feature-item h4,
.mission-statement h3,
.confirmation-title,
.order-id,
.items-title,
.timeline-title,
.contact-card h3,
.business-hours h3,
.summary-title,
.cart-header h1,
.empty-cart h3,
.continue-shopping h3,
.accordion-button,
.newsletter-title,
.related-products h3 {
    font-family: 'Newsreader', serif;
    font-weight: 700;
    letter-spacing: -.05em;
}

.container {
    max-width: 1380px;
}

.header,
.site-header {
    position: sticky;
    top: 0;
    z-index: 4000;
    padding: 0;
    background: rgba(7,17,31,.86);
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
    backdrop-filter: blur(22px) saturate(130%);
}

.header-topline,
.header-topline-inner {
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-topline {
    background: linear-gradient(90deg, rgba(255,122,26,.18), rgba(255,255,255,.05), rgba(71,167,255,.1));
}

.header-topline-inner {
    min-height: 34px;
    color: var(--text-medium);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.header-topline-inner a {
    color: var(--accent-light) !important;
    text-decoration: none !important;
}

.header-container,
.header-main {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
}

.logo,
.header-brand {
    padding-left: 0 !important;
}

.logo::before,
.header-brand::before {
    display: none !important;
}

.logo a,
.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none !important;
}

.logo img {
    display: none !important;
}

.brand-kicker {
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .24em;
    line-height: 1;
    text-transform: uppercase;
}

.logo-text {
    display: inline-block;
    max-width: 310px;
    color: #fff;
    font-size: 32px;
    line-height: .95;
    letter-spacing: -.05em;
}

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

.nav li,
.nav .dropdown {
    position: relative;
}

.nav a,
.dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    padding: 11px 16px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
}

.nav a:hover,
.nav a.active,
.dropdown-toggle:hover {
    color: #fff;
    border-color: rgba(255,122,26,.35);
    background: rgba(255,122,26,.12);
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    padding: 10px;
    background: rgba(12,28,46,.98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    box-shadow: var(--shadow-hover);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: grid !important;
    gap: 4px;
}

.dropdown-item {
    display: block;
    padding: 11px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 14px;
}

.dropdown-item:hover {
    background: rgba(255,255,255,.06);
    color: var(--accent-light);
}

.header-icons,
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-container,
.header-search {
    position: relative;
}

.search-input,
.header-search input {
    width: 245px;
    height: 46px;
    padding: 0 18px 0 42px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    outline: none;
    transition: var(--transition);
}

.search-input::placeholder,
.header-search input::placeholder {
    color: rgba(255,255,255,.52);
}

.search-input:focus,
.header-search input:focus {
    width: 300px;
    border-color: rgba(255,122,26,.7);
    box-shadow: 0 0 0 4px rgba(255,122,26,.12);
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,.55);
    font-size: 14px;
    pointer-events: none;
}

.cart-icon,
.quote-link {
    position: relative;
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    color: #07111f;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(255,122,26,.2);
}

.cart-icon:hover,
.quote-link:hover {
    color: #07111f;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    color: #fff;
    border: 2px solid #07111f;
    border-radius: 999px;
    background: #47a7ff;
    font-size: 10px;
    font-weight: 900;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.hero-banner,
.collection-banner,
.page-banner,
.page-banner,
.breadcrumb-nav,
.about-intro,
.why-choose-section,
.cta-section,
.products-section,
.cart-section,
.contact-section,
.tracking-container,
.product-section,
.specifications,
.related-products {
    position: relative;
}

.hero-banner,
.collection-banner,
.page-banner {
    overflow: hidden;
    padding: 92px 0 76px;
    margin-bottom: 0;
    border-bottom: 0;
    background:
        linear-gradient(135deg, rgba(7,17,31,.96), rgba(18,47,82,.92)),
        radial-gradient(circle at 84% 24%, rgba(255,122,26,.34), transparent 22rem);
}

.hero-banner::before,
.collection-banner::before,
.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent 0 50%, rgba(255,255,255,.055) 50% 51%, transparent 51%),
        radial-gradient(circle at 76% 36%, rgba(255,255,255,.14), transparent 18rem);
    pointer-events: none;
}

.hero-banner h1,
.collection-banner h1,
.page-banner h1,
.page-title {
    color: #fff;
    font-size: clamp(44px, 6vw, 88px);
    line-height: .96;
    text-shadow: none;
}

.hero-banner p,
.collection-banner p,
.page-banner p,
.page-subtitle {
    max-width: 760px;
    color: rgba(255,255,255,.74);
    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons,
.hero-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-primary-custom,
.btn-continue,
.btn-inquiry,
.btn-track,
.btn-submit,
.add-to-cart-btn,
.filter-button,
.custom-quote,
.footer-cta,
.footer-ghost,
.btn-cancel,
.btn-clear,
.btn-remove,
.modal-footer-btn,
.quote-button {
    border-radius: 999px !important;
    font-weight: 900;
    letter-spacing: .02em;
    transition: var(--transition);
}

.btn-primary,
.btn-primary-custom,
.btn-track,
.btn-submit,
.btn-continue,
.btn-inquiry,
.add-to-cart-btn,
.filter-button,
.quote-button,
.footer-cta {
    color: #07111f !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
    border: 0 !important;
    box-shadow: 0 18px 40px rgba(255,122,26,.22);
}

.btn-secondary,
.footer-ghost,
.btn-cancel,
.btn-clear,
.btn-remove,
.modal-footer-btn.btn-modal-cancel {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(255,255,255,.07) !important;
}

.btn-primary:hover,
.btn-primary-custom:hover,
.btn-track:hover,
.btn-submit:hover,
.btn-continue:hover,
.btn-inquiry:hover,
.add-to-cart-btn:hover,
.filter-button:hover,
.quote-button:hover,
.footer-cta:hover {
    color: #07111f !important;
    transform: translateY(-2px);
}

.btn-secondary:hover,
.footer-ghost:hover,
.btn-cancel:hover,
.btn-clear:hover,
.btn-remove:hover {
    color: #fff !important;
    background: rgba(255,255,255,.11) !important;
}

.section-title,
.results-header h2,
.sidebar-section h3,
.section-title h2,
.summary-title,
.cart-header h1,
.product-details h1,
.contact-card h3,
.business-hours h3,
.tracking-form-container h3,
.order-card h3,
.related-products h3 {
    color: #fff;
}

.about-intro,
.why-choose-section,
.cta-section,
.products-section,
.cart-section,
.contact-section,
.tracking-container,
.product-section,
.specifications,
.related-products,
.content-section,
.catalog-section,
.detail-section,
.tracking-section {
    padding: 70px 0 92px;
}

.why-choose-content,
.catalog-grid,
.category-container,
.product-container,
.contact-grid,
.tracking-grid,
.detail-grid {
    display: grid;
    gap: 24px;
}

.why-choose-content,
.contact-grid,
.tracking-grid,
.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-sidebar,
.tracking-form-container,
.contact-form,
.product-details,
.product-gallery,
.cart-summary,
.cart-item,
.empty-cart,
.continue-shopping,
.custom-modal,
.inquiry-modal,
.order-card,
.confirmation-details,
.quote-summary,
.company-info-box,
.footer-shell,
.footer-brand-panel,
.footer-link-panel,
.footer-contact-card {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 26px !important;
    box-shadow: var(--shadow-sm);
}

.category-sidebar,
.tracking-form-container,
.contact-form,
.product-details,
.cart-summary,
.inquiry-modal,
.custom-modal,
.footer-brand-panel,
.footer-contact-card {
    padding: 24px;
}

.product-card,
.related-product-card,
.feature-item,
.process-box,
.timeline-step,
.order-item,
.order-card,
.cart-item {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(7,17,31,.66);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.product-card:hover,
.related-product-card:hover,
.cart-item:hover,
.order-card:hover,
.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255,122,26,.55);
    box-shadow: var(--shadow-hover);
}

.product-image,
.related-product-image,
.main-image,
.thumbnail,
.product-gallery .main-image,
.empty-cart-icon,
.confirmation-icon {
    background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.14), transparent 14rem), linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.product-info,
.product-body,
.related-product-content {
    padding: 18px;
}

.product-category,
.vendor,
.results-kicker,
.footer-eyebrow,
.brand-kicker,
.eyebrow {
    color: var(--accent-light) !important;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 900;
}

.product-title,
.related-product-name,
.footer-card h3,
.footer-card h4,
.summary-title,
.page-title,
.confirmation-title {
    color: #fff;
}

.current-price,
.price,
.product-price,
.related-product-price {
    color: #fff;
}

.product-meta,
.meta-item,
.summary-row,
.detail-item,
.quote-item,
.info-item,
.order-details-grid div,
.specs-list li {
    color: var(--text-medium);
    border-color: rgba(255,255,255,.1);
}

.moq-badge,
.status-pill,
.badge-new,
.badge-sale,
.order-status,
.notification {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #07111f;
}

.form-control,
.form-select,
.input,
.textarea,
.quantity-input,
.price-input,
.search-input,
.header-search input {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.07) !important;
}

.form-control::placeholder,
.textarea::placeholder,
.input::placeholder,
.search-input::placeholder {
    color: rgba(255,255,255,.45);
}

.form-control:focus,
.form-select:focus,
.input:focus,
.textarea:focus,
.quantity-input:focus,
.price-input:focus,
.search-input:focus {
    border-color: rgba(255,122,26,.65) !important;
    box-shadow: 0 0 0 4px rgba(255,122,26,.11) !important;
}

.form-label,
.option-title,
.spec-label,
.detail-label,
.quote-label,
.info-label {
    color: rgba(255,255,255,.72);
}

.footer,
.site-footer {
    padding: 54px 0 26px;
    background: #050c16;
    border-top: 1px solid rgba(255,255,255,.12);
}

.footer-shell,
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 28px;
}

.footer-link-group h4,
.footer-contact-card h4,
.footer-card h3,
.footer-card h4 {
    color: #fff;
}

.footer-links a,
.footer-link-group a,
.footer-contact-row,
.copyright,
.footer-bottom,
.footer-bottom-note {
    color: var(--text-medium) !important;
}

.footer-links a:hover,
.footer-link-group a:hover,
.footer-contact-row a:hover {
    color: var(--accent-light) !important;
}

.footer-bottom,
.copyright {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 13px;
}

.modal-overlay {
    background: rgba(0,0,0,.72) !important;
    backdrop-filter: blur(10px);
}

.notification {
    color: #07111f;
    border-radius: 18px;
    box-shadow: var(--shadow-hover);
}

@media (max-width: 1180px) {
    .why-choose-content,
    .contact-grid,
    .tracking-grid,
    .detail-grid,
    .footer-shell,
    .footer-grid,
    .catalog-grid,
    .category-container,
    .product-container {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 940px) {
    .mobile-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 24px;
        background: rgba(12,28,46,.98);
        border-top: 1px solid rgba(255,255,255,.12);
        box-shadow: var(--shadow-hover);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .header-icons .search-container {
        display: none;
    }
}

@media (max-width: 720px) {
    .header-topline {
        display: none;
    }

    .header-container,
    .header-main {
        min-height: 74px;
    }

    .logo-text {
        font-size: 21px;
        max-width: 205px;
    }

    .hero-banner h1,
    .collection-banner h1,
    .page-banner h1,
    .page-title {
        font-size: 52px;
    }

    .products-grid,
    .related-products-container,
    .content-grid,
    .content-grid.two,
    .price-row,
    .form-row,
    .modal-actions {
        grid-template-columns: 1fr !important;
    }

    .footer-bottom,
    .copyright {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Final dark-system overrides: footer, homepage process, contact, and product detail pages */
.process-box,
.process-box * {
    color: #fff !important;
}

.process-box p,
.process-box li,
.benefits-list,
.benefits-list li,
.about-text p,
.mission-statement p {
    color: rgba(255,255,255,.76) !important;
}

.process-box h3,
.process-box h4,
.benefits-list strong {
    color: #fff !important;
}

.footer,
.site-footer {
    margin-top: 0 !important;
    padding: 72px 0 30px !important;
    color: rgba(255,255,255,.74) !important;
    border-top: 1px solid rgba(255,255,255,.12) !important;
    background:
        radial-gradient(circle at 12% 0%, rgba(255,122,26,.18), transparent 24rem),
        radial-gradient(circle at 88% 12%, rgba(71,167,255,.12), transparent 24rem),
        linear-gradient(180deg, #08111f 0%, #050b14 100%) !important;
    background-image:
        radial-gradient(circle at 12% 0%, rgba(255,122,26,.18), transparent 24rem),
        radial-gradient(circle at 88% 12%, rgba(71,167,255,.12), transparent 24rem),
        linear-gradient(180deg, #08111f 0%, #050b14 100%) !important;
}

.footer-accent {
    display: none !important;
}

.footer-shell,
.footer-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .8fr) minmax(300px, 1fr) !important;
    gap: 22px !important;
    align-items: stretch !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.footer-brand-panel,
.footer-link-panel,
.footer-contact-card,
.footer-card {
    position: relative !important;
    overflow: hidden !important;
    padding: 26px !important;
    color: rgba(255,255,255,.74) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)) !important;
    box-shadow: 0 28px 80px rgba(0,0,0,.24) !important;
}

.footer-brand-panel::before,
.footer-card::before,
.footer-contact-card::before {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid rgba(242,185,75,.2);
    pointer-events: none;
}

.footer-eyebrow,
.footer-card h4,
.footer-link-group h4,
.footer-contact-card h4 {
    color: var(--accent-light) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
}

.footer-brand-panel h3,
.footer-card h3 {
    color: #fff !important;
    font-family: 'Newsreader', serif !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    line-height: .95 !important;
    letter-spacing: -.06em !important;
    margin: 8px 0 14px !important;
}

.footer-brand-panel p,
.footer-card p,
.footer-contact-row,
.footer-contact-row a,
.footer-link-group a,
.footer-links a,
.footer-links li {
    color: rgba(255,255,255,.68) !important;
    text-decoration: none !important;
}

.footer-link-group a,
.footer-links a {
    display: block !important;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

.footer-link-group a:hover,
.footer-links a:hover,
.footer-contact-row a:hover {
    color: var(--accent-light) !important;
    padding-left: 4px !important;
}

.footer-contact-grid {
    display: grid !important;
    gap: 12px !important;
}

.footer-contact-row {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
}

.footer-contact-row i {
    color: var(--accent-light) !important;
    margin-top: 4px !important;
}

.footer-bottom,
.copyright {
    color: rgba(255,255,255,.48) !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
}

.contact-cards,
.contact-container {
    display: grid !important;
    gap: 22px !important;
}

.contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.contact-container {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr) !important;
}

.contact-card,
.contact-form,
.business-hours {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
}

.contact-card h3,
.contact-form h3,
.business-hours h3,
.contact-card a {
    color: #fff !important;
}

.contact-card p,
.business-hours p,
.business-hours li,
.hours-list,
.form-intro {
    color: rgba(255,255,255,.72) !important;
}

.contact-icon,
.feature-icon {
    color: #07111f !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
}

.product-section,
.specifications,
.related-products,
.breadcrumb-nav {
    background: transparent !important;
}

.product-gallery,
.product-details,
.configuration-form,
.specifications .container,
.related-products,
.accordion,
.accordion-item,
.accordion-content,
.inventory-display,
.product-description,
.quote-summary,
.custom-modal,
.inquiry-modal {
    color: #fff !important;
    border-color: rgba(255,255,255,.12) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
}

.product-description,
.inventory-display,
.accordion-content,
.specs-container,
.specs-list,
.specs-list li,
.spec-value,
.color-label,
.vendor,
.breadcrumb-nav,
.breadcrumb-nav a,
.breadcrumb-nav span {
    color: rgba(255,255,255,.72) !important;
}

.accordion-button,
.accordion-button.active,
.specifications h2,
.related-products h3,
.inventory-title,
.option-title,
.spec-label {
    color: #fff !important;
    background: rgba(255,255,255,.06) !important;
}

.price-table,
.price-table th,
.price-table td,
.spec-table,
.spec-table th,
.spec-table td {
    color: rgba(255,255,255,.78) !important;
    border-color: rgba(255,255,255,.1) !important;
    background: rgba(255,255,255,.035) !important;
}

.price-table th,
.spec-table th {
    color: #fff !important;
    background: rgba(255,255,255,.08) !important;
}

.main-image,
.product-image,
.related-product-image,
.thumbnail,
.cart-item-image {
    border-color: rgba(255,255,255,.1) !important;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.14), transparent 15rem),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)) !important;
}

.about-intro::before {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
}

@media (max-width: 992px) {
    .footer-shell,
    .footer-grid,
    .contact-cards,
    .contact-container {
        grid-template-columns: 1fr !important;
    }
}


/* Footer and header refinements 2026052801 */
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: grid !important;
    gap: 4px !important;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 18px;
}

.dropdown-menu {
    z-index: 1200 !important;
}

.process-box,
.process-box * {
    color: #fff !important;
}

.process-box p,
.process-box li,
.process-box span,
.process-box a,
.process-box div,
.process-box h3,
.process-box h4 {
    color: #fff !important;
}

.footer,
.site-footer {
    margin-top: 0 !important;
    padding: 80px 0 30px !important;
    color: rgba(255,255,255,.74) !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(255,122,26,.18), transparent 20rem),
        radial-gradient(circle at 90% 12%, rgba(71,167,255,.12), transparent 22rem),
        linear-gradient(180deg, #08111f 0%, #050b14 100%) !important;
}

.footer-shell,
.footer-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .8fr) minmax(300px, 1fr) !important;
    gap: 24px !important;
    align-items: stretch !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.footer-brand-panel,
.footer-link-panel,
.footer-contact-card,
.footer-card {
    position: relative !important;
    overflow: hidden !important;
    padding: 28px !important;
    color: rgba(255,255,255,.74) !important;
    border: 1px solid rgba(255,255,255,.11) !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)) !important;
    box-shadow: 0 28px 80px rgba(0,0,0,.24) !important;
    backdrop-filter: blur(10px) !important;
}

.footer-brand-panel::before,
.footer-card::before,
.footer-contact-card::before {
    content: "";
    position: absolute;
    inset: auto -72px -96px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(242,185,75,.16);
    pointer-events: none;
}

.footer-eyebrow,
.footer-card h4,
.footer-link-group h4,
.footer-contact-card h4 {
    color: var(--accent-light) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
}

.footer-brand-panel h3,
.footer-card h3 {
    color: #fff !important;
    font-family: 'Newsreader', serif !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    line-height: .95 !important;
    letter-spacing: -.06em !important;
    margin: 8px 0 14px !important;
}

.footer-brand-panel p,
.footer-card p,
.footer-link-panel p,
.footer-contact-row,
.footer-contact-row a,
.footer-link-group a,
.footer-links a,
.footer-links li {
    color: rgba(255,255,255,.68) !important;
    text-decoration: none !important;
}

.footer-link-panel {
    display: grid !important;
    gap: 18px !important;
}

.footer-link-group + .footer-link-group {
    margin-top: 18px !important;
}

.footer-link-group a,
.footer-links a {
    display: block !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

.footer-link-group a:hover,
.footer-links a:hover,
.footer-contact-row a:hover {
    color: var(--accent-light) !important;
    padding-left: 4px !important;
}

.footer-contact-grid {
    display: grid !important;
    gap: 12px !important;
    margin-top: 14px !important;
}

.footer-contact-row {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
}

.footer-contact-row i {
    color: var(--accent-light) !important;
    margin-top: 4px !important;
}

.footer-actions {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 18px !important;
}

.footer-cta,
.footer-ghost {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
}

.footer-cta {
    color: #07111f !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
    box-shadow: 0 14px 34px rgba(242,185,75,.24) !important;
}

.footer-ghost {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    background: rgba(255,255,255,.04) !important;
}

.footer-bottom,
.copyright {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    margin-top: 28px !important;
    padding-top: 20px !important;
    color: rgba(255,255,255,.48) !important;
    border-top: 1px solid rgba(255,255,255,.1) !important;
    font-size: 13px !important;
}

.footer-bottom p,
.copyright p {
    margin: 0 !important;
}

.contact-cards,
.contact-container {
    display: grid !important;
    gap: 22px !important;
}

.contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.contact-container {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr) !important;
}

.contact-card,
.contact-form,
.business-hours {
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 28px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
}

.contact-card h3,
.contact-form h3,
.business-hours h3,
.contact-card a {
    color: #fff !important;
}

.contact-card p,
.business-hours p,
.business-hours li,
.hours-list,
.form-intro,
.form-label,
.day,
.time {
    color: rgba(255,255,255,.76) !important;
}

.contact-icon,
.feature-icon {
    color: #07111f !important;
    background: linear-gradient(135deg, var(--accent), var(--accent-light)) !important;
}

.product-section,
.specifications,
.related-products,
.breadcrumb-nav {
    background: transparent !important;
}

.product-gallery,
.product-details,
.configuration-form,
.specifications .container,
.related-products,
.accordion,
.accordion-item,
.accordion-content,
.inventory-display,
.product-description,
.quote-summary,
.custom-modal,
.inquiry-modal {
    color: #fff !important;
    border-color: rgba(255,255,255,.12) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04)) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.22) !important;
}

.product-description,
.inventory-display,
.accordion-content,
.specs-container,
.specs-list,
.specs-list li,
.spec-value,
.color-label,
.vendor,
.breadcrumb-nav,
.breadcrumb-nav a,
.breadcrumb-nav span {
    color: rgba(255,255,255,.72) !important;
}

.accordion-button,
.accordion-button.active,
.specifications h2,
.related-products h3,
.inventory-title,
.option-title,
.spec-label {
    color: #fff !important;
    background: rgba(255,255,255,.06) !important;
}

.price-table,
.price-table th,
.price-table td,
.spec-table,
.spec-table th,
.spec-table td {
    color: rgba(255,255,255,.78) !important;
    border-color: rgba(255,255,255,.1) !important;
    background: rgba(255,255,255,.035) !important;
}

.price-table th,
.spec-table th {
    color: #fff !important;
    background: rgba(255,255,255,.08) !important;
}

.main-image,
.product-image,
.related-product-image,
.thumbnail,
.cart-item-image {
    border-color: rgba(255,255,255,.1) !important;
    background:
        radial-gradient(circle at 50% 35%, rgba(255,255,255,.14), transparent 15rem),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)) !important;
}

.about-intro::before {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
}

@media (max-width: 992px) {
    .footer-shell,
    .footer-grid,
    .contact-cards,
    .contact-container {
        grid-template-columns: 1fr !important;
    }

    .footer-bottom,
    .copyright {
        align-items: flex-start !important;
        flex-direction: column !important;
    }
}


/* Cart icon visibility fix */
.cart-icon i,
.quote-link i {
    display: block !important;
    color: #07111f !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.cart-icon,
.quote-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
}
