/* ==========================================
   PRODUCTS HERO
========================================== */

.products-hero{
    background:linear-gradient(135deg,#123D72,#0c2d57);
    color:#fff;
    text-align:center;
    padding:120px 0 90px;
}

.products-hero span{
    color:#D4A547;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.products-hero h1{
    font-size:58px;
    margin:18px 0;
    line-height:1.2;
}

.products-hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
    opacity:.92;
}

/* ==========================================
   REMOVE SEARCH
========================================== */

.search-section{
    display:none;
}

/* ==========================================
   CATEGORY SECTIONS
========================================== */

.product-category{
    padding:90px 0;
    background:#fff;
}

.light-bg{
    background:#f8f9fb;
}

.category-heading{
    text-align:center;
    margin-bottom:60px;
}

.category-heading span{
    display:inline-block;
    color:#D4A547;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.category-heading h2{
    font-size:42px;
    color:#123D72;
    margin-bottom:18px;
}

.category-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* ==========================================
   PRODUCT GRID
========================================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/* ==========================================
   PRODUCT IMAGE
========================================== */

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.product-card:hover img{
    transform:scale(1.08);
}

/* ==========================================
   PRODUCT CONTENT
========================================== */

.product-content{
    padding:24px;
}

.product-content h3{
    font-size:24px;
    color:#123D72;
    margin-bottom:12px;
    line-height:1.3;
}

.product-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:24px;
    min-height:52px;
}

/* ==========================================
   BUTTON
========================================== */

.product-content .btn-primary{
    width:100%;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 22px;
    border-radius:10px;
    font-weight:600;
    transition:all .3s ease;
}

.product-content .btn-primary:hover{
    transform:translateY(-2px);
}

/* ==========================================
   BULK ORDER CTA
========================================== */

.bulk-order{
    padding:100px 0;
    background:linear-gradient(135deg,#123D72,#0d315d);
}

.bulk-content{
    max-width:850px;
    margin:auto;
    text-align:center;
    color:#fff;
}

.bulk-content span{
    display:inline-block;
    color:#D4A547;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:16px;
}

.bulk-content h2{
    font-size:44px;
    margin-bottom:20px;
    line-height:1.3;
}

.bulk-content p{
    font-size:18px;
    line-height:1.8;
    opacity:.9;
    margin:0 auto 35px;
    max-width:700px;
}

.bulk-content .btn-primary{
    padding:16px 34px;
    border-radius:10px;
    font-size:16px;
}

/* ==========================================
   SECTION TRANSITION
========================================== */

.product-category{
    position:relative;
}

.product-category::after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:#D4A547;
    margin:70px auto 0;
    opacity:.35;
}

.product-category:last-of-type::after{
    display:none;
}