/* Full-width hero banner styles */
.hero-banner-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-banner-full_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-banner-full_overlay {
    position: relative;
    z-index: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Optional: Add a subtle overlay to improve text readability */
.hero-banner-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 0;
    pointer-events: none;
}

/* Text shadow for better readability - works with any text color */
.hero-banner-full .hero_content .hero_subtitle,
.hero-banner-full .hero_content .hero_title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Keep button with original styling - no dynamic colors */

/* Discount badge positioning for full-width */
.hero_discount--fullwidth {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-banner-full_overlay {
        min-height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-banner-full_overlay {
        min-height: 350px;
    }
    
    .hero-banner-full .hero_content .hero_title {
        font-size: 1.5rem;
    }
}
