/* =====================================================
   RESET
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#1d2733;
}


/* =====================================================
   HEADER
===================================================== */

header{
    min-height:80px;
    background:rgba(255,255,255,.97);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 6%;
    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;
    display:block;
    object-fit:contain;
}


/* =====================================================
   NAVIGATION
===================================================== */

nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:28px;
}

nav ul li a{
    text-decoration:none;
    color:#30343b;
    font-size:14px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

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{
    color:#0066cc;
}

nav ul li a:hover::after{
    width:100%;
}


/* =====================================================
   HEADER ICONS
===================================================== */

.header-icons{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-icons > a{
    text-decoration:none;
    color:#333;
    position:relative;
    transition:.3s;
}

.header-icons > a:not(.call-btn):not(.whatsapp-btn){
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    background:#f4f7fb;
}

.header-icons > a:not(.call-btn):not(.whatsapp-btn):hover{
    color:#0066cc;
    background:#eaf4ff;
    transform:translateY(-2px);
}

.header-icons i{
    font-size:17px;
}


/* =====================================================
   CART COUNT
===================================================== */

.cart-icon{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-7px;
    right:-7px;
    min-width:19px;
    height:19px;
    padding:2px 5px;
    background:#0066cc;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:600;
}


/* =====================================================
   HEADER BUTTONS
===================================================== */

.call-btn,
.whatsapp-btn{
    padding:10px 15px;
    border-radius:9px;
    color:#fff !important;
    font-size:12px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:7px;
    transition:.3s;
}

.call-btn{
    background:#0066cc;
    box-shadow:0 5px 15px rgba(0,102,204,.18);
}

.call-btn:hover{
    background:#0054a8;
    transform:translateY(-2px);
}

.whatsapp-btn{
    background:#25d366;
    box-shadow:0 5px 15px rgba(37,211,102,.18);
}

.whatsapp-btn:hover{
    background:#1ebc59;
    transform:translateY(-2px);
}


/* =====================================================
   PAGE HERO
===================================================== */

.page-hero{
    position:relative;
    overflow:hidden;
    padding:45px 6% 75px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0,102,204,.13),
            transparent 30%
        ),

        radial-gradient(
            circle at 10% 80%,
            rgba(37,211,102,.07),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #f8fbff,
            #eef6ff
        );
}

.page-hero::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(0,102,204,.06);
    top:-120px;
    right:-70px;
}

.hero-inner{
    max-width:1200px;
    margin:auto;
    position:relative;
    z-index:2;
}

.breadcrumb{
    color:#697586;
    font-size:13px;
    margin-bottom:22px;
}

.breadcrumb a{
    color:#0066cc;
    text-decoration:none;
    font-weight:500;
}

.hero-content{
    max-width:780px;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 15px;
    border-radius:30px;
    background:#e7f3ff;
    color:#0066cc;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:42px;
    line-height:1.15;
    color:#162333;
    margin-bottom:14px;
    font-weight:800;
}

.hero-content h1 span{
    color:#0066cc;
}

.hero-content p{
    max-width:650px;
    color:#607080;
    line-height:1.8;
    font-size:15px;
}


/* =====================================================
   CART WRAPPER
===================================================== */

.cart-section{
    max-width:1200px;
    margin:-30px auto 70px;
    padding:0 20px;
    position:relative;
    z-index:5;
}

.cart-container{
    display:grid;
    grid-template-columns:1.7fr 1fr;
    gap:28px;
}


/* =====================================================
   CART ITEMS CARD
===================================================== */

.cart-items{
    background:#fff;
    padding:25px;
    border-radius:22px;
    box-shadow:0 12px 40px rgba(31,55,80,.10);
    border:1px solid #edf1f6;
}

.cart-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-bottom:18px;
    border-bottom:1px solid #edf1f6;
}

.cart-title h2{
    font-size:20px;
    color:#182433;
}

.cart-title span{
    color:#0066cc;
    font-size:12px;
    font-weight:600;
}


/* =====================================================
   CART ITEM
===================================================== */

