:root{
    --shop-navy:#061f45;
    --shop-blue:#0b2f66;
    --shop-gold:#d9a441;
    --shop-red:#b42025;
    --shop-text:#061f45;
    --shop-muted:#5d6b80;
    --shop-border:#dbe3ef;
    --shop-soft:#f5f7fb;
    --shop-white:#fff;
}

*{box-sizing:border-box}

body.storefront-body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#fff;
    color:var(--shop-text);
}

.shop-container{
    width:min(1500px,calc(100% - 70px));
    margin:0 auto;
}

/* TOP BAR */
.shop-topbar{
    background:var(--shop-navy);
    color:#fff;
    font-size:14px;
    border-bottom:3px solid var(--shop-gold);
}

.shop-topbar-inner{
    min-height:38px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.shop-topbar strong{
    color:var(--shop-gold);
    text-transform:uppercase;
}

.shop-topbar nav{
    display:flex;
    gap:28px;
}

.shop-topbar a{
    color:#fff;
    text-decoration:none;
    font-weight:800;
    text-transform:uppercase;
}

/* MAIN HEADER */
.shop-main-header{
    background:#fff;
}

.shop-main-header-inner{
    min-height:112px;
    display:grid;
    grid-template-columns:420px 1fr 360px;
    gap:28px;
    align-items:center;
}

.shop-logo-wrap{
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none;
}

.shop-logo-wrap img{
    width:135px;
    height:135px;
    object-fit:contain;
    margin-top:-30px;
    margin-bottom:-18px;
}

.shop-logo-wrap strong{
    display:block;
    font-size:38px;
    line-height:1;
    letter-spacing:1px;
    color:var(--shop-navy);
    text-transform:uppercase;
}

.shop-logo-wrap span{
    display:block;
    margin-top:8px;
    color:var(--shop-red);
    font-size:20px;
    letter-spacing:8px;
    font-weight:900;
    text-transform:uppercase;
}

.shop-search{
    display:flex;
    height:48px;
}

.shop-search input{
    flex:1;
    border:1px solid var(--shop-border);
    border-right:0;
    border-radius:25px 0 0 25px;
    padding:0 24px;
    font-size:15px;
}

.shop-search button{
    width:88px;
    border:0;
    background:var(--shop-gold);
    color:#fff;
    border-radius:0 7px 7px 0;
    font-size:22px;
    cursor:pointer;
}

.shop-header-actions{
    display:flex;
    justify-content:flex-end;
    gap:28px;
}

.shop-header-actions a{
    display:flex;
    gap:12px;
    align-items:center;
    color:var(--shop-navy);
    text-decoration:none;
    font-weight:900;
}

.shop-header-actions i{
    font-size:30px;
}

.shop-header-actions small{
    color:#111;
    font-weight:700;
}

/* CATEGORY NAV */
.shop-category-nav{
    background:var(--shop-navy);
}

.shop-category-nav .shop-container{
    min-height:48px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:42px;
}

.shop-category-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:900;
    text-transform:uppercase;
}

.shop-category-nav .shop-deals{
    color:var(--shop-gold);
}

/* TRUST STRIP */
.shop-trust-strip{
    background:#fbf7ee;
    border-bottom:1px solid #eadfc9;
}

.shop-trust-grid{
    min-height:58px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    align-items:center;
}

.shop-trust-grid div{
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 18px;
    border-right:1px solid #ded3bd;
}

.shop-trust-grid div:last-child{border-right:0}

.shop-trust-grid i{
    color:var(--shop-navy);
    font-size:23px;
}

.shop-trust-grid strong{
    display:block;
    text-transform:uppercase;
    font-size:13px;
}

.shop-trust-grid span{
    display:block;
    color:#333;
    font-size:12px;
}

/* HERO */
.shop-hero{
    min-height:310px;
    background:
        linear-gradient(90deg,rgba(6,31,69,.98) 0%,rgba(6,31,69,.88) 34%,rgba(6,31,69,.18) 70%),
        radial-gradient(circle at right,#d9a441 0%,transparent 25%),
        #10233f;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.shop-hero::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:55%;
    background:
        linear-gradient(90deg,rgba(6,31,69,.15),rgba(0,0,0,.15)),
        url("/assets/img/global/logo.png");
    background-repeat:no-repeat;
    background-position:center right 80px;
    background-size:310px;
    opacity:.12;
}

.shop-hero-inner{
    min-height:310px;
    display:flex;
    align-items:center;
    position:relative;
    z-index:2;
}

.shop-hero-content{
    max-width:650px;
}

.shop-hero h1{
    margin:0 0 12px;
    font-size:54px;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:1px;
}

.shop-hero h1 span{
    color:var(--shop-gold);
}

.shop-hero p{
    margin:0 0 20px;
    font-size:20px;
    line-height:1.4;
}

.shop-hero-actions{
    display:flex;
    gap:18px;
    margin-bottom:22px;
}

.shop-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-width:180px;
    height:48px;
    border-radius:4px;
    text-decoration:none;
    font-weight:900;
    text-transform:uppercase;
}

.shop-btn-gold{
    background:var(--shop-gold);
    color:#fff;
}

.shop-btn-outline{
    border:1px solid #fff;
    color:#fff;
}

.shop-hero-points{
    display:flex;
    gap:28px;
    font-size:13px;
}

.shop-hero-points span{
    display:flex;
    gap:8px;
    align-items:center;
}

.shop-hero-points i{
    color:var(--shop-gold);
}

/* ICON CATS */
.shop-icon-cats{
    background:#fff;
    border-bottom:1px solid var(--shop-border);
}

.shop-icon-cat-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
}

.shop-icon-cat-grid a{
    min-height:105px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    text-decoration:none;
    color:var(--shop-navy);
    border-right:1px solid var(--shop-border);
}

.shop-icon-cat-grid a:last-child{border-right:0}

.shop-icon-cat-grid i{
    font-size:34px;
    margin-bottom:8px;
}

.shop-icon-cat-grid strong{
    font-size:15px;
}

.shop-icon-cat-grid span{
    font-size:12px;
    color:#333;
}

/* MAIN AREA */
.shop-main-area{
    padding:28px 0 18px;
    background:#fff;
}

.shop-main-grid{
    display:grid;
    grid-template-columns:280px minmax(0,1fr) 280px;
    gap:28px;
    align-items:start;
}

