@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #000000;
    --bg-dark-accent: #080808;
    --bg-card: rgba(255, 255, 255, 0.02);
    --border-color: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 94, 128, 0.3);
    
    --accent-pink: #ff5e80;
    --accent-pink-hover: #ff3366;
    --accent-pink-glow: rgba(255, 94, 128, 0.25);
    --accent-gradient: linear-gradient(135deg, #ff5e80, #e11d48);
    
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light: #e5e7eb;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glowing Accents */
body::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 94, 128, 0.06) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: float-glow-1 20s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    animation: float-glow-2 20s infinite alternate ease-in-out;
}

@keyframes float-glow-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, 5%) scale(1.1); }
}

@keyframes float-glow-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8%, -5%) scale(1.1); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-white);
    letter-spacing: -0.01em;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--text-white);
    border-color: var(--accent-pink);
    background: rgba(255, 94, 128, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--accent-pink-glow);
}

/* Header & Hero Section */
.hero-section {
    position: relative;
    padding: 35px 0 25px 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #000000;
}

.header-socials {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 100;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.logo-container {
    width: 390px;
    height: 390px;
    max-width: 85vw;
    max-height: 85vw;
    margin-bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    background: #000000;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo-container:hover {
    border-color: var(--accent-pink);
    box-shadow: 0 0 35px var(--accent-pink-glow);
    transform: scale(1.03);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text-img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
}

.logo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.main-headline {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .main-headline {
        font-size: 3.4rem;
        letter-spacing: 4px;
    }
}

.headline-accent {
    border-bottom: 4px solid var(--accent-pink);
    padding-bottom: 5px;
    display: inline-block;
    box-shadow: 0 4px 15px var(--accent-pink-glow);
}

.hero-intro {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-top: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    gap: 10px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(255, 94, 128, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 94, 128, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 94, 128, 0.1);
    border-color: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-pink-glow);
}

/* Sections General */
section {
    padding: 30px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-pink);
    margin: 15px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-pink-glow);
}

/* Advantages Section */
.advantages-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-accent) 100%);
}

.cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 576px) {
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .cards-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(255, 94, 128, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 94, 128, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 94, 128, 0.1);
    box-shadow: inset 0 0 10px rgba(255, 94, 128, 0.05);
}

.advantage-card:hover .card-icon {
    transform: scale(1.1);
    background: rgba(255, 94, 128, 0.1);
    box-shadow: 0 0 15px var(--accent-pink-glow);
}

.card-text h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Product Section */
.products-section {
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 45px rgba(255, 94, 128, 0.06);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: var(--bg-dark-accent);
    overflow: hidden;
    cursor: zoom-in;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 12px;
}

.product-meta-list li {
    font-size: 0.82rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-meta-list li i {
    color: var(--accent-pink);
    font-size: 0.75rem;
}

.price-tag {
    display: inline-block;
    background: rgba(255, 94, 128, 0.08);
    border: 1px solid rgba(255, 94, 128, 0.2);
    color: var(--accent-pink);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.buy-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.buy-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 94, 128, 0.35);
}

/* About / Story Section */
.story-section {
    background: linear-gradient(180deg, var(--bg-dark-accent) 0%, var(--bg-dark) 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-text h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.story-text h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-pink);
    margin-top: 8px;
}

.story-text p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.story-feat-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 12px;
}

.story-feat-item i {
    color: var(--accent-pink);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.story-feat-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.story-feat-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.story-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: var(--bg-card);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.story-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-pink-glow) 0%, transparent 70%);
    z-index: 1;
}

.story-logo-graphic {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 10;
    text-shadow: 0 10px 40px rgba(255, 94, 128, 0.2);
    animation: pulse-story-logo 4s infinite alternate ease-in-out;
}

@keyframes pulse-story-logo {
    0% { transform: scale(1) rotate(-2deg); }
    100% { transform: scale(1.05) rotate(2deg); }
}

/* Request / Anfrage Section */
.request-section {
    background: var(--bg-dark);
}

.request-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.request-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.request-form {
    background: var(--bg-dark-accent);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .request-form {
        padding: 50px 40px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-white);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 10px rgba(255, 94, 128, 0.15);
}

.form-group select option {
    background: var(--bg-dark-accent);
    color: var(--text-white);
}

