/* =====================================================
   FLEX PAGE CSS
   Printera - Flex Banner Printing
===================================================== */


/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7faff;
    color:#172033;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
select,
textarea{
    font-family:inherit;
}


/* =====================================================
   HEADER
===================================================== */

header{
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #e8edf5;
    position:sticky;
    top:0;
    z-index:1000;
}

.header-inner{
    max-width:1250px;
    margin:auto;
    min-height:78px;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.logo img{
    width:150px;
    height:auto;
    display:block;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
    gap:28px;
    padding:0;
    margin:0;
}

nav ul li a{
    position:relative;
    font-size:14px;
    font-weight:600;
    color:#253047;
    transition:.3s;
}

nav ul li a:hover{
    color:#0066cc;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:#0066cc;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}


/* =====================================================
   HEADER ICONS
===================================================== */

.header-icons{
    display:flex;
    align-items:center;
    gap:10px;
}

.header-icons > a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f3f7fc;
    color:#24344f;
    transition:.3s;
}

.header-icons > a:hover{
    background:#0066cc;
    color:#ffffff;
    transform:translateY(-2px);
}

.cart-icon{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-6px;
    right:-5px;
    min-width:19px;
    height:19px;
    padding:0 4px;
    border-radius:20px;
    background:#0066cc;
    color:#ffffff;
    font-size:10px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.call-btn,
.whatsapp-btn{
    width:auto !important;
    height:42px !important;
    padding:0 15px;
    border-radius:8px !important;
    gap:7px;
    color:#ffffff !important;
}

.call-btn{
    background:#0066cc !important;
}

.whatsapp-btn{
    background:#25d366 !important;
}

.call-btn:hover,
.whatsapp-btn:hover{
    transform:translateY(-2px);
    opacity:.92;
}


/* =====================================================
   HERO
===================================================== */

.page-hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #eef7ff,
        #ffffff
    );
    padding:70px 20px 85px;
}

.page-hero::before{
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    border-radius:50%;
    background:rgba(0,102,204,.07);
    right:-100px;
    top:-120px;
}

.hero-inner{
    max-width:1150px;
    margin:auto;
    position:relative;
    z-index:2;
}

.breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    color:#758198;
    margin-bottom:22px;
}

.breadcrumb a{
    color:#0066cc;
    font-weight:600;
}

.hero-content{
    max-width:780px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 15px;
    border-radius:30px;
    background:#e3f1ff;
    color:#0066cc;
    font-size:12px;
    font-weight:700;
    margin-bottom:18px;
}

.hero-content h1{
    font-size:46px;
    line-height:1.15;
    color:#14213d;
    margin-bottom:18px;
    font-weight:800;
}

.hero-content h1 span{
    color:#0066cc;
}

.hero-content p{
    max-width:720px;
    color:#657087;
    font-size:16px;
    line-height:1.7;
}


/* =====================================================
   PRODUCT SECTION
===================================================== */

.product-section{
    padding:70px 20px;
    background:#ffffff;
}

.product-wrapper{
    max-width:1180px;
    margin:auto;
}

.product{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:55px;
    align-items:start;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery{
    position:sticky;
    top:105px;
}

.main-image{
    background:#f5f8fc;
    border:1px solid #e7edf5;
    border-radius:20px;
    overflow:hidden;
    min-height:470px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.main-image img{
    width:100%;
    max-height:450px;
    object-fit:contain;
    display:block;
}

.thumbnails{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    margin-top:14px;
}

.thumbnail{
    height:92px;
    background:#f6f8fb;
    border:2px solid transparent;
    border-radius:12px;
    overflow:hidden;
    cursor:pointer;
    padding:6px;
    transition:.3s;
}

.thumbnail:hover,
.thumbnail.active{
    border-color:#0066cc;
}

.thumbnail img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}


/* =====================================================
   PRODUCT DETAILS
===================================================== */

.product-details{
    padding-top:5px;
}

.product-badge{
    display:inline-block;
    background:#e8f7ee;
    color:#198754;
    padding:6px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
    margin-bottom:12px;
}

.product-details h2{
    font-size:32px;
    line-height:1.25;
    color:#17233d;
    margin-bottom:12px;
}

.rating{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:18px;
    font-size:13px;
}

.rating-stars{
    color:#ffb400;
    letter-spacing:1px;
}

.rating span{
    color:#68748a;
}

.price-box{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:5px;
}

.price{
    font-size:34px;
    color:#0066cc;
    font-weight:800;
}

.old-price{
    color:#9aa3b2;
    text-decoration:line-through;
    font-size:18px;
}

.save-text{
    color:#198754;
    font-size:13px;
    font-weight:600;
    margin-bottom:22px;
}

.description{
    color:#657087;
    font-size:14px;
    line-height:1.8;
    margin-bottom:25px;
}


/* =====================================================
   OPTIONS
===================================================== */

.option-group{
    margin-bottom:23px;
}

.option-group h4{
    font-size:14px;
    color:#27334a;
    margin-bottom:10px;
}

.option-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
}

