
/* ==========================================================
   DUFT-GENERATOR.DE
   STYLE.CSS
   Teil 1
   Grundlayout + Hero + Allgemeine Elemente
========================================================== */


/* ==========================================================
   FARBEN
========================================================== */

:root{

    --primary:#C8A96A;
    --primary-dark:#A98543;

    --secondary:#4A7C8A;

    --dark:#252525;

    --text:#555;

    --light:#FAF8F4;

    --white:#ffffff;

    --border:#ECE7DD;

    --shadow:0 10px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s;

}


/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:
    "Poppins",
    Arial,
    sans-serif;

    background:var(--light);

    color:var(--text);

    line-height:1.7;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

button{

    border:none;

    cursor:pointer;

    font:inherit;

}


/* ==========================================================
   TYPOGRAFIE
========================================================== */

h1,
h2,
h3,
h4{

    font-family:
    "Cormorant Garamond",
    serif;

    color:var(--dark);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:4rem;

}

h2{

    font-size:3rem;

}

h3{

    font-size:2rem;

}

p{

    margin-bottom:20px;

}


/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(1200px,92%);

    margin:auto;

}

.narrow{

    max-width:850px;

}


/* ==========================================================
   SECTION
========================================================== */

section{

    padding:90px 0;

}

.section-light{

    background:#fff;

}

.section-header{

    text-align:center;

    max-width:850px;

    margin:0 auto 60px;

}

.section-header h2{

    margin:15px 0 20px;

}

.section-header p{

    font-size:1.15rem;

}

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:2px;

    font-size:.9rem;

}

.center{

    text-align:center;

}



/* ==========================================================
   BUTTONS
========================================================== */

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.button:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.button-secondary{

    background:transparent;

    color:#fff;

    border:2px solid rgba(255,255,255,.8);

}

.button-secondary:hover{

    background:#fff;

    color:var(--dark);

}


/* ==========================================================
   HERO
========================================================== */
.page-header{

    margin:0;
    padding:0;
    line-height:0;

}

.page-header img{

    width:100%;
    display:block;

}



/* ==========================================================
   EINLEITUNG
========================================================== */

.intro{

    background:#fff;

}

.intro p{

    font-size:1.1rem;

}


/* ==========================================================
   GRID
========================================================== */

.card-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

}

.feature-grid{

    display:grid;

    grid-template-columns:

    repeat(auto-fit,minmax(240px,1fr));

    gap:30px;

}

.tag-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}


/* ==========================================================
   ABSTÄNDE
========================================================== */

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}


/* ==========================================================
   HILFSKLASSEN
========================================================== */

.text-center{

    text-align:center;

}

.text-white{

    color:#fff;

}

.rounded{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow);

}


/* ==========================================================
   STYLE.CSS
   Teil 2
   Karten, Persönlichkeitstypen, Produkte
========================================================== */


/* ==========================================================
   PERSÖNLICHKEITSKARTEN (Startseite)
========================================================== */

.personality-card{

    background:var(--white);

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

    display:flex;

    flex-direction:column;

}

.personality-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.personality-card img{

    width:100%;

    height:320px;

    object-fit:cover;

}

.personality-card h3{

    padding:25px 25px 10px;

    font-size:2rem;

}

.personality-card p{

    padding:0 25px;

    color:var(--text);

    flex:1;

}

.personality-card a{

    display:block;

    margin:25px;

    padding:14px;

    text-align:center;

    background:var(--primary);

    color:#fff;

    border-radius:40px;

    font-weight:600;

}

.personality-card a:hover{

    background:var(--primary-dark);

}


/* ==========================================================
   EIGENSCHAFTEN
========================================================== */

.feature-card{

    background:var(--white);

    border-radius:var(--radius);

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    font-size:1rem;

}

.feature-card:hover{

    transform:translateY(-6px);

}

.feature-card .icon{

    display:block;

    font-size:3rem;

    margin-bottom:18px;

}

.feature-card h3{

    font-size:1.45rem;

    margin-bottom:12px;

    line-height:1.3;

}

.feature-card p{

    font-size:1rem;

    margin:0;

    line-height:1.7;

}
/* ==========================================================
   DUFTNOTEN
========================================================== */

.tag-grid span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 22px;

    border-radius:40px;

    background:#fff;

    border:1px solid var(--border);

    font-weight:600;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

    transition:var(--transition);

}

.tag-grid span:hover{

    background:var(--primary);

    color:#fff;

    border-color:var(--primary);

}


/* ==========================================================
   PRODUKTGRID
========================================================== */

.product-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}


/* ==========================================================
   PRODUKTKARTE
========================================================== */

