:root {
    --ink: #18242c;
    --muted: #65737e;
    --line: #dde6eb;
    --paper: #ffffff;
    --soft: #f4f7f8;
    --brand: #0057a8;
    --brand-2: #f58220;
    --gold: #ffb340;
    --coral: #f58220;
    --green: #16785c;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(#ffffff 0, #ffffff 210px, #f7fafb 210px, #f7fafb 100%);
}
a { color: inherit; text-decoration: none; }
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: 3px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    background: rgba(0, 87, 168, .12);
    transition: opacity .16s ease;
}
.page-loader span {
    display: block;
    width: 42%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--brand-2), var(--brand));
    animation: loaderSlide .85s ease-in-out infinite;
}
.page-loader.is-active {
    opacity: 1;
}
body.is-loading-page .shop-shell {
    cursor: progress;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    transition: box-shadow .18s ease, border-color .18s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 18px 42px rgba(24, 36, 44, .11);
}

.topbar {
    position: relative;
    max-width: 1490px;
    margin: 0 auto;
    min-height: 116px;
    display: grid;
    grid-template-columns: 270px minmax(360px, 1fr) 180px;
    align-items: center;
    gap: 28px;
    padding: 0 22px;
}
.topbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 115px;
    height: 1px;
    background: var(--line);
    pointer-events: none;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; }