.option-btn{
    border:1px solid #d9e1ec;
    background:#ffffff;
    color:#39465d;
    padding:10px 15px;
    border-radius:8px;
    cursor:pointer;
    font-size:13px;
    font-weight:600;
    transition:.25s;
}

.option-btn:hover,
.option-btn.active{
    border-color:#0066cc;
    background:#0066cc;
    color:#ffffff;
}


/* =====================================================
   QUANTITY
===================================================== */

.quantity-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.quantity-title h4{
    margin:0;
}

.quantity-title small{
    color:#718096;
    font-size:11px;
}

.quick-qty{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:12px;
}

.qty-btn{
    border:1px solid #d8e0eb;
    background:#ffffff;
    color:#37445b;
    border-radius:7px;
    padding:8px 14px;
    cursor:pointer;
    font-size:12px;
    font-weight:600;
    transition:.25s;
}

.qty-btn:hover,
.qty-btn.active{
    background:#0066cc;
    border-color:#0066cc;
    color:#ffffff;
}

.manual-qty{
    display:flex;
    width:155px;
    height:42px;
    border:1px solid #d7e0eb;
    border-radius:8px;
    overflow:hidden;
}

.manual-qty button{
    width:42px;
    border:0;
    background:#f1f5fa;
    cursor:pointer;
    font-size:18px;
    color:#24344f;
}

.manual-qty button:hover{
    background:#e7eef7;
}

.manual-qty input{
    width:70px;
    border:0;
    outline:none;
    text-align:center;
    font-weight:600;
    color:#172033;
    background:#ffffff;
}

.manual-qty input::-webkit-inner-spin-button,
.manual-qty input::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.rate-info{
    margin-top:10px;
    color:#6e7b90;
    font-size:11px;
}


/* =====================================================
   TOTAL
===================================================== */

.total-box{
    margin:25px 0;
    padding:17px 18px;
    border-radius:12px;
    background:#f1f7ff;
    border:1px solid #dcecff;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.total-box span{
    color:#536078;
    font-size:13px;
    font-weight:600;
}

.total-box strong{
    color:#0066cc;
    font-size:25px;
    font-weight:800;
}


/* =====================================================
   UPLOAD
===================================================== */

.upload-box{
    border:2px dashed #c9d8ea;
    border-radius:12px;
    padding:18px;
    background:#fafcff;
    margin-bottom:20px;
}

.upload-box label{
    display:flex;
    align-items:center;
    gap:9px;
    color:#35435b;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

.upload-box label i{
    color:#0066cc;
    font-size:18px;
}

.upload-box input{
    display:none;
}

.upload-note{
    margin-top:7px;
    font-size:11px;
    color:#78849a;
}

#uploadStatus{
    display:block;
    margin-top:7px;
    font-size:11px;
    font-weight:600;
}


/* =====================================================
   ACTION BUTTONS
===================================================== */

.action-buttons{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.action-btn{
    min-height:50px;
    border:0;
    border-radius:9px;
    cursor:pointer;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.3s;
}

.add-cart{
    background:#0066cc;
    color:#ffffff;
}

.add-cart:hover{
    background:#0055aa;
}

.buy-now{
    background:#25d366;
    color:#ffffff;
}

.buy-now:hover{
    background:#1eaf55;
}

.action-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}


/* =====================================================
   DELIVERY INFO
===================================================== */

.delivery-info{
    display:grid;
    gap:9px;
    margin-top:18px;
}

.delivery-info div{
    display:flex;
    align-items:center;
    gap:9px;
    font-size:12px;
    color:#657087;
}