.shop-side-panel{
    min-height:282px;
    background:linear-gradient(135deg,var(--shop-navy),#0b315f);
    border-radius:7px;
    padding:22px;
    color:#fff;
}

.shop-side-panel h2{
    margin:0 0 4px;
    color:var(--shop-gold);
    text-transform:uppercase;
    font-size:22px;
}

.shop-side-panel p{
    margin:0 0 20px;
    font-size:17px;
}

.shop-side-panel a{
    display:flex;
    justify-content:space-between;
    padding:12px 0;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    border-bottom:1px solid rgba(255,255,255,.25);
}

.shop-section-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
}

.shop-section-heading h2{
    margin:0;
    text-transform:uppercase;
    font-size:24px;
}

.shop-section-heading a{
    color:var(--shop-navy);
    font-weight:900;
    text-decoration:none;
}

.shop-product-row{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:14px;
}

.shop-product-card{
    background:#fff;
    border:1px solid var(--shop-border);
    border-radius:7px;
    padding:14px;
    color:var(--shop-navy);
    text-decoration:none;
    box-shadow:0 5px 14px rgba(6,31,69,.08);
}

.shop-product-image{
    height:140px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.shop-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.shop-product-image i{
    font-size:42px;
    color:var(--shop-gold);
}

.shop-product-card h3{
    margin:10px 0 8px;
    font-size:14px;
    min-height:35px;
}

.shop-stars{
    color:var(--shop-gold);
    font-size:13px;
}

.shop-stars span{
    color:#555;
}

.shop-price{
    display:block;
    margin:9px 0 12px;
    font-size:17px;
}

.shop-product-card button{
    width:100%;
    height:34px;
    border:0;
    border-radius:4px;
    background:var(--shop-navy);
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
}

.shop-promo-stack{
    display:grid;
    gap:12px;
}

.shop-promo{
    border-radius:7px;
    padding:22px;
}

.shop-promo.navy{
    background:var(--shop-navy);
    color:#fff;
}

.shop-promo.gold{
    background:var(--shop-gold);
    color:var(--shop-navy);
}

.shop-promo i{
    font-size:38px;
    margin-bottom:10px;
}

.shop-promo h3{
    margin:0 0 8px;
    text-transform:uppercase;
    font-size:20px;
}

.shop-promo p{
    margin:0 0 18px;
    line-height:1.4;
}

.shop-promo a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:34px;
    padding:0 24px;
    border-radius:4px;
    background:var(--shop-gold);
    color:#fff;
    text-decoration:none;
    font-weight:900;
    text-transform:uppercase;
}

.shop-promo.gold a{
    background:#fff;
    color:var(--shop-navy);
}

/* EMPTY */
.shop-empty{
    min-height:230px;
    border:1px solid var(--shop-border);
    border-radius:8px;
    display:grid;
    place-items:center;
    text-align:center;
    padding:30px;
    color:var(--shop-muted);
}

.shop-empty i{
    font-size:44px;
    color:var(--shop-gold);
}


/* RESPONSIVE */
@media(max-width:1200px){
    .shop-main-header-inner{
        grid-template-columns:1fr;
        padding:18px 0;
    }

    .shop-header-actions{
        justify-content:flex-start;
    }

    .shop-main-grid{
        grid-template-columns:1fr;
    }

    .shop-product-row{
        grid-template-columns:repeat(3,1fr);
    }

    .shop-trust-grid,
    .shop-icon-cat-grid,
    .shop-footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:700px){
    .shop-container{
        width:min(100% - 28px,1500px);
    }

    .shop-topbar-inner,
    .shop-topbar nav,
    .shop-hero-actions,
    .shop-hero-points{
        flex-direction:column;
        align-items:flex-start;
    }

    .shop-logo-wrap strong{
        font-size:28px;
    }

    .shop-logo-wrap span{
        letter-spacing:4px;
    }

    .shop-logo-wrap img{
        width:95px;
        height:95px;
        margin:0;
    }

    .shop-category-nav .shop-container{
        flex-wrap:wrap;
        gap:16px;
        padding:14px 0;
    }

    .shop-hero h1{
        font-size:38px;
    }

    .shop-product-row,
    .shop-trust-grid,
    .shop-icon-cat-grid,
    .shop-footer-grid{
        grid-template-columns:1fr;
    }
}