.brand strong, .brand em { display: block; font-style: normal; line-height: .92; }
.brand strong { color: var(--brand); font-size: 31px; }
.brand em { color: var(--brand-2); font-size: 38px; letter-spacing: 0; }
.text-brand {
    width: max-content;
    padding: 10px 14px 12px;
    border-left: 5px solid var(--brand);
    border-bottom: 5px solid var(--brand-2);
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 87, 168, .08);
}
.text-brand:hover strong { color: #003f7b; }
.text-brand:hover em { color: #db6b10; }
.logo-brand {
    flex: 0 0 auto;
    width: clamp(210px, 22vw, 330px);
    min-width: 0;
    max-height: 86px;
}
.logo-brand img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 86px;
    object-fit: contain;
}
.footer-logo {
    width: min(230px, 100%);
}
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}
.brand.small strong { color: #fff; font-size: 22px; }
.brand.small em { color: var(--gold); font-size: 20px; }
.brand-mark {
    width: 76px; height: 76px;
    display: grid; place-items: center;
    background: var(--brand-2);
    transform: rotate(14deg);
    box-shadow: 0 14px 28px rgba(19, 167, 184, .22);
}
.brand-mark span {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 12px solid var(--coral);
}
.searchbar {
    display: grid;
    grid-template-columns: 1fr 215px 96px;
    border: 1px solid var(--line);
    border-radius: 3px;
    height: 58px;
    box-shadow: 0 10px 25px rgba(7, 94, 137, .05);
    transition: border-color .18s ease, box-shadow .18s ease;
}
.searchbar:focus-within,
.searchbar.is-searching {
    border-color: rgba(0, 87, 168, .45);
    box-shadow: 0 14px 32px rgba(0, 87, 168, .12);
}
.searchbar input, .searchbar select, .searchbar button {
    border: 0;
    border-right: 1px solid var(--line);
    padding: 0 22px;
    background: #fff;
    color: var(--muted);
    font-size: 16px;
}
.searchbar button {
    border-right: 0;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}
.searchbar.is-searching button { background: var(--brand-2); }
.mobile-search-toggle {
    display: none;
    border: 1px solid var(--brand);
    border-radius: 4px;
    min-height: 44px;
    background: #fff;
    color: var(--brand);
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
}
.quick-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; font-weight: 700; }
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--brand);
    font-weight: 900;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.cart-link:hover {
    border-color: var(--brand);
    background: #eef8fb;
    transform: translateY(-1px);
}
.cart-badge {
    position: absolute; top: -10px; right: -12px;
    min-width: 20px; height: 20px; display: grid; place-items: center;
    border-radius: 50%; background: var(--brand); color: #fff; font-size: 12px;
}
.menubar {
    border-bottom: 1px solid var(--line);
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    text-transform: uppercase;
    font-weight: 800;
    background: #fff;
}
.menubar a { padding: 22px 0; }
.menubar a:hover { color: var(--brand); }
.notice {
    max-width: 1490px;
    margin: 14px auto 0;
    padding: 12px 18px;
    border: 1px solid #f0d38b;
    background: #fff8e5;
    color: #7a5600;
    border-radius: 4px;
}
.notice.success {
    border-color: #b6e1d2;
    background: #eefaf5;
    color: var(--green);
}
.shop-shell {
    max-width: 1490px;
    margin: 0 auto;
    padding: 48px 22px 70px;
}
.breadcrumb { color: var(--muted); margin-bottom: 36px; font-size: 17px; }
.breadcrumb span { padding: 0 10px; }
.breadcrumb a {
    color: var(--muted);
    border-bottom: 1px solid transparent;
    transition: color .18s ease, border-color .18s ease;
}
.breadcrumb a:hover {
    color: var(--brand);
    border-color: var(--brand);
}
.catalog-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}
.page-title {
    margin: -24px 0 0;
    font-size: 36px;
    letter-spacing: 0;
}
.catalog-count {
    margin: 10px 0 0;
    color: var(--muted);
}
.catalog-tools { display: flex; align-items: center; gap: 10px; }
.catalog-tools button,
.catalog-tools select {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 14px;
    padding: 9px 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.catalog-tools button:hover {
    border-color: rgba(0, 87, 168, .35);
    color: var(--brand);
    transform: translateY(-1px);
}
.catalog-tools button.is-active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}
.catalog-sort-tools {
    justify-content: flex-end;
}
.catalog-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}
.catalog-main {
    display: grid;
    gap: 24px;
    min-width: 0;
}
.catalog-sidebar {
    position: sticky;
    top: 205px;
}
.catalog-sidebar h2 {
    margin: 0 0 18px;
    font-size: 21px;
    text-transform: uppercase;
}
.catalog-sidebar nav {
    display: grid;
    gap: 4px;
}
.catalog-sidebar a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 2px;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    font-weight: 700;
    transition: color .18s ease, border-color .18s ease, transform .18s ease;
}
.catalog-sidebar a:hover,
.catalog-sidebar a.is-active {
    color: var(--brand);
    border-color: rgba(0, 87, 168, .18);
    transform: translateX(3px);
}
.catalog-footer {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 6px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.catalog-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.page-status {
    margin-right: 6px;
    color: var(--muted);
    font-weight: 800;
}
.catalog-pagination a,
.page-ellipsis {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--muted);
    font-weight: 850;
}
.catalog-pagination a:hover {
    border-color: rgba(0, 87, 168, .35);
    color: var(--brand);
}
.catalog-pagination a.is-active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}
.catalog-pagination a.is-disabled {
    opacity: .48;
    pointer-events: none;
}
.page-ellipsis {
    border-color: transparent;
    background: transparent;
    min-width: 24px;
    padding: 0 4px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 42px 34px;
    transition: opacity .18s ease, transform .18s ease;
}
.catalog-products {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.product-grid.is-list {
    grid-template-columns: 1fr;
}
.product-grid.is-loading {
    opacity: .42;
    transform: translateY(4px);
    pointer-events: none;
}
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    transition: transform .18s ease;
}
.product-card:hover {
    transform: translateY(-3px);
}
.product-media {
    position: relative;
    margin-bottom: 18px;
}
.product-image {
    --photo-inset: 4px;
    --photo-space: 8px;
    position: relative;
    height: 265px;
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.96) 0 31%, transparent 32%),
        linear-gradient(145deg, rgba(232,244,250,.9), rgba(255,247,232,.78));
    border-radius: 0;
    overflow: hidden;
    text-align: center;
    transition: filter .18s ease, transform .18s ease;
}
.product-card:hover .product-image {
    filter: saturate(1.03) contrast(1.02);
}
.product-image img {
    position: absolute;
    inset: var(--photo-inset);
    width: calc(100% - var(--photo-space));
    height: calc(100% - var(--photo-space));
    max-width: none;
    max-height: none;
    object-fit: contain;
    display: block;
}
.product-image small {
    max-width: 145px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}
