*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#ffffff;
    color:#111;
    min-height:100vh;
    padding-bottom:110px;
}

/* HEADER */

header{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    background:#0a2d66;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    width:55px;
    height:55px;
    border-radius:50%;
    object-fit:cover;
}

.search-box{
    flex:1;
}

.search-box input{
    width:100%;
    height:50px;
    border:none;
    outline:none;
    border-radius:30px;
    padding:0 20px;
    font-size:16px;
}

/* CART */

#cart-btn{

    width:55px;
    height:55px;

    min-width:55px;

    border-radius:50%;

    background:#2d6cdf;

    color:white;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    font-size:22px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* PRODUCTS */

.product-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    padding:20px;

}

.product-card{

    background:white;

    border-radius:20px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-5px);

}

.product-card img{

    width:100%;

    height:220px;

    object-fit:cover;

}

.product-info{

    padding:15px;

}

.product-info h3{

    color:#0a2d66;

    margin-bottom:10px;

}

.product-info p{

    color:#666;

}

.price{

    color:#2d6cdf;

    font-weight:bold;

    font-size:20px;

    margin-top:10px;

}

/* PRODUCT POPUP */

.product-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.7);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:2000;

}

.modal-content{

    width:90%;

    max-width:900px;

    background:white;

    border-radius:20px;

    overflow:hidden;

}

.modal-content img{

    width:100%;

    height:400px;

    object-fit:cover;

}

.modal-body{

    padding:20px;

    color:#111;

}

/* LIQUID GLASS NAV */

.bottom-nav{

    position:fixed;

    bottom:15px;

    left:50%;

    transform:translateX(-50%);

    width:95%;

    max-width:700px;

    height:75px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:30px;

    display:flex;

    justify-content:space-evenly;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    z-index:999;

}

.bottom-nav a{

    text-decoration:none;

    color:#0a2d66;

    font-weight:bold;

    font-size:15px;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.5);

    padding:12px 22px;

    border-radius:50px;

    box-shadow:0 4px 15px rgba(0,0,0,.08);

    transition:.3s;

}

.bottom-nav a:hover{

    transform:translateY(-2px);

}

.bottom-nav a.active{

    background:#2d6cdf;

    color:white;

}

/* ACCOUNT */

.account-box{

    margin:20px;

    background:white;

    border-radius:20px;

    padding:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/* CART PAGE */

.cart-item{

    margin:20px;

    background:white;

    border-radius:20px;

    padding:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

/* TABLET */

@media(max-width:1000px){

.product-grid{

    grid-template-columns:repeat(3,1fr);

}

}

/* MOBILE */

@media(max-width:768px){

.product-grid{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.product-card img{

    height:180px;

}

}

/* SMALL PHONES */

@media(max-width:480px){

.product-grid{

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    padding:10px;

}

.product-card img{

    height:140px;

}

.logo{

    width:45px;

    height:45px;

}

.search-box input{

    height:45px;

}

.bottom-nav{

    width:96%;

}

.bottom-nav a{

    padding:10px 15px;

    font-size:13px;

}

}

.qty-box{
    display:flex;
    gap:10px;
    align-items:center;
}

.qty-box button{
    width:40px;
    height:40px;
    border:none;
    border-radius:10px;
    background:#2d6cdf;
    color:white;
    font-size:20px;
    cursor:pointer;
}

.qty-box input{
    width:70px;
    height:40px;
    text-align:center;
    border-radius:10px;
    border:1px solid #ddd;
}

#modal-color{
    width:100%;
    height:45px;
    border-radius:10px;
    border:1px solid #ddd;
    padding:10px;
}

#addToCartBtn{
    width:100%;
    height:50px;
    border:none;
    border-radius:15px;
    background:#2d6cdf;
    color:white;
    font-size:18px;
    cursor:pointer;
}


.cart-item button{

margin-top:10px;

background:#e53935;

color:white;

border:none;

padding:10px 15px;

border-radius:10px;

cursor:pointer;

}

#cart-btn{
position:relative;
}

#cart-count{

position:absolute;

top:-5px;
right:-5px;

width:22px;
height:22px;

background:red;

color:white;

font-size:12px;

font-weight:bold;

border-radius:50%;

display:flex;
justify-content:center;
align-items:center;

}
/* CART TOTAL BOX */

#cart-total{

margin:20px;

padding:25px;

background:rgba(255,255,255,.7);

backdrop-filter:blur(25px);
-webkit-backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.5);

border-radius:25px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

font-size:18px;

animation:fadeUp .4s ease;

}

#cart-total div{

display:flex;

justify-content:space-between;

margin-bottom:12px;

}

