/* =========================================================
RESET & BASIS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    width: 100%;
}


/* =========================================================
VARIABLEN
========================================================= */

:root {
    --bg: #555252;
    --bg2: #4b4848;
    --bg3: #3d3a3a;

    --surface: #5d5959;
    --surface-light: #666060;
    --surface-dark: #454242;

    --white: #ffffff;
    --text: #f5f5f5;
    --text-light: #d5d5d5;
    --text-muted: #bdbdbd;

    --pink: #ef9cac;
    --pink2: #f6b5c1;
    --pink3: #ffd8e1;

    --gold: #ddb66f;

    --accent: #ec8fa4;
    --accent-light: #f5a08f;

    --border: 1px solid rgba(255, 255, 255, 0.08);

    --shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.28);

    --radius: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.35s ease;
}


/* =========================================================
ALLGEMEINE KOMPONENTEN
========================================================= */

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 34px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: var(--white);
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn i {
    font-size: 12px;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border: 2px solid var(--pink);
    border-radius: var(--radius);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    margin-bottom: 15px;
    color: var(--pink2);
    font-family: "Playfair Display", serif;
    font-size: 48px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #d7d7d7;
    font-size: 16px;
}

.section-header {
    margin-bottom: 55px;
    text-align: center;
}

.section-header h2 {
    color: #f4f4f4;
    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-weight: 500;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.section-divider span {
    width: 120px;
    height: 1px;
    background: var(--pink2);
    opacity: 0.55;
}

.section-divider i {
    color: var(--pink2);
    font-size: 13px;
}


/* =========================================================
HEADER
========================================================= */

header {
    background: var(--bg);
}

.top-header {
    padding: 12px 0;
}

.top-header .container {
    position: relative;
}

.logo {
    width: 100%;
    text-align: center;
}

.logo-link {
    display: block;
}

.logo img {
    width: 150px;
    margin: 0 auto 4px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.03);
}

.logo-title {
    margin: 0 0 8px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 62px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-title .logo-pink {
    color: var(--pink2);
}

.logo-title .logo-gold {
    color: var(--gold);
}

.logo-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 15px;
}

.logo-slogan span,
.logo-slogan .line-left,
.logo-slogan .line-right {
    width: 170px;
    height: 1px;
}

.logo-slogan span {
    background: var(--pink2);
    opacity: 0.6;
}

.logo-slogan .line-left {
    background: var(--pink);
    opacity: 0.8;
}

.logo-slogan .line-right {
    background: #e7bf6c;
    opacity: 0.8;
}

.logo-slogan p {
    white-space: nowrap;
    color: #ddd;
    font-size: 12px;
    letter-spacing: 4px;
}

.logo-heart {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
}

.logo-heart i {
    color: var(--pink);
    font-size: 15px;
    filter: drop-shadow(0 0 8px rgba(239, 156, 172, 0.45));
    transition: var(--transition);
}

.logo-heart i:hover {
    color: var(--pink2);
    transform: scale(1.15);
}


/* =========================================================
NAVIGATION
========================================================= */

nav {
    width: 100%;
    margin: 20px 0 0;
    padding: 14px 30px;
    background: #3f3c3c;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.footer-links {
    width: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}


nav ul {
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:45px;
    list-style:none;
}

nav a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    color: #e4e4e4;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.8px;
    transition: var(--transition);
}

nav a:hover,
nav a.active {
    color: var(--white);
}

nav a:hover {
    transform: translateY(-2px);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink2), var(--accent-light));
    transition: width var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

/* =========================================================
REGISTRIEREN – AUFMERKSAMKEIT
========================================================= */

.register-attention{

    animation: registerFloat 2.4s ease-in-out infinite;

}

@keyframes registerFloat{

    0%,
    100%{

        transform:translateY(0);

    }

50%{

    transform:translateY(-5px);

}

}

.mobile-menu-btn {
    display: none;
}


/* =========================================================
HERO
========================================================= */

.hero {
    padding: 0;
    background: var(--bg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    gap: 40px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mini-title {
    display: block;
    margin-bottom: 18px;
    color: var(--pink2);
    font-size: 34px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 240px;
    margin: 18px auto;
}

.hero-divider span {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-divider i {
    color: var(--pink2);
    font-size: 14px;
}

.hero h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 62px;
    font-weight: 600;
    line-height: 1;
}

.hero h2 span {
    display: block;
    margin-bottom: 4px;
    color: var(--pink2);
    font-family: "Great Vibes", cursive;
    font-size: 68px;
    font-weight: 400;
}

.hero p {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 2;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-image img {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: none;
    height: auto;
}

.hero-neon {
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 2;
    width: 280px;
}

.hero-neon img {
    width: 100%;
}

.paint {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 1;
    width: 340px;
    height: 250px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.35;
    filter: blur(55px);
}

.hero-crown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 0 12px;
}

.hero-crown img {
    width: 60px;
    height: auto;
}


/* =========================================================
FEATURES
========================================================= */

.features {
    background: var(--bg3);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 35px 0;
}

.feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 30px;
}

.feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 55px;
    background: rgba(246, 181, 193, 0.35);
    transform: translateY(-50%);
}

.feature .icon {
    color: var(--pink);
    font-size: 30px;
}

.feature h4 {
    text-transform: uppercase;
    font-size: 15px;
}

.feature p {
    color: #ccc;
    font-size: 13px;
}


/* =========================================================
FAVORITES
========================================================= */

.favorites {
    padding: 90px 0;
    background: var(--surface);
}

.favorite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.favorite-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.favorite-card img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: 0.5s ease;
}

.favorite-card:hover img {
    transform: scale(1.06);
}

.favorite-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 25px;
    background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.45)
    );
}

.favorite-overlay h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "Poppins", sans-serif;
    font-size: 34px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.favorite-overlay a {
    padding: 12px 28px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
ABOUT HOME
========================================================= */

.about-home {
    padding: 90px 0;
    background: var(--bg);
}

.about-home-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    align-items: center;
    gap: 60px;
}

.about-left {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.about-left-art {
    display: block;
    width: 150%;
    max-width: none;
    height: auto;
    transform: translateX(-40px);
}

.about-center {
    padding: 0 15px;
}

.about-center h2 {
    margin-bottom: 30px;
    color: #f4ede8;
    font-family: "Playfair Display", serif;
    font-size: 56px;
    font-weight: 500;
}

.about-center p {
    max-width: 620px;
    margin-bottom: 35px;
    color: #d5d5d5;
    font-size: 17px;
    line-height: 2;
}

.about-right {
    display: flex;
    justify-content: center;
}

.badge {
    position: relative;
    width: 252px;
    height: 252px;
    overflow: visible;
    border-radius: 50%;
    background: linear-gradient(
    135deg,
    var(--accent) 0%,
    #ef98a4 35%,
    var(--accent-light) 100%
    );
    box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}

.badge-arc {
    position: absolute;
    top: -9px;
    left: 50%;
    z-index: 5;
    width: 296px;
    height: 296px;
    overflow: visible;
    pointer-events: none;
    transform: translateX(-50%);
}

.badge-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 14px;
}

.badge-inner .fa-heart,
.badge-inner .crown {
    color: var(--white);
}

.badge-inner .fa-heart {
    font-size: 13px;
}

.badge-inner .crown {
    font-size: 26px;
}

.badge-inner h4 {
    color: var(--white);
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: 2px;
    text-align: center;
}


/* =========================================================
SHOPPING EXPERIENCE
========================================================= */

.shopping-experience {
    padding: 120px 0;
    background: var(--surface-light);
    text-align: center;
}

.shopping-experience .section-subtitle,
.social-section .section-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--pink2);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.shopping-experience h2,
.social-section h2 {
    max-width: 850px;
    margin: 0 auto 28px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 58px;
}

.experience-text,
.social-text {
    max-width: 760px;
    margin: 0 auto 70px;
    color: #d9d9d9;
    font-size: 18px;
    line-height: 2;
}

.experience-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.experience-stats {
    display: flex;
    justify-content: center;
    gap: 90px;
    flex-wrap: wrap;
}

.experience-stats h3 {
    margin-bottom: 10px;
    color: var(--pink2);
    font-family: "Playfair Display", serif;
    font-size: 64px;
}

.experience-stats span {
    color: #e6e6e6;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
CTA
========================================================= */

.cta {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg2), var(--bg3));
    text-align: center;
}

.cta-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--pink2);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cta h2 {
    margin-bottom: 25px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 56px;
}

.cta p {
    max-width: 720px;
    margin: 0 auto 45px;
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* =========================================================
REGISTER
========================================================= */

.register-hero,
.login-hero {
    padding: 120px 0 140px;
}

.register-hero-grid,
.login-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.register-hero-text,
.login-hero-text {
    max-width: 620px;
}

.register-hero-text h1,
.login-hero-text h1 {
    margin: 20px 0 30px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 72px;
    line-height: 1.1;
}

.register-hero-text p,
.login-hero-text p {
    margin-bottom: 45px;
    color: #d7d7d7;
    font-size: 18px;
    line-height: 2;
}

.register-hero-image,
.login-hero-image {
    display: flex;
    justify-content: flex-end;
}

.register-hero-image img,
.login-hero-image img {
    display: block;
    width: 100%;
    max-width: 620px;
}

.register-benefits,
.login-benefits {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.register-benefits div,
.login-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: var(--border);
    border-radius: 50px;
    background: #615d5d;
    color: var(--white);
}

.register-benefits i,
.login-benefits i {
    color: var(--accent);
}


/* =========================================================
REGISTER INFO
========================================================= */

/* =========================================================
REGISTRIERUNG ERFOLGREICH
========================================================= */

.registration-success {

    padding: 110px 0 130px;

    min-height: 650px;

    display: flex;

    align-items: center;

}


.registration-success-box {

    max-width: 900px;

    margin: 0 auto;

    padding: 75px 70px;

    text-align: center;

    border-radius: 30px;

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.035),
    rgba(255,255,255,.015)
    );

    border: 1px solid rgba(236,143,164,.28);

    box-shadow:
    0 25px 70px rgba(0,0,0,.18);

}


