:root {
    --primary-color: #000000;
    --accent-color: #BB2249; /* Oder eine andere Farbe für den Outlet-Vibe? */
    --text-color: #333333;
    --background-color: #ebe7b4; /* Kann für Outlet angepasst werden, z.B. neutraler */
    --white: #ffffff;
    --success-color: #4CAF50;
}

/* Grundlegende Reset- und Basiseinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flip Counter (Optional, falls beibehalten) */
.flip-counter {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.flip-digit {
    width: 30px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 5px;
    transform: rotateX(0deg);
    transition: transform 0.3s;
}

.flip-digit.flipped {
    transform: rotateX(90deg);
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    padding: 10px 0; /* Etwas mehr Padding beibehalten */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 20px;
    padding-top: 0; /* Angepasst, da Padding im Header */
}

.logo-image { /* Sicherstellen, dass das Logo gut sichtbar ist */
    display: block;
    max-height: 40px; /* Höhe anpassen bei Bedarf */
    width: auto;
}


.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 20px;
    font-size: 1.2rem; /* Leicht angepasst */
}

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section Styles */
.hero-section {
    background-color: var(--background-color);
    padding: 60px 0; /* Etwas mehr Padding */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text {
    margin-bottom: 30px;
    position: relative;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2em; /* Angepasst */
    margin-bottom: 20px; /* Mehr Abstand */
    color: var(--primary-color);
}

/* Angepasstes Badge für Outlet */
.outlet-badge {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block; /* Damit es im Textfluss bleibt oder zentriert werden kann */
    margin-bottom: 25px; /* Abstand nach unten */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Kein Special-Offer Block mehr */

.sub-heading {
    font-size: 1.2rem; /* Größer für die Bullet Points */
    font-weight: 400;
    margin: 25px 0;
    line-height: 1.6em; /* Mehr Zeilenabstand */
    color: var(--text-color);
}

.sub-heading span { /* Styling für die Punkte */
    display: block; /* Jeder Punkt in neuer Zeile */
    margin-bottom: 8px;
    font-weight: 500; /* Etwas dicker */
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px; /* Mehr Abstand */
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.hero-img {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    text-align: center;
    padding: 0; /* Kein extra Padding */
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-img:hover {
    transform: scale(1.05);
}

/* Hero Image Grid (Desktop) */
.hero-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 800px;
    margin-top: 40px; /* Mehr Abstand */
}

.img1, .img2, .img3, .img4, .img5, .img6, .img7 {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Benefits Section Styles */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px; /* Etwas mehr Gap */
    margin: 70px 0; /* Mehr Abstand */
    background-color: var(--white);
    padding: 40px 30px; /* Mehr Padding */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sanfterer Schatten */
}

.benefit-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px 20px; /* Mehr Padding */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.8rem; /* Größeres Icon */
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* Featured Products Styles (Angepasst für Outlet) */
.featured-products {
    margin: 70px 0;
}

.featured-products h2, .how-it-works h2, .mood-section h2 {
    text-align: center;
    margin-bottom: 50px; /* Mehr Abstand */
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.featured-products h2:after, .how-it-works h2:after, .mood-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative; /* Wichtig für Badge, falls einer hinzugefügt wird */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Optional: Outlet Badge für Produkte */
.product-badge-outlet {
    position: absolute;
    top: 15px;
    left: 15px; /* Oder rechts */
    background-color: var(--primary-color); /* Oder andere Farbe */
    color: var(--white);
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 40%; /* Verkleinert auf 50% */
    height: auto; /* Beibehaltung des Seitenverhältnisses */
    display: block; /* Block-Element für zentrierte Darstellung */
    margin: 0 auto; /* Zentrierung */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 25px; /* Mehr Padding */
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price { /* Kann Outlet-Preis zeigen */
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.original-price { /* Originalpreis durchgestrichen */
    text-decoration: line-through;
    color: #888;
    font-size: 0.9em;
    margin-left: 8px;
}

/* How It Works Section (Angepasst für Outlet Anmeldung) */
.how-it-works {
    margin: 70px 0;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px; /* Mehr Abstand */
}

.step-card {
    flex: 1;
    padding: 35px 25px; /* Mehr Padding */
    background-color: #f9f9f9;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 45px; /* Größer */
    height: 45px; /* Größer */
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem; /* Größer */
    margin: 0 auto 20px; /* Mehr Abstand */
}

.step-card h3 {
    margin-bottom: 15px; /* Mehr Abstand */
    font-size: 1.3rem; /* Größer */
}

/* Form Section Styles */
.form-section {
    background-color: var(--background-color);
    padding: 70px 40px; /* Mehr Padding */
    margin: 80px 0; /* Mehr Abstand */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.form-section h2 {
    margin-bottom: 30px;
    font-size: 2.1rem; /* Leicht größer */
}

.signup-info {
    text-align: center;
    margin-bottom: 30px;
    max-width: 700px; /* Begrenzung der Breite für Lesbarkeit */
    margin-left: auto;
    margin-right: auto;
}

.signup-text { /* Geändert von Badge zu normalem Text */
    font-size: 1.15rem; /* Angepasst */
    font-weight: 400;
    color: var(--text-color); /* Normale Textfarbe */
    line-height: 1.6;
    margin-bottom: 15px; /* Abstand nach unten */
}

/* Flip Counter Styling (falls verwendet) */
.signup-info .flip-counter {
    margin: 10px 0; /* Abstand für den Counter */
    /* Weitere Stile hier, falls benötigt */
}


form {
    max-width: 500px;
    margin: 30px auto 0; /* Abstand nach oben */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-note {
    margin-top: 25px; /* Mehr Abstand */
    font-size: 0.9rem; /* Leicht größer */
    color: #666; /* Etwas dunkler */
}

/* Mood Section Styles */
.mood-section {
    margin: 80px 0; /* Mehr Abstand */
    text-align: center;
}

.mood-image {
    width: 100%;
    max-width: 320px; /* Leicht größer */
    height: 320px; /* Leicht größer */
    object-fit: cover;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.mood-image:hover {
    transform: scale(1.05);
}

.mood-section-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px; /* Mehr Abstand */
}

/* Testimonials Styles */
.testimonials {
    position: relative;
    background-color: #f9f9f9;
    padding: 70px 40px; /* Mehr Padding */
    text-align: center;
    border-radius: 10px;
    margin: 80px 0; /* Mehr Abstand */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Sanfter */
    overflow: hidden;
}

.testimonials h2 {
    margin-bottom: 50px; /* Mehr Abstand */
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Stellt sicher, dass die Breite korrekt ist */
}

.testimonial-card {
    flex: 0 0 100%; /* Stellt sicher, dass jede Karte die volle Breite einnimmt */
    box-sizing: border-box;
    padding: 35px; /* Mehr Padding */
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 15px; /* Abstand zwischen den Karten (visuell durch Overflow) */
    max-width: calc(100% - 30px); /* Berücksichtigt den Margin */
}


.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author { /* Klasse für den Autor hinzugefügt */
    font-weight: 600;
    margin-top: 10px;
    color: var(--primary-color);
}


.stars {
    color: #FFD700; /* Gold für Sterne */
    font-size: 1.2em;
    margin: 15px 0;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    cursor: pointer;
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background-color: var(--white);
}

.carousel-arrow.left {
    left: 20px;
}

.carousel-arrow.right {
    right: 20px;
}

/* Collection CTA Styles (Angepasst für Outlet) */
.collection-cta {
    margin: 80px 0; /* Mehr Abstand */
    text-align: center;
    padding: 50px 30px; /* Mehr Padding */
    background-color: var(--background-color);
    border-radius: 10px;
}

.collection-cta h2 {
    margin-bottom: 20px; /* Mehr Abstand */
}

.collection-cta p {
    margin-bottom: 30px; /* Mehr Abstand */
    font-size: 1.1rem;
    max-width: 600px; /* Begrenzung für Lesbarkeit */
    margin-left: auto;
    margin-right: auto;
}

/* Nav CTA am Header und Button unten haben unterschiedliche Klassen */
.nav-cta {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    font-size: 1rem; /* Angepasst */
}

.nav-cta:hover {
    background-color: #d41d55; /* Dunklere Akzentfarbe */
    transform: translateY(-2px);
}

/* Anpassung der Buttons für Login und Registrierung */
.toggle-login, .toggle-signup {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 15px;
}

.toggle-login:hover, .toggle-signup:hover {
    background-color: #d41d55; /* Dunklere Akzentfarbe */
    transform: translateY(-2px);
}

/* Anpassung des Login-Formulars */
#login-form {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#login-form label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: var(--text-color);
}

#login-form input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

#login-form input:focus {
    border-color: var(--accent-color);
    outline: none;
}

#login-form button[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#login-form button[type="submit"]:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    margin-top: 60px; /* Mehr Abstand */
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin-bottom: 15px;
    opacity: 0.9;
}

footer nav ul {
    list-style: none;
    padding: 0; /* Reset Padding */
    display: flex;
    justify-content: center;
    gap: 25px; /* Mehr Abstand */
}

footer nav ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer nav ul li a:hover {
    opacity: 1;
}

/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Animations (Flip Animation beibehalten, Pulse entfernt) */
@keyframes flipAnimation {
    0% {
        transform: rotateX(90deg);
    }
    100% {
        transform: rotateX(0deg);
    }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem; /* Angepasst */
		margin-bottom: 15px;
    }

    /* Badge Styling für Mobile anpassen */
    .outlet-badge {
        font-size: 0.9rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .sub-heading {
        font-size: 1.1rem; /* Angepasst */
        line-height: 1.5;
    }

    .hero-images-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 30px;
    }

    .steps-container {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        display: none; /* Mobile Navigation (Burger Menu) müsste hier implementiert werden */
    }

    .nav-cta { /* CTA im Header anpassen */
        padding: 8px 18px;
        font-size: 0.9rem;
    }


    .featured-products h2, .how-it-works h2, .mood-section h2, .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 40px; /* Konsistenter Abstand */
    }

    .product-grid {
        grid-template-columns: 1fr; /* Einspaltig auf Mobile */
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px 20px; /* Angepasst */
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
     .carousel-arrow.left { left: 15px; }
     .carousel-arrow.right { right: 15px; }


    .mood-image {
        max-width: calc(50% - 10px); /* Zwei Bilder nebeneinander, wenn Platz */
        height: auto;
    }

    .form-section {
        padding: 50px 20px; /* Angepasst */
    }

    .collection-cta {
         padding: 40px 20px;
    }
    .collection-cta h2 { font-size: 1.8rem; }
    .collection-cta p { font-size: 1rem; }


}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.9rem; /* Noch kleiner */
    }

    .outlet-badge {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

     .sub-heading {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px; /* Angepasst */
        font-size: 1rem;
    }

    .benefit-card {
        padding: 20px 15px; /* Angepasst */
    }

    .benefit-icon {
        font-size: 2.2rem; /* Angepasst */
    }

     /* Optional: Produkt-Badge auf Mobile */
    .product-badge-outlet {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 0.8rem;
    }

    .product-info {
        padding: 20px; /* Konsistent */
    }

    .product-title {
        font-size: 1.2rem; /* Angepasst */
    }

    .product-price {
        font-size: 1.1rem; /* Angepasst */
    }

    .step-card { padding: 25px 20px; }
    .step-number { width: 40px; height: 40px; font-size: 1.2rem;}
    .step-card h3 { font-size: 1.2rem; }


    .carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .carousel-arrow.left { left: 10px; }
    .carousel-arrow.right { right: 10px; }

    .mood-image {
        max-width: 100%; /* Ein Bild pro Zeile */
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }
}