#featured_products_section {
    padding: 0 2vh;
    width: 80%;
    border-top: var(--border_dark);
}

.products_container {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 1vh;
}

.products_grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2vh;
    width: max-content;
    padding: 1vh;
}

.product_card {
    flex: 0 0 auto;
    width: 315px;
    background: #1a1a1a;
    border-radius: var(--border_radius_inner);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow_large);
    transition: transform 0.2s ease;
}

.product_card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #333;
}

.product_buttons {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}

.product_btn {
    background: #333;
    color: white;
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 0.5rem;
    cursor: pointer;
}

.product_price_box {
    padding: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.old_price {
    text-decoration: line-through;
    color: #999;
}

.discounted_price {
    color: #ffc107;
    font-weight: bold;
}

.discount_badge {
    background: #c00;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
    align-self: flex-start;
}

@keyframes scroll_products {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
