/* --- RELOVED ERA: SCHRIFTARTEN LADEN --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

/* --- RELOVED ERA: FARBEN & HINTERGRUND --- */
body, #wrapper, .header-top {
    background-color: #fcffde !important; /* Dein Creme-Hintergrund */
}

body, p, span, div {
    color: #3d550c; /* Dein dunkles Olivgrün für normalen Text */
}

/* --- RELOVED ERA: AKZENTFARBE (Herz-Grün) --- */
a {
    color: #95a800; /* Links in der Herz-Farbe */
    transition: all 0.3s ease;
}

a:hover {
    color: #3d550c; /* Links werden beim Drüberfahren mit der Maus dunkelgrün */
}

/* --- RELOVED ERA: ÜBERSCHRIFTEN (Boutique-Look) --- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Playfair Display', serif !important; /* Edle Serifenschrift */
    color: #3d550c !important; /* Dunkles Olivgrün */
    font-weight: 700 !important;
}
/* --- RELOVED ERA: BUTTONS (In den Warenkorb & Kasse) --- */
.btn-primary, .add-to-cart {
    background-color: #95a800 !important; /* Dein frisches Herz-Grün */
    border-color: #95a800 !important; 
    color: #ffffff !important; /* Weiße Schrift für perfekten Kontrast */
    text-transform: uppercase; /* Leichtes Großschreiben für den Boutique-Look */
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

/* Der Effekt, wenn die Maus über den Button fährt */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.add-to-cart:hover, .add-to-cart:focus, .add-to-cart:active {
    background-color: #3d550c !important; /* Wechsel zu deinem dunklen Olivgrün */
    border-color: #3d550c !important;
    color: #fcffde !important; /* Wechsel zur Creme-Schrift */
}