:root {
    --ink: #111827;
    --navy: #10243e;
    --blue: #1f5eff;
    --red: #e7442e;
    --gold: #f7b733;
    --paper: #fbf5ea;
    --sand: #efe4d3;
    --mist: #f6f8fb;
    --line: #dde3ea;
    --muted: #667085;
    --white: #fff;
    --shadow: 0 24px 70px rgba(16, 36, 62, .12);
    --shadow-sm: 0 14px 36px rgba(16, 36, 62, .08);
    --radius-lg: 24px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Archivo", "Outfit", sans-serif;
    background:
        radial-gradient(circle at 8% 8%, rgba(247, 183, 51, .22), transparent 28rem),
        linear-gradient(135deg, #fff 0%, var(--paper) 48%, #eef4ff 100%) !important;
    line-height: 1.5;
}

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

body img {
    max-width: 100%;
}

.container,
.wrap {
    width: min(1440px, calc(100% - 44px));
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

.utility {
    background: var(--navy);
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    letter-spacing: .01em;
}

.utility__inner {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.utility__links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.utility a:hover {
    color: var(--gold);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(221, 227, 234, .85);
}

.site-header__inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: 245px minmax(260px, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--navy);
}

.brand__mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--gold));
    border-radius: 15px;
    box-shadow: 0 14px 24px rgba(231, 68, 46, .24);
}

.brand__name {
    display: flex;
    flex-direction: column;
    line-height: .95;
    font-size: 25px;
    text-transform: uppercase;
}

.brand__name small {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.header-search {
    position: relative;
    max-width: none;
}

.header-search input,
.header-search .search-minimal {
    width: 100%;
    min-height: 56px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 150px 0 54px;
    color: var(--ink);
    font: inherit;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    outline: none;
}

.header-search input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 5px rgba(31, 94, 255, .10), var(--shadow-sm);
}

.header-search i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
}

.header-search button {
    position: absolute;
    right: 6px;
    top: 6px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    color: var(--white);
    font-weight: 800;
    background: var(--blue);
    cursor: pointer;
}

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

.header-actions a,
.header-actions-new a {
    min-height: 48px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 800;
    border: 1px solid var(--line);
    background: var(--white);
}

.header-actions .quote,
.header-actions-new .quote {
    color: var(--white);
    border-color: var(--red);
    background: var(--red);
    box-shadow: 0 14px 28px rgba(231, 68, 46, .2);
}

.cart-badge {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    color: var(--white);
    border-radius: 999px;
    background: var(--red);
    font-size: 12px;
}

.category-bar,
.category-strip {
    border-bottom: 1px solid var(--line);
    background: rgba(251, 245, 234, .86);
}

.category-track,
.category-scroll {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.category-chip,
.category-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(16, 36, 62, .12);
    border-radius: 999px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    background: rgba(255, 255, 255, .75);
}

.category-chip:hover,
.category-pill:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
}

.page-hero {
    position: relative;
    margin: 34px auto 24px;
    overflow: hidden;
    border-radius: 38px;
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(16, 36, 62, .96), rgba(23, 62, 105, .93)),
        radial-gradient(circle at 78% 30%, rgba(247, 183, 51, .38), transparent 24rem);
    box-shadow: var(--shadow);
}

.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.page-hero::before {
    width: 360px;
    height: 360px;
    right: -120px;
    top: -135px;
    border: 44px solid rgba(247, 183, 51, .24);
}

.page-hero::after {
    width: 220px;
    height: 220px;
    right: 19%;
    bottom: -120px;
    background: rgba(231, 68, 46, .42);
    filter: blur(6px);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 300px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    gap: 38px;
    align-items: center;
    padding: 52px;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .08);
}

.page-hero h1,
.hero-title,
.hero-title-new {
    max-width: 760px;
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 72px);
    line-height: .94;
    letter-spacing: -.065em;
}

.page-hero p,
.hero-subtitle,
.hero-subtitle-new {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}

.hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(16px);
}

.hero-panel h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: "IBM Plex Serif", Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
}

.page-content,
.main-grid,
main.container {
    margin-top: 28px;
    margin-bottom: 72px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.content-card,
.mission-card,
.value-item-new,
.contact-info-card,
.contact-form-card,
.cart-items,
.cart-summary,
.order-config-card,
.filter-sidebar {
    border: 1px solid rgba(16, 36, 62, .10);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-sm);
    padding: 24px;
}

.content-card h2,
.content-card h3,
.mission-card h3,
.value-item-new h4,
.section-title,
.section-title-new {
    margin: 0 0 12px;
    color: var(--navy);
    letter-spacing: -.035em;
}