.total-row{

font-size:24px;

font-weight:bold;

color:#0a2d66;

padding-top:15px;

border-top:1px solid rgba(0,0,0,.08);

}

/* CHECKOUT BUTTON */

.checkout-btn{

width:100%;

height:60px;

margin-top:20px;

border:none;

border-radius:18px;

background:#2d6cdf;

color:white;

font-size:18px;

font-weight:bold;

cursor:pointer;

box-shadow:
0 10px 25px rgba(45,108,223,.4);

transition:.3s;

}

.checkout-btn:hover{

transform:translateY(-3px);

}

.checkout-btn:active{

transform:scale(.96);

}

/* ANIMATION */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.cart-card{

display:flex;
gap:15px;

background:white;

margin:20px;

padding:15px;

border-radius:25px;

box-shadow:
0 8px 25px rgba(0,0,0,.08);

animation:
fadeUp .4s ease;

}

.cart-image{

width:120px;

height:120px;

object-fit:cover;

border-radius:20px;

}

.cart-details{

flex:1;

display:flex;

flex-direction:column;

justify-content:center;

}

.cart-details h3{

color:#0a2d66;

margin-bottom:8px;

}

.qty-row{

display:flex;

align-items:center;

gap:15px;

margin:10px 0;

}

.qty-row select{

height:40px;

padding:0 15px;

border:none;

border-radius:12px;

background:#f4f7ff;

}

.cart-details button{

width:120px;

margin-top:10px;

background:#e53935;

color:white;

border:none;

padding:10px;

border-radius:12px;

cursor:pointer;

}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(20px);

}

to{

opacity:1;
transform:translateY(0);

}

}

/* CART SUMMARY */

.cart-summary{

background:white;

margin:20px;

padding:25px;

border-radius:25px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

animation:fadeUp .4s ease;

}

.cart-row{

display:flex;

justify-content:space-between;

align-items:center;

padding:12px 0;

font-size:18px;

}

.cart-row:not(:last-child){

border-bottom:1px solid #eee;

}

.cart-total{

font-size:24px;

font-weight:bold;

color:#0a2d66;

margin-top:10px;

}

.checkout-btn{

width:100%;

height:60px;

border:none;

border-radius:18px;

margin-top:20px;

background:#2d6cdf;

color:white;

font-size:18px;

font-weight:bold;

cursor:pointer;

box-shadow:0 10px 25px rgba(45,108,223,.35);

transition:.3s;

}

.checkout-btn:hover{

transform:translateY(-3px);

}

.checkout-btn:active{

transform:scale(.98);

}

/* NEW CART CARD */

.cart-card{

display:flex;

gap:20px;

align-items:center;

background:rgba(255,255,255,.8);

backdrop-filter:blur(25px);

-webkit-backdrop-filter:blur(25px);

margin:20px;

padding:20px;

border-radius:25px;

box-shadow:0 8px 25px rgba(0,0,0,.08);

border:1px solid rgba(255,255,255,.4);

animation:fadeUp .4s ease;

}

.cart-image{

width:120px;

height:120px;

object-fit:cover;

border-radius:20px;

flex-shrink:0;

}

.cart-details{

flex:1;

}

.cart-details h3{

color:#0a2d66;

margin-bottom:8px;

font-size:24px;

}

.cart-details p{

color:#666;

margin-bottom:8px;

}

.qty-row{

margin:10px 0;

}

.qty-row select{

height:45px;

width:90px;

border-radius:15px;

border:1px solid #ddd;

padding:0 10px;

font-size:16px;

cursor:pointer;

}

.cart-details .price{

font-size:26px;

font-weight:bold;

color:#2d6cdf;

margin:10px 0;

}

.cart-details button{

background:#ef4444;

color:white;

border:none;

padding:12px 20px;

border-radius:15px;

font-weight:bold;

cursor:pointer;

transition:.3s;

}

.cart-details button:hover{

transform:scale(1.05);

}

/* ANIMATION */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.cart-summary{

    background:white;

    border-radius:25px;

    padding:25px;

    margin:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.cart-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:12px 0;

    font-size:18px;

    border-bottom:1px solid #eee;

}

.cart-row:last-child{

    border-bottom:none;

}

.cart-total{

    font-size:28px;

    font-weight:bold;

    color:#0a2d66;

}

.checkout-btn{

    width:100%;

    margin-top:20px;

    height:60px;

    border:none;

    border-radius:20px;

    background:#2d6cdf;

    color:white;

    font-size:20px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;

    box-shadow:0 10px 25px rgba(45,108,223,.35);

}

.checkout-btn:hover{

    transform:translateY(-3px);

}

