/* MOBILE */
@media(max-width:768px){
    *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
    padding:0px;
}
/* HEADER */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background: #0A1F44;
        color: white;
    }
   /* SECTION TITLE */
.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h1{
    color:#333;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

/* PRODUCT GRID */
.products-container{
    display:grid;
    grid-template-columns:repeat(1,1fr);
    gap:20px;
    padding: 20px;
}

/* PRODUCT CARD */
.product-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    position:relative;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

/* BADGES */
.discount-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:red;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

.promo-badge{
    position:absolute;
    top:10px;
    right:10px;
    background:#16a34a;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
}

/* PRODUCT IMAGE */
.product-image{
    height:220px;
    background:#ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    color:#666;
}
.product-image img{
    width: 100%;
    height: 100%;
}
/* PRODUCT INFO */
.product-info{
    padding:20px;
}

.product-name{
    font-size:20px;
    font-weight:bold;
    color:#333;
    margin-bottom:10px;
}

/* PRICE */
.old-price{
    text-decoration:line-through;
    color:#999;
    font-size:15px;
}

.new-price{
    color:#ff6b00;
    font-size:28px;
    font-weight:bold;
    margin:8px 0;
}
/* STATS */
.stats{
    margin-top:10px;
    line-height:1.8;
    color:#555;
    font-size:14px;
}

/* SHIPPING */
.shipping{
    margin-top:15px;
    background:#e8fff0;
    color:#15803d;
    padding:10px;
    border-radius:8px;
    text-align:center;
    font-weight:bold;
}

/* TIMER */
.timer{
    margin-top:15px;
    background:#fff3e8;
    color:#ff6b00;
    padding:12px;
    border-radius:8px;
    text-align:center;
    font-weight:bold;
}

/* BUTTONS */
.buttons{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.buttons button{
    flex:1;
    padding:12px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

.wishlist-btn{
    background:#f1f1f1;
}

.cart-btn{
    background:#ff6b00;
    color:white;
}

.cart-btn:hover{
    background:#e55f00;
}



}