.content-card p,
.mission-card p,
.value-item-new p {
    color: var(--muted);
}

.btn,
.btn-primary,
.btn-cta,
.add-to-cart-btn,
.product-button,
.details-link {
    min-height: 48px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 16px;
    padding: 0 18px;
    color: var(--white) !important;
    font: inherit;
    font-weight: 900;
    background: var(--blue) !important;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary,
.btn--ghost,
.btn-outline,
.outline-white {
    color: var(--navy) !important;
    border: 1px solid var(--line) !important;
    background: var(--white) !important;
}

.cta-panel,
.cta-explosion,
.cta-section {
    margin-top: 28px;
    padding: 34px;
    border-radius: 30px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), #b73322);
    box-shadow: var(--shadow);
}

.cta-panel h2,
.cta-explosion h2,
.cta-section h2 {
    color: var(--white);
    margin-top: 0;
}

.cta-buttons,
.cta-buttons-new {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-sidebar {
    position: sticky;
    top: 116px;
}

.filter-title,
.results-title {
    color: var(--navy);
}

.form-control,
.form-select,
.input,
.select {
    min-height: 48px;
    border: 1px solid var(--line) !important;
    border-radius: 14px !important;
    color: var(--ink);
    background: var(--white);
}

.results-header,
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

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

.product-card {
    overflow: hidden;
    border: 1px solid rgba(16, 36, 62, .10);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 94, 255, .34);
    box-shadow: var(--shadow);
}

.product-image,
.product-image-container,
.product-media {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / .78;
    padding: 24px;
    background:
        linear-gradient(135deg, rgba(239, 228, 211, .55), rgba(246, 248, 251, .95)),
        radial-gradient(circle at 75% 18%, rgba(247, 183, 51, .22), transparent 7rem);
}

.product-image img,
.product-media img {
    max-height: 210px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

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

.product-title {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.32;
}

.category-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.category-filter-btn {
    padding: 9px 13px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--navy);
    font-weight: 800;
    background: var(--white);
}

.category-filter-btn.active {
    color: var(--white);
    background: var(--navy);
}

.cart-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
    margin-bottom: 14px;
}

.cart-item-image {
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--mist);
}

.cart-item-image img {
    max-height: 130px;
    object-fit: contain;
}

.cart-item-name,
.cart-title,
.summary-title {
    color: var(--navy);
}

.cart-item-sku,
.meta-label,
.buyer-info,
.order-note,
.empty-cart p,
.success-text {
    color: var(--muted);
}

.btn-clear,
.cart-item-remove {
    border: 0;
    color: var(--red);
    font-weight: 800;
    background: transparent;
}

.empty-cart,
.success-message-container,
.no-results {
    padding: 58px 28px;
    text-align: center;
    border: 1px dashed rgba(16, 36, 62, .22);
    border-radius: var(--radius-lg);
    background: var(--mist);
}

.product-gallery-main,
.product-gallery-thumbs,
.accordion-custom .accordion-item,
.table-custom {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
}

.product-gallery-main {
    padding: 24px;
    margin-bottom: 14px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 12px;
    padding: 12px;
    overflow-x: auto;
}

.product-gallery-thumb {
    width: 84px;
    height: 84px;
    object-fit: contain;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
}

.view-full-button {
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy);
}

.order-config-card {
    position: sticky;
    top: 116px;
}

.site-footer {
    color: rgba(255, 255, 255, .78);
    background: var(--navy);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 34px;
    padding: 54px 0;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 20px;
}

.site-footer p {
    margin: 0;
}

.footer-list {
    display: grid;
    gap: 10px;
}

.footer-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.modal-overlay.active {
    display: flex;
}

@media (max-width: 1180px) {
    .site-header__inner,
    .page-hero__inner,
    .content-grid,
    .site-footer__inner,
    .cart-container {
        grid-template-columns: 1fr;
    }

    .header-actions {
        justify-content: space-between;
    }

    .filter-sidebar,
    .order-config-card {
        position: static;
    }

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

@media (max-width: 720px) {
    .container,
    .wrap {
        width: min(100% - 28px, 1440px);
    }

    .utility__inner,
    .results-header,
    .cart-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .header-search input,
    .header-search .search-minimal {
        padding-right: 18px;
    }

    .header-search button {
        position: static;
        width: 100%;
        margin-top: 10px;
    }

    .page-hero__inner {
        min-height: auto;
        padding: 34px 22px;
    }

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

    .product-grid,
    .cart-item {
        grid-template-columns: 1fr;
    }
}
