/* Custom styles for the Offer Section */
.custom-offer-section {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Roboto', 'Arial', sans-serif;
    color: white;
}

.offer-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: #0f0f0f;
    border: 3px solid #fcf732;
    /* Yellow border */
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
    box-sizing: border-box;
}

.offer-title {
    font-size: 2em;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.offer-countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-box {
    background: #fcf732;
    color: black;
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 230, 0, 0.3);
}

.time-box span {
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
}

.time-box small {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

.offer-price-box {
    margin-bottom: 30px;
}

.old-price {
    font-size: 1.5rem;
    color: #aaa;
    /* text-decoration: line-through; */
    margin-bottom: 5px;
    font-weight: 500;
}

.new-price {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.new-price span {
    font-size: 3rem;
    color: #fcf732;
    /* Yellow */
}

.offer-guarantee-box {
    margin-bottom: 40px;
    opacity: 0.9;
}

.guarantee-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-desc {
    color: #ddd;
    font-size: 1rem;
}

.offer-cta-box {
    margin-bottom: 40px;
}

.custom-cta-button {
    background: #e60000;
    /* Red */
    color: white !important;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 25px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #990000;
    /* 3D effect border/shadow */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 500px;
}

.custom-cta-button:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #990000;
}

.custom-cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #990000;
}

.offer-security-icons img {
    max-width: 300px;
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .offer-title {
        font-size: 1.5rem;
    }

    .offer-countdown {
        gap: 10px;
    }

    .time-box {
        min-width: 80px;
        padding: 10px 15px;
    }

    .time-box span {
        font-size: 2rem;
    }

    .time-box small {
        font-size: 0.7rem;
    }

    .new-price {
        font-size: 1.5rem;
    }

    .new-price span {
        font-size: 2.2rem;
    }

    .custom-cta-button {
        font-size: 1.2rem;
        padding: 20px;
    }
}