/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#222;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}


/* =========================================================
   HEADER
========================================================= */

header{
    min-height:80px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 5%;
    box-shadow:0 4px 20px rgba(0,0,0,.07);
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(10px);
}

.logo{
    display:flex;
    align-items:center;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    width:160px;
    height:60px;
    object-fit:contain;
    display:block;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav ul{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
    margin:0;
    padding:0;
}

nav ul li a{
    text-decoration:none;
    color:#333;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#0066cc;
}


/* =========================================================
   HEADER RIGHT
========================================================= */

.header-icons{
    display:flex;
    align-items:center;
    gap:13px;
}

.header-icons > a{
    text-decoration:none;
    color:#333;
    position:relative;
}

.search-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.3s;
}

.search-icon:hover{
    background:#f0f6ff;
    color:#0066cc;
}

.cart-icon{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cart-count{
    position:absolute;
    top:-5px;
    right:-6px;
    width:19px;
    height:19px;
    border-radius:50%;
    background:#0066cc;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:600;
}

.call-btn,
.whatsapp-btn{
    padding:10px 15px;
    border-radius:8px;
    color:#fff !important;
    font-size:12px !important;
    font-weight:600;
    transition:.3s;
}

.call-btn{
    background:#0066cc;
}

.call-btn:hover{
    background:#0055aa;
    transform:translateY(-2px);
}

.whatsapp-btn{
    background:#25d366;
}

.whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-2px);
}


/* =========================================================
   PAGE
========================================================= */

.product-page{
    max-width:1250px;
    margin:auto;
    padding:0 20px 70px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb{
    padding:25px 0 20px;
    color:#777;
    font-size:13px;
}

.breadcrumb a{
    color:#0066cc;
    text-decoration:none;
}


/* =========================================================
   PRODUCT AREA
========================================================= */

.product{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    align-items:start;
}


/* =========================================================
   GALLERY CARD
========================================================= */

.gallery{
    background:#fff;
    padding:20px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.07);
    border:1px solid #edf1f6;
    position:sticky;
    top:100px;
}

.main-image{
    width:100%;
    height:500px;
    background:linear-gradient(
        145deg,
        #f8fbff,
        #eef5fc
    );
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.main-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.4s;
}

.main-image img:hover{
    transform:scale(1.03);
}


/* =========================================================
   THUMBNAILS
========================================================= */

.thumbs{
    display:flex;
    gap:12px;
    margin-top:18px;
    flex-wrap:wrap;
}

.thumbs img{
    width:78px;
    height:78px;
    object-fit:cover;
    border-radius:10px;
    border:2px solid #e2e7ee;
    cursor:pointer;
    transition:.3s;
    background:#fff;
}

.thumbs img:hover{
    border-color:#0066cc;
    transform:translateY(-2px);
}

.thumbs img.active-thumb{
    border-color:#0066cc;
}


/* =========================================================
   DETAILS CARD
========================================================= */

.details{
    background:#fff;
    padding:32px;
    border-radius:18px;
    box-shadow:0 8px 30px rgba(0,0,0,.07);
    border:1px solid #edf1f6;
}


/* =========================================================
   BADGE
========================================================= */

.badge-custom{
    display:inline-flex;
    align-items:center;
    gap:7px;
    background:#eaf3ff;
    color:#0066cc;
    padding:7px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.badge-custom i{
    font-size:11px;
}


/* =========================================================
   TITLE
========================================================= */

.details h1{
    font-size:31px;
    line-height:1.25;
    margin:16px 0 10px;
    color:#151515;
}


/* =========================================================
   RATING
========================================================= */

.rating{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:15px;
}

.rating-stars{
    color:#ffb400;
    font-size:16px;
}

.rating span{
    color:#777;
    font-size:13px;
}


/* =========================================================
   PRICE
========================================================= */

.price-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin:8px 0 15px;
}

.price{
    color:#0066cc;
    font-size:36px;
    font-weight:800;
}

.price-label{
    color:#777;
    font-size:13px;
}