.registration-success-icon {

    width: 92px;

    height: 92px;

    margin: 0 auto 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
    linear-gradient(
    135deg,
    var(--pink2),
    var(--accent-light)
    );

    box-shadow:
    0 10px 35px rgba(236,143,164,.25);

}


.registration-success-icon i {

    color: white;

    font-size: 42px;

}


.registration-success .section-subtitle {

    display: block;

    margin-bottom: 15px;

}


.registration-success h1 {

    margin: 0;

    color: var(--white);

    font-family: "Playfair Display", serif;

    font-size: 58px;

    line-height: 1.15;

}


.success-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin: 25px auto 30px;

}


.success-divider span {

    width: 100px;

    height: 1px;

    background:
    linear-gradient(
    90deg,
    transparent,
    var(--accent-light)
    );

}


.success-divider span:last-child {

    background:
    linear-gradient(
    90deg,
    var(--accent-light),
    transparent
    );

}


.success-divider i {

    color: var(--pink2);

    font-size: 16px;

}


.success-main {

    margin: 0 0 8px;

    color: var(--pink2);

    font-size: 21px;

    font-weight: 600;

}


.success-text {

    margin: 0;

    color: #e1e1e1;

    font-size: 17px;

    line-height: 1.8;

}


.success-email-box {

    max-width: 600px;

    margin: 35px auto 0;

    padding: 22px 25px;

    display: flex;

    align-items: center;

    gap: 20px;

    text-align: left;

    border-radius: 16px;

    border: 1px solid rgba(255,255,255,.10);

    background: rgba(0,0,0,.10);

}


.success-email-box > i {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(236,143,164,.12);

    color: var(--pink2);

    font-size: 22px;

}


.success-email-box strong {

    display: block;

    margin-bottom: 5px;

    color: var(--white);

    font-size: 15px;

}


.success-email-box span {

    display: block;

    color: #cfcfcf;

    font-size: 14px;

    line-height: 1.6;

}


.success-actions {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;

    flex-wrap: wrap;

}


.success-actions .btn,
.success-actions .btn-outline {

    min-width: 210px;

}

.register-info {
    padding: 120px 0;
    text-align: center;
}

.register-info h2 {
    margin: 20px 0 60px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 60px;
}

.register-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.register-card,
.value-card,
.community-card,
.popular-card,
.timeline-content,
.stats-grid div {
    border: var(--border);
    background: #615d5d;
    transition: var(--transition);
}

.register-card {
    padding: 50px 35px;
    border-radius: 22px;
}

.register-card:hover,
.value-card:hover,
.community-card:hover,
.timeline-content:hover,
.stats-grid div:hover,
.popular-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.register-card i {
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 46px;
}

.register-card h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.register-card p {
    color: var(--text-light);
    line-height: 1.9;
}

.newsletter-message {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
}

.newsletter-success {
    color: #5f8f68;
}

.newsletter-error {
    color: #b85c5c;
}

#newsletter-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* =========================================================
FORMULARE – GEMEINSAME BASIS
========================================================= */

.form-section,
.register-form-section {
    padding: 120px 0;
}

.form-box,
.register-form-box {
    max-width: 1100px;
    margin: auto;
    padding: 70px;
    border-radius: 30px;
    background: linear-gradient(135deg, #615d5d, #555252);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.register-form-box h2 {
    margin: 0 0 20px;
    color: #333;
    text-align: center;
}

.register-form-box > p {
    margin-bottom: 50px;
    color: #666;
    line-height: 1.8;
    text-align: center;
}

.register-form {
    width: 100%;
    margin-top: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d6b998;
    box-shadow: 0 0 0 4px rgba(214, 185, 152, 0.18);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 50px;
    background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E")
    no-repeat right 18px center;
    background-color: #fff;
}

.form-group select option {
    background: #fff;
    color: #333;
}

.readonly {
    background: #f4f4f4 !important;
    color: #777 !important;
    cursor: not-allowed;
}


/* =========================================================
LOGIN FORM
========================================================= */

.login-form-section {
    padding: 120px 0;
    border-top: var(--border);
    border-bottom: var(--border);
    background: var(--surface);
}

.login-form-box {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.login-form-box h2 {
    margin: 18px 0 25px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 58px;
}

.login-form-box p {
    max-width: 620px;
    margin: 0 auto 45px;
    color: #d5d5d5;
    line-height: 2;
}

.login-form {
    margin-top: 50px;
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 30px;
}

.login-form label {
    display:block;

    margin-bottom:10px;

    color:var(--pink2);

    font-size:15px;

    font-weight:600;

    letter-spacing:.3px;
}

.login-form input {
    width: 100%;
    height: 58px;
    padding: 0 20px;
    border: var(--border);
    border-radius: 14px;
    outline: none;
    background: #555252;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.login-form input::placeholder {
    color: var(--text-muted);
}

.login-form input:focus {
    border-color: var(--pink2);
    box-shadow: 0 0 0 4px rgba(236,143,164,.12);
    outline: none;
}

.login-form .btn {
    margin-top: 15px;
}

/* =========================================================
REGISTER FORM
========================================================= */

.checkbox{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:40px;

    color:var(--white);

}

.checkbox input{

    width:20px;

    height:20px;

    margin:0;

    flex:0 0 20px;

    accent-color:var(--pink2);

}

.checkbox span{

    color:var(--white);

    line-height:1.6;

}

.checkbox .pflicht{

    color:var(--pink2);

    font-weight:700;

}

.checkbox a{

    color:var(--pink2);

    text-decoration:none;

}

.checkbox a:hover{

    text-decoration:underline;

}

.register-form-section{

    padding:120px 0;

    border-top:var(--border);

    border-bottom:var(--border);

    background:var(--surface);

}

.register-form-box{

    max-width:1100px;

    margin:auto;

    padding:70px;

    border-radius:30px;

    background:linear-gradient(135deg,#615d5d,#555252);

    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

.register-form-box h2{

    margin:18px 0 25px;

    color:var(--white);

    font-family:"Playfair Display",serif;

    font-size:58px;

}

.register-form-box p{

    color:#d5d5d5;

    line-height:2;

}

.register-form{

    margin-top:50px;

}

.register-form .form-group{

    margin-bottom:30px;

}

.register-form .form-group label{
    display:block;
    margin-bottom:10px;
    color:var(--white);
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
}

.register-form .form-group label .pflicht{
    color:var(--pink2);
    margin-right:4px;
}


.register-form .form-group select option{

    background:#555252;

    color:#fff;

}

.register-form .checkbox{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:40px;

}

.register-form .checkbox label{

    display:flex;

}


.register-form input,
.register-form select,
.register-form textarea {

    width: 100%;

    height: 58px;

    padding: 0 20px;

    border: var(--border);

    border-radius: 14px;

    outline: none;

    background: #555252;

    color: var(--white);

    font-size: 15px;

    transition: var(--transition);

}

.register-form input::placeholder,
.register-form textarea::placeholder {

    color: var(--text-muted);

}


/* =========================================================
INPUT FOCUS
========================================================= */

.register-form input:focus,
.register-form select:focus,
.register-form textarea:focus {

    border-color: var(--pink2);

    box-shadow: 0 0 0 4px rgba(236,143,164,.12);

}

.register-form .btn{

    margin-top:15px;

}

/* =========================================================
HILFE / HELP
========================================================= */

.help-section,
.register-help {
    padding: 120px 0;
}

.help-box .section-subtitle{

    display: inline-block;
    margin-bottom: 18px;
    color: var(--pink2);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;

}

.help-box,
.register-help-box {
    max-width: 950px;
    margin: auto;
    padding: 80px 70px;
    border: var(--border);
    border-radius: 28px;
    background: linear-gradient(135deg, #615d5d, #555252);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.help-box h2,
.register-help-box h2 {
    margin: 18px 0 25px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 58px);
    line-height: 1.2;
}

.help-box p,
.register-help-box p {
    max-width: 720px;
    margin: 0 auto 45px;
    color: #d5d5d5;
    font-size: 17px;
    line-height: 2;
}

.help-buttons,
.register-help-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.help-buttons .btn,
.help-buttons .btn-outline,
.register-help-buttons .btn,
.register-help-buttons .btn-outline {
    min-width: 250px;
}

.register-help-buttons .btn,
.register-help-buttons .btn-outline {
    min-width: 260px;
}


/* =========================================================
MELDUNGEN
========================================================= */

.meldung {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
}

.meldung.success {
    border: 1px solid #a8d8a8;
    background: #e8f7e8;
    color: #276b27;
}

.meldung.error {
    border: 1px solid #dca0a0;
    background: #ffe8e8;
    color: #8b0000;
}


/* =========================================================
KUNDENDATEN / TABS
========================================================= */

.account-tabs {
    display: flex;
    gap: 15px;
    margin: 45px 0 35px;
}

.tab-btn {
    flex: 1;
    padding: 18px;
    border: none;
    border-radius: 14px;
    background: #f4f4f4;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn i {
    margin-right: 8px;
}

.tab-btn:hover {
    background: #efe3d4;
}

.tab-btn.active {
    background: #d6b998;
    color: var(--white);
}


/* =========================================================
ABOUT PAGE
========================================================= */

.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-title {
    margin-bottom: 28px;
    font-family: "Playfair Display", serif;
    font-size: 58px;
    font-weight: 500;
    line-height: 1;
}

.about-pink {
    color: var(--pink2);
}

.about-gold {
    color: #e8c878;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-content h2 {
    margin-bottom: 25px;
    color: var(--pink2);
    font-family: "Playfair Display", serif;
    font-size: 54px;
}

.about-content p {
    margin-bottom: 22px;
    color: #ddd;
    font-size: 16px;
}

.circle-badge {
    position: absolute;
    right: -40px;
    bottom: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    animation: rotateBadge 16s linear infinite;
}

.circle-badge span {
    width: 110px;
    font-weight: 600;
}


/* =========================================================
ABOUT HERO
========================================================= */

.about-hero {
    position: relative;
    padding: 120px 0 140px;
    overflow: hidden;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.about-hero-text {
    max-width: 620px;
}

.about-hero-text h1 {
    margin: 20px 0 30px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 72px;
    line-height: 1.08;
}

.about-hero-text p {
    max-width: 540px;
    margin-bottom: 45px;
    color: #d8d8d8;
    font-size: 18px;
    line-height: 2;
}

.about-hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.about-hero-image img {
    position: relative;
    z-index: 5;
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    transition: var(--transition);
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(236, 143, 164, 0.08);
    filter: blur(100px);
}


/* =========================================================
STORY
========================================================= */

.about-story {
    padding: 140px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 470px 1fr;
    align-items: center;
    gap: 100px;
}

.story-image {
    position: relative;
}

.story-image img {
    display: block;
    width: 100%;
    border-radius: 22px;
    transition: var(--transition);
}

.story-content {
    max-width: 700px;
}

.story-content h2 {
    margin: 18px 0 35px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 60px;
    line-height: 1.12;
}

.story-content p {
    margin-bottom: 22px;
    color: #d4d4d4;
    font-size: 17px;
    line-height: 2;
}


/* =========================================================
STATS
========================================================= */

.about-stats {
    padding: 60px 0 140px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-grid div {
    padding: 45px;
    border-radius: 18px;
    text-align: center;
}

.stats-grid h3 {
    margin-bottom: 12px;
    color: var(--accent);
    font-family: "Playfair Display", serif;
    font-size: 54px;
}

.stats-grid span {
    color: #d5d5d5;
    font-size: 16px;
}


/* =========================================================
VALUES
========================================================= */

.about-values {
    padding: 140px 0;
    text-align: center;
}

.about-values h2 {
    margin: 20px 0;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 60px;
}

.section-text {
    max-width: 760px;
    margin: 0 auto 70px;
    color: #d4d4d4;
    font-size: 17px;
    line-height: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.value-card {
    padding: 55px 40px;
    border-radius: 18px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-size: 30px;
}

.value-card h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 34px;
}

.value-card p {
    color: #d4d4d4;
    line-height: 1.9;
}


/* =========================================================
TIMELINE
========================================================= */

.about-timeline {
    position: relative;
    padding: 140px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 90px auto 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--accent-light));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 60px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 42px;
    z-index: 5;
    width: 20px;
    height: 20px;
    border: 5px solid var(--bg);
    border-radius: 50%;
    background: var(--accent);
}

.timeline-item.left::before {
    right: -13px;
}

.timeline-item.right::before {
    left: -13px;
}

.timeline-content {
    padding: 38px;
    border-radius: 20px;
}

.timeline-content .year {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.timeline-content h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 32px;
}

.timeline-content p {
    color: #d4d4d4;
    line-height: 1.9;
}


/* =========================================================
SHOWROOM
========================================================= */

.about-showroom {
    padding: 140px 0;
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 90px;
}

.showroom-image img {
    display: block;
    width: 100%;
    border-radius: 22px;
    transition: var(--transition);
}

.showroom-image:hover img {
    transform: scale(1.02);
}

.showroom-content h2 {
    margin: 18px 0 30px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 58px;
}

.showroom-content p {
    margin-bottom: 18px;
    color: #d4d4d4;
    line-height: 2;
}

.showroom-info {
    margin: 40px 0;
}

.showroom-info div {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    color: var(--white);
}

.showroom-info i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
}


/* =========================================================
COMMUNITY
========================================================= */

.about-community {
    padding: 140px 0;
    text-align: center;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 70px;
}

.community-card {
    padding: 60px 40px;
    border-radius: 20px;
}

.community-card i {
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 52px;
}

.community-card h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 34px;
}

.community-card p {
    color: #d4d4d4;
    line-height: 1.9;
}


/* =========================================================
ABOUT CTA
========================================================= */

.about-cta {
    position: relative;
    padding: 150px 0;
    text-align: center;
}

.about-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
    135deg,
    rgba(236, 143, 164, 0.08),
    rgba(245, 160, 143, 0.03)
    );
    pointer-events: none;
}

.about-cta h2 {
    position: relative;
    margin-bottom: 30px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 68px;
    line-height: 1.15;
}

.about-cta p {
    position: relative;
    max-width: 760px;
    margin: 0 auto 50px;
    color: #d4d4d4;
    font-size: 17px;
    line-height: 2;
}

.about-cta .btn {
    position: relative;
}


/* =========================================================
FAQ
========================================================= */

.faq-hero {
    padding: 120px 0 90px;
    text-align: center;
}

.faq-hero .section-subtitle {
    margin-bottom: 18px;
}

.faq-hero h1 {
    margin-bottom: 28px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 72px;
    line-height: 1.1;
}

.faq-hero p {
    max-width: 760px;
    margin: 0 auto 50px;
    color: #d7d7d7;
    font-size: 18px;
    line-height: 2;
}

.faq-search {
    position: relative;
    max-width: 720px;
    margin: auto;
}

.faq-search i {
    position: absolute;
    top: 50%;
    left: 28px;
    color: #999;
    font-size: 18px;
    transform: translateY(-50%);
}

.faq-search input {
    width: 100%;
    height: 68px;
    padding: 0 30px 0 68px;
    border: var(--border);
    border-radius: 60px;
    outline: none;
    background: #615d5d;
    color: var(--white);
    font-size: 17px;
    transition: var(--transition);
}

.faq-search input::placeholder {
    color: #bdbdbd;
}

.faq-search input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 5px rgba(236, 143, 164, 0.08);
}