.shop-catalog-hero{
    background:linear-gradient(135deg,var(--shop-navy),#0b315f);
    color:#fff;
    padding:46px 0;
}

.shop-catalog-hero span{
    color:var(--shop-gold);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.shop-catalog-hero h1{
    margin:10px 0 8px;
    font-size:42px;
    text-transform:uppercase;
}

.shop-catalog-hero p{
    margin:0;
    font-size:18px;
    color:rgba(255,255,255,.85);
}

.shop-catalog-wrap{
    padding:32px 0;
    background:#fff;
}

.shop-catalog-grid{
    display:grid;
    grid-template-columns:280px minmax(0,1fr);
    gap:28px;
    align-items:start;
}

.shop-filter-panel{
    border:1px solid var(--shop-border);
    border-radius:8px;
    padding:20px;
    background:#fff;
    box-shadow:0 5px 14px rgba(6,31,69,.08);
}

.shop-filter-panel h2{
    margin:0 0 18px;
    text-transform:uppercase;
    font-size:20px;
}

.shop-filter-panel form{
    display:grid;
    gap:10px;
}

.shop-filter-panel label{
    font-weight:900;
    color:var(--shop-navy);
    margin-top:6px;
}

.shop-filter-panel input,
.shop-filter-panel select{
    width:100%;
    border:1px solid var(--shop-border);
    border-radius:6px;
    padding:11px;
    font-size:14px;
}

.shop-filter-panel button{
    margin-top:10px;
    height:42px;
    border:0;
    border-radius:5px;
    background:var(--shop-gold);
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.shop-filter-reset{
    text-align:center;
    color:var(--shop-navy);
    font-weight:900;
    text-decoration:none;
    margin-top:6px;
}

.shop-catalog-heading{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:18px;
}

.shop-catalog-heading h2{
    margin:0;
    text-transform:uppercase;
    font-size:26px;
}

.shop-catalog-heading p{
    margin:4px 0 0;
    color:var(--shop-muted);
}

.shop-catalog-heading a{
    color:var(--shop-navy);
    font-weight:900;
    text-decoration:none;
}

.shop-catalog-product-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
}

.shop-product-brand{
    font-size:12px;
    color:var(--shop-muted);
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:7px;
}

.shop-stock{
    display:inline-flex;
    margin-bottom:10px;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.shop-stock.in-stock{
    color:#16783a;
}

.shop-stock.out-stock{
    color:#b42025;
}

@media(max-width:1100px){
    .shop-catalog-grid{
        grid-template-columns:1fr;
    }

    .shop-catalog-product-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:650px){
    .shop-catalog-heading{
        display:block;
    }

    .shop-catalog-product-grid{
        grid-template-columns:1fr;
    }
}

.shop-product-detail-wrap{
    padding:34px 0;
    background:#fff;
}

.shop-breadcrumbs{
    display:flex;
    gap:9px;
    align-items:center;
    margin-bottom:22px;
    font-size:14px;
    color:var(--shop-muted);
}

.shop-breadcrumbs a{
    color:var(--shop-navy);
    font-weight:900;
    text-decoration:none;
}

.shop-product-detail-grid{
    display:grid;
    grid-template-columns:minmax(0,560px) minmax(0,1fr);
    gap:42px;
    align-items:start;
}

.shop-product-main-image{
    height:520px;
    border:1px solid var(--shop-border);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.shop-product-main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.shop-product-main-image i{
    font-size:60px;
    color:var(--shop-gold);
}

.shop-product-thumbs{
    display:flex;
    gap:10px;
    margin-top:12px;
    flex-wrap:wrap;
}

.shop-product-thumbs img{
    width:82px;
    height:82px;
    object-fit:contain;
    border:1px solid var(--shop-border);
    border-radius:6px;
}

.shop-product-brand-large{
    color:var(--shop-gold);
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:8px;
}

.shop-product-info h1{
    margin:0 0 10px;
    font-size:42px;
    line-height:1.08;
    color:var(--shop-navy);
}

.shop-product-price{
    display:flex;
    align-items:center;
    gap:12px;
    margin:18px 0;
}

.shop-product-price strong{
    font-size:36px;
    color:var(--shop-navy);
}

.shop-product-price del{
    color:var(--shop-muted);
    font-size:20px;
}

.shop-product-stock{
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:16px;
}

.shop-product-stock.in-stock{
    color:#16783a;
}

.shop-product-stock.low-stock{
    color:#c58a00;
}

.shop-product-stock.out-stock{
    color:#b42025;
}

.shop-product-short{
    font-size:17px;
    line-height:1.6;
    color:var(--shop-muted);
}

.shop-product-buy-box{
    margin:24px 0;
    padding:20px;
    border:1px solid var(--shop-border);
    border-radius:8px;
    display:grid;
    grid-template-columns:110px 1fr;
    gap:12px;
    align-items:end;
    max-width:420px;
    background:#fbfcff;
}

.shop-product-buy-box label{
    grid-column:1 / -1;
    font-weight:900;
}

.shop-product-buy-box input{
    height:46px;
    border:1px solid var(--shop-border);
    border-radius:5px;
    padding:0 12px;
}

.shop-product-buy-box button{
    height:46px;
    border:0;
    border-radius:5px;
    background:var(--shop-gold);
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.shop-product-support{
    display:grid;
    gap:10px;
    margin-top:20px;
}

.shop-product-support div{
    display:flex;
    gap:10px;
    align-items:center;
    color:var(--shop-navy);
    font-weight:800;
}

.shop-product-support i{
    color:var(--shop-gold);
}

.shop-product-tabs{
    margin-top:38px;
    display:grid;
    gap:20px;
}

.shop-product-tabs section{
    border:1px solid var(--shop-border);
    border-radius:8px;
    padding:24px;
    background:#fff;
}

.shop-product-tabs h2{
    margin:0 0 14px;
    text-transform:uppercase;
    color:var(--shop-navy);
}

.shop-product-tabs p{
    line-height:1.7;
    color:var(--shop-muted);
}

.shop-product-specs{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.shop-product-specs div{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:12px;
    background:#f8fbff;
    border:1px solid var(--shop-border);
    border-radius:6px;
}

.shop-document-list{
    display:grid;
    gap:12px;
}

.shop-document-list a{
    display:flex;
    gap:12px;
    align-items:center;
    padding:14px;
    border:1px solid var(--shop-border);
    border-radius:6px;
    color:var(--shop-navy);
    text-decoration:none;
}

.shop-document-list i{
    color:var(--shop-gold);
    font-size:24px;
}

.shop-document-list strong,
.shop-document-list small{
    display:block;
}

.shop-document-list small{
    color:var(--shop-muted);
}

@media(max-width:980px){
    .shop-product-detail-grid{
        grid-template-columns:1fr;
    }

    .shop-product-main-image{
        height:360px;
    }

    .shop-product-specs{
        grid-template-columns:1fr;
    }
}

.shop-product-detail-wrap{
    padding:34px 0;
    background:#fff;
}

.shop-breadcrumbs{
    display:flex;
    gap:9px;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom:22px;
    font-size:14px;
    color:var(--shop-muted);
}

.shop-breadcrumbs a{
    color:var(--shop-navy);
    font-weight:900;
    text-decoration:none;
}

.shop-breadcrumbs strong{
    color:var(--shop-text);
}

.shop-product-detail-grid{
    display:grid;
    grid-template-columns:minmax(0,560px) minmax(0,1fr);
    gap:42px;
    align-items:start;
}

.shop-product-main-image{
    height:520px;
    border:1px solid var(--shop-border);
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.shop-product-main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.shop-product-main-image i{
    font-size:60px;
    color:var(--shop-gold);
}

.shop-product-thumbs{
    display:flex;
    gap:10px;
    margin-top:12px;
    flex-wrap:wrap;
}

.shop-product-thumbs button{
    width:84px;
    height:84px;
    border:1px solid var(--shop-border);
    border-radius:6px;
    background:#fff;
    padding:4px;
    cursor:pointer;
}

.shop-product-thumbs button.is-active,
.shop-product-thumbs button:hover{
    border-color:var(--shop-gold);
}

.shop-product-thumbs img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.shop-product-brand-large{
    color:var(--shop-gold);
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:8px;
}

.shop-product-info h1{
    margin:0 0 10px;
    font-size:42px;
    line-height:1.08;
    color:var(--shop-navy);
}

.shop-product-price{
    display:flex;
    align-items:center;
    gap:12px;
    margin:18px 0;
}

.shop-product-price strong{
    font-size:36px;
    color:var(--shop-navy);
}

.shop-product-price del{
    color:var(--shop-muted);
    font-size:20px;
}

.shop-product-stock{
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:16px;
}

.shop-feature-stock.low-stock,
.shop-stock-badge.is-low-stock{
    background:#fff3cd;
    color:#9a6700;
    border:1px solid #ffe69c;
}

.shop-product-stock.in-stock{
    color:#16783a;
}

.shop-product-stock.low-stock{
    color:#c58a00;
}

.shop-product-stock.out-stock{
    color:#b42025;
}

.shop-product-meta-box{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin:18px 0;
}

.shop-product-meta-box div{
    border:1px solid var(--shop-border);
    border-radius:6px;
    padding:12px;
    background:#fbfcff;
}

.shop-product-meta-box span{
    display:block;
    color:var(--shop-muted);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:5px;
}

.shop-product-meta-box strong{
    color:var(--shop-navy);
}

.shop-product-short{
    font-size:17px;
    line-height:1.6;
    color:var(--shop-muted);
}

.shop-product-buy-box{
    margin:24px 0;
    padding:20px;
    border:1px solid var(--shop-border);
    border-radius:8px;
    display:grid;
    grid-template-columns:110px 1fr;
    gap:12px;
    align-items:end;
    max-width:440px;
    background:#fbfcff;
}

.shop-product-buy-box label{
    grid-column:1 / -1;
    font-weight:900;
}

.shop-product-buy-box input{
    height:46px;
    border:1px solid var(--shop-border);
    border-radius:5px;
    padding:0 12px;
}

.shop-product-buy-box button{
    height:46px;
    border:0;
    border-radius:5px;
    background:var(--shop-gold);
    color:#fff;
    font-weight:900;
    text-transform:uppercase;
    cursor:pointer;
}

.shop-product-secondary-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.shop-product-secondary-actions a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-height:40px;
    padding:0 14px;
    border:1px solid var(--shop-border);
    border-radius:5px;
    color:var(--shop-navy);
    font-weight:900;
    text-decoration:none;
}

.shop-product-secondary-actions i{
    color:var(--shop-gold);
}

.shop-product-support{
    display:grid;
    gap:10px;
    margin-top:20px;
}

.shop-product-support div{
    display:flex;
    gap:10px;
    align-items:center;
    color:var(--shop-navy);
    font-weight:800;
}

.shop-product-support i{
    color:var(--shop-gold);
}

.shop-product-tabs{
    margin-top:38px;
    display:grid;
    gap:20px;
}

.shop-product-tabs section{
    border:1px solid var(--shop-border);
    border-radius:8px;
    padding:24px;
    background:#fff;
}

.shop-product-tabs h2{
    margin:0 0 14px;
    text-transform:uppercase;
    color:var(--shop-navy);
}

.shop-product-tabs p{
    line-height:1.7;
    color:var(--shop-muted);
}

.shop-product-specs{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
}

.shop-product-specs div{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:12px;
    background:#f8fbff;
    border:1px solid var(--shop-border);
    border-radius:6px;
}

.shop-document-list{
    display:grid;
    gap:12px;
}

.shop-document-list a{
    display:flex;
    gap:12px;
    align-items:center;
    padding:14px;
    border:1px solid var(--shop-border);
    border-radius:6px;
    color:var(--shop-navy);
    text-decoration:none;
}

.shop-document-list i{
    color:var(--shop-gold);
    font-size:24px;
}

.shop-document-list strong,
.shop-document-list small{
    display:block;
}

.shop-document-list small{
    color:var(--shop-muted);
}

@media(max-width:980px){
    .shop-product-detail-grid{
        grid-template-columns:1fr;
    }

    .shop-product-main-image{
        height:360px;
    }

    .shop-product-specs,
    .shop-product-meta-box{
        grid-template-columns:1fr;
    }
}

/* ======================================================
   SHOP CART
====================================================== */

.shop-cart-wrap {
    padding: 34px 0;
    background: #fff;
}

.shop-cart-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.shop-cart-card,
.shop-cart-summary {
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(6,31,69,.08);
    padding: 22px;
}

.shop-cart-card h2,
.shop-cart-summary h2 {
    margin: 0 0 18px;
    color: var(--shop-navy);
    text-transform: uppercase;
}

.shop-cart-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 120px;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--shop-border);
}

.shop-cart-item:last-child {
    border-bottom: 0;
}

.shop-cart-thumb {
    width: 110px;
    height: 110px;
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8fbff;
}

.shop-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-cart-thumb i {
    font-size: 34px;
    color: var(--shop-gold);
}

.shop-cart-info h3 {
    margin: 0 0 6px;
}

.shop-cart-info h3 a {
    color: var(--shop-navy);
    text-decoration: none;
}

.shop-cart-info p {
    margin: 0 0 10px;
    color: var(--shop-muted);
}

.shop-cart-qty {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.shop-cart-qty input {
    width: 80px;
    height: 36px;
    border: 1px solid var(--shop-border);
    border-radius: 5px;
    padding: 0 10px;
}

.shop-cart-qty button {
    border: 0;
    border-radius: 5px;
    background: var(--shop-navy);
    color: #fff;
    font-weight: 900;
    padding: 0 14px;
    cursor: pointer;
}

.shop-cart-remove {
    color: #b42025;
    font-weight: 900;
    text-decoration: none;
    font-size: 13px;
}

.shop-cart-line-total {
    text-align: right;
    font-size: 18px;
    color: var(--shop-navy);
}

.shop-cart-summary {
    position: sticky;
    top: 20px;
}

.shop-cart-summary > div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--shop-border);
}

.shop-cart-summary hr {
    border: 0;
    border-top: 2px solid var(--shop-border);
    margin: 12px 0;
}

.shop-cart-total strong,
.shop-cart-total span {
    font-size: 20px;
    color: var(--shop-navy);
}

.shop-checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    margin-top: 18px;
    border-radius: 5px;
    background: var(--shop-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-continue-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    color: var(--shop-navy);
    font-weight: 900;
    text-decoration: none;
}

@media(max-width:900px) {
    .shop-cart-grid,
    .shop-cart-item {
        grid-template-columns: 1fr;
    }

    .shop-cart-line-total {
        text-align: left;
    }
}
/* Page separator below nav */
.shop-page-separator {
    height: 12px;
    background: linear-gradient(90deg, #f8f3e8, #fff, #f8f3e8);
    border-bottom: 1px solid var(--shop-border);
}

@media(max-width:1000px) {
    .shop-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:650px) {
    .shop-footer-main,
    .shop-footer-bottom .shop-container {
        grid-template-columns: 1fr;
        display: block;
    }

    .shop-footer-bottom p + p {
        margin-top: 8px;
    }
}

.shop-checkout-wrap {
    padding: 34px 0;
    background: #fff;
}

.shop-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.shop-checkout-form {
    display: grid;
    gap: 20px;
}

.shop-checkout-card,
.shop-checkout-summary {
    border: 1px solid var(--shop-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 5px 14px rgba(6,31,69,.08);
    padding: 22px;
}

.shop-checkout-card h2,
.shop-checkout-summary h2 {
    margin: 0 0 18px;
    color: var(--shop-navy);
    text-transform: uppercase;
}

.shop-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shop-form-grid .full {
    grid-column: 1 / -1;
}

.shop-checkout-card label {
    display: block;
    margin-bottom: 7px;
    font-weight: 900;
    color: var(--shop-navy);
}

.shop-checkout-card input,
.shop-checkout-card textarea {
    width: 100%;
    border: 1px solid var(--shop-border);
    border-radius: 6px;
    padding: 12px;
    font-size: 15px;
}

.shop-checkout-submit {
    height: 50px;
    border: 0;
    border-radius: 5px;
    background: var(--shop-gold);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.shop-checkout-summary {
    position: sticky;
    top: 20px;
}

.shop-checkout-summary > div,
.shop-checkout-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--shop-border);
}

.shop-checkout-summary-item small {
    display: block;
    color: var(--shop-muted);
    margin-top: 3px;
}

.shop-checkout-summary hr {
    border: 0;
    border-top: 2px solid var(--shop-border);
    margin: 12px 0;
}

.shop-checkout-total span,
.shop-checkout-total strong {
    font-size: 20px;
    color: var(--shop-navy);
}

.shop-checkout-summary p {
    color: var(--shop-muted);
    line-height: 1.5;
}

@media(max-width:900px) {
    .shop-checkout-grid,
    .shop-form-grid {
        grid-template-columns: 1fr;
    }
}

.shop-success-message {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.shop-success-message i {
    color: #16783a;
    font-size: 42px;
}

.shop-success-message h3 {
    margin: 0 0 8px;
    color: var(--shop-navy);
    font-size: 24px;
}

.shop-success-message p {
    color: var(--shop-muted);
    line-height: 1.6;
}

/* ==========================================================
   PRODUCT CARD
========================================================== */

.shop-product-card{
    background:#fff;
    border:1px solid #dfe7f2;
    border-radius:12px;
    overflow:hidden;
    transition:.25s;
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 6px 18px rgba(8,36,82,.06);
}

.shop-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(8,36,82,.12);
}

.shop-product-card__image{
    position:relative;
    display:block;
    background:#fff;
    padding:20px;
    height:240px;
    overflow:hidden;
}

.shop-product-card__image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s;
}

.shop-product-card:hover img{
    transform:scale(1.05);
}

.shop-product-card__badge{
    position:absolute;
    top:14px;
    left:14px;
    background:#d9a441;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
}

.shop-product-card__body{
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.shop-product-card__brand{
    color:#6b7c93;
    font-size:12px;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:.05em;
    margin-bottom:8px;
}

.shop-product-card__title{
    margin:0;
    font-size:18px;
    line-height:1.4;
    min-height:52px;
}

.shop-product-card__title a{
    color:#082452;
    text-decoration:none;
}

.shop-product-card__title a:hover{
    color:#d9a441;
}

.shop-product-card__sku{
    margin-top:8px;
    font-size:12px;
    color:#7b8794;
}

.shop-product-card__availability{
    margin-top:16px;
}

.shop-product-card__availability small{
    display:block;
    margin-top:6px;
    color:#7b8794;
    font-size:12px;
}

.shop-stock-badge{
    display:inline-block;
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.is-in-stock{
    background:#dff7e5;
    color:#177245;
}

.is-low-stock{
    background:#fff6d9;
    color:#946200;
}

.is-drop-ship{
    background:#dfefff;
    color:#005fb2;
}

.is-backorder{
    background:#ffe8d9;
    color:#9d3d00;
}

.is-out{
    background:#f6dede;
    color:#a90000;
}

.shop-product-card__price{
    margin-top:18px;
    font-size:28px;
    font-weight:800;
    color:#082452;
}

.shop-product-card__price-sale{
    color:#c62828;
    margin-right:10px;
}

.shop-product-card__price-regular{
    text-decoration:line-through;
    color:#9aa5b1;
    font-size:18px;
    font-weight:500;
}

.shop-product-card__actions{
    display:flex;
    gap:10px;
    margin-top:auto;
    padding-top:22px;
}

.shop-product-card__cart-btn{
    flex:1;
    border:none;
    background:#d9a441;
    color:#fff;
    border-radius:8px;
    padding:12px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.shop-product-card__cart-btn:hover{
    background:#c89430;
}

.shop-product-card__cart-btn.is-disabled{
    background:#c7cdd7;
    cursor:not-allowed;
}

.shop-product-card__view{
    display:flex;
    align-items:center;
    justify-content:center;
    width:95px;
    border:1px solid #dfe7f2;
    border-radius:8px;
    text-decoration:none;
    color:#082452;
    font-weight:700;
}

.shop-product-card__view:hover{
    background:#f5f8fc;
}
/* ==========================================================
   HOMEPAGE FEATURE PRODUCT
========================================================== */

.shop-feature-card{
    width:210px;
    background:#fff;
    border:1px solid #dfe5ef;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
    transition:.25s;
}

.shop-feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}

.shop-feature-card-image{
    display:block;
    height:160px;
    background:#fff;
    text-align:center;
    padding:12px;
}

.shop-feature-card-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.shop-feature-card-body{
    padding:12px;
}

.shop-feature-card-body h4{
    margin:0 0 8px;
    font-size:15px;
    line-height:1.35;
}

.shop-feature-card-body h4 a{
    color:#082452;
    text-decoration:none;
}

.shop-feature-card-body small{
    color:#6d7d93;
    display:block;
    margin-bottom:8px;
}

.shop-feature-price{
    font-size:24px;
    font-weight:700;
    color:#082452;
    margin-bottom:10px;
}

.shop-feature-stock{
    display:inline-block;
    padding:4px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    margin-bottom:12px;
}

.shop-feature-stock.in-stock{
    background:#dff5e2;
    color:#0d7a2f;
}

.shop-feature-stock.out-stock{
    background:#ffe4e4;
    color:#b00020;
}

.shop-feature-buttons form{
    margin-top:auto;
}

/* ==========================================================
   FEATURED PRODUCT CARD ALIGNMENT
========================================================== */

.shop-feature-card{
    display:flex;
    flex-direction:column;
    height:100%;
    min-height:365px;
}

.shop-feature-card-body{
    padding:12px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.shop-feature-card-body h4{
    margin:0 0 8px;
    font-size:15px;
    line-height:1.35;
    min-height:42px;
}

.shop-feature-buttons{
    margin-top:auto;
}

.shop-feature-buttons form{
    margin:0;
}

.shop-mini-cart-btn{
    width:100%;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:var(--shop-navy);
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.25s ease;
}

.shop-mini-cart-btn:hover{
    background:var(--shop-gold);
    color:#fff;
}


/* ==========================================================
   CATEGORY PAGE
========================================================== */

.shop-page-hero{
    padding:50px 0 40px;
}

.shop-page-hero .shop-container{
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
}

.shop-page-hero span{
    display:block;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:.08em;
    color:#d8a437;
    text-transform:uppercase;
    margin-bottom:10px;
}

.shop-page-hero h1{
    margin:0 0 14px;
    font-size:2.5rem;
    color:#0b2d63;
}

.shop-page-hero p{
    max-width:700px;
    color:#4f5d75;
    line-height:1.7;
    font-size:1rem;
}

.shop-filter-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:20px;
}

.shop-filter-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    background:#f7f9fc;
    border:1px solid #d7e2f0;
    border-radius:8px;
    color:#0b2d63;
    font-weight:600;
    text-decoration:none;
    transition:.2s;
}

.shop-filter-btn:hover{
    background:#0b2d63;
    color:#fff;
}

.shop-catalog-heading p{
    margin-top:8px;
    color:#6b7280;
}

.shop-empty{
    min-height:280px;
}

/* ==========================================================
   SOLUTIONS PAGE
========================================================== */

.solutions-hero {
    padding: 70px 0 60px;
}

.solutions-hero h1 {
    max-width: 900px;
}

.solutions-hero p {
    max-width: 760px;
}

.solutions-hero-actions,
.solutions-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.solutions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.solutions-btn-primary {
    background: #d9a441;
    color: #fff;
}

.solutions-btn-light {
    background: #fff;
    color: #0b2f66;
    border: 1px solid #dbe3ef;
}

.solutions-section {
    padding: 60px 0;
}

.solutions-section-soft {
    background: #f4f8fc;
}

.solutions-section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.solutions-section-heading span,
.solutions-eyebrow {
    display: block;
    color: #d9a441;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 8px;
}

.solutions-section-heading h2,
.solutions-split h2 {
    color: #0b2f66;
    font-size: 34px;
    margin: 0 0 12px;
}

.solutions-section-heading p,
.solutions-split p {
    color: #5d6b80;
    line-height: 1.7;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.solutions-card {
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    padding: 24px;
    text-decoration: none;
    color: #082452;
    box-shadow: 0 8px 22px rgba(8,36,82,.07);
    transition: .2s;
}

.solutions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(8,36,82,.12);
}

.solutions-card i {
    font-size: 32px;
    color: #d9a441;
    margin-bottom: 16px;
}

.solutions-card h3 {
    margin: 0 0 10px;
    color: #0b2f66;
}

.solutions-card p {
    color: #5d6b80;
    line-height: 1.6;
    margin-bottom: 18px;
}

.solutions-card strong {
    color: #d9a441;
}

.solutions-split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
    gap: 34px;
    align-items: center;
}

.solutions-check-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.solutions-check-list div {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #0b2f66;
    font-weight: 700;
}

.solutions-check-list i {
    color: #d9a441;
}

.solutions-highlight-card {
    background: #0b2f66;
    color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 14px 34px rgba(8,36,82,.18);
}

.solutions-highlight-card i {
    font-size: 42px;
    color: #d9a441;
    margin-bottom: 18px;
}

.solutions-highlight-card h3 {
    margin: 0 0 12px;
}

.solutions-highlight-card p {
    color: #e5edf7;
    line-height: 1.7;
}

.solutions-highlight-card a {
    display: inline-flex;
    margin-top: 14px;
    color: #fff;
    font-weight: 900;
}

.solutions-category-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.solutions-category-card {
    background: #fff;
    border: 1px solid #dbe3ef;
    border-radius: 14px;
    padding: 22px;
    text-decoration: none;
    color: #082452;
}

.solutions-category-card i {
    color: #d9a441;
    font-size: 28px;
    margin-bottom: 14px;
}

.solutions-category-card h3 {
    margin: 0 0 10px;
    color: #0b2f66;
}

.solutions-category-card p {
    color: #5d6b80;
    line-height: 1.6;
}

.solutions-cta {
    background: #0b2f66;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.solutions-cta h2 {
    font-size: 34px;
    margin: 0 0 12px;
}

.solutions-cta p {
    color: #e5edf7;
    max-width: 680px;
    margin: 0 auto;
}

.solutions-cta-actions {
    justify-content: center;
}

@media (max-width: 1100px) {
    .solutions-grid,
    .solutions-category-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solutions-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .solutions-grid,
    .solutions-category-row {
        grid-template-columns: 1fr;
    }

    .solutions-section-heading h2,
    .solutions-split h2,
    .solutions-cta h2 {
        font-size: 28px;
    }
}

/* ================================
   Store Contact / Consultation Page
================================ */

.store-contact-page {
    background: #f6f9fd;
    color: #062b5f;
}

.store-contact-hero {
    background: #ffffff;
    padding: 70px 20px 55px;
    border-bottom: 1px solid #dbe5f1;
}

.store-container {
    max-width: 1180px;
    margin: 0 auto;
}

.store-eyebrow {
    display: block;
    color: #d99a25;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    margin-bottom: 12px;
}

.store-contact-hero h1 {
    max-width: 780px;
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 18px;
    color: #062b5f;
}

.store-contact-hero p {
    max-width: 780px;
    font-size: 17px;
    line-height: 1.7;
    color: #24476f;
}

.store-contact-section {
    padding: 55px 20px 70px;
}

.store-contact-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.store-contact-main {
    background: #ffffff;
    border: 1px solid #dbe5f1;
    border-radius: 16px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(6, 43, 95, 0.08);
}

.store-consultation-form h2 {
    font-size: 28px;
    margin: 0 0 24px;
    color: #062b5f;
}

.store-consultation-form h3 {
    font-size: 20px;
    margin: 32px 0 14px;
    color: #062b5f;
}

.form-grid.two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.store-consultation-form label {
    display: block;
    font-weight: 700;
    color: #062b5f;
    margin-bottom: 7px;
    font-size: 14px;
}

.store-consultation-form input[type="text"],
.store-consultation-form input[type="email"],
.store-consultation-form select,
.store-consultation-form textarea {
    width: 100%;
    border: 1px solid #cbd8e8;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #062b5f;
    background: #ffffff;
    margin-bottom: 16px;
}

.store-consultation-form textarea {
    resize: vertical;
    min-height: 140px;
}

.store-consultation-form input:focus,
.store-consultation-form select:focus,
.store-consultation-form textarea:focus {
    outline: none;
    border-color: #d99a25;
    box-shadow: 0 0 0 3px rgba(217, 154, 37, 0.18);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #f6f9fd;
    border: 1px solid #dbe5f1;
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.checkbox-grid input {
    width: 16px;
    height: 16px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9px;
    padding: 14px 22px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
}

.store-btn-primary {
    background: #d99a25;
    color: #ffffff;
}

.store-btn-primary:hover {
    background: #c48718;
}

.store-contact-sidebar {
    position: sticky;
    top: 20px;
}

.store-help-card {
    background: #062b5f;
    color: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(6, 43, 95, 0.15);
}

.store-help-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #ffffff;
}

.store-help-card p {
    color: #e8f0fb;
    line-height: 1.6;
    margin-bottom: 18px;
}

.store-help-card strong {
    display: block;
    color: #d99a25;
    margin-top: 16px;
    margin-bottom: 4px;
}

.store-alert {
    padding: 16px 18px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-weight: 700;
}

.store-alert-error {
    background: #ffecec;
    border: 1px solid #e3aaaa;
    color: #8a1f1f;
}

@media (max-width: 900px) {
    .store-contact-layout {
        grid-template-columns: 1fr;
    }

    .store-contact-sidebar {
        position: static;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .store-contact-hero h1 {
        font-size: 32px;
    }

    .form-grid.two {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .store-contact-main {
        padding: 24px;
    }
}

.store-success-ref {
    margin-top: 24px;
    background: #f8efe0;
    border: 1px solid #e3b04b;
    color: #062b5f;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 18px;
    max-width: 520px;
}

.store-success-ref strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d99a25;
    margin-bottom: 6px;
}

.store-success-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.store-btn-secondary {
    background: #ffffff;
    color: #062b5f;
    border: 1px solid #cbd8e8;
}

/* ======================================================
   HEADER LOGO OVERLAP UPGRADE
====================================================== */

.shop-header {
    position: relative;
    z-index: 20;
}

.shop-topbar {
    position: relative;
    z-index: 2;
}

.shop-topbar strong {
    margin-left: 150px;
}

.shop-main-header {
    position: relative;
    z-index: 5;
    overflow: visible;
}

.shop-main-header-inner {
    min-height: 105px;
    grid-template-columns: 470px 1fr 360px;
    overflow: visible;
}

.shop-logo-wrap {
    position: relative;
    z-index: 10;
    align-self: center;
}

.shop-logo-wrap img {
    width: 165px;
    height: 165px;
    margin-top: -48px;
    margin-bottom: -42px;
    position: relative;
    z-index: 20;
}

.shop-logo-wrap strong {
    font-size: 40px;
}

.shop-logo-wrap span {
    font-size: 20px;
    letter-spacing: 9px;
}

.shop-category-nav {
    position: relative;
    z-index: 3;
}

/* Mobile reset */
@media(max-width:700px) {
    .shop-topbar strong {
        margin-left: 0;
    }

    .shop-main-header-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .shop-logo-wrap img {
        width: 105px;
        height: 105px;
        margin: 0;
    }
}

/* ===============================
   STORE BRAND
================================ */

.shop-brand{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.shop-main-header-inner{
    grid-template-columns:480px 1fr 330px;
}

.shop-brand-title{
    font-size:28px;
    font-weight:900;
    color:#082452;
    line-height:1;
    letter-spacing:1px;
    text-transform:uppercase;
    white-space:nowrap;
}

.shop-brand-subtitle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:8px;
}

.shop-brand-subtitle::before,
.shop-brand-subtitle::after{
    content:"";
    flex:1;
    max-width:55px;
    height:2px;
    background:#d9a441;
}

.shop-brand-subtitle span{
    color:#b42025;
    font-size:11px;
    font-weight:800;
    letter-spacing:6px;
    text-transform:uppercase;
}

.shop-main-header-inner{
    grid-template-columns:480px 1fr 330px;
}

/* ======================================================
   TRUST STRIP - STACKED TEXT STYLE
====================================================== */

.shop-trust-strip {
    background: #fbf6ea;
    border-top: 1px solid #eadfc9;
    border-bottom: 1px solid #d9ccb3;
}

.shop-trust-grid {
    min-height: 54px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
}

.shop-trust-grid div {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    column-gap: 10px;
    padding: 8px 18px;
    border-right: 1px solid #d8c9ad;
}

.shop-trust-grid i {
    grid-row: 1 / 3;
    color: var(--shop-navy);
    font-size: 24px;
    line-height: 1;
}

.shop-trust-grid strong{
    display:block;
    color:var(--shop-navy);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    line-height:.88;
    margin:0;
    padding:0;
}

.shop-trust-grid span{
    display:block;
    color:#333;
    font-size:11px;
    line-height:1;
    margin-top:-3px;
    padding:0;
}

.shop-trust-grid div:last-child {
    border-right: 0;
}

/* ==========================================================
   SOLUTION VIEW PAGE
========================================================== */

.solution-view-hero{
    background:linear-gradient(135deg,#061f45,#0b2f66);
    color:#fff;
    padding:70px 0;
}

.solution-view-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.4fr) 360px;
    gap:36px;
    align-items:center;
}

.solution-view-hero h1{
    font-size:46px;
    line-height:1.1;
    margin:0 0 16px;
}

.solution-view-hero p{
    font-size:18px;
    line-height:1.7;
    color:#e8eef7;
    max-width:760px;
}

.solution-view-hero-card{
    background:#fff;
    color:#061f45;
    border-radius:16px;
    padding:30px;
    box-shadow:0 16px 36px rgba(0,0,0,.18);
}

.solution-view-hero-card i{
    color:#d9a441;
    font-size:44px;
    margin-bottom:18px;
}

.solution-view-hero-card h3{
    margin:0 0 12px;
    font-size:24px;
}

.solution-view-hero-card p{
    color:#5d6b80;
    font-size:15px;
}

.solution-package-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.solution-package-card{
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:14px;
    padding:26px;
    box-shadow:0 8px 22px rgba(8,36,82,.07);
}

.solution-package-card h3{
    margin:0 0 10px;
    color:#061f45;
    font-size:24px;
}

.solution-package-card strong{
    display:block;
    color:#d9a441;
    font-size:22px;
    margin-bottom:12px;
}

.solution-package-card p{
    color:#5d6b80;
    line-height:1.6;
}

.solution-package-card ul{
    list-style:none;
    padding:0;
    margin:18px 0;
    display:grid;
    gap:10px;
}

.solution-package-card li{
    display:flex;
    gap:10px;
    color:#061f45;
    font-weight:700;
}

.solution-package-card li i{
    color:#16783a;
    margin-top:3px;
}

.solution-package-card a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 18px;
    background:#d9a441;
    color:#fff;
    border-radius:7px;
    text-decoration:none;
    font-weight:900;
}

.solution-faq-list{
    display:grid;
    gap:14px;
}

.solution-faq-list details{
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:10px;
    padding:18px 20px;
}

.solution-faq-list summary{
    cursor:pointer;
    font-weight:900;
    color:#061f45;
    font-size:17px;
}

.solution-faq-list p{
    color:#5d6b80;
    line-height:1.7;
    margin-bottom:0;
}

@media(max-width:1000px){
    .solution-view-hero-grid,
    .solution-package-grid{
        grid-template-columns:1fr;
    }

    .solution-view-hero h1{
        font-size:36px;
    }
}

/* ==========================================================
   SHIPPING INFO PAGE
========================================================== */

.shop-info-hero{
    background:linear-gradient(135deg,#061f45,#0b2f66);
    color:#fff;
    padding:64px 0;
}

.shop-info-eyebrow{
    display:block;
    color:#d9a441;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:10px;
}

.shop-info-hero h1{
    margin:0 0 14px;
    font-size:46px;
    line-height:1.1;
}

.shop-info-hero p{
    max-width:760px;
    color:#e8eef7;
    font-size:18px;
    line-height:1.7;
}

.shop-info-section{
    background:#f5f7fb;
    padding:44px 0;
}

.shop-info-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) 330px;
    gap:28px;
    align-items:start;
}

.shop-info-main{
    display:grid;
    gap:20px;
}

.shop-info-card,
.shop-info-help-card{
    background:#fff;
    border:1px solid #dbe3ef;
    border-radius:14px;
    padding:26px;
    box-shadow:0 8px 22px rgba(8,36,82,.06);
}

.shop-info-card h2{
    margin:0 0 12px;
    color:#061f45;
    font-size:26px;
}

.shop-info-card p{
    color:#5d6b80;
    line-height:1.7;
    margin:0;
}

.shop-rate-table{
    display:grid;
    gap:10px;
    margin-top:14px;
}

.shop-rate-table div{
    display:grid;
    grid-template-columns:180px 1fr auto;
    gap:14px;
    align-items:center;
    padding:14px 16px;
    background:#f8fbff;
    border:1px solid #dbe3ef;
    border-radius:10px;
}

.shop-rate-table strong{
    color:#061f45;
}

.shop-rate-table span{
    color:#5d6b80;
}

.shop-rate-table b{
    color:#061f45;
    text-align:right;
}

.shop-info-sidebar{
    display:grid;
    gap:18px;
}

.shop-info-help-card{
    background:#061f45;
    color:#fff;
}

.shop-info-help-card.gold{
    background:#d9a441;
    color:#061f45;
}

.shop-info-help-card i{
    font-size:38px;
    margin-bottom:14px;
}

.shop-info-help-card h3{
    margin:0 0 10px;
    font-size:24px;
}

.shop-info-help-card p{
    line-height:1.6;
    margin-bottom:18px;
}

.shop-info-help-card a{
    display:inline-flex;
    padding:12px 18px;
    border-radius:7px;
    background:#fff;
    color:#061f45;
    font-weight:900;
    text-decoration:none;
}

@media(max-width:900px){
    .shop-info-grid{
        grid-template-columns:1fr;
    }

    .shop-rate-table div{
        grid-template-columns:1fr;
    }

    .shop-info-hero h1{
        font-size:36px;
    }
}

.shop-info-feature-list{
    display:grid;
    gap:10px;
    margin:18px 0;
}

.shop-info-feature-list div{
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:#061f45;
    font-weight:800;
}

.shop-info-feature-list i{
    color:#16783a;
    margin-top:3px;
}

.shop-info-inline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:18px;
    padding:12px 18px;
    background:#d9a441;
    color:#fff;
    border-radius:7px;
    font-weight:900;
    text-decoration:none;
}

