/* Special Offer Section Styling */
.special-offer-section {
    padding: 8rem 0;
    background-color: #f0f7ff;
    /* Light blue background */
    overflow: hidden;
}

body.dark-mode .special-offer-section {
    background-color: #0d1117;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Side: Single Product Display */
.offer-visual {
    position: relative;
    height: 600px;
    /* Increased height for larger image */
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-bg-clouds {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

.single-product-display {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-bundle-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.full-bundle-img:hover {
    transform: scale(1.05);
}

/* Right Side: Content */
.offer-content {
    z-index: 10;
}

.offer-badge-wrapper {
    margin-bottom: 2rem;
}

.offer-badge {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.offer-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    width: 60px;
    height: 35px;
    background: #c5e3f6;
    z-index: -1;
    transform: translateY(-50%);
    border-radius: 5px;
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: #333;
    text-transform: uppercase;
}

body.dark-mode .offer-title {
    color: #eee;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.offer-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

body.dark-mode .offer-list li {
    color: #bbb;
}

.offer-list li::before {
    content: '-';
    position: absolute;
    left: 0;
}

.offer-list li span {
    text-decoration: underline;
    font-weight: 600;
}

.offer-footer {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

body.dark-mode .offer-footer {
    color: #eee;
}

.highlight-gift {
    display: inline-block;
    position: relative;
    padding: 0 5px;
}

.highlight-gift::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 40%;
    background: #c5e3f6;
    z-index: -1;
    opacity: 0.6;
}

.learn-more-offer {
    display: inline-block;
    margin-top: 2rem;
    font-weight: 800;
    color: #4a90e2;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.learn-more-offer:hover {
    color: #357abd;
}

@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .offer-visual {
        height: 400px;
        order: 2;
    }

    .offer-content {
        order: 1;
    }

    .offer-list li {
        padding-left: 0;
    }

    .offer-list li::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .special-offer-section {
        padding: 4rem 0;
    }

    .offer-visual {
        height: 350px;
        /* Adjusted for mobile */
    }

    .full-bundle-img {
        max-width: 100%;
    }

    .offer-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .offer-list li {
        font-size: 1rem;
    }

    .offer-footer {
        font-size: 1.1rem;
    }
}