﻿/* 💎 Latest Offers Section */
.latest-offers-section {
    background-color: #111;
    background-image: url('../images/bg-texture.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.offer-card {
    background-color: #000;
    border: 2px solid #d4af37;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    background-repeat: no-repeat;
    background-size: cover;
}

    .offer-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
    }

.offer-img {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-img {
    transform: scale(1.1);
}

.offer-content {
    padding: 20px;
    background: linear-gradient(to bottom, transparent, #212529cc, #212529eb, #212529);
}

.offer-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.1rem;
    margin-top: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.new-price {
    color: #d4af37;
    font-weight: bold;
}

.btn-gold {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}

    .btn-gold:hover {
        background-color: #bfa130;
        color: #fff;
    }