.form-group input[type="file"] {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input[type="file"]:hover,
.form-group input[type="file"]:focus {
    border-color: var(--accent-pink);
    background: rgba(255, 94, 128, 0.02);
}

.file-hint {
    font-size: 0.72rem;
    color: var(--text-gray);
    margin-top: 8px;
}

.submit-btn {
    width: 100%;
    background: var(--accent-gradient);
    color: var(--text-white);
    border: none;
    padding: 16px;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 94, 128, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 94, 128, 0.45);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-disclaimer {
    font-size: 0.72rem;
    text-align: center;
    color: var(--text-gray);
    margin-top: 20px;
}

/* Call to Action Section */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 60px 0;
    background: var(--bg-dark-accent);
    border-top: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .cta-section {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

.cta-section .btn {
    min-width: 260px;
    padding: 16px 30px;
    text-align: left;
}

.cta-section .btn-text {
    line-height: 1.2;
    font-size: 0.9rem;
    text-align: left;
}

/* Floating Request Button */
.floating-request-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background: var(--accent-gradient);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 94, 128, 0.4);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fab-heartbeat 3s infinite;
    transition: var(--transition-smooth);
}

.floating-request-btn i {
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.floating-request-btn span {
    display: none;
}

.floating-request-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 94, 128, 0.6);
}

.floating-request-btn:hover i {
    transform: rotate(15deg) scale(1.05);
}

@media (min-width: 768px) {
    .floating-request-btn {
        bottom: 25px;
        right: 25px;
        width: auto;
        height: auto;
        padding: 14px 22px;
        border-radius: 50px;
        gap: 10px;
    }
    
    .floating-request-btn span {
        display: inline;
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

@keyframes fab-heartbeat {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 94, 128, 0.4); }
    8% { transform: scale(1.06); box-shadow: 0 4px 22px rgba(255, 94, 128, 0.6); }
    15% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 94, 128, 0.4); }
    22% { transform: scale(1.06); box-shadow: 0 4px 22px rgba(255, 94, 128, 0.6); }
    32% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 94, 128, 0.4); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 94, 128, 0.4); }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 10, 0.95);
    z-index: 20000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--text-white);
    transform: scale(1.1);
}

/* Footer */
.site-footer {
    background: var(--bg-dark-accent);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-nav a:hover {
    color: var(--accent-pink);
    text-shadow: 0 0 10px var(--accent-pink-glow);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-gray);
    opacity: 0.7;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-white);
}

.footer-brand span {
    color: var(--accent-pink);
}

/* Interactive Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 94, 128, 0.05) 0%, rgba(217, 70, 239, 0.01) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    transition: opacity 0.5s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* --- Gallery Page Styles --- */
.gallery-section {
    padding: 60px 0 100px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 10px;
}

.gallery-intro {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    width: 100%;
}

.filter-btn {
    background: #252329;
    border: none;
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.filter-btn:hover {
    background: #333038;
    color: var(--text-white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--accent-gradient);
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(255, 94, 128, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    aspect-ratio: 1/1;
    cursor: zoom-in;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(255, 94, 128, 0.05);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 6, 10, 0.75);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-category {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-pink);
    padding-bottom: 6px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-category {
    transform: translateY(0);
}

/* --- Secondary Filter (Target Groups - NOW TOP ROW) --- */
.sub-filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
}

.sub-filter-btn {
    background: #252329;
    border: none;
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sub-filter-btn:hover {
    background: #333038;
    color: var(--text-white);
    transform: translateY(-2px);
}

.sub-filter-btn.active {
    background: var(--accent-gradient);
    color: var(--text-white);
    box-shadow: 0 6px 20px rgba(255, 94, 128, 0.4);
}

/* ==========================================================================
   Warenkorb & Produkt-Konfigurator Styles
   ========================================================================== */

/* Configurator Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(145deg, #18161a, #0c0b0d);
    color: var(--text-white);
    padding: 30px;
    border-radius: 16px;
    max-width: 750px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 94, 128, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.modal-body img {
    width: 280px;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: zoom-in;
    transition: var(--transition-smooth);
}

.modal-body img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 94, 128, 0.15);
}

.modal-config {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#modal-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    border-bottom: 2px solid var(--accent-pink);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.config-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.option-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-opt {
    background: #252329;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.btn-opt:hover {
    background: #333038;
    border-color: rgba(255, 94, 128, 0.3);
}

.btn-opt.selected {
    background: var(--accent-gradient);
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 94, 128, 0.4);
}

.config-select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: #252329;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.config-select:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 10px rgba(255, 94, 128, 0.2);
}

.btn-add-cart {
    background: var(--accent-gradient);
    color: var(--text-white);
    border: none;
    padding: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 15px;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(255, 94, 128, 0.3);
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 94, 128, 0.5);
}

.btn-add-cart:active {
    transform: translateY(0);
}

/* Floating Cart Button */
.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-gradient);
    color: var(--text-white);
    border: none;
    padding: 14px 26px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(255, 94, 128, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.cart-floating-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 94, 128, 0.6);
}

