.autumn-sale-banner {
    background: linear-gradient(120deg, #f7e7cf, #e4cbb0, #f4ede3);
    color: var(--primary-color);
    padding: 80px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    /*max-width: 1440px;*/
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
}

.autumn-sale-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.autumn-sale-text {
    flex: 1 1 480px;
    max-width: 7200px;
}

.autumn-sale-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #3A4766;
}

.autumn-sale-text p {
    font-size: 1.2rem;
    color: #434F68;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-sale {
    display: inline-block;
    background-color: #C20000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-sale:hover {
    background-color: #a00000;
    transform: translateY(-3px);
}

/* Platzhalter (später Bilder ersetzen) */
.autumn-sale-images {
    display: flex;
    gap: 20px;
    flex: 1 1 400px;
    justify-content: center;
    flex-wrap: wrap;
}

.img-placeholder {
    background: rgba(255,255,255,0.6);
    border: 2px dashed rgba(67,79,104,0.2);
    border-radius: 12px;
    width: 180px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(67,79,104,0.6);
}

/* herbstliche Akzentrahmen */
.img1 { background: linear-gradient(135deg, #fce3b0, #ffb070); }
.img2 { background: linear-gradient(135deg, #e6c49f, #d6a670); }
.img3 { background: linear-gradient(135deg, #f5d3b0, #e0a879); }

@media (max-width: 2000px) {
 .autumn-sale-banner {max-width: 1440px;}
}

@media (max-width: 768px) {
    .autumn-sale-content {
        flex-direction: column;
        text-align: center;
    }
    .autumn-sale-text h1 {
        font-size: 2rem;
    }
    .img-placeholder {
        width: 45%;
        height: 120px;
    }
}


.autumn-sale-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.sale-img {
    width: 180px;
    height: 140px;
    object-fit: cover;         /* schneidet das Bild sauber zu */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sale-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .sale-img {
        width: 45%;
        height: 120px;
    }
}

.autumn-sale-banner {
    background: linear-gradient(120deg, #f7e7cf, #e4cbb0, #f4ede3);
}
.sale-img {
    position: relative;
    background-color: #f9f4ee;
    border: 1px solid #e0c9a8;
    border-radius: 12px;
    padding: 8px;
    overflow: hidden;
}

.sale-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(244, 214, 174, 0.3); /* leicht herbstlicher Film */
    pointer-events: none;
}



