/* ==========================================
   PRODUCTS PAGE
========================================== */

.products-hero{
    margin-top:95px;
    padding:100px 20px;
    background:linear-gradient(135deg,#071423,#0d2342);
    text-align:center;
    color:#fff;
}

.products-hero .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.1);
    border-radius:30px;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.products-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.2;
}

.products-hero p{
    max-width:760px;
    margin:auto;
    line-height:1.8;
    color:#d8dde8;
}

/* ==========================================
   PRODUCT LIST
========================================== */

.products-section{
    background:#f6f8fb;
    padding:80px 0;
}

.products-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

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

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.product-image{
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

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

.placeholder-image{
    width:100%;
    height:260px;
    background:#1c2b4d;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:600;
}

.product-content{
    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.badge{
    display:inline-block;
    background:#eaf3ff;
    color:#0057b8;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.product-content h3{
    font-size:28px;
    color:#071423;
    margin-bottom:15px;
}

.product-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    flex:1;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    background:#ff5b4d;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#071423;
    color:#fff;
}

/* ==========================================
   NO PRODUCTS
========================================== */

.no-products{
    text-align:center;
    width:100%;
    padding:80px 20px;
}

.no-products h2{
    font-size:42px;
    color:#071423;
    margin-bottom:20px;
}

.no-products p{
    max-width:600px;
    margin:0 auto 30px;
    color:#666;
    line-height:1.8;
}

/* ==========================================
   SINGLE PRODUCT
========================================== */

.single-product{
    padding:100px 0;
    background:#fff;
}

.single-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.single-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.product-badge{
    display:inline-block;
    background:#0057b8;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-size:13px;
}

.single-content h1{
    font-size:42px;
    margin-bottom:20px;
    color:#071423;
}

.product-description{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.quote-btn{
    display:inline-block;
    padding:15px 35px;
    background:#071423;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.quote-btn:hover{
    background:#0057b8;
}

/* ==========================================
   RELATED PRODUCTS
========================================== */

.related-products{
    background:#f6f8fb;
    padding:90px 0;
}

.related-products h2{
    text-align:center;
    margin-bottom:45px;
    font-size:38px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.related-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-8px);
}

.related-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.related-card h3{
    padding:20px;
    text-align:center;
    color:#071423;
}

.related-card a{
    text-decoration:none;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.single-grid{
    grid-template-columns:1fr;
}

.products-hero h1{
    font-size:42px;
}

}

@media(max-width:768px){

.products-hero{
    padding:80px 20px;
}

.products-hero h1{
    font-size:34px;
}

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

.related-grid{
    grid-template-columns:1fr;
}

.single-content h1{
    font-size:32px;
}

}.featured-products{
    padding:80px 0;
}

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

.product-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:contain;
}

.product-card h3{
    margin:20px 0;
}

.product-card .btn{
    display:inline-block;
    padding:12px 24px;
    background:#ff5b4d;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
}

@media(max-width:991px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .products-grid{
        grid-template-columns:1fr;
    }
}
.products-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.products-home .products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    align-items:stretch;
}

.products-home .product-card{
    width:100%;
    margin:0;
}

.products-home .product-image img{
    width:100%;
    height:260px;
    object-fit:contain;
    background:#f8f8f8;
}

@media (max-width:991px){
    .products-home .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .products-home .products-grid{
        grid-template-columns:1fr;
    }
}
.single-product .container,
.related-products .container{
    width: 95% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.single-grid{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: start !important;
}
.single-product{
    width:100% !important;
}

.single-product .container{
    max-width:1400px !important;
    width:95% !important;
    margin:0 auto !important;
    padding:0 !important;
}

.single-grid{
    display:grid !important;
    grid-template-columns:45% 55% !important;
    gap:60px !important;
    width:100% !important;
}

.single-image,
.single-content{
    width:100% !important;
    max-width:none !important;
}
.product-gallery-wrap{
    display:flex;
    gap:20px;
}

.gallery-thumbs{
    width:100px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.gallery-thumbs img{
    width:80px;
    height:80px;
    object-fit:contain;
    border:1px solid #ddd;
    border-radius:8px;
    cursor:pointer;
    padding:5px;
    background:#fff;
}

.active-thumb{
    border:2px solid #0A4EA3;
}

.gallery-main{
    flex:1;
    background:#fff;
    border:1px solid #eee;
    border-radius:12px;
    padding:20px;
    text-align:center;
}

.gallery-main img{
    max-width:100%;
    max-height:550px;
    object-fit:contain;
}

.product-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
}

@media(max-width:991px){

    .product-gallery-wrap{
        flex-direction:column-reverse;
    }

    .gallery-thumbs{
        width:100%;
        flex-direction:row;
    }

}