.faq-popular {
    padding: 90px 0;
    text-align: center;
}

.faq-popular h2 {
    margin: 18px 0 60px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 58px;
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.popular-card {
    display: block;
    padding: 45px 30px;
    border-radius: 20px;
}

.popular-card:hover {
    transform: translateY(-10px);
}

.popular-card i {
    margin-bottom: 22px;
    color: var(--accent);
    font-size: 42px;
}

.popular-card h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.popular-card span {
    display: block;
    color: #d4d4d4;
    line-height: 1.8;
}

.faq-categories {
    padding: 30px 0 80px;
}

.faq-categories .container {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 14px 28px;
    border: var(--border);
    border-radius: 50px;
    background: #615d5d;
    color: var(--white);
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.faq-category:hover {
    border-color: var(--accent);
    background: var(--accent);
    transform: translateY(-3px);
}

.faq-category.active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.faq-list {
    padding: 0 0 140px;
}

.faq-wrapper {
    max-width: 950px;
    margin: auto;
}

.faq-item {
    margin-bottom: 22px;
    overflow: hidden;
    border: var(--border);
    border-radius: 18px;
    background: #615d5d;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 32px;
    cursor: pointer;
}

.faq-question h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

.faq-question i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-answer-content {
    padding: 0 32px 30px;
}

.faq-answer p {
    margin-bottom: 18px;
    color: #d5d5d5;
    line-height: 2;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

.faq-item.active .faq-question i {
    background: var(--accent-light);
    transform: rotate(45deg);
}

.faq-contact {
    padding: 120px 0;
}

.faq-contact-box {
    padding: 80px;
    border: var(--border);
    border-radius: 30px;
    background: linear-gradient(135deg, #615d5d, #555252);
    text-align: center;
}

.faq-contact-box h2 {
    margin-bottom: 25px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 56px;
}

.faq-contact-box p {
    max-width: 700px;
    margin: 0 auto 45px;
    color: #d5d5d5;
    line-height: 2;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* =========================================================
LEGAL
========================================================= */

.legal-hero {
    padding: 120px 0 80px;
    text-align: center;
}

.legal-hero h1 {
    margin: 18px 0 25px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 68px;
    line-height: 1.15;
}

.legal-hero p {
    max-width: 760px;
    margin: auto;
    color: #d5d5d5;
    font-size: 17px;
    line-height: 2;
}

.legal-nav {
    padding: 0 0 80px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.legal-links a {
    padding: 14px 22px;
    border: var(--border);
    border-radius: 50px;
    background: #615d5d;
    color: var(--white);
    transition: var(--transition);
}

.legal-links a:hover {
    border-color: var(--accent);
    background: var(--accent);
}

.legal-content {
    padding: 0 0 120px;
}

.legal-box {
    padding: 70px;
    border: var(--border);
    border-radius: 25px;
    background: #615d5d;
}

.legal-box section {
    margin-bottom: 60px;
}

.legal-box section:last-child {
    margin-bottom: 0;
}

.legal-box h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 38px;
}

.legal-box h3 {
    margin: 30px 0 15px;
    color: var(--white);
    font-size: 22px;
}

.legal-box p {
    margin-bottom: 20px;
    color: #d5d5d5;
    line-height: 2;
}

.legal-box ul {
    margin: 20px 0 20px 22px;
}

.legal-box li {
    margin-bottom: 12px;
    color: #d5d5d5;
    line-height: 1.9;
}

.legal-box strong {
    color: var(--white);
}

.legal-box a {
    color: var(--accent);
}

.legal-box a:hover {
    text-decoration: underline;
}


/* =========================================================
NEWSLETTER
========================================================= */

.newsletter {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg2), var(--bg3));
}

.newsletter-box {
    max-width: 900px;
    margin: auto;
    padding: 70px 60px;
    border-radius: 15px;
    background: #625d5d;
    box-shadow: var(--shadow);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
    color: var(--pink2);
    font-family: "Playfair Display", serif;
    font-size: 48px;
}

.newsletter p {
    margin-bottom: 40px;
    color: #ddd;
    font-size: 17px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter input {
    width: 420px;
    max-width: 100%;
    padding: 18px 22px;
    border: none;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
}

.newsletter button {
    padding: 18px 35px;
    border: none;
    border-radius: 6px;
    background: var(--pink);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter button:hover {
    background: var(--pink2);
}

.newsletter-result-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    font-size: 12px;
    letter-spacing: 0.5px;
}

.newsletter-result-legal a {
    color: var(--white);
    text-decoration: none;

    transition: var(--transition);
}

.newsletter-result-legal a:hover {
    color: var(--pink);
}

.newsletter-result-legal span {
    opacity: 0.5;
}

/* =========================================================
INSTAGRAM
========================================================= */

.instagram {
    padding: 90px 0;
    background: var(--bg);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.instagram-grid img {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    transition: var(--transition);
}

.instagram-grid img:hover {
    transform: scale(1.05);
}


/* =========================================================
SOCIAL
========================================================= */

.social-section {
    padding: 120px 0;
    background: var(--surface);
    text-align: center;
}

.social-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.social-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.social-grid a:hover {
    transform: translateY(-8px);
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--white);
    font-size: 30px;
}

.social-facebook {
    background: #1877f2;
}

.social-instagram {
    background: linear-gradient(135deg, #fd5949, #d6249f, #285aeb);
}

.social-tiktok {
    background: #000;
}

.social-grid h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: 24px;
}

.social-grid span {
    color: #d9d9d9;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
PRE FOOTER
========================================================= */

.pre-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #454242;
}

.pre-footer .container {
    display: grid;
    grid-template-columns: 240px 1fr 480px;
    align-items: center;
}

.pre-column {
    padding: 28px 35px;
}

.pre-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pre-column h4 {
    margin-bottom: 12px;
    color: var(--pink2);
    font-size: 13px;
    letter-spacing: 1px;
}

.pre-column p {
    margin-bottom: 12px;
    color: #bbb;
    font-size: 13px;
}

.social-icons {
    display: flex;
    gap: 22px;
}

.social-icons a {
    color: #d6d6d6;
    font-size: 24px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--pink2);
}

.newsletter-column form {
    display: flex;
}

/* =========================================================
FOOTER NEWSLETTER
========================================================= */

.newsletter-column form input[type="email"] {
    border: 1px solid transparent;
    border-radius: 10px;
    outline: none;
    background: #555252;
    color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-column form input[type="email"]:focus {
    border-color: #e98fa4;
    box-shadow: 0 0 0 2px rgba(233, 143, 164, 0.15);
}

.newsletter-column form input[type="email"]::placeholder {
    color: #d9d9d9;
}

.newsletter-column input {
    flex: 1;
    height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    outline: none;
    background: #3b3838;
    color: var(--white);
}

.newsletter-column button {
    width: 50px;
    border: none;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: var(--white);
    cursor: pointer;
}

.advantages {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 14px;
}

.advantage i {
    color: var(--pink2);
    font-size: 28px;
}

.advantage strong,
.advantage span {
    display: block;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.advantage strong {
    color: var(--white);
    font-size: 13px;
}

.advantage span {
    color: #bdbdbd;
    font-size: 12px;
}

/* ==========================================
ZAHLUNG & VERSAND
========================================== */

.footer-payment-shipping {

    padding: 28px 0;

    background: #454242;

    border-top: 1px solid rgba(255,255,255,.06);

    border-bottom: 1px solid rgba(255,255,255,.06);

}


.payment-shipping-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


/* ==========================================
BOX
========================================== */

.payment-shipping-box {

    padding: 25px 30px;

    border: 1px solid rgba(255,255,255,.10);

    border-radius: 14px;

    background: #403d3d;

    box-shadow: 0 10px 25px rgba(0,0,0,.10);

}


/* ==========================================
TITEL
========================================== */

.payment-shipping-title {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;

}


.payment-shipping-title > i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex: 0 0 48px;

    border-radius: 50%;

    background: rgba(246,181,193,.10);

    color: var(--pink2);

    font-size: 20px;

}


.payment-shipping-title span {

    display: block;

    margin-bottom: 3px;

    color: var(--pink2);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2px;

}


.payment-shipping-title h4 {

    margin: 0;

    color: #fff;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 1px;

}


/* ==========================================
ZAHLUNGSMETHODEN
========================================== */

.payment-methods {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

}


.payment-method {

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    border: 1px solid rgba(255,255,255,.07);

    border-radius: 10px;

    background: #3b3838;

}


.payment-method-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    border-radius: 10px;

    color: var(--pink2);

    background: rgba(246,181,193,.08);

    font-size: 20px;

}


.payment-method-icon.paypal {

    font-size: 22px;

}


.payment-method strong {

    display: block;

    margin-bottom: 4px;

    color: #fff;

    font-size: 12px;

}


.payment-method span {

    display: block;

    color: #aaa;

    font-size: 10px;

    line-height: 1.5;

}


/* ==========================================
VERSAND
========================================== */

.shipping-partner {

    display: flex;

    align-items: center;

    gap: 22px;

}


.dpd-logo {

    display:flex;

    align-items:center;

    justify-content:center;

    width:135px;

    height:75px;

    flex:0 0 135px;

    border:1px solid rgba(255,255,255,.10);

    border-radius:10px;

    overflow:hidden;

}


.dpd-logo img {

    display:block;

    max-width:105px;

    max-height:55px;

    width:auto;

    height:auto;

    object-fit:contain;

}


.dpd-logo span {

    color: #c4002f;

    font-size: 32px;

    font-weight: 800;

    letter-spacing: -2px;

}


.shipping-details {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.shipping-details strong {

    color: #fff;

    font-size: 14px;

}


.shipping-details > span {

    color: #aaa;

    font-size: 11px;

}


.shipping-countries {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 7px;

}


.shipping-countries span {

    padding: 5px 9px;

    border: 1px solid rgba(246,181,193,.25);

    border-radius: 20px;

    color: #ccc;

    font-size: 9px;

}


/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:768px){

    .payment-shipping-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


.payment-methods {

    grid-template-columns: 1fr;

}


.shipping-partner {

    align-items: flex-start;

}

}


@media(max-width:480px){

    .payment-shipping-box {

        padding: 22px 18px;

    }


.payment-shipping-title {

    gap: 12px;

}


.dpd-logo {

    width: 105px;

    height: 65px;

    flex-basis: 105px;

}


.dpd-logo span {

    font-size: 25px;

}

}

/* =========================================================
FOOTER
========================================================= */

footer {
    position: relative;
    background: #403d3d;
}

.footer-top-line {
    height: 1px;
    background: linear-gradient(
    to right,
    transparent,
    rgba(246, 181, 193, 0.35),
    transparent
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px 0;
}

.footer-copy {
    color: #8e8e8e;
    font-size: 13px;
    letter-spacing: 0.4px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 48px;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(246, 181, 193, 0.25));
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: translateY(-3px) scale(1.08);
    filter: drop-shadow(0 0 18px rgba(246, 181, 193, 0.55));
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-links a {
    position: relative;
    padding-bottom: 6px;
    color: #949494;
    font-size: 12px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--pink2);
    transition: width var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}


/* =========================================================
SCROLL TO TOP
========================================================= */

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.scroll-top:hover {
    background: var(--pink2);
    transform: translateY(-6px);
}

/* NEWSLETTER */

/* =========================================================
NEWSLETTER RESULT
========================================================= */

.newsletter-result-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.newsletter-result-box {
    width: 100%;
    max-width: 650px;
    padding: 55px 45px;
    box-sizing: border-box;

    text-align: center;

    background: var(--surface);

    border: var(--border);
    border-radius: 24px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.newsletter-result-box h2 {
    margin: 18px 0 25px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 5vw, 58px);
    line-height: 1.2;
}

.newsletter-result-subtitle {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--pink2);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.newsletter-result-title {
    margin: 0;

    font-family: 'Playfair Display', serif;

    font-size: 38px;
    line-height: 1.2;
}

.newsletter-result-message {
    margin-top: 25px;

    font-size: 16px;
    line-height: 1.8;
}

.newsletter-result-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    margin-top: 35px;
}

/* =========================================================
NEWSLETTER RESULT – BUTTONS
Optisch identisch mit der Helpbox
========================================================= */

.newsletter-result-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

    margin-top: 35px;
}


/* Hauptbutton */

.newsletter-result-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 250px;

    padding: 16px 34px;

    background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-light)
    );

    color: var(--white);

    border: none;
    border-radius: 4px;

    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

    text-decoration: none;

    cursor: pointer;

    transition: var(--transition);
}