.cart-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:22px 0;
    border-bottom:1px solid #edf1f5;
}

.cart-item:last-child{
    border-bottom:none;
}

.cart-item img{
    width:125px;
    height:125px;
    object-fit:contain;
    background:linear-gradient(135deg,#f8fbff,#f3f6fa);
    border-radius:15px;
    border:1px solid #e4eaf1;
    padding:8px;
    flex-shrink:0;
}

.cart-info{
    flex:1;
}

.cart-info h3{
    font-size:18px;
    color:#182433;
    margin-bottom:7px;
}

.cart-info > p{
    color:#0066cc;
    font-size:17px;
    font-weight:700;
    margin-bottom:12px;
}


/* =====================================================
   PRODUCT DETAILS
===================================================== */

.product-details{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:14px;
}

.product-details span{
    background:#f4f8fc;
    border:1px solid #e4ebf2;
    color:#647283;
    padding:5px 9px;
    border-radius:7px;
    font-size:10px;
    font-weight:500;
}

.product-details strong{
    color:#263444;
}


/* =====================================================
   QUANTITY
===================================================== */

.cart-qty{
    display:flex;
    align-items:center;
    gap:9px;
}

.cart-qty button{
    width:34px;
    height:34px;
    background:#0066cc;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:17px;
    transition:.25s;
}

.cart-qty button:hover{
    background:#0054a8;
    transform:translateY(-1px);
}

.cart-qty span{
    min-width:35px;
    text-align:center;
    font-size:14px;
    font-weight:700;
    color:#273444;
}


/* =====================================================
   REMOVE
===================================================== */

.remove-btn{
    margin-top:12px;
    background:#fff1f0;
    color:#e23b32;
    border:1px solid #ffd5d2;
    padding:7px 12px;
    border-radius:8px;
    cursor:pointer;
    font-size:11px;
    font-weight:600;
    transition:.25s;
}

.remove-btn:hover{
    background:#ffe3e0;
    transform:translateY(-1px);
}


/* =====================================================
   SUMMARY
===================================================== */

.summary{
    background:#fff;
    padding:25px;
    border-radius:22px;
    box-shadow:0 12px 40px rgba(31,55,80,.10);
    border:1px solid #edf1f6;
    height:max-content;
    position:sticky;
    top:105px;
}

.summary-heading{
    display:flex;
    align-items:center;
    gap:10px;
    padding-bottom:17px;
    border-bottom:1px solid #edf1f5;
}

.summary-heading i{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eaf5ff;
    color:#0066cc;
    border-radius:10px;
}

.summary-heading h2{
    font-size:19px;
    color:#182433;
}

.summary p{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
    font-size:13px;
    color:#637080;
}

.summary p span:last-child{
    color:#273444;
    font-weight:600;
}


/* =====================================================
   TOTAL
===================================================== */

.total{
    margin-top:20px;
    padding:17px 18px;
    border-radius:13px;
    background:linear-gradient(135deg,#f0f7ff,#f8fbff);
    border:1px solid #dcecff;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.total-label{
    color:#536171;
    font-size:13px;
    font-weight:600;
}

.total-price{
    color:#0066cc;
    font-size:25px;
    font-weight:800;
}


/* =====================================================
   CHECKOUT
===================================================== */

.checkout-btn{
    width:100%;
    min-height:52px;
    margin-top:20px;
    background:#0066cc;
    color:#fff;
    border:none;
    border-radius:11px;
    font-size:14px;
    cursor:pointer;
    font-weight:700;
    box-shadow:0 6px 18px rgba(0,102,204,.20);
    transition:.3s;
}

.checkout-btn:hover{
    background:#0055aa;
    transform:translateY(-2px);
}


/* =====================================================
   SECURE INFO
===================================================== */

.secure-info{
    margin-top:16px;
    padding:13px;
    background:#f8fafc;
    border:1px solid #edf1f5;
    border-radius:11px;
}

.secure-info p{
    margin:6px 0;
    font-size:10px;
    color:#667382;
    display:flex;
    align-items:center;
    gap:7px;
}

.secure-info i{
    color:#0066cc;
}


/* =====================================================
   EMPTY CART
===================================================== */

.empty{
    text-align:center;
    padding:65px 20px;
    color:#697586;
}

.empty-icon{
    width:65px;
    height:65px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#eaf5ff;
    color:#0066cc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:27px;
}

.empty h3{
    color:#263444;
    font-size:18px;
    margin-bottom:7px;
}

.empty p{
    font-size:12px;
}


/* =====================================================
   TRUST STRIP
===================================================== */

.trust-strip{
    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.trust-card{
    background:#fff;
    border:1px solid #edf1f5;
    border-radius:15px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:13px;
    box-shadow:0 7px 25px rgba(31,55,80,.06);
}

.trust-icon{
    width:43px;
    height:43px;
    flex-shrink:0;
    border-radius:11px;
    background:#eaf5ff;
    color:#0066cc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:17px;
}

.trust-card h4{
    font-size:13px;
    color:#263444;
    margin-bottom:3px;
}

.trust-card p{
    font-size:11px;
    color:#778391;
}


/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#111;
    color:#fff;
    padding:50px 6%;
}

.footer-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.footer-grid h3{
    margin-bottom:15px;
    font-size:17px;
}

.footer-grid p{
    color:#ccc;
    line-height:1.7;
    font-size:12px;
}

.footer-grid ul{
    list-style:none;
}

.footer-grid ul li{
    margin:10px 0;
    color:#ccc;
    font-size:12px;
}

.footer-grid a{
    text-decoration:none;
    color:#fff;
}

.footer-grid a:hover{
    color:#00aaff;
}

.social-icons a{
    font-size:22px;
    margin-right:15px;
}

.copyright{
    max-width:1200px;
    margin:30px auto 0;
    padding-top:20px;
    border-top:1px solid #444;
    text-align:center;
    color:#aaa;
    font-size:11px;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1100px){

    header{
        padding:10px 4%;
    }

    nav ul{
        gap:17px;
    }

    .header-icons{
        gap:8px;
    }

    .call-btn,
    .whatsapp-btn{
        padding:9px 10px;
    }

    .page-hero{
        padding-left:4%;
        padding-right:4%;
    }

}


/* =====================================================
   900px
===================================================== */

@media(max-width:900px){

    nav{
        display:none;
    }

    .cart-container{
        grid-template-columns:1fr;
    }

    .summary{
        position:relative;
        top:auto;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:650px){

    header{
        min-height:72px;
        padding:8px 4%;
    }

    .logo img{
        width:140px;
        height:52px;
    }

    .header-icons{
        gap:6px;
    }

    .header-icons > a:not(.call-btn):not(.whatsapp-btn){
        width:35px;
        height:35px;
    }

    .call-btn,
    .whatsapp-btn{
        display:none;
    }

    .page-hero{
        padding:28px 4% 60px;
    }

    .hero-content h1{
        font-size:29px;
    }

    .hero-content p{
        font-size:12px;
        line-height:1.7;
    }

    .breadcrumb{
        font-size:11px;
        margin-bottom:15px;
    }

    .cart-section{
        padding:0 12px;
        margin-top:-25px;
    }

    .cart-items,
    .summary{
        padding:18px;
        border-radius:18px;
    }

    .cart-title h2{
        font-size:17px;
    }

    .cart-item{
        align-items:flex-start;
    }

    .cart-item img{
        width:90px;
        height:90px;
    }

    .cart-info h3{
        font-size:15px;
    }

    .cart-info > p{
        font-size:15px;
    }

    .product-details span{
        font-size:9px;
    }

    .trust-strip{
        padding:0 12px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}


/* =====================================================
   EXTRA SMALL
===================================================== */

@media(max-width:400px){

    .logo img{
        width:125px;
    }

    .header-icons > a:not(.call-btn):not(.whatsapp-btn){
        width:32px;
        height:32px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .cart-item{
        gap:12px;
    }

    .cart-item img{
        width:75px;
        height:75px;
    }

}