/* ======================================================
   FULL SHOP FOOTER
====================================================== */

.shop-site-footer{
    background:var(--shop-navy);
    color:#fff;
    margin-top:0;
}

.shop-footer-main{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1.4fr;
    gap:34px;
    padding:44px 0;
}

.shop-footer-brand img{
    width:92px;
    height:92px;
    object-fit:contain;
    margin-bottom:14px;
}

.shop-footer-brand h3,
.shop-footer-column h4{
    margin:0 0 14px;
    color:var(--shop-gold);
    text-transform:uppercase;
}

.shop-footer-brand p,
.shop-footer-column p{
    color:rgba(255,255,255,.82);
    line-height:1.6;
    margin:0 0 12px;
}

.shop-footer-column a{
    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:10px;
    font-weight:800;
}

.shop-footer-column a:hover{
    color:var(--shop-gold);
}

/* Footer Trust Bar */
.shop-footer-trust{
    background:#061f45;
    border-top:1px solid rgba(255,255,255,.18);
    border-bottom:1px solid rgba(255,255,255,.18);
}

.shop-footer-trust-grid{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    align-items:center;
}

.shop-footer-trust-item{
    display:grid;
    grid-template-columns:34px minmax(0,1fr);
    align-items:center;
    column-gap:12px;
    padding:18px 22px;
    border-right:1px solid rgba(255,255,255,.22);
}