.product-card{

    background:#fff;

    border-radius:var(--radius);

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-card img{

    width:100%;

    height:360px;

    object-fit:cover;

}

.product-card h3{

    padding:25px 25px 10px;

}

.product-card p{

    padding:0 25px;

    color:var(--text);

}

.product-card a{

    display:block;

    margin:25px;

    text-align:center;

    background:var(--primary);

    color:#fff;

    padding:14px;

    border-radius:40px;

    font-weight:600;

}

.product-card a:hover{

    background:var(--primary-dark);

}


/* ==========================================================
   ÄHNLICHE PERSÖNLICHKEITEN
========================================================== */

.related-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.related-card{

    background:#fff;

    padding:35px;

    border-radius:var(--radius);

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.related-card:hover{

    transform:translateY(-6px);

}

.related-card h3{

    margin-bottom:15px;

}

.related-card a{

    display:inline-block;

    margin-top:15px;

    color:var(--primary);

    font-weight:600;

}

.related-card a:hover{

    color:var(--primary-dark);

}


/* ==========================================================
   INFOBOX
========================================================== */

.info-box{

    background:#fff;

    border-left:5px solid var(--primary);

    padding:30px;

    border-radius:var(--radius);

    margin:40px 0;

    box-shadow:var(--shadow);

}

.info-box h3{

    margin-bottom:15px;

}


/* ==========================================================
   HINWEISBOX
========================================================== */

.notice-box{

    background:#FFF8ED;

    border:1px solid #F0D8A5;

    padding:30px;

    border-radius:var(--radius);

    margin-top:40px;

}

.notice-box h3{

    margin-bottom:15px;

}


/* ==========================================================
   DUFTFAMILIEN
========================================================== */

.family-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.family-card{

    background:#fff;

    border-radius:var(--radius);

    text-align:center;

    padding:45px 20px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.family-card:hover{

    transform:translateY(-6px);

}

.family-card{

    font-size:3rem;

}

.family-card h3{

    margin-top:18px;

}


/* ==========================================================
   ZITAT
========================================================== */

.quote-box{

    max-width:900px;

    margin:70px auto;

    padding:50px;

    text-align:center;

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.quote-box p{

    font-size:1.4rem;

    font-style:italic;

    color:#444;

    margin-bottom:20px;

}

.quote-author{

    color:var(--primary);

    font-weight:600;

}


/* ==========================================================
   FAQ
========================================================== */

.faq-item{

    background:#fff;

    border-radius:var(--radius);

    padding:30px;

    margin-bottom:20px;

    box-shadow:var(--shadow);

}

.faq-item h3{

    margin-bottom:15px;

}

.faq-item:last-child{

    margin-bottom:0;

}



/* ==========================================================
   STYLE.CSS
   Teil 3
   Footer + Animationen + Responsive + Farbthemen
==========================================================*/


/* ==========================================================
   FOOTER
==========================================================*/

.site-footer{

    background:#222;

    color:#ddd;

    margin-top:100px;

}

.footer-top{

    padding:70px 0;

}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-column h3,
.footer-column h4{

    color:#fff;

    margin-bottom:20px;

}

.footer-column p{

    color:#bbb;

}

.footer-column ul{

    padding:0;

}

.footer-column li{

    margin-bottom:12px;

}

.footer-column a{

    color:#bbb;

}

.footer-column a:hover{

    color:var(--primary);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px 0;

    text-align:center;

    font-size:.95rem;

    color:#999;

}


/* ==========================================================
   HOVER-EFFEKTE
==========================================================*/

.personality-card,
.product-card,
.feature-card,
.related-card,
.family-card{

    transition:
    transform .35s ease,
    box-shadow .35s ease;

}

.personality-card:hover,
.product-card:hover,
.feature-card:hover,
.related-card:hover,
.family-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.button{

    transition:
    background .3s ease,
    transform .3s ease;

}

.button:hover{

    transform:translateY(-3px);

}


/* ==========================================================
   SANFTE EINBLENDUNG
==========================================================*/

.hero-content,
.section-header,
.personality-card,
.product-card{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/* ==========================================================
   FARBTHEMEN
==========================================================*/

/* Die Coole */

.theme-cool{

    --primary:#2D8AB8;

    --primary-dark:#1E678E;

}


/* Die Romantische */

.theme-romantic{

    --primary:#D56E9C;

    --primary-dark:#B54F7E;

}


/* Die Elegante */

.theme-elegant{

    --primary:#C8A96A;

    --primary-dark:#A98543;

}


/* Die Natürliche */

.theme-natural{

    --primary:#6D9B5A;

    --primary-dark:#507540;

}


/* Die Abenteuerlustige */

.theme-adventure{

    --primary:#D97732;

    --primary-dark:#AF5920;

}


/* Die Kreative */

.theme-creative{

    --primary:#8A68C9;

    --primary-dark:#6B4EA8;

}


/* Die Lebensfrohe */

.theme-happy{

    --primary:#E3B126;

    --primary-dark:#C58F05;

}


/* Die Geheimnisvolle */

.theme-mystic{

    --primary:#5D4A7C;

    --primary-dark:#43335F;

}


/* Die Glamouröse */

.theme-glamour{

    --primary:#C79A3B;

    --primary-dark:#9E7628;

}


/* Die Sanfte */

.theme-soft{

    --primary:#D7A8AE;

    --primary-dark:#B9868E;

}


/* Die Weltenbummlerin */

.theme-travel{

    --primary:#3D9AA5;

    --primary-dark:#2B717A;

}


/* Die Minimalistin */

.theme-minimal{

    --primary:#8D8D8D;

    --primary-dark:#666;

}


/* ==========================================================
   RESPONSIVE
==========================================================*/

@media (max-width:1100px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

}


@media (max-width:900px){

.hero{

    min-height:560px;

}

.hero h1{

    font-size:3rem;

}

.hero p{

    font-size:1.05rem;

}

.section-header h2{

    font-size:2.3rem;

}

.product-card img{

    height:300px;

}

}


@media (max-width:700px){

.hero{

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.button{

    width:100%;

}

.card-grid,
.product-grid,
.feature-grid,
.related-grid,
.family-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

    gap:35px;

    text-align:center;

}

.personality-card img{

    height:260px;

}

.product-card img{

    height:260px;

}

}


@media (max-width:500px){

body{

    font-size:.95rem;

}

section{

    padding:5px 0;

}

header + section{

    padding-top:35px;

}

.hero{

    min-height:480px;

}

.hero h1{

    font-size:2.3rem;

}

.section-header h2{

    font-size:2rem;

}

h3{

    font-size:1.6rem;

}

.personality-card h3,
.product-card h3{

    font-size:1.7rem;

}

.tag-grid{

    justify-content:flex-start;

}

.tag-grid span{

    font-size:.9rem;

}

}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer{

    background:#242424;

    color:#d8d8d8;

    margin-top:80px;

}

.site-footer .container{

    padding:70px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:50px;

}

.footer-column h3{

    color:#ffffff;

    margin-bottom:20px;

    font-size:2rem;

}

.footer-column h4{

    color:#ffffff;

    margin-bottom:20px;

    font-size:1.4rem;

}

.footer-column p{

    color:#bbbbbb;

    line-height:1.8;

    margin:0;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column li{

    margin-bottom:14px;

}

.footer-column a{

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:var(--primary);

    padding-left:6px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

}

.footer-bottom p{

    margin:0;

    color:#9f9f9f;

    font-size:.95rem;

    letter-spacing:.3px;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:900px){

.footer-grid{

    grid-template-columns:1fr;

    gap:40px;

    text-align:center;

}

.footer-column a:hover{

    padding-left:0;

}

}

@media (max-width:600px){

.site-footer .container{

    padding:50px 0 25px;

}

.footer-column h3{

    font-size:1.8rem;

}

.footer-column h4{

    font-size:1.3rem;

}

.footer-bottom{

    font-size:.9rem;

}

}

.profile-features .feature-card{

    padding:30px 20px;

}

.profile-features .feature-card h3{

    font-size:1.4rem;

}

.profile-features .feature-card p{

    font-size:.70rem;

}

/* ==========================================================
   PARFÜMLISTE
========================================================== */

.perfume-list{

    margin-top:50px;

}

.perfume-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 28px;

    margin-bottom:16px;

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:14px;

    color:var(--dark);

    transition:.3s;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

}

.perfume-item:hover{

    border-color:var(--primary);

    background:#fffdf8;

    transform:translateX(6px);

}

.perfume-name{

    font-size:1.1rem;

    font-weight:600;

}

.perfume-arrow{

    font-size:1.4rem;

    color:var(--primary);

    font-weight:700;

}

@media (max-width:700px){

.perfume-item{

    padding:18px 20px;

}

.perfume-name{

    font-size:1rem;

}

}

/* ==========================================================
   CONTENT SECTION
========================================================== */

.content-section{

    padding:50px 0;

}

.content-section:first-of-type{

    padding-top:20px;

}

.content-section h2{

    margin:10px 0 20px;

}

.content-section p:last-child{

    margin-bottom:0;

}

/* ==========================================================
   AUSWAHL FRAU / MANN
========================================================== */

.gender-selection{

    padding:65px 0 80px;

    background:#fff;

}

.gender-selection .section-header{

    margin-bottom:45px;

}

.gender-grid{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:30px;

    max-width:950px;

    margin:0 auto;

}

.gender-card{

    display:flex;

    align-items:center;

    gap:28px;

    padding:38px 35px;

    background:var(--light);

    border:1px solid var(--border);

    border-radius:var(--radius);

    color:var(--text);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.gender-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.gender-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    flex:0 0 75px;

    width:75px;

    height:75px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-family:Arial, sans-serif;

    font-size:2.5rem;

    font-weight:400;

}

.gender-small{

    display:block;

    margin-bottom:5px;

    color:var(--primary);

    font-size:.8rem;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

}

.gender-card h3{

    margin:0 0 12px;

    font-size:1.9rem;

}

.gender-card p{

    margin:0 0 16px;

    font-size:.98rem;

    line-height:1.7;

}

.gender-link{

    color:var(--primary);

    font-weight:700;

}


/* MOBILE */

@media (max-width:750px){

    .gender-selection{

        padding:45px 0 55px;

    }

    .gender-grid{

        grid-template-columns:1fr;

    }

    .gender-card{

        padding:28px 24px;

    }

    .gender-icon{

        flex-basis:60px;

        width:60px;

        height:60px;

        font-size:2rem;

    }

    .gender-card h3{

        font-size:1.6rem;

    }

}

@media (max-width:450px){

    .gender-card{

        align-items:flex-start;

        gap:18px;

    }

}

/* ==========================================================
   PERSÖNLICHKEITSTYPEN OHNE BILDER
========================================================== */

.personality-grid{

    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;

}

.personality-card{

    position:relative;

    display:flex;
    flex-direction:column;

    min-height:250px;

    padding:32px 28px;

    background:#fff;

    border:1px solid var(--border);
    border-radius:var(--radius);

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    color:var(--text);

    transition:var(--transition);

}

.personality-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary);

    box-shadow:0 16px 35px rgba(0,0,0,.10);

}

.personality-icon{

    display:flex;

    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    margin-bottom:20px;

    background:var(--light);

    border-radius:50%;

    font-size:1.6rem;

}

.personality-card h3{

    padding:0;
    margin:0 0 12px;

    font-size:1.7rem;

}

.personality-card p{

    padding:0;
    margin:0 0 22px;

    font-size:.96rem;
    line-height:1.65;

    flex:1;

}

.personality-link{

    color:var(--primary);

    font-size:.93rem;
    font-weight:700;

}

.personality-card:hover .personality-link{

    color:var(--primary-dark);

}


/* TABLET */

@media (max-width:900px){

    .personality-grid{

        grid-template-columns:repeat(2, 1fr);

    }

}


/* SMARTPHONE */

@media (max-width:600px){

    .personality-grid{

        grid-template-columns:1fr;

        gap:16px;

    }

    .personality-card{

        min-height:auto;

        padding:25px 22px;

    }

    .personality-icon{

        width:45px;
        height:45px;

        margin-bottom:15px;

        font-size:1.35rem;

    }

    .personality-card h3{

        font-size:1.5rem;

    }

}

/* ==========================================================
   NEUE SUCHE
========================================================== */

.new-search{

    padding:65px 0;

    text-align:center;

    background:var(--light);

    border-top:1px solid var(--border);

}

.new-search h2{

    margin:10px 0 15px;

}

.new-search p{

    max-width:700px;

    margin:0 auto 30px;

    line-height:1.7;

}

.new-search-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.new-search-buttons .btn{

    min-width:260px;

}


/* MOBILE */

@media (max-width:600px){

    .new-search{

        padding:45px 0;

    }

    .new-search-buttons{

        flex-direction:column;

    }

    .new-search-buttons .btn{

        width:100%;
        min-width:0;

    }

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:15px 26px;

    border-radius:10px;

    font-size:1rem;
    font-weight:700;

    line-height:1.3;

    text-decoration:none;

    cursor:pointer;

    transition:all .3s ease;

}


/* Hauptbutton */

.btn-primary{

    background:var(--primary);
    color:#ffffff !important;

    border:2px solid var(--primary);

}

.btn-primary:hover{

    background:var(--primary-dark);
    border-color:var(--primary-dark);

    color:#ffffff !important;

    transform:translateY(-2px);

}


/* Zweiter Button */

.btn-outline{

    background:#ffffff;
    color:var(--primary) !important;

    border:2px solid var(--primary);

}

.btn-outline:hover{

    background:var(--primary);
    color:#ffffff !important;

}


/* ==========================================================
   NEUE SUCHE
========================================================== */

.new-search{

    padding:65px 0;

    text-align:center;

    background:var(--light);

    border-top:1px solid var(--border);

}

.new-search h2{

    margin:10px 0 15px;

}

.new-search p{

    max-width:700px;

    margin:0 auto 30px;

}

.new-search-buttons{

    display:flex;

    justify-content:center;
    align-items:center;

    gap:16px;

    flex-wrap:wrap;

}

.new-search-buttons .btn{

    min-width:280px;

}


/* MOBILE */

@media (max-width:600px){

    .new-search{

        padding:45px 0;

    }

    .new-search-buttons{

        flex-direction:column;

    }

    .new-search-buttons .btn{

        width:100%;
        min-width:0;

    }

}

/* ==========================================================
   THEME – DIE ROMANTISCHE
========================================================== */

.theme-romantic{

    --primary:#B76E79;
    --primary-dark:#8F4F5A;

    --light:#FBF4F4;
    --border:#E8D4D6;

}


/* Helle Sections */

.theme-romantic .section-light{

    background:#FBF4F4;

}


/* Kleine Überschriften */

.theme-romantic .section-subtitle{

    color:#B76E79;

}


/* Eigenschaften */

.theme-romantic .feature-card{

    border-color:#E8D4D6;

}


/* Duftnoten / Interessen */

.theme-romantic .tag-grid span{

    background:#FFF9F9;
    border-color:#E8D4D6;

}


/* Parfümliste */

.theme-romantic .perfume-item:hover{

    border-color:#B76E79;
    background:#FFF8F8;

}


/* Neue Suche */

.theme-romantic .new-search{

    background:#FBF4F4;
    border-color:#E8D4D6;

}

/* ==========================================================
   THEME – DIE ELEGANTE
========================================================== */

.theme-elegant{

    --primary:#B08A4A;
    --primary-dark:#80622F;

    --light:#F8F4EC;
    --border:#DDD0B8;

}


/* Helle Sections */

.theme-elegant .section-light{

    background:#F8F4EC;

}


/* Kleine Überschriften */

.theme-elegant .section-subtitle{

    color:#B08A4A;

}


/* Eigenschafts-Karten */

.theme-elegant .feature-card{

    background:#FFFFFF;
    border-color:#DDD0B8;

}


/* Duftnoten & Interessen */

.theme-elegant .tag-grid span{

    background:#FFFCF7;
    border-color:#DDD0B8;

}


/* Parfümliste */

.theme-elegant .perfume-item{

    background:#FFFFFF;
    border-color:#E5DCCB;

}

.theme-elegant .perfume-item:hover{

    border-color:#B08A4A;
    background:#FFFBF3;

}


/* Pfeile der Parfümliste */

.theme-elegant .perfume-arrow{

    color:#B08A4A;

}


/* Neue Suche */

.theme-elegant .new-search{

    background:#F8F4EC;
    border-color:#DDD0B8;

}


/* Hauptbutton */

.theme-elegant .btn-primary{

    background:#B08A4A;
    border-color:#B08A4A;
    color:#FFFFFF !important;

}

.theme-elegant .btn-primary:hover{

    background:#80622F;
    border-color:#80622F;

}


/* Zweiter Button */

.theme-elegant .btn-outline{

    background:#FFFFFF;
    border-color:#B08A4A;
    color:#80622F !important;

}

.theme-elegant .btn-outline:hover{

    background:#B08A4A;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE NATÜRLICHE
========================================================== */

.theme-natural{

    --primary:#7C9274;
    --primary-dark:#596D53;

    --light:#F3F5EF;
    --border:#D4DDCF;

}


/* Helle Sections */

.theme-natural .section-light{

    background:#F3F5EF;

}


/* Kleine Überschriften */

.theme-natural .section-subtitle{

    color:#7C9274;

}


/* Eigenschafts-Karten */

.theme-natural .feature-card{

    background:#FFFFFF;
    border-color:#D4DDCF;

}


/* Duftnoten & Interessen */

.theme-natural .tag-grid span{

    background:#FAFCF8;
    border-color:#D4DDCF;

}


/* Parfümliste */

.theme-natural .perfume-item{

    background:#FFFFFF;
    border-color:#DCE3D8;

}

.theme-natural .perfume-item:hover{

    border-color:#7C9274;
    background:#F7FAF5;

}


/* Pfeile der Parfümliste */

.theme-natural .perfume-arrow{

    color:#7C9274;

}


/* Neue Suche */

.theme-natural .new-search{

    background:#F3F5EF;
    border-color:#D4DDCF;

}


/* Hauptbutton */

.theme-natural .btn-primary{

    background:#7C9274;
    border-color:#7C9274;
    color:#FFFFFF !important;

}

.theme-natural .btn-primary:hover{

    background:#596D53;
    border-color:#596D53;

}


/* Zweiter Button */

.theme-natural .btn-outline{

    background:#FFFFFF;
    border-color:#7C9274;
    color:#596D53 !important;

}

.theme-natural .btn-outline:hover{

    background:#7C9274;
    border-color:#7C9274;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE ABENTEUERLUSTIGE
========================================================== */

.theme-adventure{

    --primary:#3F8585;
    --primary-dark:#2C6264;

    --light:#F1F7F6;
    --border:#C9DEDB;

}


/* Helle Sections */

.theme-adventure .section-light{

    background:#F1F7F6;

}


/* Kleine Überschriften */

.theme-adventure .section-subtitle{

    color:#3F8585;

}


/* Eigenschafts-Karten */

.theme-adventure .feature-card{

    background:#FFFFFF;
    border-color:#C9DEDB;

}


/* Duftnoten & Interessen */

.theme-adventure .tag-grid span{

    background:#F8FCFB;
    border-color:#C9DEDB;

}


/* Parfümliste */

.theme-adventure .perfume-item{

    background:#FFFFFF;
    border-color:#D3E4E1;

}

.theme-adventure .perfume-item:hover{

    border-color:#3F8585;
    background:#F4FAF9;

}


/* Pfeile der Parfümliste */

.theme-adventure .perfume-arrow{

    color:#3F8585;

}


/* Neue Suche */

.theme-adventure .new-search{

    background:#F1F7F6;
    border-color:#C9DEDB;

}


/* Hauptbutton */

.theme-adventure .btn-primary{

    background:#3F8585;
    border-color:#3F8585;
    color:#FFFFFF !important;

}

.theme-adventure .btn-primary:hover{

    background:#2C6264;
    border-color:#2C6264;

}


/* Zweiter Button */

.theme-adventure .btn-outline{

    background:#FFFFFF;
    border-color:#3F8585;
    color:#2C6264 !important;

}

.theme-adventure .btn-outline:hover{

    background:#3F8585;
    border-color:#3F8585;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE KREATIVE
========================================================== */

.theme-creative{

    --primary:#80649A;
    --primary-dark:#5E4675;

    --light:#F6F2F8;
    --border:#DDD2E5;

}


/* Helle Sections */

.theme-creative .section-light{

    background:#F6F2F8;

}


/* Kleine Überschriften */

.theme-creative .section-subtitle{

    color:#80649A;

}


/* Eigenschafts-Karten */

.theme-creative .feature-card{

    background:#FFFFFF;
    border-color:#DDD2E5;

}


/* Duftnoten & Interessen */

.theme-creative .tag-grid span{

    background:#FCFAFD;
    border-color:#DDD2E5;

}


/* Parfümliste */

.theme-creative .perfume-item{

    background:#FFFFFF;
    border-color:#E3D9E9;

}

.theme-creative .perfume-item:hover{

    border-color:#80649A;
    background:#FAF7FC;

}


/* Pfeile der Parfümliste */

.theme-creative .perfume-arrow{

    color:#80649A;

}


/* Neue Suche */

.theme-creative .new-search{

    background:#F6F2F8;
    border-color:#DDD2E5;

}


/* Hauptbutton */

.theme-creative .btn-primary{

    background:#80649A;
    border-color:#80649A;
    color:#FFFFFF !important;

}

.theme-creative .btn-primary:hover{

    background:#5E4675;
    border-color:#5E4675;

}


/* Zweiter Button */

.theme-creative .btn-outline{

    background:#FFFFFF;
    border-color:#80649A;
    color:#5E4675 !important;

}

.theme-creative .btn-outline:hover{

    background:#80649A;
    border-color:#80649A;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE LEBENSFROHE
========================================================== */

.theme-joyful{

    --primary:#D99A45;
    --primary-dark:#AD7128;

    --light:#FFF8EC;
    --border:#EED9B9;

}


/* Helle Sections */

.theme-joyful .section-light{

    background:#FFF8EC;

}


/* Kleine Überschriften */

.theme-joyful .section-subtitle{

    color:#D99A45;

}


/* Eigenschafts-Karten */

.theme-joyful .feature-card{

    background:#FFFFFF;
    border-color:#EED9B9;

}


/* Duftnoten & Interessen */

.theme-joyful .tag-grid span{

    background:#FFFCF6;
    border-color:#EED9B9;

}


/* Parfümliste */

.theme-joyful .perfume-item{

    background:#FFFFFF;
    border-color:#F0DFC4;

}

.theme-joyful .perfume-item:hover{

    border-color:#D99A45;
    background:#FFF9EF;

}


/* Pfeile der Parfümliste */

.theme-joyful .perfume-arrow{

    color:#D99A45;

}


/* Neue Suche */

.theme-joyful .new-search{

    background:#FFF8EC;
    border-color:#EED9B9;

}


/* Hauptbutton */

.theme-joyful .btn-primary{

    background:#D99A45;
    border-color:#D99A45;
    color:#FFFFFF !important;

}

.theme-joyful .btn-primary:hover{

    background:#AD7128;
    border-color:#AD7128;

}


/* Zweiter Button */

.theme-joyful .btn-outline{

    background:#FFFFFF;
    border-color:#D99A45;
    color:#AD7128 !important;

}

.theme-joyful .btn-outline:hover{

    background:#D99A45;
    border-color:#D99A45;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE GEHEIMNISVOLLE
========================================================== */

.theme-mysterious{

    --primary:#765064;
    --primary-dark:#513543;

    --light:#F6F1F4;
    --border:#DDCED6;

}


/* Helle Sections */

.theme-mysterious .section-light{

    background:#F6F1F4;

}


/* Kleine Überschriften */

.theme-mysterious .section-subtitle{

    color:#765064;

}


/* Eigenschafts-Karten */

.theme-mysterious .feature-card{

    background:#FFFFFF;
    border-color:#DDCED6;

}


/* Duftnoten & Interessen */

.theme-mysterious .tag-grid span{

    background:#FCF9FB;
    border-color:#DDCED6;

}


/* Parfümliste */

.theme-mysterious .perfume-item{

    background:#FFFFFF;
    border-color:#E4D8DE;

}

.theme-mysterious .perfume-item:hover{

    border-color:#765064;
    background:#FAF6F8;

}


/* Pfeile der Parfümliste */

.theme-mysterious .perfume-arrow{

    color:#765064;

}


/* Neue Suche */

.theme-mysterious .new-search{

    background:#F6F1F4;
    border-color:#DDCED6;

}


/* Hauptbutton */

.theme-mysterious .btn-primary{

    background:#765064;
    border-color:#765064;
    color:#FFFFFF !important;

}

.theme-mysterious .btn-primary:hover{

    background:#513543;
    border-color:#513543;

}


/* Zweiter Button */

.theme-mysterious .btn-outline{

    background:#FFFFFF;
    border-color:#765064;
    color:#513543 !important;

}

.theme-mysterious .btn-outline:hover{

    background:#765064;
    border-color:#765064;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE GLAMOURÖSE
========================================================== */

.theme-glamorous{

    --primary:#9A5B68;
    --primary-dark:#6E3542;

    --light:#FBF4F3;
    --border:#E5CDD0;

}


/* Helle Sections */

.theme-glamorous .section-light{

    background:#FBF4F3;

}


/* Kleine Überschriften */

.theme-glamorous .section-subtitle{

    color:#9A5B68;

}


/* Eigenschafts-Karten */

.theme-glamorous .feature-card{

    background:#FFFFFF;
    border-color:#E5CDD0;

}


/* Duftnoten & Interessen */

.theme-glamorous .tag-grid span{

    background:#FFF9F8;
    border-color:#E5CDD0;

}


/* Parfümliste */

.theme-glamorous .perfume-item{

    background:#FFFFFF;
    border-color:#EAD7D9;

}

.theme-glamorous .perfume-item:hover{

    border-color:#9A5B68;
    background:#FDF7F7;

}


/* Pfeile der Parfümliste */

.theme-glamorous .perfume-arrow{

    color:#B48A4A;

}


/* Neue Suche */

.theme-glamorous .new-search{

    background:#FBF4F3;
    border-color:#E5CDD0;

}


/* Hauptbutton */

.theme-glamorous .btn-primary{

    background:#9A5B68;
    border-color:#9A5B68;
    color:#FFFFFF !important;

}

.theme-glamorous .btn-primary:hover{

    background:#6E3542;
    border-color:#6E3542;

}


/* Zweiter Button */

.theme-glamorous .btn-outline{

    background:#FFFFFF;
    border-color:#9A5B68;
    color:#6E3542 !important;

}

.theme-glamorous .btn-outline:hover{

    background:#9A5B68;
    border-color:#9A5B68;
    color:#FFFFFF !important;

}


/* Goldene Akzente */

.theme-glamorous .feature-card .icon{

    color:#B48A4A;

}

/* ==========================================================
   THEME – DIE SANFTE
========================================================== */

.theme-gentle{

    --primary:#7F9EAA;
    --primary-dark:#5D7883;

    --light:#F3F7F8;
    --border:#D2E0E4;

}


/* Helle Sections */

.theme-gentle .section-light{

    background:#F3F7F8;

}


/* Kleine Überschriften */

.theme-gentle .section-subtitle{

    color:#7F9EAA;

}


/* Eigenschafts-Karten */

.theme-gentle .feature-card{

    background:#FFFFFF;
    border-color:#D2E0E4;

}


/* Duftnoten & Interessen */

.theme-gentle .tag-grid span{

    background:#FAFCFD;
    border-color:#D2E0E4;

}


/* Parfümliste */

.theme-gentle .perfume-item{

    background:#FFFFFF;
    border-color:#DCE6E9;

}

.theme-gentle .perfume-item:hover{

    border-color:#7F9EAA;
    background:#F7FAFB;

}


/* Pfeile der Parfümliste */

.theme-gentle .perfume-arrow{

    color:#7F9EAA;

}


/* Neue Suche */

.theme-gentle .new-search{

    background:#F3F7F8;
    border-color:#D2E0E4;

}


/* Hauptbutton */

.theme-gentle .btn-primary{

    background:#7F9EAA;
    border-color:#7F9EAA;
    color:#FFFFFF !important;

}

.theme-gentle .btn-primary:hover{

    background:#5D7883;
    border-color:#5D7883;

}


/* Zweiter Button */

.theme-gentle .btn-outline{

    background:#FFFFFF;
    border-color:#7F9EAA;
    color:#5D7883 !important;

}

.theme-gentle .btn-outline:hover{

    background:#7F9EAA;
    border-color:#7F9EAA;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE WELTENBUMMLERIN
========================================================== */

.theme-traveler{

    --primary:#B9785B;
    --primary-dark:#8A543D;

    --light:#FAF4EE;
    --border:#E5D3C5;

}


/* Helle Sections */

.theme-traveler .section-light{

    background:#FAF4EE;

}


/* Kleine Überschriften */

.theme-traveler .section-subtitle{

    color:#B9785B;

}


/* Eigenschafts-Karten */

.theme-traveler .feature-card{

    background:#FFFFFF;
    border-color:#E5D3C5;

}


/* Duftnoten & Interessen */

.theme-traveler .tag-grid span{

    background:#FDFAF7;
    border-color:#E5D3C5;

}


/* Parfümliste */

.theme-traveler .perfume-item{

    background:#FFFFFF;
    border-color:#EADCD1;

}

.theme-traveler .perfume-item:hover{

    border-color:#B9785B;
    background:#FCF7F3;

}


/* Pfeile der Parfümliste */

.theme-traveler .perfume-arrow{

    color:#B9785B;

}


/* Neue Suche */

.theme-traveler .new-search{

    background:#FAF4EE;
    border-color:#E5D3C5;

}


/* Hauptbutton */

.theme-traveler .btn-primary{

    background:#B9785B;
    border-color:#B9785B;
    color:#FFFFFF !important;

}

.theme-traveler .btn-primary:hover{

    background:#8A543D;
    border-color:#8A543D;

}


/* Zweiter Button */

.theme-traveler .btn-outline{

    background:#FFFFFF;
    border-color:#B9785B;
    color:#8A543D !important;

}

.theme-traveler .btn-outline:hover{

    background:#B9785B;
    border-color:#B9785B;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DIE MINIMALISTIN
========================================================== */

.theme-minimalist{

    --primary:#8A8178;
    --primary-dark:#625B55;

    --light:#F6F4F1;
    --border:#DDD8D2;

}


/* Helle Sections */

.theme-minimalist .section-light{

    background:#F6F4F1;

}


/* Kleine Überschriften */

.theme-minimalist .section-subtitle{

    color:#8A8178;

}


/* Eigenschafts-Karten */

.theme-minimalist .feature-card{

    background:#FFFFFF;
    border-color:#DDD8D2;

}


/* Duftnoten & Interessen */

.theme-minimalist .tag-grid span{

    background:#FCFBF9;
    border-color:#DDD8D2;

}


/* Parfümliste */

.theme-minimalist .perfume-item{

    background:#FFFFFF;
    border-color:#E3DFDA;

}

.theme-minimalist .perfume-item:hover{

    border-color:#8A8178;
    background:#F9F7F4;

}


/* Pfeile der Parfümliste */

.theme-minimalist .perfume-arrow{

    color:#8A8178;

}


/* Neue Suche */

.theme-minimalist .new-search{

    background:#F6F4F1;
    border-color:#DDD8D2;

}


/* Hauptbutton */

.theme-minimalist .btn-primary{

    background:#8A8178;
    border-color:#8A8178;
    color:#FFFFFF !important;

}

.theme-minimalist .btn-primary:hover{

    background:#625B55;
    border-color:#625B55;

}


/* Zweiter Button */

.theme-minimalist .btn-outline{

    background:#FFFFFF;
    border-color:#8A8178;
    color:#625B55 !important;

}

.theme-minimalist .btn-outline:hover{

    background:#8A8178;
    border-color:#8A8178;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DER COOLE
========================================================== */

.theme-cool-man{

    --primary:#526D82;
    --primary-dark:#34495A;

    --light:#F1F4F6;
    --border:#CED8DF;

}


/* Helle Sections */

.theme-cool-man .section-light{

    background:#F1F4F6;

}


/* Kleine Überschriften */

.theme-cool-man .section-subtitle{

    color:#526D82;

}


/* Eigenschafts-Karten */

.theme-cool-man .feature-card{

    background:#FFFFFF;
    border-color:#CED8DF;

}


/* Duftnoten & Interessen */

.theme-cool-man .tag-grid span{

    background:#F9FAFB;
    border-color:#CED8DF;

}


/* Parfümliste */

.theme-cool-man .perfume-item{

    background:#FFFFFF;
    border-color:#D7DFE4;

}

.theme-cool-man .perfume-item:hover{

    border-color:#526D82;
    background:#F5F7F8;

}


/* Pfeile der Parfümliste */

.theme-cool-man .perfume-arrow{

    color:#526D82;

}


/* Neue Suche */

.theme-cool-man .new-search{

    background:#F1F4F6;
    border-color:#CED8DF;

}


/* Hauptbutton */

.theme-cool-man .btn-primary{

    background:#526D82;
    border-color:#526D82;
    color:#FFFFFF !important;

}

.theme-cool-man .btn-primary:hover{

    background:#34495A;
    border-color:#34495A;

}


/* Zweiter Button */

.theme-cool-man .btn-outline{

    background:#FFFFFF;
    border-color:#526D82;
    color:#34495A !important;

}

.theme-cool-man .btn-outline:hover{

    background:#526D82;
    border-color:#526D82;
    color:#FFFFFF !important;

}

/* ==========================================================
   THEME – DER GENTLEMAN
========================================================== */

.theme-gentleman{

    --primary:#526B5A;
    --primary-dark:#34493B;

    --light:#F5F5F0;
    --border:#D6DDD5;

}


/* Helle Sections */

.theme-gentleman .section-light{

    background:#F5F5F0;

}


/* Kleine Überschriften */

.theme-gentleman .section-subtitle{

    color:#526B5A;

}


/* Eigenschafts-Karten */

.theme-gentleman .feature-card{

    background:#FFFFFF;
    border-color:#D6DDD5;

}


/* Duftnoten & Interessen */

.theme-gentleman .tag-grid span{

    background:#FAFBF8;
    border-color:#D6DDD5;

}


/* Parfümliste */

.theme-gentleman .perfume-item{

    background:#FFFFFF;
    border-color:#DDE2DC;

}

.theme-gentleman .perfume-item:hover{

    border-color:#526B5A;
    background:#F7F9F5;

}


/* Pfeile der Parfümliste */

.theme-gentleman .perfume-arrow{

    color:#A47C48;

}


/* Neue Suche */

.theme-gentleman .new-search{

    background:#F5F5F0;
    border-color:#D6DDD5;

}


/* Hauptbutton */

.theme-gentleman .btn-primary{

    background:#526B5A;
    border-color:#526B5A;
    color:#FFFFFF !important;

}

.theme-gentleman .btn-primary:hover{

    background:#34493B;
    border-color:#34493B;

}


/* Zweiter Button */

.theme-gentleman .btn-outline{

    background:#FFFFFF;
    border-color:#526B5A;
    color:#34493B !important;

}

.theme-gentleman .btn-outline:hover{

    background:#526B5A;
    border-color:#526B5A;
    color:#FFFFFF !important;

}


/* Gold-/Cognac-Akzente */

.theme-gentleman .feature-card .icon{

    color:#A47C48;

}

/* ==========================================================
   THEME – DER ABENTEURER
========================================================== */

.theme-adventurer{

    --primary:#657A5A;
    --primary-dark:#40513B;

    --light:#F4F3ED;
    --border:#D8D9CC;

}


/* Helle Sections */

.theme-adventurer .section-light{

    background:#F4F3ED;

}


/* Kleine Überschriften */

.theme-adventurer .section-subtitle{

    color:#657A5A;

}


/* Eigenschafts-Karten */

.theme-adventurer .feature-card{

    background:#FFFFFF;
    border-color:#D8D9CC;

}


/* Duftnoten & Interessen */

.theme-adventurer .tag-grid span{

    background:#FAFAF6;
    border-color:#D8D9CC;

}


/* Parfümliste */

.theme-adventurer .perfume-item{

    background:#FFFFFF;
    border-color:#DFE0D5;

}

.theme-adventurer .perfume-item:hover{

    border-color:#657A5A;
    background:#F7F8F3;

}


/* Pfeile der Parfümliste */

.theme-adventurer .perfume-arrow{

    color:#8B694A;

}


/* Neue Suche */

.theme-adventurer .new-search{

    background:#F4F3ED;
    border-color:#D8D9CC;

}


/* Hauptbutton */

.theme-adventurer .btn-primary{

    background:#657A5A;
    border-color:#657A5A;
    color:#FFFFFF !important;

}

.theme-adventurer .btn-primary:hover{

    background:#40513B;
    border-color:#40513B;

}


/* Zweiter Button */

.theme-adventurer .btn-outline{

    background:#FFFFFF;
    border-color:#657A5A;
    color:#40513B !important;

}

.theme-adventurer .btn-outline:hover{

    background:#657A5A;
    border-color:#657A5A;
    color:#FFFFFF !important;

}


/* Erdige Akzente */

.theme-adventurer .feature-card .icon{

    color:#8B694A;

}

/* ==========================================================
   THEME – DER SPORTLICHE
========================================================== */

.theme-sporty{

    --primary:#3F8291;
    --primary-dark:#285B66;

    --light:#F0F7F8;
    --border:#CDE0E4;

}


/* Helle Sections */

.theme-sporty .section-light{

    background:#F0F7F8;

}


/* Kleine Überschriften */

.theme-sporty .section-subtitle{

    color:#3F8291;

}


/* Eigenschafts-Karten */

.theme-sporty .feature-card{

    background:#FFFFFF;
    border-color:#CDE0E4;

}


/* Duftnoten & Interessen */

.theme-sporty .tag-grid span{

    background:#F8FCFC;
    border-color:#CDE0E4;

}


/* Parfümliste */

.theme-sporty .perfume-item{

    background:#FFFFFF;
    border-color:#D5E5E8;

}

.theme-sporty .perfume-item:hover{

    border-color:#3F8291;
    background:#F4F9FA;

}


/* Pfeile der Parfümliste */

.theme-sporty .perfume-arrow{

    color:#3F8291;

}


/* Neue Suche */

.theme-sporty .new-search{

    background:#F0F7F8;
    border-color:#CDE0E4;

}


/* Hauptbutton */

.theme-sporty .btn-primary{

    background:#3F8291;
    border-color:#3F8291;
    color:#FFFFFF !important;

}

.theme-sporty .btn-primary:hover{

    background:#285B66;
    border-color:#285B66;

}


/* Zweiter Button */

.theme-sporty .btn-outline{

    background:#FFFFFF;
    border-color:#3F8291;
    color:#285B66 !important;

}

.theme-sporty .btn-outline:hover{

    background:#3F8291;
    border-color:#3F8291;
    color:#FFFFFF !important;

}


/* Icons */

.theme-sporty .feature-card .icon{

    color:#3F8291;

}

/* ==========================================================
   THEME – DER BUSINESS-TYP
========================================================== */

.theme-business{

    --primary:#3E5871;
    --primary-dark:#263B4D;

    --light:#F2F5F7;
    --border:#D2DCE3;

}


/* Helle Sections */

.theme-business .section-light{

    background:#F2F5F7;

}


/* Kleine Überschriften */

.theme-business .section-subtitle{

    color:#3E5871;

}


/* Eigenschafts-Karten */

.theme-business .feature-card{

    background:#FFFFFF;
    border-color:#D2DCE3;

}


/* Duftnoten & Interessen */

.theme-business .tag-grid span{

    background:#F9FAFB;
    border-color:#D2DCE3;

}


/* Parfümliste */

.theme-business .perfume-item{

    background:#FFFFFF;
    border-color:#D9E1E6;

}

.theme-business .perfume-item:hover{

    border-color:#3E5871;
    background:#F5F7F9;

}


/* Pfeile der Parfümliste */

.theme-business .perfume-arrow{

    color:#B18A50;

}


/* Neue Suche */

.theme-business .new-search{

    background:#F2F5F7;
    border-color:#D2DCE3;

}


/* Hauptbutton */

.theme-business .btn-primary{

    background:#3E5871;
    border-color:#3E5871;
    color:#FFFFFF !important;

}

.theme-business .btn-primary:hover{

    background:#263B4D;
    border-color:#263B4D;

}


/* Zweiter Button */

.theme-business .btn-outline{

    background:#FFFFFF;
    border-color:#3E5871;
    color:#263B4D !important;

}

.theme-business .btn-outline:hover{

    background:#3E5871;
    border-color:#3E5871;
    color:#FFFFFF !important;

}


/* Goldene Akzente */

.theme-business .feature-card .icon{

    color:#B18A50;

}

/* ==========================================================
   THEME – DER NATURBURSCHE
========================================================== */

.theme-nature-man{

    --primary:#6F7F5C;
    --primary-dark:#46543B;

    --light:#F4F3EC;
    --border:#D9DCCF;

}


/* Helle Sections */

.theme-nature-man .section-light{

    background:#F4F3EC;

}


/* Kleine Überschriften */

.theme-nature-man .section-subtitle{

    color:#6F7F5C;

}


/* Eigenschafts-Karten */

.theme-nature-man .feature-card{

    background:#FFFFFF;
    border-color:#D9DCCF;

}


/* Duftnoten & Interessen */

.theme-nature-man .tag-grid span{

    background:#FAFAF6;
    border-color:#D9DCCF;

}


/* Parfümliste */

.theme-nature-man .perfume-item{

    background:#FFFFFF;
    border-color:#DFE1D7;

}

.theme-nature-man .perfume-item:hover{

    border-color:#6F7F5C;
    background:#F7F8F3;

}


/* Pfeile der Parfümliste */

.theme-nature-man .perfume-arrow{

    color:#8A6848;

}


/* Neue Suche */

.theme-nature-man .new-search{

    background:#F4F3EC;
    border-color:#D9DCCF;

}


/* Hauptbutton */

.theme-nature-man .btn-primary{

    background:#6F7F5C;
    border-color:#6F7F5C;
    color:#FFFFFF !important;

}

.theme-nature-man .btn-primary:hover{

    background:#46543B;
    border-color:#46543B;

}


/* Zweiter Button */

.theme-nature-man .btn-outline{

    background:#FFFFFF;
    border-color:#6F7F5C;
    color:#46543B !important;

}

.theme-nature-man .btn-outline:hover{

    background:#6F7F5C;
    border-color:#6F7F5C;
    color:#FFFFFF !important;

}


/* Natürliche Holz-Akzente */

.theme-nature-man .feature-card .icon{

    color:#8A6848;

}

/* ==========================================================
   THEME – DER KREATIVE
========================================================== */

.theme-creative-man{

    --primary:#755D73;
    --primary-dark:#4D3B4C;

    --light:#F6F2F6;
    --border:#DED4DE;

}


/* Helle Sections */

.theme-creative-man .section-light{

    background:#F6F2F6;

}


/* Kleine Überschriften */

.theme-creative-man .section-subtitle{

    color:#755D73;

}


/* Eigenschafts-Karten */

.theme-creative-man .feature-card{

    background:#FFFFFF;
    border-color:#DED4DE;

}


/* Duftnoten & Interessen */

.theme-creative-man .tag-grid span{

    background:#FCF9FC;
    border-color:#DED4DE;

}


/* Parfümliste */

.theme-creative-man .perfume-item{

    background:#FFFFFF;
    border-color:#E4DCE4;

}

.theme-creative-man .perfume-item:hover{

    border-color:#755D73;
    background:#F9F5F9;

}


/* Pfeile der Parfümliste */

.theme-creative-man .perfume-arrow{

    color:#B07858;

}


/* Neue Suche */

.theme-creative-man .new-search{

    background:#F6F2F6;
    border-color:#DED4DE;

}


/* Hauptbutton */

.theme-creative-man .btn-primary{

    background:#755D73;
    border-color:#755D73;
    color:#FFFFFF !important;

}

.theme-creative-man .btn-primary:hover{

    background:#4D3B4C;
    border-color:#4D3B4C;

}


/* Zweiter Button */

.theme-creative-man .btn-outline{

    background:#FFFFFF;
    border-color:#755D73;
    color:#4D3B4C !important;

}

.theme-creative-man .btn-outline:hover{

    background:#755D73;
    border-color:#755D73;
    color:#FFFFFF !important;

}


/* Kupferfarbene Akzente */

.theme-creative-man .feature-card .icon{

    color:#B07858;

}

/* ==========================================================
   THEME – DER GENIESSER
========================================================== */

.theme-connoisseur{

    --primary:#A06F4F;
    --primary-dark:#684532;

    --light:#F8F3ED;
    --border:#E3D5C8;

}


/* Helle Sections */

.theme-connoisseur .section-light{

    background:#F8F3ED;

}


/* Kleine Überschriften */

.theme-connoisseur .section-subtitle{

    color:#A06F4F;

}


/* Eigenschafts-Karten */

.theme-connoisseur .feature-card{

    background:#FFFFFF;
    border-color:#E3D5C8;

}


/* Duftnoten & Interessen */

.theme-connoisseur .tag-grid span{

    background:#FDF9F5;
    border-color:#E3D5C8;

}


/* Parfümliste */

.theme-connoisseur .perfume-item{

    background:#FFFFFF;
    border-color:#E8DDD3;

}

.theme-connoisseur .perfume-item:hover{

    border-color:#A06F4F;
    background:#FBF6F1;

}


/* Pfeile der Parfümliste */

.theme-connoisseur .perfume-arrow{

    color:#B58A5A;

}


/* Neue Suche */

.theme-connoisseur .new-search{

    background:#F8F3ED;
    border-color:#E3D5C8;

}


/* Hauptbutton */

.theme-connoisseur .btn-primary{

    background:#A06F4F;
    border-color:#A06F4F;
    color:#FFFFFF !important;

}

.theme-connoisseur .btn-primary:hover{

    background:#684532;
    border-color:#684532;

}


/* Zweiter Button */

.theme-connoisseur .btn-outline{

    background:#FFFFFF;
    border-color:#A06F4F;
    color:#684532 !important;

}

.theme-connoisseur .btn-outline:hover{

    background:#A06F4F;
    border-color:#A06F4F;
    color:#FFFFFF !important;

}


/* Warme Genuss-Akzente */

.theme-connoisseur .feature-card .icon{

    color:#B58A5A;

}

/* ==========================================================
   THEME – DER REBELL
========================================================== */

.theme-rebel{

    --primary:#8A3F46;
    --primary-dark:#55282D;

    --light:#F5F1F1;
    --border:#DED2D3;

}


/* Helle Sections */

.theme-rebel .section-light{

    background:#F5F1F1;

}


/* Kleine Überschriften */

.theme-rebel .section-subtitle{

    color:#8A3F46;

}


/* Eigenschafts-Karten */

.theme-rebel .feature-card{

    background:#FFFFFF;
    border-color:#DED2D3;

}


/* Duftnoten & Interessen */

.theme-rebel .tag-grid span{

    background:#FBF8F8;
    border-color:#DED2D3;

}


/* Parfümliste */

.theme-rebel .perfume-item{

    background:#FFFFFF;
    border-color:#E4DADB;

}

.theme-rebel .perfume-item:hover{

    border-color:#8A3F46;
    background:#F9F4F4;

}


/* Pfeile der Parfümliste */

.theme-rebel .perfume-arrow{

    color:#8A3F46;

}


/* Neue Suche */

.theme-rebel .new-search{

    background:#F5F1F1;
    border-color:#DED2D3;

}


/* Hauptbutton */

.theme-rebel .btn-primary{

    background:#8A3F46;
    border-color:#8A3F46;
    color:#FFFFFF !important;

}

.theme-rebel .btn-primary:hover{

    background:#55282D;
    border-color:#55282D;

}


/* Zweiter Button */

.theme-rebel .btn-outline{

    background:#FFFFFF;
    border-color:#8A3F46;
    color:#55282D !important;

}

.theme-rebel .btn-outline:hover{

    background:#8A3F46;
    border-color:#8A3F46;
    color:#FFFFFF !important;

}


/* Dunkle Akzente */

.theme-rebel .feature-card .icon{

    color:#343234;

}

/* ==========================================================
   THEME – DER ROMANTIKER
========================================================== */

.theme-romantic-man{

    --primary:#9A5965;
    --primary-dark:#683944;

    --light:#F8F1F2;
    --border:#E5D3D7;

}


/* Helle Sections */

.theme-romantic-man .section-light{

    background:#F8F1F2;

}


/* Kleine Überschriften */

.theme-romantic-man .section-subtitle{

    color:#9A5965;

}


/* Eigenschafts-Karten */

.theme-romantic-man .feature-card{

    background:#FFFFFF;
    border-color:#E5D3D7;

}


/* Duftnoten & Interessen */

.theme-romantic-man .tag-grid span{

    background:#FDF9FA;
    border-color:#E5D3D7;

}


/* Parfümliste */

.theme-romantic-man .perfume-item{

    background:#FFFFFF;
    border-color:#E9DDE0;

}

.theme-romantic-man .perfume-item:hover{

    border-color:#9A5965;
    background:#FBF5F6;

}


/* Pfeile der Parfümliste */

.theme-romantic-man .perfume-arrow{

    color:#9A5965;

}


/* Neue Suche */

.theme-romantic-man .new-search{

    background:#F8F1F2;
    border-color:#E5D3D7;

}


/* Hauptbutton */

.theme-romantic-man .btn-primary{

    background:#9A5965;
    border-color:#9A5965;
    color:#FFFFFF !important;

}

.theme-romantic-man .btn-primary:hover{

    background:#683944;
    border-color:#683944;

}


/* Zweiter Button */

.theme-romantic-man .btn-outline{

    background:#FFFFFF;
    border-color:#9A5965;
    color:#683944 !important;

}

.theme-romantic-man .btn-outline:hover{

    background:#9A5965;
    border-color:#9A5965;
    color:#FFFFFF !important;

}


/* Romantische Akzente */

.theme-romantic-man .feature-card .icon{

    color:#A96572;

}

/* ==========================================================
   THEME – DER WELTENBUMMLER
========================================================== */

.theme-traveler-man{

    --primary:#B06F52;
    --primary-dark:#704737;

    --light:#F8F3EC;
    --border:#E3D7C9;

}


/* Helle Sections */

.theme-traveler-man .section-light{

    background:#F8F3EC;

}


/* Kleine Überschriften */

.theme-traveler-man .section-subtitle{

    color:#B06F52;

}


/* Eigenschafts-Karten */

.theme-traveler-man .feature-card{

    background:#FFFFFF;
    border-color:#E3D7C9;

}


/* Duftnoten & Interessen */

.theme-traveler-man .tag-grid span{

    background:#FDF9F4;
    border-color:#E3D7C9;

}


/* Parfümliste */

.theme-traveler-man .perfume-item{

    background:#FFFFFF;
    border-color:#E8DED3;

}

.theme-traveler-man .perfume-item:hover{

    border-color:#B06F52;
    background:#FBF6F0;

}


/* Pfeile der Parfümliste */

.theme-traveler-man .perfume-arrow{

    color:#397077;

}


/* Neue Suche */

.theme-traveler-man .new-search{

    background:#F8F3EC;
    border-color:#E3D7C9;

}


/* Hauptbutton */

.theme-traveler-man .btn-primary{

    background:#B06F52;
    border-color:#B06F52;
    color:#FFFFFF !important;

}

.theme-traveler-man .btn-primary:hover{

    background:#704737;
    border-color:#704737;

}


/* Zweiter Button */

.theme-traveler-man .btn-outline{

    background:#FFFFFF;
    border-color:#B06F52;
    color:#704737 !important;

}

.theme-traveler-man .btn-outline:hover{

    background:#B06F52;
    border-color:#B06F52;
    color:#FFFFFF !important;

}


/* Petrolfarbene Reise-Akzente */

.theme-traveler-man .feature-card .icon{

    color:#397077;

}

/* ==========================================================
   THEME – DER MINIMALIST
========================================================== */

.theme-minimalist-man{

    --primary:#7A7772;
    --primary-dark:#4B4A47;

    --light:#F5F4F1;
    --border:#DDDAD4;

}


/* Helle Sections */

.theme-minimalist-man .section-light{

    background:#F5F4F1;

}


/* Kleine Überschriften */

.theme-minimalist-man .section-subtitle{

    color:#7A7772;

}


/* Eigenschafts-Karten */

.theme-minimalist-man .feature-card{

    background:#FFFFFF;
    border-color:#DDDAD4;

}


/* Duftnoten & Interessen */

.theme-minimalist-man .tag-grid span{

    background:#FAF9F7;
    border-color:#DDDAD4;

}


/* Parfümliste */

.theme-minimalist-man .perfume-item{

    background:#FFFFFF;
    border-color:#E2DFDA;

}

.theme-minimalist-man .perfume-item:hover{

    border-color:#7A7772;
    background:#F7F6F3;

}


/* Pfeile der Parfümliste */

.theme-minimalist-man .perfume-arrow{

    color:#4B4A47;

}


/* Neue Suche */

.theme-minimalist-man .new-search{

    background:#F5F4F1;
    border-color:#DDDAD4;

}


/* Hauptbutton */

.theme-minimalist-man .btn-primary{

    background:#7A7772;
    border-color:#7A7772;
    color:#FFFFFF !important;

}

.theme-minimalist-man .btn-primary:hover{

    background:#4B4A47;
    border-color:#4B4A47;

}


/* Zweiter Button */

.theme-minimalist-man .btn-outline{

    background:#FFFFFF;
    border-color:#7A7772;
    color:#4B4A47 !important;

}

.theme-minimalist-man .btn-outline:hover{

    background:#7A7772;
    border-color:#7A7772;
    color:#FFFFFF !important;

}


/* Dezente Icons */

.theme-minimalist-man .feature-card .icon{

    color:#77736C;

}

/* ==========================================================
   PASSENDE SEIFE
========================================================== */

.soap-recommendation{

    max-width:800px;
    margin:35px auto 0;
    padding:35px;

    background:#FFFFFF;
    border:1px solid var(--border);
    border-radius:18px;

    text-align:center;

}


.soap-icon{

    font-size:48px;
    margin-bottom:15px;

}


.soap-label{

    display:block;

    margin-bottom:8px;

    color:var(--primary);

    font-size:13px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:2px;

}


.soap-content h3{

    margin:0 0 18px;

    font-size:28px;
    color:var(--primary-dark);

}


.soap-content p{

    line-height:1.8;

}


.soap-notes{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    gap:10px;

    margin:25px 0;

}


.soap-notes span{

    padding:9px 15px;

    background:var(--light);
    border:1px solid var(--border);
    border-radius:30px;

    font-size:14px;

}


.soap-tip{

    margin:25px 0;

    padding:20px 25px;

    background:var(--light);
    border-radius:12px;

}


.soap-tip strong{

    display:block;
    margin-bottom:6px;

    color:var(--primary-dark);

}


.soap-tip p{

    margin:0;

}


.soap-recommendation .btn{

    display:inline-block;

    margin-top:5px;

}


/* MOBILE */

@media (max-width:600px){

    .soap-recommendation{

        padding:25px 18px;
        border-radius:14px;

    }

    .soap-content h3{

        font-size:23px;

    }

    .soap-notes{

        gap:7px;

    }

    .soap-notes span{

        font-size:13px;
        padding:8px 11px;

    }

    .soap-recommendation .btn{

        display:block;
        width:100%;
        box-sizing:border-box;

    }

}

/* ==========================================================
   BILD DER SEIFENEMPFEHLUNG
========================================================== */

.soap-image{

    margin:-35px -35px 30px;

    overflow:hidden;

    border-radius:18px 18px 0 0;

}


.soap-image img{

    display:block;

    width:100%;
    height:380px;

    object-fit:cover;

}


/* MOBILE */

@media (max-width:600px){

    .soap-image{

        margin:-25px -18px 25px;

        border-radius:14px 14px 0 0;

    }

    .soap-image img{

        height:260px;

    }

}

/* ==========================================================
   PARFUM-EMPFEHLUNG
   ========================================================== */

.perfume-recommendation {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 50px;
    align-items: center;
    max-width: 1050px;
    margin: 45px auto 0;
}


/* ==========================================================
   PARFUM-BILD
   ========================================================== */

.perfume-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.perfume-image img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* ==========================================================
   PARFUM-INHALT
   ========================================================== */

.perfume-content {
    padding: 10px 0;
}

.perfume-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 30px;
    background: #f1eadf;
    color: #6b5b45;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.perfume-content h3 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.15;
}

.perfume-description {
    margin-bottom: 20px;
    line-height: 1.8;
}


/* ==========================================================
   DUFTNOTEN
   ========================================================== */

.perfume-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 22px 0 28px;
}

.perfume-notes span {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border: 1px solid #e3dbd0;
    border-radius: 30px;
    background: #fffdf9;
    font-size: 0.9rem;
    line-height: 1.3;
}


/* ==========================================================
   DUFTBESCHREIBUNG
   ========================================================== */

.perfume-content h4 {
    margin: 25px 0 10px;
    font-size: 1.15rem;
}

.perfume-content p {
    line-height: 1.75;
}


/* ==========================================================
   ONLINE-SHOP BUTTON
   ========================================================== */

.perfume-content .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    text-align: center;
}


/* ==========================================================
   PROBEN-BEREICH
   ========================================================== */

.perfume-samples {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 32px;
    padding: 22px;
    border: 1px solid #ded5ca;
    border-radius: 16px;
    background: #f7f3ee;
}

.samples-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fffdf9;
    font-size: 1.4rem;
}

.samples-content {
    flex: 1;
}

.samples-content h4 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.samples-content p {
    margin: 0 0 16px;
    font-size: 0.95rem;
}

.samples-content .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* ==========================================================
   HOVER-EFFEKT
   ========================================================== */

.perfume-recommendation .btn {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.perfume-recommendation .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 800px) {

    .perfume-recommendation {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .perfume-image img {
        max-width: 380px;
    }

    .perfume-content {
        text-align: left;
    }

    .perfume-notes {
        justify-content: flex-start;
    }

}


@media (max-width: 520px) {

    .perfume-recommendation {
        gap: 24px;
    }

    .perfume-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 14px;
    }

    .perfume-content h3 {
        font-size: 1.8rem;
    }

    .perfume-notes {
        gap: 7px;
    }

    .perfume-notes span {
        padding: 8px 10px;
        font-size: 0.84rem;
    }

    .perfume-samples {
        flex-direction: column;
        gap: 14px;
        padding: 18px;
    }

    .samples-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .perfume-content .btn-primary,
    .samples-content .btn-secondary {
        width: 100%;
    }

}

/* ==========================================================
   ENDE STYLE.CSS
==========================================================*/