.newsletter-result-btn:hover {
    transform: translateY(-3px);
}


/* Icon im Hauptbutton */

.newsletter-result-btn i {
    font-size: 12px;
    transition: var(--transition);
}

.newsletter-result-btn:hover i {
    transform: translateX(5px);
}


/* Outline Button */

.newsletter-result-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 250px;

    padding: 16px 36px;

    border: 2px solid var(--pink);
    border-radius: var(--radius);

    background: transparent;

    color: var(--white);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: var(--transition);
}

.newsletter-result-btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

/* =========================================================
KI ASSISTENT
========================================================= */

.ai-assistant {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    width: 390px;
    overflow: hidden;
    border: var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    animation: assistantIn 0.35s ease;
}

.ai-assistant.ai-start-hidden {
    display: none;
}

.ai-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.ai-title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ai-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 20px;
}

.ai-title strong,
.ai-title span {
    display: block;
}

.ai-title strong {
    color: var(--white);
    font-size: 17px;
    font-weight: 600;
}

.ai-title span {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
}

.ai-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.ai-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.ai-body {
    max-height: 420px;
    padding: 24px;
    overflow-y: auto;
}

.ai-message {
    display: flex;
    margin-bottom: 20px;
}

.ai-bubble {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px 18px 18px 5px;
    background: #6a6666;
    color: #f2f2f2;
    font-size: 14px;
    line-height: 1.8;
}

.ai-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border: var(--border);
    border-radius: 12px;
    background: var(--surface-light);
    color: #f3f3f3;
    cursor: pointer;
    transition: var(--transition);
}

.ai-question i {
    width: 22px;
    color: var(--pink2);
    text-align: center;
}