.shop-footer-trust-item:last-child{
    border-right:0;
}

.shop-footer-trust-item i{
    color:#fff;
    font-size:22px;
    text-align:center;
}

.shop-footer-trust-text h4{
    margin:0 0 4px;
    color:var(--shop-gold);
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    line-height:1;
    white-space:nowrap;
}

.shop-footer-trust-text p{
    margin:0;
    color:#fff;
    font-size:12px;
    line-height:1.2;
    white-space:nowrap;
}

.shop-footer-bottom{
    background:#041630;
    padding:16px 0;
}

.shop-footer-bottom .shop-container{
    display:flex;
    justify-content:space-between;
    gap:20px;
    color:rgba(255,255,255,.8);
    font-size:13px;
}

.shop-footer-bottom p{
    margin:0;
}

.shop-footer-bottom strong{
    color:var(--shop-gold);
}

@media(max-width:1000px){
    .shop-footer-main{
        grid-template-columns:1fr 1fr;
    }

    .shop-footer-trust-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .shop-footer-main,
    .shop-footer-trust-grid{
        grid-template-columns:1fr;
    }

    .shop-footer-trust-item{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.18);
    }

    .shop-footer-bottom .shop-container{
        display:block;
    }

    .shop-footer-bottom p + p{
        margin-top:8px;
    }
}