.old-price{
    color:#aaa;
    font-size:17px;
    text-decoration:line-through;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.description{
    color:#606060;
    font-size:14px;
    line-height:1.8;
    padding-bottom:20px;
    border-bottom:1px solid #edf0f4;
}


/* =========================================================
   OPTIONS
========================================================= */

.option{
    margin-top:22px;
}

.option h3{
    font-size:15px;
    margin-bottom:10px;
    color:#222;
}

.option h3 span{
    color:#777;
    font-weight:400;
    font-size:12px;
}

.option-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.option button{
    padding:11px 16px;
    border:1px solid #dfe4ea;
    background:#fff;
    color:#333;
    border-radius:8px;
    cursor:pointer;
    font-size:13px;
    font-weight:500;
    transition:.3s;
}

.option button:hover{
    border-color:#0066cc;
    color:#0066cc;
}

.option button.active{
    background:#0066cc;
    color:#fff;
    border-color:#0066cc;
    box-shadow:0 5px 15px rgba(0,102,204,.18);
}


/* =========================================================
   QUANTITY
========================================================= */

.quantity-area{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:10px;
}

.quantity{
    display:flex;
    align-items:center;
    border:1px solid #dce2e9;
    border-radius:9px;
    overflow:hidden;
    width:max-content;
    background:#fff;
}

.quantity button{
    width:45px;
    height:45px;
    border:none;
    background:#f1f4f8;
    color:#222;
    font-size:21px;
    cursor:pointer;
    transition:.3s;
}

.quantity button:hover{
    background:#0066cc;
    color:#fff;
}

.quantity input{
    width:80px;
    height:45px;
    border:none;
    outline:none;
    text-align:center;
    font-size:16px;
    font-weight:600;
    color:#222;
    background:#fff;
}

.quantity-note{
    color:#777;
    font-size:12px;
}


/* =========================================================
   TOTAL BOX
========================================================= */

.total{
    margin-top:22px;
    padding:18px 20px;
    border-radius:12px;
    background:linear-gradient(
        135deg,
        #f1f7ff,
        #f8fbff
    );
    border:1px solid #dcecff;
}

.total-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.total-row + .total-row{
    margin-top:7px;
}

.total h3{
    font-size:14px;
    font-weight:500;
    color:#555;
    margin:0;
}

.total h2{
    color:#0066cc;
    font-size:25px;
    font-weight:800;
    margin:0;
}


/* =========================================================
   UPLOAD
========================================================= */

.upload{
    margin-top:22px;
}

.upload h3{
    font-size:15px;
    margin-bottom:10px;
}

.upload-box{
    border:2px dashed #d8e0e9;
    background:#fafcff;
    padding:17px;
    border-radius:10px;
    transition:.3s;
}

.upload-box:hover{
    border-color:#0066cc;
    background:#f5f9ff;
}

.upload-box label{
    display:flex;
    align-items:center;
    gap:10px;
    color:#555;
    font-size:13px;
    cursor:pointer;
}

.upload-box i{
    color:#0066cc;
    font-size:20px;
}

.upload input{
    width:100%;
    font-size:12px;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    margin-top:24px;
}

.actions button{
    border:none;
    padding:15px;
    border-radius:10px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.cart-btn{
    background:#ff9800;
}

.cart-btn:hover{
    background:#ed8b00;
    transform:translateY(-2px);
}

.buy-btn{
    background:#0066cc;
}

.buy-btn:hover{
    background:#0055aa;
    transform:translateY(-2px);
}

.actions button:disabled{
    opacity:.7;
    cursor:not-allowed;
    transform:none;
}


/* =========================================================
   DELIVERY
========================================================= */

.delivery{
    margin-top:22px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.delivery-item{
    background:#f8fafc;
    border:1px solid #edf0f4;
    border-radius:9px;
    padding:12px;
    display:flex;
    align-items:center;
    gap:9px;
}

.delivery-item i{
    color:#0066cc;
    width:20px;
}

.delivery-item span{
    color:#555;
    font-size:11px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip{
    max-width:1250px;
    margin:35px auto 0;
    padding:0 20px;
}

.trust-inner{
    background:#fff;
    border-radius:15px;
    box-shadow:0 7px 25px rgba(0,0,0,.05);
    border:1px solid #edf1f6;
    padding:22px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-right:1px solid #edf0f4;
}

.trust-item:last-child{
    border-right:none;
}

.trust-item i{
    color:#0066cc;
    font-size:20px;
}

.trust-item strong{
    display:block;
    font-size:12px;
}

.trust-item span{
    display:block;
    color:#777;
    font-size:10px;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
    margin-top:50px;
    background:#101820;
    color:#fff;
    padding:45px 5% 20px;
}

.footer-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:35px;
}

.footer-grid h2{
    margin-bottom:12px;
}

.footer-grid h3{
    margin-bottom:15px;
    font-size:15px;
}

.footer-grid p{
    color:#bfc7d0;
    font-size:12px;
    line-height:1.8;
}

.footer-grid ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-grid ul li{
    margin:9px 0;
    color:#bfc7d0;
    font-size:12px;
}

.footer-grid ul li a{
    color:#bfc7d0;
    text-decoration:none;
}

.footer-grid ul li a:hover{
    color:#fff;
}

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#1c2731;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    background:#0066cc;
    transform:translateY(-3px);
}

.copyright{
    max-width:1250px;
    margin:35px auto 0;
    padding-top:18px;
    border-top:1px solid #29333d;
    text-align:center;
}

.copyright p{
    color:#9ca6af;
    font-size:11px;
}


/* =========================================================
   FLOAT WHATSAPP
========================================================= */

.whatsapp-float{
    position:fixed;
    right:22px;
    bottom:22px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#25d366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
    text-decoration:none;
    box-shadow:0 8px 25px rgba(0,0,0,.2);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}


/* =========================================================
   BACK TO TOP
========================================================= */

#topBtn{
    position:fixed;
    right:22px;
    bottom:90px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#0066cc;
    color:#fff;
    cursor:pointer;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:998;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1050px){

    nav ul{
        gap:16px;
    }

    .header-icons{
        gap:7px;
    }

    .call-btn,
    .whatsapp-btn{
        padding:9px 10px;
    }

    .product{
        gap:22px;
    }

    .details{
        padding:25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px){

    header{
        flex-wrap:wrap;
        gap:10px;
    }

    .logo img{
        width:145px;
        height:55px;
    }

    nav{
        order:3;
        width:100%;
    }

    nav ul{
        justify-content:center;
        flex-wrap:wrap;
        gap:13px;
        padding:5px 0;
    }

    .header-icons{
        margin-left:auto;
    }

    .product{
        grid-template-columns:1fr;
    }

    .gallery{
        position:relative;
        top:0;
    }

    .trust-inner{
        grid-template-columns:1fr 1fr;
    }

    .trust-item{
        border-right:none;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:600px){

    header{
        padding:9px 4%;
    }

    .logo img{
        width:125px;
        height:50px;
    }

    .header-icons{
        gap:5px;
    }

    .search-icon{
        width:32px;
        height:32px;
    }

    .cart-icon{
        width:32px;
        height:32px;
    }

    .call-btn,
    .whatsapp-btn{
        padding:7px 8px;
        font-size:10px !important;
    }

    .breadcrumb{
        font-size:11px;
        padding:18px 0;
    }

    .gallery{
        padding:12px;
    }

    .main-image{
        height:330px;
    }

    .thumbs img{
        width:65px;
        height:65px;
    }

    .details{
        padding:20px;
    }

    .details h1{
        font-size:25px;
    }

    .price{
        font-size:31px;
    }

    .option button{
        padding:10px 12px;
        font-size:11px;
    }

    .quantity-note{
        display:none;
    }

    .actions{
        grid-template-columns:1fr;
    }

    .delivery{
        grid-template-columns:1fr;
    }

    .trust-inner{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media(max-width:400px){

    .call-btn{
        display:none;
    }

    .details h1{
        font-size:22px;
    }

    .main-image{
        height:280px;
    }

}