
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
    padding:0px;
}
/* HEADER */
.header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0A1F44;
    color: white;
}
.logo {
    font-size: 22px;
    font-weight: bold;
}

.header-icons span {
    margin-left: 15px;
    cursor: pointer;
}

.header-icons span a {
    color: white;
    text-decoration: none;
}

.icon {
    font-size: 18px;
}


/* 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(3,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;
}
/*==========================
LOADING SCREEN
==========================*/

 #loadingScreen {

     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #f5f5f5;
     z-index: 99999;

     padding: 120px 6%;

     display: flex;

     flex-direction: column;

     gap: 25px;

     transition: .5s;

 }

 .skeleton-card {

     height: 180px;

     border-radius: 20px;

     background: linear-gradient(90deg,
             #eee 25%,
             #f7f7f7 50%,
             #eee 75%);

     background-size: 300%;

     animation: loading 1.2s infinite;

 }

 @keyframes loading {

     0% {

         background-position: 100%;

     }

     100% {

         background-position: -100%;

     }

 }