.delivery-info i{
    color:#0066cc;
    width:18px;
}


/* =====================================================
   TRUST STRIP
===================================================== */

.trust-strip{
    background:#f5f9fe;
    border-top:1px solid #e6edf6;
    border-bottom:1px solid #e6edf6;
    padding:30px 20px;
}

.trust-grid{
    max-width:1050px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.trust-card{
    display:flex;
    align-items:center;
    gap:14px;
}

.trust-icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#e3f1ff;
    color:#0066cc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    flex-shrink:0;
}

.trust-card h4{
    font-size:14px;
    color:#25334c;
    margin-bottom:2px;
}

.trust-card p{
    font-size:11px;
    color:#7a8597;
}


/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#101a2d;
    color:#ffffff;
    padding:55px 20px 20px;
}

.footer-container{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-column h3{
    font-size:17px;
    margin-bottom:16px;
}

.footer-column p{
    color:#aeb8c8;
    font-size:12px;
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:9px;
}

.footer-column ul li a{
    color:#aeb8c8;
    font-size:12px;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#ffffff;
}

.social-icons{
    display:flex;
    gap:9px;
}

.social-icons a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#1d2a42;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    transition:.3s;
}

.social-icons a:hover{
    background:#0066cc;
}

.copyright{
    max-width:1150px;
    margin:35px auto 0;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.10);
    text-align:center;
    color:#8995a8;
    font-size:11px;
}


/* =====================================================
   RESPONSIVE - 1100px
===================================================== */

@media(max-width:1100px){

    .header-inner{
        gap:15px;
    }

    nav ul{
        gap:16px;
    }

    .call-btn span,
    .whatsapp-btn span{
        display:none;
    }

    .call-btn,
    .whatsapp-btn{
        width:42px !important;
        padding:0;
        border-radius:50% !important;
    }

    .product{
        gap:35px;
    }

}


/* =====================================================
   RESPONSIVE - 900px
===================================================== */

@media(max-width:900px){

    .header-inner{
        min-height:72px;
    }

    nav{
        display:none;
    }

    .product{
        grid-template-columns:1fr;
    }

    .gallery{
        position:static;
    }

    .main-image{
        min-height:400px;
    }

    .main-image img{
        max-height:370px;
    }

    .trust-grid{
        grid-template-columns:1fr;
        max-width:500px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}


/* =====================================================
   RESPONSIVE - 650px
===================================================== */

@media(max-width:650px){

    .header-inner{
        min-height:68px;
        padding:0 14px;
    }

    .logo img{
        width:125px;
    }

    .header-icons{
        gap:6px;
    }

    .header-icons > a{
        width:36px;
        height:36px;
    }

    .call-btn,
    .whatsapp-btn{
        display:none !important;
    }


    /* HERO */

    .page-hero{
        padding:45px 18px 55px;
    }

    .breadcrumb{
        font-size:11px;
        gap:6px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:13px;
    }


    /* PRODUCT */

    .product-section{
        padding:45px 15px;
    }

    .main-image{
        min-height:300px;
        padding:15px;
        border-radius:14px;
    }

    .main-image img{
        max-height:280px;
    }

    .thumbnails{
        gap:8px;
    }

    .thumbnail{
        height:65px;
    }

    .product-details h2{
        font-size:25px;
    }

    .price{
        font-size:29px;
    }

    .description{
        font-size:13px;
    }

    .option-btn{
        padding:9px 12px;
        font-size:12px;
    }

    .action-buttons{
        grid-template-columns:1fr;
    }


    /* FOOTER */

    .footer-container{
        grid-template-columns:1fr;
        gap:25px;
    }

}


/* =====================================================
   RESPONSIVE - 400px
===================================================== */

@media(max-width:400px){

    .logo img{
        width:112px;
    }

    .header-icons > a{
        width:33px;
        height:33px;
        font-size:13px;
    }

    .hero-content h1{
        font-size:28px;
    }

    .main-image{
        min-height:260px;
    }

    .main-image img{
        max-height:240px;
    }

    .product-details h2{
        font-size:22px;
    }

    .option-btn{
        padding:8px 11px;
        font-size:11px;
    }

    .quick-qty{
        gap:6px;
    }

    .qty-btn{
        padding:7px 11px;
    }

    .total-box strong{
        font-size:22px;
    }

}