.product-image span {
    color: var(--brand);
    font-size: 62px;
    font-weight: 900;
    text-shadow: 0 1px 0 #fff;
}
.product-image.large {
    --photo-inset: 8px;
    --photo-space: 16px;
    width: 100%;
    max-width: 100%;
    height: clamp(360px, 36vw, 500px);
    background: #fff;
}
.product-image.large img {
    object-fit: contain;
    object-position: center;
}
@media (min-width: 561px) {
    .product-image {
        border: 1px solid rgba(0, 87, 168, .08);
        border-radius: 10px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
        --photo-inset: 8px;
        --photo-space: 16px;
    }
}
.product-grid.is-list .product-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-areas:
        "image meta"
        "image title"
        "image description"
        "image foot";
    align-items: center;
    min-height: 0;
    gap: 8px 22px;
    text-align: left;
}
.product-grid.is-list .product-media {
    grid-area: image;
    margin-bottom: 0;
}
.product-grid.is-list .product-image {
    height: 170px;
}
.product-grid.is-list .product-meta { grid-area: meta; }
.product-grid.is-list .product-card h3 {
    grid-area: title;
    min-height: 0;
    margin-bottom: 0;
    font-size: 22px;
}
.product-description {
    display: none;
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}
.product-grid.is-list .product-description {
    display: block;
    grid-area: description;
}
.product-grid.is-list .product-foot {
    grid-area: foot;
    justify-content: flex-start;
}
.product-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    min-height: 16px;
}
.product-grid.is-list .product-meta { justify-content: flex-start; }
.product-meta span {
    color: var(--muted);
    font-weight: 700;
}
.product-category {
    margin: 0;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
}
.product-card h3 {
    min-height: 52px;
    margin: 7px 0 8px;
    font-size: 17px;
    line-height: 1.35;
    display: grid;
    align-items: center;
}
.product-card h3 a:hover { color: var(--brand); }
.stock-status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #edf8f4;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}
.product-card .stock-status.is-in {
    background: #f3f8fb;
    color: var(--muted);
}
.stock-status.is-out {
    background: #fff2f0;
    color: #b33228;
}
.product-card.is-out-of-stock .product-image img,
.product-card.is-out-of-stock .product-image span {
    opacity: .72;
}
.stock-disabled {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    border-radius: 999px;
    background: #fff2f0;
    color: #b33228;
    font-weight: 900;
    box-shadow: none;
}
.btn[disabled],
.quick-cart button[disabled],
.quantity-stepper button[disabled],
.quantity-stepper input[disabled] {
    cursor: not-allowed;
    opacity: .62;
}
.bulk-note {
    padding: 14px 16px;
    border-left: 4px solid var(--brand-2);
    background: #fff8ef;
    color: var(--muted);
    line-height: 1.55;
}
.product-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}
.product-grid.is-list .product-foot { justify-content: flex-start; }
.product-foot a {
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
    border-bottom: 1px solid transparent;
}
.product-foot a:hover {
    color: var(--brand);
    border-color: var(--brand);
}
.price { color: var(--brand); font-size: 21px; }
.quick-cart button, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    margin-top: 14px;
    border: 1px solid var(--brand);
    border-radius: 3px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.product-card .quick-cart {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: min(215px, calc(100% - 32px));
    transform: translate(-50%, 8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}
.product-card:hover .quick-cart,
.product-card:focus-within .quick-cart {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
.quick-cart button {
    width: 100%;
    min-height: 42px;
    margin-top: 0;
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(0, 87, 168, .24);
}
.quick-cart.is-adding button {
    background: var(--brand-2);
    border-color: var(--brand-2);
}
.quick-cart button:hover, .btn:hover {
    background: #064d70;
    transform: translateY(-1px);
}
.btn.light { background: #fff; color: var(--brand); }
.btn.light:hover { background: #eef8fb; }
.btn.danger {
    width: 100%;
    border-color: #cf4b3f;
    background: #fff;
    color: #cf4b3f;
}
.btn.danger:hover {
    background: #fff2f0;
    border-color: #a9372d;
    color: #a9372d;
}
.home-hero {
    display: block;
    margin-bottom: 26px;
}
.home-hero-copy {
    display: grid;
    align-content: center;
    min-height: 360px;
    padding: 46px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(0, 87, 168, .96), rgba(0, 87, 168, .88) 56%, rgba(245, 130, 32, .9)),
        var(--brand);
    border-radius: 10px;
    box-shadow: 0 28px 70px rgba(0, 87, 168, .2);
}
.home-hero-copy h1 {
    max-width: 820px;
    margin: 0 0 16px;
    font-size: 58px;
    line-height: 1.02;
}
.home-hero-copy p:not(.eyebrow) {
    max-width: 850px;
}
.home-hero-copy p:not(.eyebrow) {
    max-width: 700px;
    color: rgba(255, 255, 255, .88);
    font-size: 19px;
    line-height: 1.6;
}
.home-hero-copy .eyebrow { color: #fff0d1; }
.home-hero-copy .btn.light { border-color: #fff; }
.home-hero-panel {
    display: grid;
    align-content: stretch;
}
.request-steps {
    display: grid;
    gap: 14px;
}
.request-steps article {
    display: grid;
    align-content: center;
    min-height: 130px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(24, 36, 44, .06);
}
.request-steps strong {
    color: var(--brand-2);
    font-size: 34px;
}
.request-steps span {
    color: var(--brand);
    font-size: 18px;
    font-weight: 900;
}
.category-strip,
.how-it-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.category-strip a,
.how-it-works div {
    display: grid;
    gap: 8px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(24, 36, 44, .045);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.category-strip a:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 87, 168, .28);
    box-shadow: 0 20px 44px rgba(24, 36, 44, .08);
}
.category-strip span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eef6ff;
    color: var(--brand);
    font-weight: 900;
}
.category-strip strong,
.how-it-works strong {
    color: var(--brand);
    font-size: 18px;
}
.category-strip small,
.how-it-works span {
    color: var(--muted);
    line-height: 1.5;
}
.featured-head {
    margin-top: 8px;
}
.featured-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.hero-strip {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 34px;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(7, 94, 137, .97), rgba(19, 167, 184, .9) 58%, rgba(244, 178, 59, .84)),
        #075e89;
    color: #fff;
    padding: 44px;
    margin-bottom: 36px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(7, 94, 137, .2);
}
.hero-strip h1 { font-size: 56px; margin: 0 0 12px; line-height: 1; }
.hero-strip p:not(.eyebrow) { font-size: 18px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-strip .btn.light { border-color: #fff; }
.eyebrow { color: var(--coral); text-transform: uppercase; font-weight: 900; }
.hero-strip .eyebrow { color: #fff2cc; }
.hero-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini-product {
    background: rgba(255,255,255,.96);
    color: var(--ink);
    padding: 18px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 8px;
}
.product-art {
    width: 88px; height: 88px; margin: 0 auto 10px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--brand-2);
    color: #fff;
    font-weight: 900;
}
.service-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 0 34px;
}
.service-strip div {
    display: grid;
    gap: 5px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.service-strip strong {
    color: var(--brand);
    font-size: 17px;
}
.service-strip span {
    color: var(--muted);
}
.product-detail { display: grid; grid-template-columns: minmax(0, .88fr) minmax(360px, 1fr); gap: 42px; }
.detail-copy h1 { font-size: 38px; margin: 8px 0 14px; }
.related-products {
    margin-top: 58px;
    padding-top: 34px;
    border-top: 1px solid var(--line);
}
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.section-head h2 {
    margin: 4px 0 0;
    font-size: 30px;
}
.section-head a {
    color: var(--brand);
    font-weight: 900;
}
.related-grid {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}
.buy-box, .panel, .login-card {
    display: grid;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(24, 36, 44, .06);
}
.buy-box {
    grid-template-columns: minmax(170px, 1fr) auto;
    align-items: end;
    padding: 18px;
}
.buy-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    padding: 0;
    border: 0;
    background: transparent;
}
.buy-box .btn {
    grid-column: 1 / -1;
}
.buy-summary span,
.quantity-control > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}
.buy-summary strong {
    color: var(--brand);
    font-size: 22px;
    line-height: 1.1;
}
.buy-summary small,
.buy-meta {
    color: var(--muted);
}
.buy-meta {
    display: grid;
    gap: 8px;
    padding: 2px 0 4px;
    line-height: 1.35;
}
.quantity-control {
    display: flex;
    gap: 10px;
    align-items: center;
}
.quantity-stepper {
    display: grid;
    grid-template-columns: 38px 58px 38px;
    align-items: center;
    width: 134px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}
.quantity-stepper button {
    min-height: 38px;
    border: 0;
    background: #eef6ff;
    color: var(--brand);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}
.quantity-stepper button:hover {
    background: #dfefff;
}
.quantity-stepper input {
    min-height: 38px;
    padding: 6px 4px;
    border: 0;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
    font-weight: 900;
}
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    min-height: 42px;
    padding: 9px 12px;
    font: inherit;
}
textarea { min-height: 94px; }
.spam-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.clean-table { width: 100%; border-collapse: collapse; background: #fff; }
.clean-table th, .clean-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; }
.clean-table th { color: var(--brand); text-transform: uppercase; font-size: 13px; }
.qty { max-width: 90px; }
.cart-total { margin: 20px 0; font-size: 22px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: start; }
.form-grid label,
.request-modal label,
.checkout-grid label {
    display: grid;
    gap: 7px;
    align-content: start;
}
.field-label {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    min-height: 22px;
    font-weight: 500;
    line-height: 1.2;
}
.required-mark {
    color: var(--coral);
    font-weight: 900;
}
.phone-field {
    display: grid;
    gap: 7px;
}
.phone-control {
    display: grid;
    grid-template-columns: minmax(110px, 140px) minmax(0, 1fr);
    align-items: stretch;
}
.phone-control select {
    border-right: 0;
}
.phone-control select,
.phone-control input {
    min-height: 52px;
}
.confirmation { max-width: 680px; }
.page-copy { max-width: 820px; }
.about-hero {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 420px;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 26px;
}
.about-copy {
    padding: 42px;
    color: #fff;
    border-radius: 10px;
    background:
        linear-gradient(120deg, rgba(0, 87, 168, .96), rgba(0, 87, 168, .86) 55%, rgba(245, 130, 32, .88)),
        var(--brand);
    box-shadow: 0 26px 64px rgba(0, 87, 168, .2);
}
.about-copy h1 {
    max-width: 760px;
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.05;
}
.about-copy p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255, 255, 255, .88);
    font-size: 18px;
    line-height: 1.6;
}
.about-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.about-copy .btn.light {
    border-color: #fff;
}
.about-metrics {
    display: grid;
    gap: 14px;
}
.about-metrics div,
.about-grid article,
.contact-card,
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(24, 36, 44, .06);
}
.about-metrics div {
    display: grid;
    align-content: center;
    min-height: 130px;
    padding: 22px;
}
.about-metrics strong {
    color: var(--brand-2);
    font-size: 34px;
}
.about-metrics span {
    color: var(--brand);
    font-size: 18px;
    font-weight: 900;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}
