/* Brise Légère - Stylesheet V2.0 
   Design: Minimalistisch, Organisch, Hochwertig
*/

:root {
    --primary-bg: #fcfaf8;      /* Cremiges Weiß */
    --card-bg: #ffffff;
    --text-main: #2d2d2d;       /* Anthrazit für bessere Lesbarkeit */
    --text-muted: #666666;
    --accent-sage: #8C9A8E;     /* Salbeigrün für Natur-Aspekt */
    --amazon-blue: #232f3e;     /* Seriöser Amazon-Farbton */
    --amazon-hover: #37475a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- LOGO ANPASSUNG V2.1 --- */
.field-logo {
    width: 300px;      /* Von 100px auf 200px erhöht für mehr Präsenz */
    height: auto;      /* Behält das 2:1 Verhältnis bei (wird dann 100px hoch) */
    border-radius: 0 !important; 
    display: block;
    margin: 0 auto 25px auto; /* Etwas mehr Abstand nach unten zum Namen */
    object-fit: contain;
}

/* --- HEADER --- */
header {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #eceae5;
}
/* --- Header ANPASSUNG V1.0 --- */
header h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* Etwas kleiner als vorher (3rem) */
    font-weight: 400;  /* Etwas dünner/eleganter */
    letter-spacing: 1px;
    text-transform: none; /* Nicht mehr alles in Großbuchstaben */
    margin-top: 10px;
}

.intro-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
}

/* --- PRODUKT-GRID --- */
.main-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--card-bg);
    padding: 25px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1; /* Quadratische Produktfotos */
    object-fit: cover;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 50px; /* Hält die Karten gleichmäßig */
}

/* --- BUTTONS --- */
.buy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--amazon-blue);
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.buy-button:hover {
    background-color: var(--amazon-hover);
}

.buy-button svg {
    margin-right: 10px;
    fill: #FF9900; /* Amazon Orange für das Icon */
}

/* --- FOOTER --- */
footer {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-nav {
    margin: 20px 0;
}

.footer-nav a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 15px;
    border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
    border-bottom: 1px solid var(--text-main);
}

.legal-info {
    font-size: 0.75rem;
    margin-top: 20px;
    line-height: 1.8;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }
}