/*============ home page এর প্রোডাক্ট শো করার ডিজাইন আবার product details পেজের প্রোডাক্ট শো করার ডিজাইন সব একই ডিজাইন অনেকটা product_item.xml Andoid ফাইলের মত ============= */


    .featured__item__pic {
        position: relative;
    }

    .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .product-pricing-inline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 5px;
    }

    .new-price {
        color: #28a745;
        font-size: 16px;
        font-weight: 600;
    }

    .old-price {
        text-decoration: line-through;
        color: #999;
        font-size: 14px;
    }

    .featured__item__text.text-center {
        text-align: center;
    }
    
    .product-animate {
    opacity: 0;
    transform: scale(0.95);
    animation: zoomFadeIn 0.5s ease-out forwards;
}

@keyframes zoomFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}






/* ========== home page এর Big Deal সেকশনের জন্য CSS কোড এখানে  ========*/


.big-deal {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-top: 80px;
}

.big-deal__wrapper {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
}

.time-box-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    padding: 15px 12px;
    border-radius: 12px;
    margin: 8px;
    min-width: 75px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.time-box-glass span {
    font-size: 26px;
    font-weight: bold;
    color: #28a745;
    display: block;
    line-height: 1.2;
}

.time-box-glass small {
    font-size: 13px;
    color: #555;
}