.about-grid article {
    padding: 24px;
}
.about-grid span {
    color: var(--brand-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.about-grid h2 {
    margin: 10px 0;
    font-size: 22px;
    line-height: 1.22;
}
.about-grid p {
    color: var(--muted);
    line-height: 1.6;
}
.contact-panel {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 24px;
    align-items: start;
    scroll-margin-top: 210px;
}
.contact-card,
.contact-form {
    padding: 28px;
}
.contact-card h2,
.contact-form h2 {
    margin: 0 0 12px;
    font-size: 30px;
}
.contact-card p {
    color: var(--muted);
    line-height: 1.6;
}
.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}
.contact-list div {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f9fbfc;
}
.contact-list small {
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 900;
}
.contact-list strong {
    color: var(--brand);
}
.whatsapp-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}
.whatsapp-contact strong {
    color: #075e54;
}
.whatsapp-contact > span:last-child {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 999px;
    background: #e8f8ef;
    color: #128c4a;
    font-size: 13px;
    font-weight: 900;
}
.whatsapp-contact:hover > span:last-child {
    background: #25d366;
    color: #fff;
}
.contact-form {
    display: grid;
    gap: 14px;
}
.cart-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}
.empty-cart {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 58px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(24, 36, 44, .06);
}
.empty-cart h2,
.empty-cart p { margin: 0; }
.empty-cart p { color: var(--muted); }
.empty-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 900;
}
.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 26px;
    align-items: start;
}
.cart-list {
    display: grid;
    gap: 14px;
}
.cart-item {
    display: grid;
    grid-template-columns: 92px minmax(220px, 1fr) 115px 110px 125px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(24, 36, 44, .05);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.cart-item:hover {
    border-color: rgba(0, 87, 168, .24);
    box-shadow: 0 20px 50px rgba(24, 36, 44, .09);
    transform: translateY(-2px);
}
.cart-thumb {
    width: 92px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background:
        radial-gradient(circle at 68% 28%, rgba(245, 130, 32, .26), transparent 32%),
        linear-gradient(145deg, #edf6ff, #fff7ee);
}
.cart-thumb span {
    color: var(--brand);
    font-size: 28px;
    font-weight: 900;
}
.cart-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}
.cart-info p,
.cart-info h2,
.cart-info span { margin: 0; }
.cart-info p {
    color: var(--brand-2);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.cart-info h2 {
    margin: 5px 0;
    font-size: 19px;
    line-height: 1.25;
}
.cart-info span,
.cart-price small,
.cart-qty small,
.cart-line-total small {
    color: var(--muted);
    font-size: 12px;
}
.cart-price,
.cart-qty,
.cart-line-total {
    display: grid;
    gap: 6px;
}
.cart-price strong,
.cart-line-total strong {
    color: var(--brand);
    font-size: 18px;
}
.cart-summary {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 14px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(24, 36, 44, .08);
}
.cart-summary form {
    margin: 0;
}
.cart-summary h2,
.cart-summary p { margin: 0; }
.summary-row,
.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.summary-row span,
.summary-note {
    color: var(--muted);
}
.summary-total {
    border-bottom: 0;
    padding-top: 4px;
}
.summary-total strong {
    color: var(--brand-2);
    font-size: 27px;
}
.summary-note {
    font-size: 13px;
    line-height: 1.5;
}
.modal-open { overflow: hidden; }
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(8, 22, 34, .58);
    animation: fadeIn .18s ease;
}
.modal-backdrop[hidden] { display: none; }
.request-modal {
    position: relative;
    width: min(720px, 100%);
    max-height: min(860px, 92vh);
    overflow: auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .24);
    animation: modalIn .2s ease;
}
.request-modal h2 {
    margin: 0 0 8px;
    font-size: 30px;
}
.modal-intro {
    margin: 0 0 18px;
    color: var(--muted);
}
.request-modal form {
    display: grid;
    gap: 14px;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 24px;
    cursor: pointer;
}
.modal-close:hover {
    border-color: var(--brand);
    color: var(--brand);
}
.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    max-width: min(360px, calc(100vw - 48px));
    padding: 14px 18px;
    border-radius: 8px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 20px 45px rgba(24, 36, 44, .18);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease;
}
.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.site-footer {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 18px;
    align-items: end;
    max-width: 1490px;
    margin: 0 auto;
    padding: 34px 22px 46px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}