.ai-question:hover {
    border-color: var(--pink);
    background: #736d6d;
    transform: translateX(6px);
}

.ai-back {
    margin-bottom: 25px;
    border: none;
    background: none;
    color: var(--pink);
    cursor: pointer;
    font-weight: 600;
}

.chat-user {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.chat-user-bubble {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 18px 18px 5px 18px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    color: var(--white);
}

.chat-bot {
    display: flex;
    justify-content: flex-start;
}

.chat-bot-bubble {
    max-width: 90%;
    padding: 18px;
    border: var(--border);
    border-radius: 18px 18px 18px 5px;
    background: rgba(255, 255, 255, 0.07);
    white-space: pre-line;
    line-height: 1.3;
}

.ai-online-status {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
}

.ai-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #43d17a;
    box-shadow: 0 0 0 3px rgba(67, 209, 122, 0.15);
    animation: ai-online-pulse 2s infinite;
}

@keyframes ai-online-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 209, 122, 0.4);
    }

70% {
    box-shadow: 0 0 0 7px rgba(67, 209, 122, 0);
}

100% {
    box-shadow: 0 0 0 0 rgba(67, 209, 122, 0);
}
}

.ai-online-status .ai-status-text {
    color: #ffffff;
}

/* =========================================================
KI ONLINE STATUS
========================================================= */

.ai-online-status {

    display:flex;

    align-items:center;

    gap:7px;

    margin-top:5px;

    font-size:12px;

    font-weight:500;

}

.ai-status-dot {

    width:8px;

    height:8px;

    border-radius:50%;

    flex:0 0 8px;

}


/* =========================================================
ONLINE
========================================================= */

.ai-online .ai-status-dot {

    background:#43d17a;

    box-shadow:
    0 0 0 3px rgba(67,209,122,.15);

    animation:ai-online-pulse 2s infinite;

}

.ai-online .ai-status-text {

    color:#ffffff;

}


/* =========================================================
OFFLINE
========================================================= */

.ai-offline .ai-status-dot {

    background:#e85d75;

    box-shadow:
    0 0 0 3px rgba(232,93,117,.15);

}

.ai-offline .ai-status-text {

    color:#ffffff;

}


/* =========================================================
PRÜFUNG
========================================================= */

.ai-checking .ai-status-dot {

    background:#e8a84b;

    box-shadow:
    0 0 0 3px rgba(232,168,75,.15);

}

.ai-checking .ai-status-text {

    color:#e8c58d;

}

#ai-input:disabled {

    opacity: .55;

    cursor: not-allowed;

}

#ai-send:disabled {

    opacity: .45;

    cursor: not-allowed;

}

#ai-input:disabled::placeholder {

    color: #b5b5b5;

}

.ai-assistant .chat-bot-bubble a {
    color: #e91e63;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.ai-assistant .chat-bot-bubble a:hover {
    color: #c2185b;
    text-decoration-thickness: 2px;
}


/* =========================================================
PULSIERENDER ONLINE-PUNKT
========================================================= */

@keyframes ai-online-pulse {

    0% {

        box-shadow:
        0 0 0 0 rgba(67,209,122,.4);

    }

70% {

    box-shadow:
    0 0 0 7px rgba(67,209,122,0);

}

100% {

    box-shadow:
    0 0 0 0 rgba(67,209,122,0);

}

}

.ai-answer {
    min-height: 120px;
    margin-top: 18px;
    padding: 18px;
    border: var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    line-height: 1.8;
}

.ai-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-top: var(--border);
    background: #575353;
}

.ai-footer input {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: var(--border);
    border-radius: 999px;
    outline: none;
    background: #484545;
    color: var(--white);
    font-size: 16px;
}

.ai-footer input::placeholder {
    color: #bbb;
}

.ai-footer button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    cursor: pointer;
    font-size: 17px;
    transition: var(--transition);
}

.ai-footer button:hover {
    transform: scale(1.08);
}

.ai-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transition: var(--transition);
}

.ai-fab:hover {
    transform: scale(1.08);
}


/* =========================================================
ANIMATIONEN
========================================================= */

@keyframes assistantIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

to {
    opacity: 1;
    transform: translateY(0) scale(1);
}
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

50% {
    transform: translateY(-10px);
}

100% {
    transform: translateY(0);
}
}

@keyframes rotateBadge {
    from {
        transform: rotate(0deg);
    }

to {
    transform: rotate(360deg);
}
}

.about-hero-text .section-subtitle{
    color:var(--pink2);
}

.about-values .section-subtitle{
    color:var(--pink2);
}

.about-timeline .section-subtitle{
    color:var(--pink2);
}

.story-content .section-subtitle{
    color:var(--pink2);
}

.register-hero-text .section-subtitle{
    color:var(--pink2);
}

.register-info .section-subtitle{
    color:var(--pink2);
}

.register-form-box .section-subtitle{
    color:var(--pink2);
}

.login-hero-text .section-subtitle{
    color:var(--pink2);
}

.login-form-box .section-subtitle{
    color:var(--pink2);
}

.faq-hero .section-subtitle{
    color:var(--pink2);
}

.faq-popular .section-subtitle{
    color:var(--pink2);
}


/* =========================================================
HOVER / TRANSITIONS
========================================================= */

.category-card,
.product-card {
    transition: var(--transition);
}

.category-card:hover,
.product-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}


/* =========================================================
RESPONSIVE – 1200px
========================================================= */

@media (max-width: 1200px) {
    .about-hero-grid {
        gap: 60px;
    }

.story-grid {
    grid-template-columns: 380px 1fr;
    gap: 70px;
}

.showroom-grid {
    grid-template-columns: 1fr 420px;
    gap: 60px;
}

.about-hero-text h1 {
    font-size: 60px;
}

.story-content h2 {
    font-size: 52px;
}

.about-values h2,
.about-cta h2 {
    font-size: 52px;
}
}


/* =========================================================
RESPONSIVE – 992px
========================================================= */

@media (max-width: 992px) {
    .mobile-menu-btn{
        display:flex;
        position:absolute;
        top:35px;
        right:25px;
        width:50px;
        height:50px;
        justify-content:center;
        align-items:center;
        font-size:28px;
        color:#fff;
        cursor:pointer;
        z-index:10001;
    }

	nav:not(.footer-links) {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: var(--bg);
		display: flex;
		justify-content: center;
		align-items: center;
		transition: right .35s ease;
		z-index: 10000;
	}

	nav:not(.footer-links).active {
		right: 0;
	}

	nav:not(.footer-links) ul {
		display: flex;
		flex-direction: column !important;
		align-items: center;
		justify-content: center;
		gap: 28px;
		width: 100%;
	}

nav .container{
    width:100%;
}

nav ul{
    flex-direction:column;
    gap:28px;
    text-align:center;
}
.about-hero {
    padding: 90px 0;
}

.about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
}

.about-hero-text {
    max-width: none;
}

.about-hero-text p {
    margin-right: auto;
    margin-left: auto;
}

.about-hero-image {
    justify-content: center;
}

.about-hero-image img {
    max-width: 500px;
}

.about-home-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
}

.about-left {
    order: 2;
}

.about-center {
    order: 1;
}

.about-right {
    order: 3;
}

.about-left-art {
    width: 80%;
    max-width: 450px;
    transform: none;
    margin: auto;
}

.story-grid {
    grid-template-columns: 1fr;
    text-align: center;
}

.story-content {
    max-width: none;
}

.story-image {
    max-width: 450px;
    margin: auto;
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
}

.values-grid {
    grid-template-columns: 1fr;
}

.showroom-grid {
    grid-template-columns: 1fr;
    text-align: center;
}

.showroom-image {
    order: 2;
}

.showroom-content {
    order: 1;
}

.showroom-info div {
    justify-content: center;
}

.community-grid {
    grid-template-columns: 1fr;
}

.timeline::before {
    left: 24px;
}

.timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 0 0 40px 70px;
    text-align: left;
}

.timeline-item::before {
    left: 15px !important;
    right: auto;
}

.popular-grid {
    grid-template-columns: repeat(2, 1fr);
}

.pre-footer .container {
    grid-template-columns: 1fr;
}

.pre-column {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pre-column:last-child {
    border-bottom: none;
}

.features .container {
    grid-template-columns: repeat(2, 1fr);
}

.feature:nth-child(2)::after {
    display: none;
}
}


/* =========================================================
RESPONSIVE – 768px
========================================================= */