.cart-summary{
display:flex !important;
flex-direction:column !important;
gap:15px !important;
}

.cart-row{
display:flex !important;
justify-content:space-between !important;
width:100% !important;
}

.checkout-btn{
width:100% !important;
}

.page-title{

padding:20px;

color:#0a2d66;

}

.checkout-card{

margin:20px;

padding:20px;

background:white;

border-radius:25px;

box-shadow:
0 8px 25px rgba(0,0,0,.08);

}

.checkout-card input,
.checkout-card select{

width:100%;

height:50px;

margin-top:10px;

padding:10px;

border:1px solid #ddd;

border-radius:12px;

}

.place-order-btn{

width:90%;

margin:20px auto;

display:block;

height:60px;

border:none;

border-radius:20px;

background:#2d6cdf;

color:white;

font-size:20px;

font-weight:bold;

}

#orderOverlay{

position:fixed;

inset:0;

background:
rgba(0,0,0,.7);

display:none;

justify-content:center;

align-items:center;

z-index:9999;

}

.order-box{

background:white;

padding:40px;

border-radius:25px;

text-align:center;

width:300px;

}

#orderAnimation{

font-size:60px;

margin-bottom:20px;

}

.payment-options{

display:flex;

gap:15px;

margin-top:15px;

}

.payment-card{

flex:1;

padding:20px;

border-radius:20px;

background:white;

border:2px solid #ddd;

cursor:pointer;

transition:.3s;

}

.payment-card h3{

margin-bottom:8px;

}

.payment-card.active{

background:#2d6cdf;

border-color:#2d6cdf;

color:white;

transform:scale(1.03);

box-shadow:
0 10px 25px rgba(
45,108,223,.35
);

}

.save-address-btn{

width:100%;

height:55px;

margin-top:15px;

border:none;

border-radius:18px;

background:#2d6cdf;

color:white;

font-size:17px;

font-weight:bold;

cursor:pointer;

box-shadow:
0 10px 25px rgba(
45,108,223,.3
);

transition:.3s;

}

.save-address-btn:hover{

transform:translateY(-2px);

}

*{

margin:0;

padding:0;

box-sizing:border-box;

font-family:Arial,Helvetica,sans-serif;

}

body{

background:#f5f7fb;

padding:20px;

padding-bottom:110px;

}

h1{

color:#0a2d66;

margin-bottom:20px;

}

#cart-container{

display:flex;

flex-direction:column;

gap:18px;

}

.modal-image-slider{

position:relative;

display:flex;

align-items:center;

justify-content:center;

width:100%;

}

.modal-image-slider #modal-image{

width:100%;

display:block;

}

#prevImage,
#nextImage{

position:absolute;

top:50%;

transform:translateY(-50%);

width:45px;

height:45px;

border:none;

border-radius:50%;

background:rgba(0,0,0,.55);

color:white;

font-size:32px;

line-height:1;

cursor:pointer;

z-index:5;

display:flex;

align-items:center;

justify-content:center;

}

#prevImage{

left:12px;

}

#nextImage{

right:12px;

}

#prevImage:hover,
#nextImage:hover{

background:rgba(45,108,223,.9);

}

/* ========================================
   FIX INDEX PAGE FULL WIDTH
======================================== */

html,
body{

    width:100% !important;

    min-width:100% !important;

    margin:0 !important;

    padding:0 !important;

    overflow-x:hidden;

}


/* HEADER FULL WIDTH */

header{

    width:100% !important;

    max-width:none !important;

    margin:0 !important;

    padding:20px !important;

}


/* PRODUCTS FULL WIDTH */

#products-container{

    width:100% !important;

    max-width:none !important;

    margin:0 !important;

    padding:20px !important;

}


/* PRODUCT GRID */

.product-grid{

    width:100% !important;

    max-width:none !important;

    display:grid !important;

    grid-template-columns:
    repeat(
        auto-fit,
        minmax(180px, 1fr)
    ) !important;

    gap:20px;

}


/* PRODUCT CARD */

.product-card{

    width:100% !important;

}


/* PRODUCT IMAGE */

.product-card img{

    width:100% !important;

    height:220px;

    object-fit:cover;

}


/* MOBILE */

@media(
    max-width:600px
){

    #products-container{

        padding:15px !important;

    }

    .product-grid{

        grid-template-columns:
        repeat(2, 1fr) !important;

        gap:12px;

    }

    .product-card img{

        height:170px;

    }

}

.end-footer{

width:100%;
padding:30px 0;
text-align:center;

color:#006eff;
font-size:18px;
font-weight:bold;

background:white;

margin-top:40px;

}