.cart-badge {
    background: #000;
    color: var(--accent-pink);
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 0 0 5px rgba(255, 94, 128, 0.3);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 350px;
    height: 100%;
    background: linear-gradient(145deg, #161518, #0b0a0c);
    color: var(--text-white);
    z-index: 10000;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 94, 128, 0.15);
}

.cart-drawer.open {
    transform: translateX(-360px);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.cart-close {
    font-size: 28px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
}

.cart-close:hover {
    color: var(--accent-pink);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 20px 0;
    padding-right: 5px;
}

/* Custom Scrollbar for Drawer & Modal */
.cart-items::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.cart-items::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
.cart-items::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}
.cart-items::-webkit-scrollbar-thumb:hover,
.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}

.cart-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-details {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    font-size: 0.9rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--text-white);
}

.cart-item-remove {
    color: var(--accent-pink);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    background: rgba(255, 94, 128, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.cart-item-remove:hover {
    background: var(--accent-gradient);
    color: var(--text-white);
}

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-checkout {
    display: block;
    text-align: center;
    background: var(--accent-gradient);
    color: var(--text-white);
    text-decoration: none;
    padding: 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 94, 128, 0.3);
    transition: var(--transition-smooth);
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 94, 128, 0.5);
}

/* Adjust Floating Request Button to Bottom Left */
.floating-request-btn {
    left: 30px !important;
    right: auto !important;
}

@media (max-width: 500px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .cart-drawer.open {
        transform: translateX(-100%);
    }
    .modal-body {
        gap: 15px;
    }
    .modal-body img {
        width: 100%;
        max-height: 250px;
    }
}

/* ==========================================
   Carousel, Motives & Configurator Gallery
   ========================================== */
/* Karussell Styles */
.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.carousel-slide {
  min-width: 33.33%; /* Zeigt 3 Bilder gleichzeitig an */
  padding: 5px;
  box-sizing: border-box;
}
.carousel-slide img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 220px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}
.gallery-card {
    background: var(--bg-dark-accent);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 94, 128, 0.25);
    border-color: rgba(255, 94, 128, 0.4);
}
.gallery-card-img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover img {
    transform: scale(1.05);
}
.gallery-card h3 {
    margin-top: 15px;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-white);
    padding: 0 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}
/* Modal Thumbnail Styles */
.thumbnail-bar {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  justify-content: center;
}
.thumbnail-bar img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
}
.thumbnail-bar img.active-thumb {
  opacity: 1;
  border-color: #ff0055;
}

/* Custom Checkbox for Pickup (Abholung) */
.pickup-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 25px !important;
}
.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-white);
    user-select: none;
    gap: 12px;
}
.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: relative;
    height: 22px;
    width: 22px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}
.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent-pink);
}
.checkbox-container input:checked ~ .checkmark {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 10px rgba(255, 94, 128, 0.3);
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}
.checkbox-container .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Legal Modal Styling */
.legal-modal-body {
    max-height: 75vh;
    overflow-y: auto;
    padding-right: 10px;
}
.legal-modal-body h2 {
    font-size: 1.4rem;
    color: var(--accent-pink);
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 94, 128, 0.2);
    padding-bottom: 8px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}
.legal-modal-body h2:first-of-type {
    margin-top: 0;
}
.legal-modal-body h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}
.legal-modal-body p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.legal-modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}
.legal-modal-body li {
    color: var(--text-gray);
    margin-bottom: 6px;
    font-size: 0.95rem;
}
.legal-modal-body a {
    color: var(--accent-pink);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.legal-modal-body a:hover {
    text-decoration: underline;
    color: var(--text-white);
}
.legal-modal-body hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 94, 128, 0.3), transparent);
    margin: 40px 0;
}
.legal-modal-body strong {
    color: var(--text-white);
}
