/* Special Offer Overlay for Homepage Slider */

.special-overlay-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    pointer-events: none;
}

.special-starburst {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

/* Starburst shape using pseudo-elements */
.special-starburst::before,
.special-starburst::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff3b3b 0%, #d62828 100%);
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
}

.special-starburst::after {
    transform: rotate(36deg);
    opacity: 0.9;
}

.special-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    max-width: 280px;
}

.special-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
}

.special-content p {
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0;
    line-height: 1.2;
    color: white;
}

.special-content small {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-top: 8px;
    opacity: 0.95;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .special-starburst {
        width: 300px;
        height: 300px;
    }
    
    .special-content {
        padding: 25px;
        max-width: 240px;
    }
    
    .special-content h3 {
        font-size: 26px;
    }
    
    .special-content p {
        font-size: 18px;
    }
    
    .special-content small {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .special-starburst {
        width: 240px;
        height: 240px;
    }
    
    .special-content {
        padding: 20px;
        max-width: 200px;
    }
    
    .special-content h3 {
        font-size: 22px;
    }
    
    .special-content p {
        font-size: 16px;
    }
    
    .special-content small {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .special-starburst {
        width: 200px;
        height: 200px;
    }
    
    .special-content {
        padding: 18px;
        max-width: 170px;
    }
    
    .special-content h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .special-content p {
        font-size: 14px;
        margin: 4px 0;
    }
    
    .special-content small {
        font-size: 12px;
        margin-top: 4px;
    }
}
