/* Hero Section */
.hero-title {
    font-size: 50px;
    line-height: 1.2;
}

.hero-image {
    width: 85%;
    border-radius: 20px;
}

.navbar .bi {
    cursor: pointer;
}


/* Search Box */
.search-box {
    width: 300px;
    border-radius: 30px;
    padding-left: 20px;
}

/* Timer */
.flash-timer span {
    font-weight: bold;
    font-size: 20px;
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 14px;
    position: relative;
}

.product-card .product-image {
    width: 100%;
    border-radius: 14px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-card {
    position: relative;
    transition: .2s;
}
.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.rating {
    font-size: 14px;
}


/* Footer */
.footer-section {
    background: #000;
}