.site-footer p {
    max-width: 620px;
    line-height: 1.6;
}
.site-footer .brand.small strong {
    color: var(--brand);
}
.site-footer .brand.small em {
    color: var(--brand-2);
}
.footer-rights {
    margin: 0;
    color: var(--ink);
    font-weight: 900;
    text-align: right;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loaderSlide {
    0% { transform: translateX(-110%); }
    50% { transform: translateX(78vw); }
    100% { transform: translateX(245%); }
}

.admin-body { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; background: var(--soft); }
.admin-side { background: #16313f; padding: 24px; display: grid; align-content: start; gap: 10px; }
.admin-side a { color: #fff; padding: 11px 8px; border-radius: 4px; }
.admin-side a:hover { background: rgba(255,255,255,.12); }
.admin-main { padding: 30px; overflow-x: auto; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.stat-grid div { background: #fff; border: 1px solid var(--line); padding: 20px; }
.stat-grid strong { display: block; font-size: 34px; color: var(--brand); }
.status { background: #e8f5f7; color: var(--brand); padding: 5px 9px; border-radius: 999px; font-weight: 800; }
.login-screen { min-height: 100vh; display: grid; place-items: center; background: var(--soft); }
.login-card { width: min(430px, 92vw); }
.login-card .brand strong { font-size: 20px; }
.login-card .brand em { font-size: 30px; }

@media (max-width: 980px) {
    .topbar, .shop-shell, .home-hero, .hero-strip, .product-detail, .checkout-grid, .cart-layout, .catalog-layout, .about-hero, .about-grid, .contact-panel, .admin-body, .site-footer { grid-template-columns: 1fr; }
    .topbar { height: auto; min-height: 0; padding: 14px 18px; gap: 12px; }
    .logo-brand {
        width: min(330px, 100%);
        min-width: 0;
    }
    .searchbar { grid-template-columns: 1fr; height: auto; }
    .searchbar input, .searchbar select, .searchbar button { min-height: 48px; border-bottom: 1px solid var(--line); }
    .menubar { justify-content: flex-start; overflow-x: auto; padding-left: 14px; }
    .home-hero-copy {
        min-height: 0;
        padding: 34px;
    }
    .home-hero-copy h1 {
        font-size: 42px;
    }
    .category-strip,
    .how-it-works,
    .featured-grid { grid-template-columns: 1fr; }
    .catalog-sidebar { position: static; }
    .catalog-sidebar nav {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .catalog-sidebar a {
        flex: 0 0 auto;
        padding: 0 12px;
        border: 1px solid var(--line);
        background: #fff;
    }
    .catalog-sidebar a:hover,
    .catalog-sidebar a.is-active {
        transform: none;
        border-color: var(--brand);
    }
    .product-grid, .catalog-products { grid-template-columns: repeat(2, minmax(160px, 1fr)); gap: 22px; }
    .product-grid.is-list .product-card { grid-template-columns: 1fr; grid-template-areas: none; text-align: center; }
    .product-grid.is-list .product-image,
    .product-grid.is-list .product-meta,
    .product-grid.is-list .product-card h3,
    .product-grid.is-list .product-description,
    .product-grid.is-list .product-foot,
    .product-grid.is-list .quick-cart { grid-area: auto; }
    .product-grid.is-list .product-meta,
    .product-grid.is-list .product-foot { justify-content: center; }
    .catalog-head, .catalog-tools { align-items: flex-start; flex-wrap: wrap; }
    .catalog-head {
        align-items: flex-start;
    }
    .catalog-pagination {
        justify-content: flex-start;
    }
    .cart-heading { align-items: flex-start; flex-direction: column; }
    .cart-item { grid-template-columns: 82px minmax(0, 1fr); }
    .cart-price, .cart-qty, .cart-line-total { grid-column: 2; }
    .cart-summary { position: static; }
    .stat-grid, .form-grid, .service-strip { grid-template-columns: 1fr; }
    .footer-rights { text-align: left; }
}

@media (max-width: 560px) {
    body {
        background: linear-gradient(#ffffff 0, #ffffff 154px, #f7fafb 154px, #f7fafb 100%);
    }
    .site-header {
        border-bottom: 1px solid var(--line);
    }
    .topbar {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        padding: 10px 12px 9px;
    }
    .topbar::after {
        display: none;
    }
    .logo-brand {
        grid-column: 1;
        grid-row: 1;
        width: min(190px, 52vw);
    }
    .quick-actions {
        grid-column: 2;
        grid-row: 1;
        gap: 10px;
        white-space: nowrap;
    }
    .quick-actions strong {
        font-size: 15px;
    }
    .cart-link {
        min-height: 38px;
        padding: 0 11px;
    }
    .cart-icon {
        font-size: 0;
    }
    .cart-icon::before {
        content: "Request";
        font-size: 14px;
    }
    .cart-badge {
        top: -8px;
        right: -8px;
        min-width: 18px;
        height: 18px;
        font-size: 11px;
    }
    .mobile-search-toggle {
        grid-column: 1 / -1;
        grid-row: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .searchbar {
        grid-column: 1 / -1;
        grid-row: 3;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        border-width: 0;
        border-color: transparent;
        box-shadow: none;
        transition: max-height .22s ease, opacity .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .topbar.is-search-open .searchbar {
        max-height: 172px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        border-width: 1px;
        border-color: var(--line);
        box-shadow: 0 10px 25px rgba(7, 94, 137, .05);
    }
    .searchbar input,
    .searchbar select,
    .searchbar button {
        min-height: 44px;
        padding: 0 14px;
        font-size: 15px;
    }
    .menubar {
        height: 48px;
        justify-content: center;
        padding-left: 0;
        gap: 28px;
        font-size: 14px;
    }
    .menubar a {
        padding: 15px 0;
    }
    .catalog-sidebar,
    .catalog-products,
    .product-grid,
    .hero-products {
        min-width: 0;
        width: 100%;
    }
    .product-grid,
    .catalog-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 12px;
    }
    .catalog-footer {
        justify-content: center;
        margin-top: 0;
        gap: 14px;
    }
    .catalog-pagination {
        justify-content: center;
    }
    .page-status {
        width: 100%;
        margin: 0 0 2px;
        text-align: center;
    }
    .catalog-pagination a,
    .page-ellipsis {
        min-width: 38px;
        min-height: 38px;
        padding: 0 11px;
    }
    .hero-products {
        grid-template-columns: 1fr;
    }
    .home-hero-copy {
        padding: 28px 22px;
    }
    .home-hero-copy h1 {
        font-size: 34px;
    }
    .product-card {
        min-width: 0;
    }
    .product-media {
        margin-bottom: 10px;
    }
    .product-image {
        --photo-inset: 3px;
        --photo-space: 6px;
        height: 142px;
    }
    .product-image.large {
        --photo-inset: 3px;
        --photo-space: 6px;
        height: 320px;
    }
    .product-image span {
        font-size: 40px;
    }
    .product-image small {
        max-width: 96px;
        font-size: 10px;
    }
    .product-meta {
        min-height: 14px;
        gap: 6px;
    }
    .product-category {
        font-size: 9px;
        line-height: 1.25;
    }
    .product-card h3 {
        min-height: 58px;
        margin: 5px 0 6px;
        font-size: 14px;
        line-height: 1.25;
        align-items: start;
    }
    .product-foot {
        align-items: flex-start;
        justify-content: space-between;
        gap: 6px;
    }
    .price {
        font-size: 16px;
        line-height: 1.2;
        text-align: left;
    }
    .product-foot a {
        font-size: 12px;
    }
    .product-card .quick-cart {
        position: static;
        width: 100%;
        margin-top: 9px;
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }
    .quick-cart button {
        min-height: 38px;
        padding: 0 8px;
        font-size: 12px;
        line-height: 1.15;
        border-radius: 4px;
        box-shadow: 0 10px 20px rgba(0, 87, 168, .18);
    }
    .buy-box {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px;
    }
    .quantity-control {
        justify-content: space-between;
    }
}