@media (max-width: 768px) {
    .container {
        width: calc(100% - 30px);
    }

.logo-title {
    font-size: 48px;
}

	nav:not(.footer-links) {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background: var(--bg);
		display: flex;
		justify-content: center;
		align-items: center;
		transition: right .35s ease;
		z-index: 10000;
	}

	nav:not(.footer-links).active {
		right: 0;
	}

	nav:not(.footer-links) ul {
		display: flex;
		flex-direction: column !important;
		align-items: center;
		justify-content: center;
		gap: 28px;
		width: 100%;
	}

nav ul {
    gap: 25px;
}

.hero-grid,
.register-hero-grid,
.login-hero-grid,
.about-grid {
    grid-template-columns: 1fr;
}

.hero-text {
    order: 1;
}

.hero-image {
    order: 2;
    justify-content: center;
}

.hero h2 {
    font-size: 48px;
}

.hero h2 span {
    font-size: 54px;
}

    .features .container {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .feature {
        display: grid;
        grid-template-columns: 55px minmax(0, 1fr);
        align-items: start;
        gap: 15px;
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .feature .icon {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .feature > div:last-child {
        min-width: 0;
        text-align: left;
    }

    .feature h4 {
        margin: 0;
        min-height: 24px;
        line-height: 24px;
    }

    .feature p {
        margin: 5px 0 0;
        line-height: 1.5;
    }

    .feature::after {
        display: none !important;
    }
	
.registration-success {

    padding: 60px 0 80px;

    min-height: auto;

}


.registration-success-box {

    width: 100%;

    max-width: 100%;

    padding: 45px 20px;

    border-radius: 22px;

}


/* ICON */

.registration-success-icon {

    width: 72px;

    height: 72px;

    margin-bottom: 24px;

}


.registration-success-icon i {

    font-size: 32px;

}


/* SUBTITLE */

.registration-success .section-subtitle {

    font-size: 13px;

    letter-spacing: 1.5px;

}


/* HAUPTÜBERSCHRIFT */

.registration-success h1 {

    font-size: 34px;

    line-height: 1.2;

    margin: 0 auto;

    max-width: 330px;

}


/* TRENNER */

.success-divider {

    gap: 12px;

    margin: 22px auto 25px;

}


.success-divider span {

    width: 55px;

}


/* FAST GESCHAFFT */

.success-main {

    font-size: 18px;

    line-height: 1.5;

    margin-bottom: 8px;

}


/* TEXT */

.success-text {

    font-size: 15px;

    line-height: 1.75;

    margin-bottom: 18px;

}


/* E-MAIL BOX */

.success-email-box {

    width: 100%;

    max-width: 100%;

    margin: 25px auto 0;

    padding: 18px 16px;

    gap: 12px;

    text-align: left;

    border-radius: 14px;

}


.success-email-box > i {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    font-size: 18px;

}


.success-email-box strong {

    font-size: 14px;

    line-height: 1.4;

}


.success-email-box span {

    font-size: 12px;

    line-height: 1.6;

}


/* SPAM-HINWEIS */

.success-spam {

    margin: 18px auto 0;

    max-width: 330px;

    font-size: 13px;

    line-height: 1.6;

}


/* BUTTON */

.success-actions {

    margin-top: 28px;

    display: flex;

    justify-content: center;

    align-items: center;

}


.success-actions .btn {

    width: auto;

    min-width: 190px;

    max-width: 100%;

}

.register-form-box h2 {
    font-size: 38px;
    line-height: 1.15;
    overflow-wrap: break-word;
}

.register-form .form-group {
    margin-bottom: 2px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 25px;
}

.checkbox input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    max-width: 18px;
    flex: 0 0 18px;
    margin: 3px 0 0;
}

.checkbox > span {
    display: block;
    flex: 1;
    min-width: 0;
    color: var(--white);
    line-height: 1.6;
    white-space: normal;
}

.checkbox a {
    color: var(--pink2);
    white-space: nowrap;
}

.register-form {
    margin-top: 40px;
}

.about-home-grid {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 35px;

}


/* 1. BILD */

.about-left {

    order: 1;

    width: 100%;

    display: flex;

    justify-content: center;

}

.about-left-art {

    display: block;

    width: 100%;

    max-width: 420px;

    height: auto;

}


/* 2. MÄDCHENPARADIES TEXT */

.about-center {

    order: 2;

    width: 100%;

    max-width: 600px;

    text-align: center;

}


.about-center .about-title {
    font-size: 34px;
    white-space: nowrap;
    letter-spacing: -1px;
}


.about-center p {

    margin: 0 auto;

    max-width: 560px;

    line-height: 1.8;

}


/* 3. BADGE */

.about-right {

    order: 3;

    width: 100%;

    display: flex;

    justify-content: center;

    margin-top: 5px;

}

.favorite-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-home-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.about-left-art {
    width: 100%;
    transform: none;
}

.about-center {
    padding: 0;
}

.about-center p {
    margin-right: auto;
    margin-left: auto;
}

.register-hero,
.login-hero {
    padding: 80px 0;
}

.register-hero-grid,
.login-hero-grid {
    gap: 50px;
}

.register-hero-text,
.login-hero-text {
    max-width: none;
    text-align: center;
}

.register-hero-text h1,
.login-hero-text h1 {
    font-size: 52px;
}

.register-hero-text p,
.login-hero-text p {
    font-size: 16px;
}

.register-benefits,
.login-benefits {
    justify-content: center;
}

.register-hero-image,
.login-hero-image {
    justify-content: center;
}

.register-info,
.register-form-section,
.login-form-section {
    padding: 80px 0;
}

.register-info h2 {
    font-size: 44px;
}

.register-cards {
    grid-template-columns: 1fr;
}

.form-box,
.register-form-box {
    padding: 45px 30px;
}

.form-grid {
    grid-template-columns: 1fr;
}

.form-group.full-width {
    grid-column: auto;
}

.register-form .btn {
    min-width: 0;
    width: 100%;
}

.help-section,
.register-help {
    padding: 80px 0;
}

.help-box,
.register-help-box {
    padding: 50px 30px;
}

.help-buttons,
.register-help-buttons {
    flex-direction: column;
    gap: 15px;
}

.help-buttons .btn,
.help-buttons .btn-outline,
.register-help-buttons .btn,
.register-help-buttons .btn-outline {
    width: 100%;
    min-width: 0;
}

.account-tabs {
    flex-direction: column;
}

.about-hero-text h1,
.faq-hero h1 {
    font-size: 46px;
}

.about-hero-text p {
    font-size: 16px;
    line-height: 1.8;
}

.about-hero-image img {
    max-width: 360px;
}

.about-story {
    padding: 90px 0;
}

.story-content h2 {
    font-size: 42px;
}

.story-content p {
    font-size: 16px;
    line-height: 1.9;
}

.about-stats {
    padding: 40px 0 90px;
}

.stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.stats-grid h3 {
    font-size: 42px;
}

.about-values,
.about-timeline,
.about-showroom,
.about-community {
    padding: 90px 0;
}

.about-values h2 {
    font-size: 42px;
}

.value-card {
    padding: 40px 28px;
}

.value-card h3,
.community-card h3 {
    font-size: 28px;
}

.timeline-content {
    padding: 28px;
}

.timeline-content h3 {
    font-size: 26px;
}

.showroom-content h2 {
    font-size: 42px;
}

.community-card {
    padding: 40px 25px;
}

.about-cta {
    padding: 100px 0;
}

.about-cta h2 {
    font-size: 42px;
}

.about-cta p {
    font-size: 16px;
}

.faq-popular {
    padding: 70px 0;
}

.faq-popular h2 {
    font-size: 42px;
}

.popular-grid {
    grid-template-columns: 1fr;
}

.faq-contact-box {
    padding: 50px 30px;
}

.faq-contact-box h2 {
    font-size: 42px;
}

.legal-hero h1 {
    font-size: 48px;
}

.legal-box {
    padding: 40px 25px;
}

.newsletter-box {
    padding: 50px 30px;
}

.newsletter h2 {
    font-size: 40px;
}

.instagram-grid {
    grid-template-columns: repeat(3, 1fr);
}

.social-section h2,
.shopping-experience h2 {
    font-size: 42px;
}

.social-grid {
    gap: 40px;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.footer-links {
    justify-content: center;
    flex-wrap: wrap;
}

.ai-assistant {
    right: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
}

.pre-footer .container {
    grid-template-columns: 1fr;
}

.pre-column {
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.newsletter-column {
    width: 100%;
}

.newsletter-column form {
    display: flex;
    position: relative;
    width: 100%;
}

.newsletter-column input {
    width: 100%;
    height: 50px;
    padding: 0 70px 0 15px;
    border-radius: 6px;
}

.newsletter-column button {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 0 6px 6px 0;
    flex: none;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    order: -1;
    margin-bottom: 8px;
}

.footer-logo img {
    display: block;
    margin: 0 auto 6px;
    width: 58px;
    height: auto;
}

.footer-copy {
    margin-top: 0;
}

.footer-copy span {
    display: block;
}

.advantages {
    flex-direction: column;
    gap: 25px;
}

.advantage {
    justify-content: center;
    text-align: center;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.social-icons {
    justify-content: center;
}
}


/* =========================================================
RESPONSIVE – 480px
========================================================= */

@media (max-width: 480px) {
    .logo-title {
        font-size: 38px;
    }

nav ul {
    flex-direction: column;
    gap: 12px;
    padding: 15px 0;
    text-align: center;
}

.hero h2 {
    font-size: 38px;
}

.hero h2 span {
    font-size: 46px;
}

.features .container {
    grid-template-columns: 1fr;
}

.feature {
    padding: 0 15px;
}

.feature::after {
    display: none;
}

.favorite-grid {
    grid-template-columns: 1fr;
}

.favorite-card img {
    height: 400px;
}

.about-hero-text h1,
.story-content h2,
.about-values h2,
.showroom-content h2,
.about-cta h2 {
    font-size: 34px;
}

.timeline-item {
    padding-left: 55px;
}

.timeline::before {
    left: 18px;
}

.timeline-item::before {
    left: 9px !important;
}

.faq-hero h1 {
    font-size: 36px;
}

.legal-hero h1 {
    font-size: 38px;
}

.instagram-grid {
    grid-template-columns: repeat(2, 1fr);
}

.ai-fab {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    font-size: 24px;
}

.scroll-top {
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
}

.meldung {
    margin: 20px 12px;
    padding: 18px 15px;
    font-size: 15px;
}
}

@media (max-width: 768px) {

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

}


/* =========================================================
   FINAL RESPONSIVE OVERRIDES
   Mobile / Tablet / Desktop
   Hinweis: Dieser Block ergänzt die vorhandenen Regeln.
   Es wurde kein bestehender CSS-Code entfernt.
========================================================= */

/* ---------------------------------------------------------
   LARGE DESKTOP – bis 1400px
--------------------------------------------------------- */
@media (max-width: 1400px) {

    .container {
        width: min(92%, 1280px);
    }

    .hero-grid,
    .register-hero-grid,
    .login-hero-grid,
    .about-hero-grid {
        gap: 55px;
    }

    .about-home-grid {
        grid-template-columns: 220px 1fr 220px;
        gap: 40px;
    }

    .showroom-grid {
        grid-template-columns: 1fr 450px;
        gap: 60px;
    }

    .hero h2 {
        font-size: clamp(48px, 5vw, 62px);
    }

    .register-hero-text h1,
    .login-hero-text h1,
    .about-hero-text h1 {
        font-size: clamp(52px, 5.2vw, 72px);
    }
}


/* ---------------------------------------------------------
   TABLET / SMALL LAPTOP – bis 1200px
--------------------------------------------------------- */
@media (max-width: 1200px) {

    .container {
        width: calc(100% - 50px);
    }

    .hero-grid,
    .register-hero-grid,
    .login-hero-grid,
    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 35px;
    }

    .hero-image img,
    .register-hero-image img,
    .login-hero-image img,
    .about-hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .about-home-grid {
        grid-template-columns: 190px minmax(0, 1fr) 190px;
        gap: 30px;
    }

    .about-left-art {
        width: 135%;
        transform: translateX(-25px);
    }

    .story-grid {
        grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
        gap: 50px;
    }

    .showroom-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        gap: 45px;
    }

    .features .container {
        gap: 15px;
    }

    .feature {
        padding: 0 18px;
    }

    .favorite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .register-cards,
    .community-grid {
        gap: 22px;
    }

    .stats-grid {
        gap: 20px;
    }

    .payment-shipping-grid {
        gap: 18px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------------------------------------
   TABLET – bis 992px
--------------------------------------------------------- */
@media (max-width: 992px) {

    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 40px);
        max-width: 100%;
    }

    /* HEADER */

    .top-header {
        padding: 10px 0 15px;
    }

    .logo img {
        width: 125px;
    }

    .logo-title {
        font-size: clamp(42px, 7vw, 56px);
    }

    .logo-slogan {
        gap: 10px;
    }

    .logo-slogan span,
    .logo-slogan .line-left,
    .logo-slogan .line-right {
        width: 90px;
    }

    .logo-slogan p {
        font-size: 10px;
        letter-spacing: 2.5px;
    }

    /* MOBILE NAV */

    .mobile-menu-btn {
        display: flex;
    }

    nav:not(.footer-links) {
        width: min(300px, 86vw);
        max-width: 86vw;
        padding: 30px 20px;
    }

    nav:not(.footer-links) ul {
        flex-direction: column !important;
        width: 100%;
        gap: 22px;
    }

    nav:not(.footer-links) a {
        font-size: 14px;
    }

    /* HERO */

    .hero {
        padding: 20px 0 50px;
    }

    .hero-grid,
    .register-hero-grid,
    .login-hero-grid,
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero-text {
        order: 1;
    }

    .hero-image,
    .register-hero-image,
    .login-hero-image,
    .about-hero-image {
        order: 2;
        justify-content: center;
    }

    .hero-image img,
    .register-hero-image img,
    .login-hero-image img,
    .about-hero-image img {
        width: min(100%, 700px);
        margin: 0 auto;
    }

    .hero h2 {
        font-size: clamp(42px, 7vw, 56px);
    }

    .hero h2 span {
        font-size: clamp(48px, 8vw, 60px);
    }

    .hero p {
        max-width: 700px;
    }

    .hero-neon {
        right: 0;
        width: 220px;
    }

    /* FEATURES */

    .features .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature {
        min-width: 0;
    }

    .feature:nth-child(2)::after,
    .feature:nth-child(4)::after {
        display: none;
    }

    /* ABOUT HOME */

    .about-home-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .about-left {
        order: 2;
    }

    .about-center {
        order: 1;
    }

    .about-right {
        order: 3;
    }

    .about-left-art {
        width: min(70%, 320px);
        transform: none;
        margin: 0 auto;
    }

    .about-center p {
        margin-left: auto;
        margin-right: auto;
    }

    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        max-width: 700px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .circle-badge {
        right: -15px;
        bottom: -15px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .story-image {
        max-width: 700px;
        margin: 0 auto;
    }

    .story-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .showroom-image {
        max-width: 750px;
        margin: 0 auto;
    }

    .showroom-content {
        text-align: center;
    }

    .showroom-info div {
        justify-content: center;
    }

    .community-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* TIMELINE */

    .timeline {
        max-width: 850px;
    }

    .timeline-item {
        padding-left: 45px;
        padding-right: 45px;
    }

    /* REGISTER / LOGIN */

    .register-hero,
    .login-hero {
        padding: 80px 0 90px;
    }

    .register-hero-text,
    .login-hero-text {
        max-width: 800px;
        text-align: center;
        margin: 0 auto;
    }

    .register-hero-text h1,
    .login-hero-text h1 {
        font-size: clamp(48px, 7vw, 62px);
    }

    .register-hero-text p,
    .login-hero-text p {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .register-benefits,
    .login-benefits {
        justify-content: center;
    }

    .register-hero-image,
    .login-hero-image {
        max-width: 750px;
        margin: 0 auto;
    }

    .register-cards {
        grid-template-columns: 1fr;
    }

    .form-box,
    .register-form-box {
        padding: 55px 45px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .registration-success-box {
        padding: 60px 45px;
    }

    .success-email-box {
        max-width: 100%;
    }

    .account-tabs {
        flex-wrap: wrap;
    }

    /* FAQ / LEGAL */

    .popular-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-categories .container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-box {
        overflow-wrap: anywhere;
    }

    /* FOOTER PAYMENT */

    .payment-shipping-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-logo {
        order: -1;
    }

    .footer-copy {
        text-align: center;
    }

    .footer-copy span {
        display: block;
    }

    .footer-links {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px 25px;
    }

    /* PRE FOOTER */

    .pre-footer .container {
        grid-template-columns: 1fr;
    }

    .pre-column {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .pre-column:last-child {
        border-bottom: none;
    }

    .advantages {
        flex-direction: column;
        gap: 22px;
    }

    .advantage {
        justify-content: center;
    }
}


/* ---------------------------------------------------------
   MOBILE – bis 768px
--------------------------------------------------------- */
@media (max-width: 768px) {

    .container {
        width: calc(100% - 30px);
    }

    section {
        overflow-x: clip;
    }

    /* TYPOGRAPHY */

    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2,
    .section-header h2 {
        font-size: clamp(34px, 8vw, 46px);
        line-height: 1.15;
    }

    .section-title p,
    .section-header p {
        font-size: 14px;
    }

    /* HEADER */

    .logo img {
        width: 105px;
    }

    .logo-title {
        font-size: clamp(36px, 9vw, 48px);
        line-height: 1.05;
    }

    .logo-slogan {
        gap: 7px;
        margin-top: 10px;
    }

    .logo-slogan span,
    .logo-slogan .line-left,
    .logo-slogan .line-right {
        width: 45px;
    }

    .logo-slogan p {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .logo-heart {
        margin-top: 10px;
    }

    .mobile-menu-btn {
        top: 22px;
        right: 10px;
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    /* NAV */

    nav:not(.footer-links) {
        width: min(300px, 88vw);
        max-width: 88vw;
    }

    nav:not(.footer-links) ul {
        gap: 20px;
    }

    nav:not(.footer-links) a {
        font-size: 13px;
        letter-spacing: 1.5px;
    }

    /* BUTTONS */

    .btn,
    .btn-outline {
        max-width: 100%;
    }

    .btn {
        padding: 14px 24px;
        font-size: 12px;
        gap: 10px;
    }

    .btn-outline {
        padding: 14px 24px;
    }

    /* HERO */

    .hero {
        padding: 15px 0 60px;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero h2 {
        font-size: clamp(34px, 9vw, 48px);
    }

    .hero h2 span {
        font-size: clamp(42px, 11vw, 54px);
    }

    .hero p {
        margin-bottom: 28px;
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-divider {
        width: min(220px, 70vw);
        gap: 10px;
    }

    .hero-neon {
        width: 150px;
        top: 20px;
        right: 0;
    }

    .hero-crown img {
        width: 50px;
    }

    /* FEATURES */

    .features .container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 0;
    }

    .feature {
        justify-content: center;
        padding: 0 10px;
        text-align: center;
    }

    .feature::after {
        display: none !important;
    }

    /* CARDS */

    .favorite-grid,
    .community-grid,
    .popular-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .favorite-card img {
        height: auto;
        min-height: 340px;
    }

    .favorite-overlay h3 {
        font-size: 27px;
    }

    /* ABOUT */

    .about,
    .about-story,
    .about-values,
    .about-timeline,
    .about-showroom,
    .about-community {
        padding: 80px 0;
    }

    .about-title,
    .about-content h2,
    .about-values h2,
    .showroom-content h2 {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.15;
    }

    .about-left-art {
        width: min(85%, 320px);
    }

    .circle-badge {
        width: 130px;
        height: 130px;
        right: -5px;
        bottom: -10px;
        font-size: 14px;
    }

    .circle-badge span {
        width: 90px;
    }

    .story-content h2 {
        font-size: clamp(36px, 9vw, 48px);
    }

    .story-content p,
    .about-content p,
    .showroom-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .stats-grid div {
        padding: 35px 20px;
    }

    .stats-grid h3 {
        font-size: 44px;
    }

    .value-card,
    .community-card {
        padding: 40px 25px;
    }

    /* TIMELINE */

    .timeline {
        margin-top: 55px;
        padding-left: 0;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        left: 0;
        width: 100%;
        padding: 25px 0 25px 45px;
        text-align: left;
    }

    .timeline-item::before,
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 6px !important;
        right: auto !important;
    }

    .timeline-content {
        padding: 28px 22px;
    }

    .timeline-content h3 {
        font-size: 26px;
    }

    /* REGISTER / LOGIN */

    .register-hero,
    .login-hero {
        padding: 65px 0 70px;
    }

    .register-hero-grid,
    .login-hero-grid {
        gap: 35px;
    }

    .register-hero-text h1,
    .login-hero-text h1 {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.08;
    }

    .register-hero-text p,
    .login-hero-text p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .register-benefits,
    .login-benefits {
        gap: 10px;
    }

    .register-benefits div,
    .login-benefits div {
        width: 100%;
        justify-content: center;
        padding: 10px 15px;
        font-size: 12px;
    }

    .register-hero-image,
    .login-hero-image {
        width: 100%;
    }

    .register-hero-image img,
    .login-hero-image img {
        width: 100%;
        max-width: 650px;
    }

    .register-info,
    .form-section,
    .register-form-section,
    .login-form-section,
    .help-section,
    .register-help {
        padding: 75px 0;
    }

    .register-info h2,
    .login-form-box h2,
    .register-form-box h2 {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.15;
    }

    .register-cards {
        gap: 18px;
    }

    .register-card {
        padding: 40px 25px;
    }

    .register-card h3 {
        font-size: 28px;
    }

    .form-box,
    .register-form-box {
        width: 100%;
        padding: 40px 22px;
        border-radius: 22px;
    }

    .register-form-box > p {
        margin-bottom: 30px;
    }

    .form-grid {
        gap: 18px;
        margin-top: 25px;
    }

    .register-form,
    .login-form {
        margin-top: 30px;
    }

    .login-form .form-group,
    .register-form .form-group {
        margin-bottom: 22px;
    }

    .login-form input,
    .register-form input,
    .register-form select,
    .register-form textarea {
        height: 54px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
    }

    .register-form textarea {
        min-height: 130px;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .checkbox {
        align-items: flex-start;
        gap: 10px;
        margin-top: 25px;
        font-size: 13px;
    }

    .checkbox input {
        margin-top: 2px;
    }

    .registration-success {
        padding: 70px 0 80px;
        min-height: auto;
    }

    .registration-success-box {
        padding: 45px 22px;
        border-radius: 22px;
    }

    .registration-success h1 {
        font-size: clamp(34px, 9vw, 46px);
    }

    .success-email-box {
        padding: 18px;
        gap: 12px;
    }

    .success-email-box > i {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .success-actions {
        flex-direction: column;
        width: 100%;
    }

    .success-actions .btn,
    .success-actions .btn-outline {
        width: 100%;
        min-width: 0;
    }

    .account-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        width: 100%;
    }

    /* HELP */

    .help-box,
    .register-help-box {
        padding: 45px 22px;
        border-radius: 22px;
    }

    .help-box p,
    .register-help-box p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .help-buttons,
    .register-help-buttons {
        flex-direction: column;
        width: 100%;
    }

    .help-buttons .btn,
    .help-buttons .btn-outline,
    .register-help-buttons .btn,
    .register-help-buttons .btn-outline {
        width: 100%;
        min-width: 0;
    }

    /* FAQ */

    .faq-hero {
        padding: 70px 0;
    }

    .faq-search {
        width: 100%;
    }

    .faq-search input {
        width: 100%;
    }

    .faq-categories .container {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 18px 16px;
        gap: 12px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 0 16px 18px;
    }

    .faq-contact-box {
        padding: 45px 22px;
    }

    /* LEGAL */

    .legal-hero {
        padding: 70px 0;
    }

    .legal-hero h1 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.15;
    }

    .legal-box {
        padding: 35px 20px;
        border-radius: 18px;
    }

    .legal-box p,
    .legal-box li {
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    /* NEWSLETTER */

    .newsletter-box {
        padding: 45px 22px;
    }

    .newsletter h2 {
        font-size: clamp(32px, 8vw, 42px);
    }

    .newsletter form {
        width: 100%;
    }

    .newsletter input {
        min-width: 0;
        width: 100%;
    }

    /* INSTAGRAM / SOCIAL */

    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social-section h2,
    .shopping-experience h2 {
        font-size: clamp(34px, 9vw, 44px);
        line-height: 1.15;
    }

    .experience-text,
    .social-text {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 45px;
    }

    .experience-stats {
        gap: 35px;
    }

    .experience-stats h3 {
        font-size: 48px;
    }

    /* CTA */

    .cta {
        padding: 75px 0;
    }

    .cta h2 {
        font-size: clamp(34px, 9vw, 46px);
        line-height: 1.15;
    }

    .cta p {
        font-size: 15px;
        line-height: 1.8;
    }

    /* PAYMENT / SHIPPING */

    .payment-shipping-box {
        padding: 22px 18px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .payment-method {
        min-width: 0;
    }

    .payment-method > div:last-child {
        min-width: 0;
    }

    .shipping-partner {
        align-items: flex-start;
        gap: 15px;
    }

    .shipping-details {
        min-width: 0;
    }

    /* PRE FOOTER */

    .pre-footer .container {
        grid-template-columns: 1fr;
    }

    .pre-column {
        text-align: center;
    }

    .newsletter-column {
        width: 100%;
    }

    .newsletter-column form {
        width: 100%;
    }

    .newsletter-column input {
        min-width: 0;
        width: 100%;
    }

    .advantage {
        display: grid;
        grid-template-columns: 55px minmax(0, 1fr);
        align-items: start;
        gap: 15px;
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .advantage > i {
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .advantage > div {
        min-width: 0;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .advantage strong {
        min-height: 24px;
        line-height: 24px;
        margin: 0;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    .advantage span {
        margin: 5px 0 0;
        line-height: 1.5;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-logo {
        order: -1;
        margin-bottom: 0;
    }

    .footer-copy {
        text-align: center;
        line-height: 1.7;
    }

    .footer-copy span {
        display: block;
    }

    .footer-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .footer-links a {
        display: block;
        width: auto;
        padding: 4px 0;
        font-size: 12px;
    }

    /* FLOATING ELEMENTS */

    .ai-assistant {
        right: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
        max-width: 420px;
    }

    .ai-fab {
        right: 15px;
        bottom: 15px;
    }

    .scroll-top {
        right: 12px;
        bottom: 12px;
    }
}


/* ---------------------------------------------------------
   SMALL MOBILE – bis 576px
--------------------------------------------------------- */
@media (max-width: 576px) {

    .container {
        width: calc(100% - 24px);
    }

    .logo-title {
        font-size: clamp(32px, 10vw, 40px);
    }

    .logo-slogan span,
    .logo-slogan .line-left,
    .logo-slogan .line-right {
        width: 25px;
    }

    .logo-slogan p {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .mobile-menu-btn {
        top: 18px;
        right: 2px;
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .hero h2 {
        font-size: clamp(31px, 10vw, 40px);
    }

    .hero h2 span {
        font-size: clamp(38px, 12vw, 48px);
    }

    .hero-neon {
        width: 110px;
    }

    .register-hero-text h1,
    .login-hero-text h1,
    .about-hero-text h1 {
        font-size: clamp(34px, 10vw, 44px);
    }

    .register-hero-text p,
    .login-hero-text p {
        font-size: 14px;
    }

    .section-title h2,
    .section-header h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .about-title,
    .about-content h2,
    .about-values h2,
    .showroom-content h2,
    .story-content h2,
    .cta h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .favorite-card img {
        min-height: 280px;
    }

    .favorite-overlay h3 {
        font-size: 23px;
    }

    .registration-success-box,
    .form-box,
    .register-form-box,
    .help-box,
    .register-help-box,
    .faq-contact-box,
    .newsletter-box {
        padding-left: 17px;
        padding-right: 17px;
    }

    .registration-success-icon {
        width: 78px;
        height: 78px;
    }

    .registration-success-icon i {
        font-size: 34px;
    }

    .success-email-box {
        align-items: flex-start;
        text-align: left;
    }

    .success-email-box span {
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .dpd-logo {
        width: 95px;
        flex: 0 0 95px;
        height: 60px;
    }

    .shipping-partner {
        gap: 12px;
    }

    .shipping-details strong {
        font-size: 13px;
    }

    .shipping-details > span {
        font-size: 10px;
    }

    .shipping-countries {
        gap: 5px;
    }

    .shipping-countries span {
        padding: 4px 7px;
        font-size: 8px;
    }

    .footer-grid {
        gap: 15px;
    }

    .footer-links {
        gap: 10px !important;
    }

    .footer-links a {
        font-size: 11px;
    }
}


/* ---------------------------------------------------------
   VERY SMALL DEVICES – bis 400px
--------------------------------------------------------- */
@media (max-width: 400px) {

    .container {
        width: calc(100% - 20px);
    }

    .logo-title {
        font-size: 30px;
    }

    .logo-slogan {
        gap: 4px;
    }

    .logo-slogan span,
    .logo-slogan .line-left,
    .logo-slogan .line-right {
        width: 18px;
    }

    .logo-slogan p {
        font-size: 6px;
        letter-spacing: .8px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .btn,
    .btn-outline {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-divider {
        width: 180px;
    }

    .register-card,
    .value-card,
    .community-card {
        padding-left: 18px;
        padding-right: 18px;
    }

    .form-box,
    .register-form-box {
        padding: 30px 15px;
    }

    .payment-shipping-box {
        padding: 18px 14px;
    }

    .payment-shipping-title > i {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 17px;
    }

    .payment-shipping-title h4 {
        font-size: 14px;
    }

    .payment-method {
        padding: 12px;
    }

    .payment-method-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 17px;
    }

    .advantage {
        gap: 10px;
    }

    .advantage i {
        font-size: 23px;
    }

    .ai-assistant {
        width: calc(100% - 20px);
        right: 10px;
        bottom: 10px;
    }
}


/* ---------------------------------------------------------
   TOUCH DEVICES
   Verhindert Hover-bedingte Layoutverschiebungen auf Handys.
--------------------------------------------------------- */
@media (hover: none) and (pointer: coarse) {

    .btn:hover,
    .btn-outline:hover,
    .favorite-card:hover img,
    .showroom-image:hover img,
    .logo img:hover,
    .footer-logo img:hover {
        transform: none;
    }

    nav a:hover {
        transform: none;
    }
}


/* ---------------------------------------------------------
   ACCESSIBILITY / SAFE WRAPPING
--------------------------------------------------------- */
img,
svg,
video,
iframe {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
li,
td,
th {
    overflow-wrap: anywhere;
}

table {
    max-width: 100%;
}

@media (max-width: 768px) {

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    pre,
    code {
        max-width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {

    .about-home-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .about-left {
        order: 1 !important;
    }

    .about-center {
        order: 2 !important;
    }

    .about-right {
        order: 3 !important;
    }

}