/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first

**/
/* ============================================
   LOYALEN - UPDATED CUSTOM CSS (V2)
   ============================================
   
   CHANGES IN V2:
   - Larger fonts overall (+20-30%)
   - Bigger buttons and interactive elements
   - Styled logo (bold, red, bigger)
   - More spacing/padding
   - Larger product cards and swatches
   
   ============================================ */

:root {
    --primary: #D84E42;
    --secondary: #E8956D;
    --accent: #2A4A3F;
    --dark: #3D2E26;
    --light-bg: #F5EFE6;
    --cream: #FFFBF5;
    
    /* Typography */
    --font-heading: 'Archivo Black', sans-serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-accent: 'Righteous', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Righteous&family=DM+Sans:wght@400;500;700&family=Bebas+Neue&display=swap');

/* ============================================
   GLOBAL OVERRIDES - LARGER FONTS
   ============================================ */
body {
    font-family: var(--font-body) !important;
    background: var(--cream) !important;
    color: var(--dark) !important;
    line-height: 1.7;
    font-size: 1.1rem !important; /* +10% größer */
}

.page-width {
    max-width: 1400px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* ============================================
   HEADER / NAVIGATION - STYLED LOGO
   ============================================ */
.header-wrapper {
    background: var(--cream) !important;
    border-bottom: 2px solid var(--primary) !important;
    box-shadow: none !important;
    padding: 15px 0 !important;
}

/* LOGO STYLING - BOLD & RED */
.header__heading-link,
.header__heading,
.header__heading-logo {
    font-family: var(--font-heading) !important;
    font-size: 2.8rem !important; /* +40% größer */
    color: var(--primary) !important;
    letter-spacing: -2px !important;
    text-transform: uppercase !important;
    font-weight: 900 !important;
}

/* Falls Logo ein SVG/Image ist */
.header__heading-logo img,
.header__heading-logo svg {
    max-height: 60px !important; /* Größer */
    width: auto !important;
}

.header__menu-item {
    font-weight: 500 !important;
    color: var(--dark) !important;
    transition: color 0.3s ease;
    font-size: 1.1rem !important; /* Größer */
}

.header__menu-item:hover {
    color: var(--primary) !important;
}

/* CTA Button in Header */
.header__icon--cart,
.button--primary {
    background: var(--accent) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 14px 32px !important; /* Größer */
    font-weight: 700 !important;
    font-size: 1rem !important; /* Größer */
    transition: transform 0.3s ease;
}

.header__icon--cart:hover,
.button--primary:hover {
    transform: scale(1.05);
    background: var(--accent) !important;
}

/* ============================================
   HERO SLIDESHOW SECTION
   ============================================ */
.loyalen-hero-slideshow {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary);
}

.loyalen-hero-slide {
    position: relative;
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loyalen-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.loyalen-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 78, 66, 0.7) 0%, rgba(42, 74, 63, 0.7) 100%);
    z-index: 2;
}

.loyalen-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 40px;
}

.loyalen-hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 1.6rem; /* Größer */
    margin-bottom: 25px;
    letter-spacing: 2px;
    opacity: 0.95;
}

.loyalen-hero-title {
    font-family: var(--font-heading);
    font-size: 7rem; /* MEGA GROß */
    line-height: 0.9;
    margin-bottom: 35px;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.loyalen-hero-subtitle {
    font-size: 1.8rem; /* Größer */
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.loyalen-hero-cta {
    background: var(--accent);
    color: white;
    padding: 22px 55px; /* Größer */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.4rem; /* Größer */
    display: inline-block;
    transition: transform 0.3s ease;
}

.loyalen-hero-cta:hover {
    transform: scale(1.08);
    color: white;
}

/* Slideshow Controls */
.loyalen-hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.loyalen-hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.loyalen-hero-dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* ============================================
   HERO PRODUCT CUSTOMIZER - LARGER ELEMENTS
   ============================================ */
.loyalen-hero-product {
    margin-top: 20px;
    padding: 100px 0 140px; /* Mehr Padding */
    background: var(--cream);
}

.loyalen-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; /* Mehr Gap */
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.loyalen-gallery {
    position: sticky;
    top: 120px;
}

.loyalen-main-image {
    background: white;
    border-radius: 30px; /* Größerer Radius */
    height: 650px; /* Größer */
    margin-bottom: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.loyalen-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalen-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--primary);
    color: white;
    padding: 12px 24px; /* Größer */
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem; /* Größer */
    z-index: 10;
}

.loyalen-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Mehr Gap */
}

.loyalen-thumbnail {
    height: 140px; /* Größer */
    background: white;
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    overflow: hidden;
}

.loyalen-thumbnail:hover {
    transform: scale(1.08);
    border-color: var(--primary);
}

.loyalen-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info - LARGER FONTS */
.loyalen-product-info {
    padding-top: 20px;
}

.loyalen-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 8px 18px; /* Größer */
    border-radius: 18px;
    font-size: 0.95rem; /* Größer */
    font-weight: 700;
    margin-bottom: 25px;
}

.loyalen-product-title {
    font-family: var(--font-heading) !important;
    font-size: 4.5rem !important; /* +28% größer */
    color: var(--dark) !important;
    margin-bottom: 25px !important;
    letter-spacing: -3px !important;
    line-height: 1 !important;
    text-transform: uppercase;
}

.loyalen-product-subtitle {
    font-family: var(--font-accent);
    font-size: 1.6rem; /* Größer */
    color: var(--primary);
    margin-bottom: 35px;
}

.loyalen-price {
    font-size: 3rem; /* Größer */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 35px;
}

.loyalen-description {
    font-size: 1.25rem; /* +14% größer */
    line-height: 1.8;
    margin-bottom: 45px;
    color: #666;
}

/* ============================================
   CUSTOMIZER - BIGGER INTERACTIVE ELEMENTS
   ============================================ */
.loyalen-customizer {
    background: white;
    padding: 50px; /* Mehr Padding */
    border-radius: 30px;
    margin-bottom: 35px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.loyalen-customizer-title {
    font-family: var(--font-display);
    font-size: 2.4rem; /* Größer */
    margin-bottom: 35px;
    color: var(--dark);
    letter-spacing: 1px;
}

.loyalen-option-group {
    margin-bottom: 40px;
}

.loyalen-option-label {
    font-weight: 700;
    font-size: 1.15rem; /* Größer */
    margin-bottom: 18px;
    display: block;
    color: var(--dark);
}

/* COLOR SWATCHES - BIGGER */
.loyalen-color-options {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.loyalen-color-swatch {
    width: 65px; /* +30% größer */
    height: 65px;
    border-radius: 50%;
    border: 4px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.loyalen-color-swatch:hover {
    transform: scale(1.15);
}

.loyalen-color-swatch.active {
    border-color: var(--dark);
    box-shadow: 0 0 0 4px var(--light-bg);
}

.loyalen-color-swatch input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* SIZE OPTIONS - BIGGER */
.loyalen-size-options {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.loyalen-size-option {
    padding: 20px 40px; /* +33% größer */
    border: 3px solid var(--light-bg);
    border-radius: 18px;
    background: white;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem; /* Größer */
    transition: all 0.3s ease;
    min-width: 80px;
    text-align: center;
}

.loyalen-size-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.loyalen-size-option.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Upload Zone - Bigger */
.loyalen-upload-zone {
    border: 4px dashed var(--light-bg);
    border-radius: 25px;
    padding: 60px; /* Mehr Padding */
    text-align: center;
    background: var(--cream);
    cursor: pointer;
    transition: all 0.3s ease;
}

.loyalen-upload-zone:hover {
    border-color: var(--primary);
    background: white;
}

.loyalen-upload-icon {
    font-size: 5rem; /* Größer */
    margin-bottom: 25px;
}

.loyalen-upload-title {
    font-family: var(--font-display);
    font-size: 2.2rem; /* Größer */
    margin-bottom: 12px;
    color: var(--dark);
}

.loyalen-upload-subtitle {
    color: #999;
    font-size: 1.1rem; /* Größer */
}

/* ============================================
   ADD TO CART - BIGGER BUTTONS
   ============================================ */
.loyalen-add-to-cart {
    display: flex;
    gap: 25px;
    margin-top: 45px;
}

.loyalen-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 18px 30px; /* Größer */
    border-radius: 18px;
    border: 3px solid var(--light-bg);
}

.loyalen-qty-btn {
    background: var(--light-bg);
    border: none;
    width: 45px; /* Größer */
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.4rem; /* Größer */
    transition: background 0.3s ease;
}

.loyalen-qty-btn:hover {
    background: var(--primary);
    color: white;
}

.loyalen-qty-value {
    font-weight: 700;
    font-size: 1.4rem; /* Größer */
    min-width: 40px;
    text-align: center;
}

.loyalen-btn-cart {
    flex: 1;
    background: var(--accent) !important;
    color: white !important;
    padding: 24px 45px; /* Größer */
    border-radius: 18px;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.35rem; /* Größer */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.loyalen-btn-cart:hover {
    transform: scale(1.03);
    background: var(--accent) !important;
}

/* ============================================
   FEATURES - BIGGER
   ============================================ */
.loyalen-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.loyalen-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px; /* Mehr Padding */
    background: white;
    border-radius: 18px;
}

.loyalen-feature-icon {
    font-size: 2.5rem; /* Größer */
}

.loyalen-feature-title {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.1rem; /* Größer */
}

.loyalen-feature-description {
    font-size: 0.95rem; /* Größer */
    color: #999;
}

/* ============================================
   HOW IT WORKS - LARGER TEXT
   ============================================ */
.loyalen-how-it-works {
    padding: 140px 40px; /* Mehr Padding */
    background: var(--cream);
}

.loyalen-section-header {
    text-align: center;
    margin-bottom: 100px; /* Mehr Margin */
}

.loyalen-section-eyebrow {
    font-family: var(--font-accent);
    color: var(--primary);
    font-size: 1.4rem; /* Größer */
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.loyalen-section-title {
    font-family: var(--font-heading);
    font-size: 5rem; /* +25% größer */
    color: var(--dark);
    letter-spacing: -3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.loyalen-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px; /* Mehr Gap */
    max-width: 1400px;
    margin: 0 auto;
}

.loyalen-step-card {
    background: white;
    padding: 60px 45px; /* Mehr Padding */
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.loyalen-step-card:hover {
    transform: translateY(-12px);
}

.loyalen-step-number {
    font-family: var(--font-display);
    font-size: 6rem; /* Größer */
    color: var(--light-bg);
    line-height: 1;
    margin-bottom: 25px;
}

.loyalen-step-icon {
    font-size: 5rem; /* Größer */
    margin-bottom: 30px;
}

.loyalen-step-title {
    font-family: var(--font-display);
    font-size: 2.4rem; /* Größer */
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.loyalen-step-description {
    font-size: 1.15rem; /* +10% größer */
    color: #666;
    line-height: 1.7;
}

/* ============================================
   FEATURED PRODUCTS - BIGGER CARDS
   ============================================ */
.loyalen-featured-products {
    padding: 140px 40px;
    background: var(--light-bg);
}

.loyalen-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; /* Mehr Gap */
    margin-top: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.loyalen-product-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.loyalen-product-card:hover {
    transform: translateY(-12px);
}

.loyalen-product-image {
    height: 400px; /* Größer */
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.loyalen-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalen-product-card-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--primary);
    color: white;
    padding: 10px 20px; /* Größer */
    border-radius: 22px;
    font-size: 0.95rem; /* Größer */
    font-weight: 700;
}

.loyalen-product-card-info {
    padding: 40px; /* Mehr Padding */
}

.loyalen-product-name {
    font-family: var(--font-display);
    font-size: 2.2rem; /* Größer */
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.loyalen-product-card-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.05rem; /* Größer */
    line-height: 1.6;
}

.loyalen-product-card-price {
    font-size: 1.8rem; /* Größer */
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

.loyalen-product-cta {
    background: var(--accent);
    color: white;
    padding: 16px 35px; /* Größer */
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem; /* Größer */
    display: inline-block;
    transition: transform 0.3s ease;
}

.loyalen-product-cta:hover {
    transform: scale(1.06);
    color: white;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.loyalen-testimonials {
    padding: 140px 40px;
    background: var(--accent);
    color: white;
}

.loyalen-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 70px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.loyalen-testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.loyalen-testimonial-quote {
    font-size: 1.5rem; /* Größer */
    line-height: 1.7;
    margin-bottom: 35px;
    font-style: italic;
}

.loyalen-testimonial-author {
    display: flex;
    align-items: center;
    gap: 25px;
}

.loyalen-author-avatar {
    width: 70px; /* Größer */
    height: 70px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Größer */
}

.loyalen-author-name {
    font-family: var(--font-display);
    font-size: 1.8rem; /* Größer */
    letter-spacing: 1px;
}

.loyalen-author-location {
    opacity: 0.8;
    font-size: 1.05rem; /* Größer */
}

/* ============================================
   CTA BANNER
   ============================================ */
.loyalen-cta-banner {
    padding: 120px 40px;
    background: var(--primary);
    color: white;
    text-align: center;
}

.loyalen-cta-title {
    font-family: var(--font-heading);
    font-size: 5rem; /* Größer */
    margin-bottom: 35px;
    letter-spacing: -3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.loyalen-cta-subtitle {
    font-size: 1.8rem; /* Größer */
    margin-bottom: 50px;
    opacity: 0.95;
}

.loyalen-cta-button {
    background: var(--accent);
    color: white;
    padding: 26px 60px; /* Größer */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem; /* Größer */
    display: inline-block;
    transition: transform 0.3s ease;
}

.loyalen-cta-button:hover {
    transform: scale(1.07);
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark) !important;
    color: white !important;
    padding: 100px 40px 50px !important;
}

.footer__heading {
    font-family: var(--font-display) !important;
    font-size: 1.8rem !important;
    letter-spacing: 1px !important;
    color: white !important;
}

.footer__list-item {
    color: white !important;
    opacity: 0.8;
    font-size: 1.05rem !important; /* Größer */
}

.footer__list-item:hover {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    .loyalen-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .loyalen-gallery {
        position: relative;
        top: 0;
    }
    
    .loyalen-steps-grid,
    .loyalen-products-grid,
    .loyalen-testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalen-product-title {
        font-size: 3rem !important;
    }
    
    .loyalen-section-title {
        font-size: 3rem;
    }
    
    .loyalen-hero-title {
        font-size: 4rem;
    }
    
    .loyalen-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 750px) {
    .loyalen-product-title {
        font-size: 2.5rem !important;
    }
    
    .loyalen-section-title {
        font-size: 2.5rem;
    }
    
    .loyalen-hero-title {
        font-size: 3rem;
    }
    
    .loyalen-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loyalen-add-to-cart {
        flex-direction: column;
    }
    
    .loyalen-quantity {
        justify-content: center;
    }
    
    .loyalen-size-option {
        padding: 16px 32px;
    }
    
    .loyalen-color-swatch {
        width: 55px;
        height: 55px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.loyalen-hidden {
    display: none !important;
}

.loyalen-text-center {
    text-align: center;
}

.loyalen-mt-large {
    margin-top: 100px;
}

.loyalen-mb-large {
    margin-bottom: 100px;
}
/* FORCE LOGO STYLING - NUR DAS LOGO! */
.header__heading,
.header__heading-link,
.header__heading .h2,
h2.header__heading,
.header__heading-logo-wrapper a {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    text-transform: uppercase !important;
}

/* NAVIGATION LINKS - NORMAL WEIGHT */
.header__menu-item,
.header__menu-item span,
.header__menu-item a,
.header__active-menu-item {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500 !important; /* NORMAL, nicht bold! */
    font-size: 1.1rem !important;
    color: var(--dark) !important;
    text-decoration: none !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* Navigation Hover */
.header__menu-item:hover,
.header__menu-item a:hover {
    color: var(--primary) !important;
}

/* "Startseite" active state - keine fette Schrift */
.header__active-menu-item {
    font-weight: 500 !important; /* NICHT bold */
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
}
/* ============================================
   LOYALEN - KATALOG PAGE STYLES
   ============================================
   
   ADD THIS TO YOUR loyalen-custom.css FILE
   (append at the end)
   
   ============================================ */

/* ============================================
   KATALOG HERO BANNER
   ============================================ */
.loyalen-katalog-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin-bottom: 80px;
}

.loyalen-katalog-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.loyalen-katalog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 78, 66, 0.6) 0%, rgba(42, 74, 63, 0.6) 100%);
    z-index: 2;
}

.loyalen-katalog-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.loyalen-katalog-eyebrow {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0.95;
}

.loyalen-katalog-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.loyalen-katalog-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   FILTER TABS
   ============================================ */
.loyalen-katalog-filters {
    padding: 60px 40px;
    background: var(--cream);
}

.loyalen-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.loyalen-filter-tab {
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 15px 35px;
    background: white;
    border: 3px solid var(--light-bg);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
    letter-spacing: 1px;
}

.loyalen-filter-tab:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.loyalen-filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============================================
   ASYMMETRIC PRODUCT GRID
   ============================================ */
.loyalen-katalog-products {
    padding: 60px 40px 120px;
    background: var(--cream);
}

.loyalen-products-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ASYMMETRIC LAYOUT - First item large, others smaller */
.loyalen-product-card-advanced:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.loyalen-product-card-advanced:nth-child(2) {
    grid-column: span 5;
}

.loyalen-product-card-advanced:nth-child(3) {
    grid-column: span 5;
}

.loyalen-product-card-advanced:nth-child(4) {
    grid-column: span 4;
}

.loyalen-product-card-advanced:nth-child(5) {
    grid-column: span 4;
}

.loyalen-product-card-advanced:nth-child(6) {
    grid-column: span 4;
}

/* PRODUCT CARD STYLING */
.loyalen-product-card-advanced {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loyalen-product-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* IMAGES WRAPPER - for hover effect */
.loyalen-product-images-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: var(--light-bg);
}

.loyalen-product-img-primary,
.loyalen-product-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
}

.loyalen-product-img-primary img,
.loyalen-product-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalen-product-img-secondary {
    opacity: 0;
}

/* HOVER EFFECT - show second image */
.loyalen-product-card-advanced:hover .loyalen-product-img-secondary {
    opacity: 1;
}

.loyalen-product-card-advanced:hover .loyalen-product-img-primary {
    opacity: 0;
}

/* PRODUCT TAG */
.loyalen-product-tag-adv {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

/* HOVER OVERLAY - "Jetzt personalisieren" button */
.loyalen-product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 74, 63, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.loyalen-product-card-advanced:hover .loyalen-product-hover-overlay {
    opacity: 1;
}

.loyalen-product-hover-btn {
    background: white;
    color: var(--accent);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.loyalen-product-hover-btn:hover {
    transform: scale(1.08);
    color: var(--accent);
}

/* PRODUCT INFO */
.loyalen-product-info-adv {
    padding: 30px;
}

.loyalen-product-name-adv {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.loyalen-product-desc-adv {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.loyalen-product-price-adv {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Large card gets bigger text */
.loyalen-product-card-advanced.large .loyalen-product-name-adv {
    font-size: 2.5rem;
}

.loyalen-product-card-advanced.large .loyalen-product-desc-adv {
    font-size: 1.15rem;
}

.loyalen-product-card-advanced.large .loyalen-product-price-adv {
    font-size: 2.2rem;
}

/* ============================================
   LIFESTYLE SHOWCASE - "DEIN STYLE, DEINE STORY"
   ============================================ */
.loyalen-lifestyle-showcase {
    padding: 120px 40px;
    background: var(--light-bg);
}

.loyalen-showcase-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.loyalen-showcase-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-top: 25px;
    line-height: 1.7;
}

.loyalen-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.loyalen-lifestyle-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.loyalen-lifestyle-item:hover {
    transform: scale(1.03);
}

/* MASONRY-STYLE LAYOUT */
.loyalen-lifestyle-item.tall {
    grid-column: span 4;
    grid-row: span 2;
}

.loyalen-lifestyle-item.wide {
    grid-column: span 8;
    grid-row: span 1;
}

.loyalen-lifestyle-item.normal {
    grid-column: span 4;
    grid-row: span 1;
}

.loyalen-lifestyle-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 40px;
}

/* ============================================
   KATALOG CTA SECTION
   ============================================ */
.loyalen-katalog-cta {
    padding: 100px 40px;
    background: var(--accent);
    color: white;
    text-align: center;
}

.loyalen-katalog-cta .loyalen-cta-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.loyalen-katalog-cta .loyalen-cta-subtitle {
    font-size: 1.6rem;
    margin-bottom: 45px;
    opacity: 0.95;
}

.loyalen-katalog-cta .loyalen-cta-button {
    background: var(--primary);
    color: white;
    padding: 22px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.loyalen-katalog-cta .loyalen-cta-button:hover {
    transform: scale(1.06);
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    /* Stack products on tablet */
    .loyalen-products-grid-asymmetric {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .loyalen-product-card-advanced:nth-child(1) {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .loyalen-product-card-advanced:nth-child(2),
    .loyalen-product-card-advanced:nth-child(3),
    .loyalen-product-card-advanced:nth-child(4),
    .loyalen-product-card-advanced:nth-child(5),
    .loyalen-product-card-advanced:nth-child(6) {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    /* Lifestyle grid simpler */
    .loyalen-lifestyle-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .loyalen-lifestyle-item.tall,
    .loyalen-lifestyle-item.wide,
    .loyalen-lifestyle-item.normal {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .loyalen-katalog-title {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 750px) {
    /* Single column on mobile */
    .loyalen-products-grid-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .loyalen-product-card-advanced:nth-child(1),
    .loyalen-product-card-advanced:nth-child(2),
    .loyalen-product-card-advanced:nth-child(3),
    .loyalen-product-card-advanced:nth-child(4),
    .loyalen-product-card-advanced:nth-child(5),
    .loyalen-product-card-advanced:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .loyalen-lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalen-lifestyle-item.tall,
    .loyalen-lifestyle-item.wide,
    .loyalen-lifestyle-item.normal {
        grid-column: span 1;
    }
    
    .loyalen-katalog-title {
        font-size: 2.5rem;
    }
    
    .loyalen-filter-tabs {
        gap: 12px;
    }
    
    .loyalen-filter-tab {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}
/* ============================================
   LOYALEN - KATALOG PAGE STYLES
   ============================================
   
   ADD THIS TO YOUR loyalen-custom.css FILE
   (append at the end)
   
   ============================================ */

/* ============================================
   KATALOG HERO BANNER
   ============================================ */
.loyalen-katalog-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    margin-bottom: 80px;
}

.loyalen-katalog-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.loyalen-katalog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 78, 66, 0.6) 0%, rgba(42, 74, 63, 0.6) 100%);
    z-index: 2;
}

.loyalen-katalog-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.loyalen-katalog-eyebrow {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0.95;
}

.loyalen-katalog-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.loyalen-katalog-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* ============================================
   FILTER TABS
   ============================================ */
.loyalen-katalog-filters {
    padding: 60px 40px;
    background: var(--cream);
}

.loyalen-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.loyalen-filter-tab {
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 15px 35px;
    background: white;
    border: 3px solid var(--light-bg);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
    letter-spacing: 1px;
}

.loyalen-filter-tab:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.loyalen-filter-tab.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============================================
   ASYMMETRIC PRODUCT GRID
   ============================================ */
.loyalen-katalog-products {
    padding: 60px 40px 120px;
    background: var(--cream);
}

.loyalen-products-grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ASYMMETRIC LAYOUT - First item large, others smaller */
.loyalen-product-card-advanced:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.loyalen-product-card-advanced:nth-child(2) {
    grid-column: span 5;
}

.loyalen-product-card-advanced:nth-child(3) {
    grid-column: span 5;
}

.loyalen-product-card-advanced:nth-child(4) {
    grid-column: span 4;
}

.loyalen-product-card-advanced:nth-child(5) {
    grid-column: span 4;
}

.loyalen-product-card-advanced:nth-child(6) {
    grid-column: span 4;
}

/* PRODUCT CARD STYLING */
.loyalen-product-card-advanced {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.loyalen-product-card-advanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* IMAGES WRAPPER - for hover effect */
.loyalen-product-images-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%; /* 4:5 aspect ratio */
    overflow: hidden;
    background: var(--light-bg);
}

.loyalen-product-img-primary,
.loyalen-product-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease;
}

.loyalen-product-img-primary img,
.loyalen-product-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loyalen-product-img-secondary {
    opacity: 0;
}

/* HOVER EFFECT - show second image */
.loyalen-product-card-advanced:hover .loyalen-product-img-secondary {
    opacity: 1;
}

.loyalen-product-card-advanced:hover .loyalen-product-img-primary {
    opacity: 0;
}

/* PRODUCT TAG */
.loyalen-product-tag-adv {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

/* HOVER OVERLAY - "Jetzt personalisieren" button */
.loyalen-product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 74, 63, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.loyalen-product-card-advanced:hover .loyalen-product-hover-overlay {
    opacity: 1;
}

.loyalen-product-hover-btn {
    background: white;
    color: var(--accent);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.loyalen-product-hover-btn:hover {
    transform: scale(1.08);
    color: var(--accent);
}

/* PRODUCT INFO */
.loyalen-product-info-adv {
    padding: 30px;
}

.loyalen-product-name-adv {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.loyalen-product-desc-adv {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.loyalen-product-price-adv {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Large card gets bigger text */
.loyalen-product-card-advanced.large .loyalen-product-name-adv {
    font-size: 2.5rem;
}

.loyalen-product-card-advanced.large .loyalen-product-desc-adv {
    font-size: 1.15rem;
}

.loyalen-product-card-advanced.large .loyalen-product-price-adv {
    font-size: 2.2rem;
}

/* ============================================
   LIFESTYLE SHOWCASE - "DEIN STYLE, DEINE STORY"
   ============================================ */
.loyalen-lifestyle-showcase {
    padding: 120px 40px;
    background: var(--light-bg);
}

.loyalen-showcase-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.loyalen-showcase-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-top: 25px;
    line-height: 1.7;
}

.loyalen-lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.loyalen-lifestyle-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.loyalen-lifestyle-item:hover {
    transform: scale(1.03);
}

/* MASONRY-STYLE LAYOUT */
.loyalen-lifestyle-item.tall {
    grid-column: span 4;
    grid-row: span 2;
}

.loyalen-lifestyle-item.wide {
    grid-column: span 8;
    grid-row: span 1;
}

.loyalen-lifestyle-item.normal {
    grid-column: span 4;
    grid-row: span 1;
}

.loyalen-lifestyle-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #999;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 40px;
}

/* ============================================
   KATALOG CTA SECTION
   ============================================ */
.loyalen-katalog-cta {
    padding: 100px 40px;
    background: var(--accent);
    color: white;
    text-align: center;
}

.loyalen-katalog-cta .loyalen-cta-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.loyalen-katalog-cta .loyalen-cta-subtitle {
    font-size: 1.6rem;
    margin-bottom: 45px;
    opacity: 0.95;
}

.loyalen-katalog-cta .loyalen-cta-button {
    background: var(--primary);
    color: white;
    padding: 22px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.loyalen-katalog-cta .loyalen-cta-button:hover {
    transform: scale(1.06);
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    /* Stack products on tablet */
    .loyalen-products-grid-asymmetric {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .loyalen-product-card-advanced:nth-child(1) {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .loyalen-product-card-advanced:nth-child(2),
    .loyalen-product-card-advanced:nth-child(3),
    .loyalen-product-card-advanced:nth-child(4),
    .loyalen-product-card-advanced:nth-child(5),
    .loyalen-product-card-advanced:nth-child(6) {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    /* Lifestyle grid simpler */
    .loyalen-lifestyle-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .loyalen-lifestyle-item.tall,
    .loyalen-lifestyle-item.wide,
    .loyalen-lifestyle-item.normal {
        grid-column: span 6;
        grid-row: span 1;
    }
    
    .loyalen-katalog-title {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 750px) {
    /* Single column on mobile */
    .loyalen-products-grid-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .loyalen-product-card-advanced:nth-child(1),
    .loyalen-product-card-advanced:nth-child(2),
    .loyalen-product-card-advanced:nth-child(3),
    .loyalen-product-card-advanced:nth-child(4),
    .loyalen-product-card-advanced:nth-child(5),
    .loyalen-product-card-advanced:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .loyalen-lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalen-lifestyle-item.tall,
    .loyalen-lifestyle-item.wide,
    .loyalen-lifestyle-item.normal {
        grid-column: span 1;
    }
    
    .loyalen-katalog-title {
        font-size: 2.5rem;
    }
    
    .loyalen-filter-tabs {
        gap: 12px;
    }
    
    .loyalen-filter-tab {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
}
/* FIX: Logo auch auf Collection/Katalog Pages */
.template-collection .header__heading,
.template-page .header__heading,
.template-collection .header__heading-link,
.template-page .header__heading-link {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    text-transform: uppercase !important;
}
/* LOGO FIX - FÜR ALLE SEITEN (Collections, Pages, etc.) */
body .header__heading,
body .header__heading-link,
body .header__heading .h2,
body h2.header__heading {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    text-transform: uppercase !important;
}

/* Super aggressive - falls das Theme sehr hartnäckig ist */
.header__heading-link:where(*) {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
}
/* ============================================
   LOYALEN - DEFINITIVE LOGO FIX
   ============================================
   
   ADD THIS TO THE VERY END OF loyalen-custom.css
   
   This uses CSS specificity hacks and !important
   to force the logo styling on ALL pages
   
   ============================================ */

/* NUCLEAR OPTION - LOGO FIX FOR ALL PAGES */

/* Target ALL possible logo selectors */
.header__heading,
.header__heading-link,
.header .h2,
h2.header__heading,
.header__heading-logo,
.header__heading a,
a.header__heading-link,
.header .header__heading-link,
body .header__heading,
html body .header__heading,
.header-wrapper .header__heading,
[class*="header"] [class*="heading"] {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
    font-weight: 900 !important;
    letter-spacing: -2px !important;
    text-transform: uppercase !important;
}

/* Extra specific for link state */
.header__heading-link:link,
.header__heading-link:visited,
.header__heading-link:hover,
.header__heading-link:active {
    color: #D84E42 !important;
}

/* Override any SVG or image logo size */
.header__heading-logo img,
.header__heading img,
.header img[src*="logo"] {
    max-height: 60px !important;
}

/* For text-based logos - force the style */
.header__heading-link span,
.header__heading span {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
}

/* Override Dawn's default heading styles specifically */
.header .h2,
.header h2 {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
    font-weight: 900 !important;
}

/* Make sure it works on ALL template types */
.template-index .header__heading,
.template-collection .header__heading,
.template-product .header__heading,
.template-page .header__heading,
.template-cart .header__heading,
body[class*="template-"] .header__heading {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
    font-weight: 900 !important;
}

/* CSS Custom Properties override (if Dawn uses them) */
:root {
    --font-heading-family: 'Archivo Black', sans-serif !important;
    --font-heading-scale: 1.4 !important;
}

.header {
    --font-heading-family: 'Archivo Black', sans-serif !important;
}

/* Final nuclear option - inline style override */
.header__heading[style],
.header__heading-link[style] {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 2.8rem !important;
    color: #D84E42 !important;
}

/* ============================================
   IF LOGO IS STILL NOT WORKING:
   Try adding this in theme.liquid DIRECTLY:
   
   <style>
   .header__heading, .header__heading-link {
     font-family: 'Archivo Black', sans-serif !important;
     font-size: 2.8rem !important;
     color: #D84E42 !important;
     font-weight: 900 !important;
   }
   </style>
   
   Place it RIGHT BEFORE </head> tag
   ============================================ */

   /* ===================================
   LOYALEN - KATALOG HERO SLIDESHOW CSS
   
   Add this to your loyalen-custom.css file
   OR create a new snippet: loyalen-katalog-hero.css
   =================================== */

/* KATALOG HERO SLIDESHOW WRAPPER */
.loyalen-katalog-hero-wrapper {
  position: relative;
  width: 100%;
  height: 500px; 
  max-height: 500px; 
  overflow: hidden;
  background: #f5f5f5; 
  margin-bottom: 60px;
}

/* KATALOG HERO SLIDES */
.loyalen-katalog-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
  filter: blur(0px);
}

.loyalen-katalog-hero-slide.active {
  opacity: 1;
  filter: blur(0px);
  z-index: 1;
}

.loyalen-katalog-hero-slide.transitioning-out {
  opacity: 0;
  filter: blur(10px);
}

.loyalen-katalog-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* DARK OVERLAY for better text readability */
.loyalen-katalog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

/* KATALOG HERO CONTENT */
.loyalen-katalog-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}

.loyalen-katalog-eyebrow {
  font-family: var(--font-accent, 'Righteous', sans-serif);
  font-size: 1.3rem;
  color: var(--cream, #FFFBF5);
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.loyalen-katalog-title {
  font-family: var(--font-heading, 'Archivo Black', sans-serif);
  font-size: 4.5rem;
  color: var(--cream, #FFFBF5);
  letter-spacing: -3px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.loyalen-katalog-subtitle {
  font-size: 1.3rem;
  color: var(--cream, #FFFBF5);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* KATALOG HERO DOTS */
.loyalen-katalog-hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.loyalen-katalog-hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.loyalen-katalog-hero-dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .loyalen-katalog-hero-wrapper {
    height: 400px;
  }
  
  .loyalen-katalog-title {
    font-size: 3rem;
    letter-spacing: -2px;
  }
  
  .loyalen-katalog-eyebrow {
    font-size: 1.1rem;
  }
  
  .loyalen-katalog-subtitle {
    font-size: 1.1rem;
  }
}

/* ===================================
   LOYALEN - LIFESTYLE GRID (ASYMMETRIC MASONRY)
   
   FIXED SIZE BOXES mit asymmetrischem Layout!
   
   REPLACE das vorherige CSS komplett mit diesem!
   =================================== */

/* LIFESTYLE SHOWCASE CONTAINER */
.loyalen-lifestyle-showcase {
  padding: 80px 0;
  background: #FAFAFA;
}

/* LIFESTYLE GRID - ASYMMETRIC MASONRY LAYOUT */
.loyalen-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 300px; /* FIXED BASE HEIGHT */
  gap: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* LIFESTYLE ITEMS - FIXED SIZES */
.loyalen-lifestyle-item {
  position: relative;
  width: 100%;
  height: 100%; /* Nimmt Grid Cell Größe */
  overflow: hidden;
  border-radius: 8px;
  background: #E5E5E5;
}

/* SIZE VARIANTS - ASYMMETRIC */
.loyalen-lifestyle-item.tall {
  grid-row: span 2; /* 2 Reihen hoch */
  grid-column: span 1;
}

.loyalen-lifestyle-item.wide {
  grid-row: span 1;
  grid-column: span 2; /* 2 Spalten breit */
}

.loyalen-lifestyle-item.normal {
  grid-row: span 1;
  grid-column: span 1;
}

/* LIFESTYLE IMAGE - FILLS BOX */
.loyalen-lifestyle-img-real {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* WICHTIG: Bild passt sich Box an! */
  object-position: center;
  transition: transform 0.3s ease;
}

.loyalen-lifestyle-item:hover .loyalen-lifestyle-img-real {
  transform: scale(1.05);
}

/* PLACEHOLDER */
.loyalen-lifestyle-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E5E5E5 0%, #D0D0D0 100%);
  color: #999;
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  padding: 20px;
}

/* SHOWCASE HEADER */
.loyalen-showcase-header {
  text-align: center;
  margin-bottom: 60px;
}

.loyalen-section-eyebrow {
  font-family: var(--font-accent, 'Righteous', sans-serif);
  font-size: 1.2rem;
  color: var(--primary, #D84E42);
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.loyalen-section-title {
  font-family: var(--font-heading, 'Archivo Black', sans-serif);
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.loyalen-showcase-subtitle {
  font-size: 1.3rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  .loyalen-lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .loyalen-lifestyle-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 12px;
  }
  
  .loyalen-lifestyle-item.tall,
  .loyalen-lifestyle-item.wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .loyalen-section-title {
    font-size: 2.5rem;
    letter-spacing: -2px;
  }
  
  .loyalen-showcase-subtitle {
    font-size: 1.1rem;
  }
}

/* ================================
   LOYALEN PRODUCT CUSTOMIZER STYLES
   Version: 2.0
   Features: 13 Colors, Mobile Responsive, 90s Film Aesthetic
   ================================ */

/* ================================
   VARIABLES & RESET
   ================================ */
:root {
  /* LOYALEN Brand Colors */
  --color-primary: #D84E42;        /* Terracotta Red */
  --color-secondary: #2A4A3F;      /* Forest Green */
  --color-tertiary: #FFFBF5;       /* Cream */
  --color-text: #2C2C2C;           /* Charcoal */
  --color-accent: #8B7E74;         /* Warm Gray */
  
  /* UI Colors */
  --color-error: #e83131;
  --color-success: #2A4A3F;
  --color-border: #E0E0E0;
  --color-border-focus: #D84E42;
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 40px;
  --spacing-3xl: 60px;
  --spacing-4xl: 80px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 30px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 4px 12px rgba(216, 78, 66, 0.3);
  --shadow-button-hover: 0 6px 16px rgba(216, 78, 66, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-accent: 'Righteous', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.loyalen-customizer {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background-color: var(--color-tertiary);
  min-height: 100vh;
}

.loyalen-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ================================
   SECTION HEADER
   ================================ */
.customizer-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.customizer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text);
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.customizer-subtitle {
  font-size: 1.125rem;
  color: var(--color-accent);
  margin: 0;
  font-weight: 400;
}

/* ================================
   MAIN GRID LAYOUT
   ================================ */
.customizer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .customizer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

/* ================================
   FORM COLUMN
   ================================ */
.customizer-form {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .customizer-form {
    padding: var(--spacing-lg);
  }
}

/* ================================
   FORM GROUPS
   ================================ */
.form-group {
  margin-bottom: var(--spacing-xl);
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.required-asterisk {
  color: var(--color-error);
  margin-left: 4px;
}

.optional-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 400;
  margin-left: 6px;
}

.form-help-text {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-top: var(--spacing-xs);
  margin-bottom: 0;
  line-height: 1.4;
}

/* ================================
   FILE UPLOAD SECTION
   ================================ */
.upload-section .upload-instructions {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.upload-section .upload-instructions p {
  margin: 0;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 2px dashed var(--color-primary);
  border-radius: var(--radius-sm);
  background-color: rgba(216, 78, 66, 0.04);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: var(--spacing-lg);
}

.file-upload-label:hover {
  border-color: var(--color-secondary);
  background-color: rgba(42, 74, 63, 0.04);
  transform: translateY(-2px);
}

.upload-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-sm);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.upload-text {
  font-family: var(--font-accent);
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
  margin-bottom: var(--spacing-xs);
}

.upload-help {
  font-size: 0.8rem;
  color: var(--color-accent);
  text-align: center;
}

/* File Preview */
.file-preview {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.file-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.remove-file {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(216, 78, 66, 0.95);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.remove-file:hover {
  background: rgba(200, 61, 50, 1);
  transform: scale(1.1);
}

.remove-file:active {
  transform: scale(0.95);
}

/* ================================
   COLOR SWATCHES
   ================================ */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: var(--spacing-md);
}

@media (max-width: 480px) {
  .color-swatches {
    grid-template-columns: repeat(3, 1fr);
  }
}

.color-option {
  position: relative;
}

.color-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
}

.color-option label:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.color-option input[type="radio"]:checked + label {
  background-color: rgba(216, 78, 66, 0.08);
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.color-swatch {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-fast);
}

.color-option label:hover .color-swatch {
  transform: scale(1.05);
}

.color-option input[type="radio"]:checked + label .color-swatch {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.color-name {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.2;
  max-width: 90px;
}

/* ================================
   RADIO GROUPS
   ================================ */
.radio-group {
  display: flex;
  gap: var(--spacing-md);
}

@media (max-width: 480px) {
  .radio-group {
    flex-direction: column;
  }
}

.radio-option {
  flex: 1;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-accent);
  font-size: 1rem;
  background: white;
}

.radio-option label:hover {
  border-color: var(--color-primary);
  background-color: rgba(216, 78, 66, 0.04);
}

.radio-option input[type="radio"]:checked + label {
  border-color: var(--color-primary);
  background-color: rgba(216, 78, 66, 0.08);
  color: var(--color-primary);
  font-weight: 600;
}

.radio-option label .emoji {
  font-size: 1.5rem;
}

/* ================================
   SELECT & INPUT FIELDS
   ================================ */
.form-select,
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: white;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%232C2C2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px rgba(216, 78, 66, 0.1);
}

.form-input::placeholder {
  color: var(--color-accent);
  opacity: 0.6;
}

/* Input validation states */
.form-input:invalid:not(:placeholder-shown) {
  border-color: var(--color-error);
}

.form-input:valid:not(:placeholder-shown) {
  border-color: var(--color-success);
}

/* ================================
   CHECKBOX GROUPS
   ================================ */
.checkbox-group {
  margin-top: var(--spacing-lg);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.checkbox-text {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.checkbox-text a:hover {
  opacity: 0.8;
}

/* ================================
   INFO BOX
   ================================ */
.info-box {
  background-color: rgba(42, 74, 63, 0.06);
  border-left: 4px solid var(--color-secondary);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-sm);
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.info-content {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}

.info-content p {
  margin: 0;
}

.info-content strong {
  font-weight: 600;
}

/* ================================
   ADD TO CART BUTTON
   ================================ */
.btn-add-to-cart {
  width: 100%;
  padding: 18px 32px;
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 1.125rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-button);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.btn-add-to-cart:hover {
  background-color: #C23D32;
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.btn-add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  transition: opacity var(--transition-fast);
}

.btn-add-to-cart.loading .btn-text {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ================================
   PREVIEW COLUMN
   ================================ */
.customizer-preview {
  position: relative;
}

.preview-sticky {
  position: sticky;
  top: 120px;
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 1024px) {
  .preview-sticky {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .preview-sticky {
    padding: var(--spacing-lg);
  }
}

.preview-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: var(--color-text);
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.2;
}

.preview-subtitle {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin: 0 0 var(--spacing-xl) 0;
}

/* ================================
   MOCKUP CONTAINER
   ================================ */
.mockup-container {
  position: relative;
  min-height: 500px;
}

@media (max-width: 768px) {
  .mockup-container {
    min-height: 400px;
  }
}

.mockup-image {
  animation: mockupFadeIn var(--transition-normal);
}

@keyframes mockupFadeIn {
  from { 
    opacity: 0; 
    transform: scale(0.98);
  }
  to { 
    opacity: 1; 
    transform: scale(1);
  }
}

.mockup-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.mockup-missing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-color: rgba(232, 49, 49, 0.05);
  border: 2px dashed var(--color-error);
  border-radius: var(--radius-sm);
  padding: var(--spacing-xl);
  text-align: center;
}

.mockup-missing p {
  font-family: var(--font-accent);
  color: var(--color-error);
  margin: 0 0 var(--spacing-xs) 0;
}

.mockup-missing small {
  color: var(--color-accent);
  font-size: 0.875rem;
}

/* Preset Info Box */
.preset-info {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.preset-info p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.6;
}

.preset-info strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* ================================
   MOCKUP PLACEHOLDER
   ================================ */
.mockup-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(216, 78, 66, 0.03) 0%, rgba(42, 74, 63, 0.03) 100%);
  border-radius: var(--radius-sm);
  padding: var(--spacing-2xl);
  text-align: center;
}

@media (max-width: 768px) {
  .mockup-placeholder {
    min-height: 400px;
    padding: var(--spacing-lg);
  }
}

.placeholder-content {
  max-width: 300px;
}

.placeholder-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: var(--spacing-md);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-placeholder p {
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 480px) {
  .loyalen-customizer {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .customizer-title {
    font-size: 1.75rem;
  }
  
  .color-swatches {
    gap: var(--spacing-sm);
  }
  
  .color-swatch {
    width: 48px;
    height: 48px;
  }
  
  .btn-add-to-cart {
    padding: 16px 24px;
    font-size: 1rem;
  }
}

/* ================================
   ACCESSIBILITY
   ================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
  .loyalen-customizer {
    background: white;
  }
  
  .btn-add-to-cart,
  .file-upload-label {
    display: none;
  }
}
/* ================================
   LOYALEN PRODUCT CUSTOMIZER STYLES
   Version: 3.0 - UPDATED!
   
   CHANGES:
   - BIGGER FONTS (all +30-50%)
   - BROWN SELECTION BORDER (#8B7E74)
   - LARGER COLOR SWATCHES (70px → 85px)
   - STICKY PREVIEW (stays while scrolling!)
   - Better spacing & improved vibe
   
   Features: 14 Colors, Mobile Responsive, 90s Film Aesthetic
   ================================ */

/* ================================
   VARIABLES & RESET
   ================================ */
:root {
  /* LOYALEN Brand Colors */
  --color-primary: #D84E42;
  --color-secondary: #2A4A3F;
  --color-tertiary: #FFFBF5;
  --color-text: #2C2C2C;
  --color-accent: #8B7E74;
  --color-brown-border: #8B7E74;  /* NEW: Brown selection border! */
  
  /* UI Colors */
  --color-error: #e83131;
  --color-success: #2A4A3F;
  --color-border: #E0E0E0;
  --color-border-focus: #D84E42;
  
  /* Spacing - INCREASED! */
  --spacing-xs: 10px;
  --spacing-sm: 14px;
  --spacing-md: 20px;
  --spacing-lg: 28px;
  --spacing-xl: 38px;
  --spacing-2xl: 48px;
  --spacing-3xl: 70px;
  --spacing-4xl: 90px;
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 6px 30px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 4px 12px rgba(216, 78, 66, 0.3);
  --shadow-button-hover: 0 6px 16px rgba(216, 78, 66, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-accent: 'Righteous', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.loyalen-custom {
  padding: var(--spacing-4xl) var(--spacing-lg);
  background-color: var(--color-tertiary);
  min-height: 100vh;
}

.loyalen-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ================================
   SECTION HEADER - BIGGER!
   ================================ */
.customizer-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
}

.customizer-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem) !important;  /* +40% BIGGER! */
  color: var(--color-text);
  margin: 0 0 var(--spacing-md) 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.customizer-subtitle {
  font-size: 1.4rem !important;  /* +25% BIGGER! */
  color: var(--color-accent);
  margin: 0;
  font-weight: 400;
}

/* ================================
   MAIN GRID LAYOUT
   ================================ */
.customizer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: start;
}

@media (max-width: 1024px) {
  .customizer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

/* ================================
   FORM COLUMN
   ================================ */
.customizer-form {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .customizer-form {
    padding: var(--spacing-lg);
  }
}

/* ================================
   FORM GROUPS
   ================================ */
.form-group {
  margin-bottom: var(--spacing-xl);
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.25rem !important;  /* +25% BIGGER! */
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.required-asterisk {
  color: var(--color-error);
  margin-left: 4px;
}

.optional-text {
  font-family: var(--font-body);
  font-size: 1.05rem !important;  /* +20% BIGGER! */
  color: var(--color-accent);
  font-weight: 400;
  margin-left: 6px;
}

.form-help-text {
  font-size: 1.05rem !important;  /* +20% BIGGER! */
  color: var(--color-accent);
  margin-top: var(--spacing-xs);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ================================
   FILE UPLOAD SECTION
   ================================ */
.upload-section .upload-instructions {
  font-size: 1.05rem !important;  /* +20% BIGGER! */
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.upload-section .upload-instructions p {
  margin: 0;
}

.file-upload-wrapper {
  position: relative;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;  /* +20px BIGGER! */
  border: 3px dashed var(--color-primary);  /* Thicker border! */
  border-radius: var(--radius-md);
  background-color: rgba(216, 78, 66, 0.04);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: var(--spacing-lg);
}

.file-upload-label:hover {
  border-color: var(--color-secondary);
  background-color: rgba(42, 74, 63, 0.04);
  transform: translateY(-2px);
}

.upload-icon {
  font-size: 4rem !important;  /* +33% BIGGER! */
  margin-bottom: var(--spacing-sm);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.upload-text {
  font-family: var(--font-accent);
  color: var(--color-text);
  font-size: 1.2rem !important;  /* +20% BIGGER! */
  text-align: center;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.upload-help {
  font-size: 1rem !important;  /* +25% BIGGER! */
  color: var(--color-accent);
  text-align: center;
}

/* File Preview */
.file-preview {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  animation: fadeIn var(--transition-normal);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.file-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.remove-file {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(216, 78, 66, 0.95);
  color: white;
  border: none;
  width: 40px;  /* +4px BIGGER! */
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.remove-file:hover {
  background: rgba(200, 61, 50, 1);
  transform: scale(1.1);
}

.remove-file:active {
  transform: scale(0.95);
}

/* ================================
   COLOR SWATCHES - BIGGER + BROWN BORDER!
   ================================ */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));  /* Wider columns! */
  gap: var(--spacing-md);
}

@media (max-width: 480px) {
  .color-swatches {
    grid-template-columns: repeat(3, 1fr);
  }
}

.color-option {
  position: relative;
}

.color-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.color-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

.color-option label:hover {
  background-color: rgba(139, 126, 116, 0.08);  /* Light brown hover! */
}

/* BROWN SELECTION BORDER! */
.color-option input[type="radio"]:checked + label {
  background-color: rgba(139, 126, 116, 0.12);  /* Brown tint! */
  outline: 3px solid var(--color-brown-border);  /* BROWN BORDER! */
  outline-offset: 2px;
}

.color-swatch {
  width: 85px !important;  /* +29px BIGGER! */
  height: 85px !important;
  border-radius: var(--radius-full);
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition-fast);
}

.color-option label:hover .color-swatch {
  transform: scale(1.08);
}

.color-option input[type="radio"]:checked + label .color-swatch {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(139, 126, 116, 0.35);  /* Brown shadow! */
}

.color-name {
  font-size: 1rem !important;  /* +25% BIGGER! */
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
  max-width: 105px;
}

/* ================================
   RADIO GROUPS - BIGGER!
   ================================ */
.radio-group {
  display: flex;
  gap: var(--spacing-md);
}

@media (max-width: 480px) {
  .radio-group {
    flex-direction: column;
  }
}

.radio-option {
  flex: 1;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-lg);
  border: 3px solid var(--color-border);  /* Thicker! */
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-accent);
  font-size: 1.2rem !important;  /* +20% BIGGER! */
  background: white;
}

.radio-option label:hover {
  border-color: var(--color-brown-border);  /* BROWN hover! */
  background-color: rgba(139, 126, 116, 0.08);
}

/* BROWN SELECTION! */
.radio-option input[type="radio"]:checked + label {
  border-color: var(--color-brown-border);  /* BROWN! */
  background-color: rgba(139, 126, 116, 0.12);
  color: var(--color-text);
  font-weight: 700;
}

.radio-option label .emoji {
  font-size: 1.8rem !important;  /* +20% BIGGER! */
}

/* ================================
   SELECT & INPUT FIELDS - BIGGER!
   ================================ */
.form-select,
.form-input {
  width: 100%;
  padding: 16px 18px !important;  /* +2px BIGGER! */
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1.15rem !important;  /* +15% BIGGER! */
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: white;
  transition: all var(--transition-fast);
  appearance: none;
  background-image: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%232C2C2C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 52px;
}

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--color-brown-border);  /* BROWN focus! */
  box-shadow: 0 0 0 3px rgba(139, 126, 116, 0.15);  /* Brown glow! */
}

.form-input::placeholder {
  color: var(--color-accent);
  opacity: 0.6;
}

/* ================================
   CHECKBOX GROUPS - BIGGER TEXT!
   ================================ */
.checkbox-group {
  margin-top: var(--spacing-lg);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 22px !important;  /* +2px BIGGER! */
  height: 22px !important;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--color-brown-border);  /* BROWN checkboxes! */
}

.checkbox-text {
  font-size: 1.05rem !important;  /* +20% BIGGER! */
  color: var(--color-text);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.checkbox-text a:hover {
  opacity: 0.8;
}

/* ================================
   INFO BOX - BIGGER!
   ================================ */
.info-box {
  background-color: rgba(42, 74, 63, 0.08);
  border-left: 4px solid var(--color-secondary);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  display: flex;
  gap: var(--spacing-sm);
  align-items: flex-start;
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.info-icon {
  font-size: 1.8rem !important;  /* +20% BIGGER! */
  flex-shrink: 0;
  line-height: 1;
}

.info-content {
  font-size: 1.05rem !important;  /* +17% BIGGER! */
  color: var(--color-text);
  line-height: 1.7;
}

.info-content p {
  margin: 0;
}

.info-content strong {
  font-weight: 700;
}

/* ================================
   ADD TO CART BUTTON - BIGGER!
   ================================ */
.btn-add-to-cart {
  width: 100%;
  padding: 20px 36px !important;  /* +2px BIGGER! */
  background-color: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-accent);
  font-size: 1.35rem !important;  /* +20% BIGGER! */
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-button);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-weight: 700;
}

.btn-add-to-cart:hover {
  background-color: #C23D32;
  transform: translateY(-2px);
  box-shadow: var(--shadow-button-hover);
}

.btn-add-to-cart:active {
  transform: translateY(0);
}

.btn-add-to-cart:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-text {
  transition: opacity var(--transition-fast);
}

.btn-add-to-cart.loading .btn-text {
  opacity: 0;
}

.btn-loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  animation: rotate 1s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ================================
   PREVIEW COLUMN - NOW STICKY! 🚀
   ================================ */
.customizer-preview {
  position: relative;
}

.preview-sticky {
  position: sticky !important;  /* STICKY! */
  top: 120px !important;  /* Stays 120px from top while scrolling! */
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-height: calc(100vh - 140px);  /* Don't exceed viewport! */
  overflow-y: auto;  /* Scroll if too tall! */
}

@media (max-width: 1024px) {
  .preview-sticky {
    position: relative !important;
    top: 0 !important;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .preview-sticky {
    padding: var(--spacing-lg);
  }
}

.preview-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.2rem) !important;  /* +25% BIGGER! */
  color: var(--color-text);
  margin: 0 0 var(--spacing-xs) 0;
  line-height: 1.2;
}

.preview-subtitle {
  font-size: 1.1rem !important;  /* +22% BIGGER! */
  color: var(--color-accent);
  margin: 0 0 var(--spacing-xl) 0;
}

/* ================================
   MOCKUP CONTAINER
   ================================ */
.mockup-container {
  position: relative;
  min-height: 500px;
}

@media (max-width: 768px) {
  .mockup-container {
    min-height: 400px;
  }
}

.mockup-image {
  animation: mockupFadeIn var(--transition-normal);
}

@keyframes mockupFadeIn {
  from { 
    opacity: 0; 
    transform: scale(0.98);
  }
  to { 
    opacity: 1; 
    transform: scale(1);
  }
}

.mockup-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

.mockup-missing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background-color: rgba(232, 49, 49, 0.05);
  border: 2px dashed var(--color-error);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  text-align: center;
}

.mockup-missing p {
  font-family: var(--font-accent);
  color: var(--color-error);
  margin: 0 0 var(--spacing-xs) 0;
  font-size: 1.1rem !important;
}

.mockup-missing small {
  color: var(--color-accent);
  font-size: 1rem !important;
}

/* Preset Info Box */
.preset-info {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.preset-info p {
  margin: 0;
  font-size: 1.05rem !important;  /* +20% BIGGER! */
  color: var(--color-text);
  line-height: 1.7;
}

.preset-info strong {
  font-weight: 700;
  color: var(--color-primary);
}

/* ================================
   MOCKUP PLACEHOLDER - BIGGER TEXT!
   ================================ */
.mockup-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(216, 78, 66, 0.04) 0%, rgba(42, 74, 63, 0.04) 100%);
  border-radius: var(--radius-md);
  padding: var(--spacing-2xl);
  text-align: center;
}

@media (max-width: 768px) {
  .mockup-placeholder {
    min-height: 400px;
    padding: var(--spacing-lg);
  }
}

.placeholder-content {
  max-width: 350px;
}

.placeholder-icon {
  font-size: 5rem !important;  /* +25% BIGGER! */
  display: block;
  margin-bottom: var(--spacing-md);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mockup-placeholder p {
  color: var(--color-accent);
  font-size: 1.15rem !important;  /* +15% BIGGER! */
  line-height: 1.6;
  margin: 0;
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 480px) {
  .loyalen-custom {
    padding: var(--spacing-2xl) var(--spacing-md);
  }
  
  .customizer-title {
    font-size: 2rem !important;
  }
  
  .color-swatches {
    gap: var(--spacing-sm);
  }
  
  .color-swatch {
    width: 70px !important;
    height: 70px !important;
  }
  
  .btn-add-to-cart {
    padding: 18px 28px !important;
    font-size: 1.2rem !important;
  }
}

/* ================================
   ACCESSIBILITY
   ================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard navigation - BROWN! */
*:focus-visible {
  outline: 3px solid var(--color-brown-border) !important;
  outline-offset: 4px;
}

/* ================================
   PRINT STYLES
   ================================ */
@media print {
  .loyalen-custom {
    background: white;
  }
  
  .btn-add-to-cart,
  .file-upload-label {
    display: none;
  }
}
/* FIX: Preview sticky OHNE internen Scroll */
.customizer-preview {
  position: relative !important;
  align-self: start !important;
}

.preview-sticky {
  position: sticky !important;
  top: 100px !important;
  background: white;
  padding: 28px !important;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* ENTFERNT: max-height und overflow-y */
  max-height: none !important;
  overflow-y: visible !important;
  overflow: visible !important;
}

/* FIX: Mockup Bild volle Größe */
.mockup-container {
  position: relative;
  min-height: 0 !important;
}

.mockup-image img {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 12px;
}

/* FIX: Stickerei-Farben kompakter */
.preset-info {
  margin-top: 12px !important;
  padding: 10px 14px !important;
  background-color: rgba(216, 78, 66, 0.05) !important;
  border: 1px solid rgba(216, 78, 66, 0.15) !important;
  border-radius: 10px;
}

.preset-info p {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* FIX: Preview Titel & Subtitle kompakter */
.preview-title {
  font-size: 1.4rem !important;
  margin: 0 0 4px 0 !important;
}

.preview-subtitle {
  font-size: 0.9rem !important;
  margin: 0 0 16px 0 !important;
}

/* FIX: Placeholder kleiner damit es nicht riesig leer aussieht */
.mockup-placeholder {
  min-height: 350px !important;
}

/* TABLET: Preview nicht mehr sticky */
@media (max-width: 1024px) {
  .preview-sticky {
    position: relative !important;
    top: 0 !important;
  }
}

/* ================================
   LOYALEN STICKY PREVIEW - FINAL FIX V6
   
   ERSETZT den alten V4 UND V5 Patch!
   Lösche BEIDE alten Patches und füge
   NUR diesen Block ganz am ENDE ein.
   ================================ */

/* Desktop: 2-Spalten + Sticky Preview */
@media (min-width: 1025px) {
  .customizer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 50px !important;
    align-items: start !important;
  }

  .customizer-preview {
    align-self: stretch !important;
  }

  .preview-sticky {
    position: sticky !important;
    top: 100px !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
  }
}

/* Tablet/Mobile: 1 Spalte, kein Sticky */
@media (max-width: 1024px) {
  .customizer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .preview-sticky {
    position: relative !important;
    top: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }
}

/* Stickerei-Farben kompakter */
.preset-info {
  margin-top: 12px !important;
  padding: 10px 14px !important;
  background-color: rgba(216, 78, 66, 0.05) !important;
  border: 1px solid rgba(216, 78, 66, 0.15) !important;
  border-radius: 10px;
}

.preset-info p {
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  margin: 0 !important;
}

/* Preview Header kompakter */
.preview-title {
  font-size: 1.4rem !important;
  margin: 0 0 4px 0 !important;
}

.preview-subtitle {
  font-size: 0.9rem !important;
  margin: 0 0 16px 0 !important;
}

.mockup-container {
  min-height: 0 !important;
}

.mockup-placeholder {
  min-height: 350px !important;
}
/* ============================================
   LOYALEN - MOBILE OPTIMIZATION: HERO SLIDESHOW
   ============================================
   
   NUR Mobile (max-width: 749px) wird beeinflusst!
   Desktop bleibt 100% unangetastet.
   
   INSTALLATION:
   Option A: Inhalt am ENDE von loyalen-custom.css einfügen
   Option B: Als eigene Datei in Assets hochladen und in
             theme.liquid einbinden:
             {{ 'loyalen-mobile-hero-slideshow.css' | asset_url | stylesheet_tag }}
   
   ============================================ */

@media screen and (max-width: 749px) {

  /* ---- HERO SLIDESHOW: Kompakte Höhe ---- */
  .loyalen-hero-slideshow {
    height: 320px !important;
    min-height: 320px !important;
  }

  .loyalen-hero-slide {
    height: 320px !important;
    min-height: 320px !important;
  }

  .loyalen-hero-wrapper {
    height: 320px !important;
  }

  /* ---- CONTENT: Weniger Padding, alles enger ---- */
  .loyalen-hero-content {
    width: 92%;
    padding: 0 16px;
  }

  /* ---- EYEBROW: Kleiner ---- */
  .loyalen-hero-eyebrow {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
    letter-spacing: 1px;
  }

  /* ---- TITLE: Von 3.5rem → 2rem ---- */
  .loyalen-hero-title {
    font-size: 2rem !important;
    letter-spacing: -1px !important;
    margin-bottom: 12px !important;
    line-height: 1.05 !important;
  }

  /* ---- SUBTITLE: Deutlich kompakter ---- */
  .loyalen-hero-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 18px !important;
    line-height: 1.5 !important;
    max-width: 100%;
  }

  /* ---- CTA BUTTON: Kompakter ---- */
  .loyalen-hero-cta {
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    border-radius: 40px;
  }

  /* ---- DOTS: Kleiner + näher am unteren Rand ---- */
  .loyalen-hero-dots {
    bottom: 14px !important;
    gap: 8px !important;
  }

  .loyalen-hero-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .loyalen-hero-dot.active {
    width: 22px !important;
    border-radius: 5px !important;
  }

  /* ---- OVERLAY: Etwas dunkler für bessere Lesbarkeit bei kleinem Text ---- */
  .loyalen-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.6) 100%
    ) !important;
  }
}
/* ============================================
   LOYALEN - MOBILE OPTIMIZATION: HOW IT WORKS
   ============================================
   
   NUR Mobile (max-width: 749px) wird beeinflusst!
   Desktop bleibt 100% unangetastet.
   
   INSTALLATION:
   Am ENDE von loyalen-custom.css einfügen.
   
   ============================================ */

@media screen and (max-width: 749px) {

  /* ---- SECTION: Viel weniger Padding ---- */
  .loyalen-how-it-works {
    padding: 50px 16px !important;
  }

  /* ---- HEADER: Kompakter ---- */
  .loyalen-how-it-works .loyalen-section-header {
    margin-bottom: 30px !important;
  }

  .loyalen-how-it-works .loyalen-section-eyebrow {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .loyalen-how-it-works .loyalen-section-title {
    font-size: 1.8rem !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
  }

  /* ---- STEPS GRID: Enger gestapelt ---- */
  .loyalen-steps-grid {
    gap: 14px !important;
  }

  /* ---- STEP CARDS: Horizontal-Layout + kompakt ---- */
  .loyalen-step-card {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    grid-template-rows: auto auto !important;
    text-align: left !important;
    padding: 18px 20px !important;
    border-radius: 16px !important;
    gap: 0 14px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
  }

  .loyalen-step-card:hover {
    transform: none !important;
  }

  /* ---- STEP NUMBER: Klein als Kreis links oben ---- */
  .loyalen-step-number {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    font-size: 1.4rem !important;
    margin-bottom: 0 !important;
    width: 56px !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--light-bg, #F5EFE6) !important;
    border-radius: 50% !important;
    color: var(--primary, #D84E42) !important;
    line-height: 1 !important;
    align-self: center !important;
  }

  /* ---- ICON: Versteckt auf Mobile (Nummer reicht) ---- */
  .loyalen-step-icon {
    display: none !important;
  }

  /* ---- TITLE: Rechts neben der Nummer ---- */
  .loyalen-step-title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 1.2rem !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.5px !important;
    align-self: end !important;
  }

  /* ---- DESCRIPTION: Unter dem Titel ---- */
  .loyalen-step-description {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: #888 !important;
    align-self: start !important;
  }
}
/* ============================================
   LOYALEN - MOBILE OPTIMIZATION: FEATURED PRODUCTS
   ============================================
   
   NUR Mobile (max-width: 749px) wird beeinflusst!
   Desktop bleibt 100% unangetastet.
   
   INSTALLATION:
   Am ENDE von loyalen-custom.css einfügen.
   
   ============================================ */

@media screen and (max-width: 749px) {

  /* ---- SECTION: Weniger Padding ---- */
  .loyalen-featured-products {
    padding: 50px 16px !important;
  }

  /* ---- HEADER: Kompakter ---- */
  .loyalen-featured-products .loyalen-section-header {
    margin-bottom: 24px !important;
  }

  .loyalen-featured-products .loyalen-section-eyebrow {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .loyalen-featured-products .loyalen-section-title {
    font-size: 1.8rem !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
  }

  /* ---- PRODUCTS GRID: Enger ---- */
  .loyalen-products-grid {
    gap: 16px !important;
    margin-top: 0 !important;
  }

  /* ---- PRODUCT CARDS: Horizontal-Layout ---- */
  .loyalen-product-card {
    display: grid !important;
    grid-template-columns: 130px 1fr !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
  }

  .loyalen-product-card:hover {
    transform: none !important;
  }

  /* ---- IMAGE: Quadratisch links ---- */
  .loyalen-product-image {
    height: 100% !important;
    min-height: 160px !important;
    border-radius: 0 !important;
  }

  /* ---- TAG: Kleiner ---- */
  .loyalen-product-card-tag {
    top: 8px !important;
    right: 8px !important;
    padding: 4px 10px !important;
    font-size: 0.65rem !important;
    border-radius: 10px !important;
  }

  /* ---- INFO: Kompakt rechts ---- */
  .loyalen-product-card-info {
    padding: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .loyalen-product-name {
    font-size: 1.3rem !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.5px !important;
  }

  .loyalen-product-card-description {
    font-size: 0.78rem !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
    /* Max 3 Zeilen, dann abschneiden */
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .loyalen-product-card-price {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
  }

  .loyalen-product-cta {
    padding: 10px 20px !important;
    font-size: 0.82rem !important;
    border-radius: 20px !important;
    text-align: center !important;
  }

  /* ---- COMING SOON: Auch kompakt ---- */
  .loyalen-coming-soon {
    padding: 10px 20px !important;
    font-size: 0.82rem !important;
    border-radius: 20px !important;
  }
}
/* ============================================
   LOYALEN - MOBILE OPTIMIZATION: LIFESTYLE SHOWCASE
   ============================================
   
   NUR Mobile (max-width: 749px) wird beeinflusst!
   Desktop bleibt 100% unangetastet.
   
   INSTALLATION:
   Am ENDE von loyalen-custom.css einfügen.
   
   ============================================ */

@media screen and (max-width: 749px) {

  /* ---- SECTION: Weniger Padding ---- */
  .loyalen-lifestyle-showcase {
    padding: 50px 16px !important;
  }

  /* ---- HEADER: Kompakter ---- */
  .loyalen-showcase-header {
    margin-bottom: 24px !important;
  }

  .loyalen-lifestyle-showcase .loyalen-section-eyebrow {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  .loyalen-lifestyle-showcase .loyalen-section-title {
    font-size: 1.8rem !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
  }

  .loyalen-showcase-subtitle {
    font-size: 0.85rem !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
  }

  /* ---- GRID: 2 Spalten statt 1 riesiges Bild! ---- */
  .loyalen-lifestyle-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 180px !important;
    gap: 8px !important;
  }

  /* Alle Size-Klassen zurücksetzen auf 1x1 */
  .loyalen-lifestyle-item.tall,
  .loyalen-lifestyle-item.wide,
  .loyalen-lifestyle-item.normal {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* Erstes Bild: Groß (2 Spalten breit) als Eyecatcher */
  .loyalen-lifestyle-item:first-child {
    grid-column: span 2 !important;
    grid-row: span 1 !important;
  }

  .loyalen-lifestyle-item {
    border-radius: 10px !important;
  }

  /* Placeholder kleiner */
  .loyalen-lifestyle-img-placeholder {
    min-height: 100% !important;
    font-size: 0.9rem !important;
    padding: 12px !important;
  }
}
/* ============================================
   LOYALEN - MOBILE OPTIMIZATION: HERO PRODUCT
   ============================================
   
   VERSION 2 - FIXED!
   
   NUR Mobile (max-width: 749px) wird beeinflusst!
   Desktop bleibt 100% unangetastet.
   
   LAYOUT AUF MOBILE:
   1. Tag + Produktname + Subtitle + Preis
   2. Mockup-Bild + Thumbnails
   3. Customizer (Farbe, Größe, Upload)
   4. Quantity + CTA Button
   5. Features (2x2 Grid)
   6. Accordion
   
   INSTALLATION:
   Am ENDE von loyalen-custom.css einfügen.
   (Alten Hero Product Block vorher LÖSCHEN falls vorhanden!)
   
   ============================================ */

@media screen and (max-width: 749px) {

  /* ---- SECTION: Weniger Padding ---- */
  .loyalen-hero-product {
    padding: 40px 0 60px !important;
    margin-top: 10px !important;
  }

  /* ---- GRID → FLEX ---- */
  .loyalen-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 16px !important;
  }

  /* ---- PRODUCT INFO: OBEN (order:1) ---- */
  .loyalen-product-info {
    order: 1 !important;
    padding-top: 0 !important;
    margin-bottom: 16px !important;
  }

  /* ---- GALLERY: DIREKT DANACH (order:2) ---- */
  .loyalen-gallery {
    order: 2 !important;
    position: relative !important;
    top: 0 !important;
    margin-bottom: 16px !important;
  }

  /* ---- Beschreibung ausblenden (spart Platz) ---- */
  .loyalen-product-info > .loyalen-description {
    display: none !important;
  }

  /* ---- TAG ---- */
  .loyalen-tag {
    padding: 5px 12px !important;
    font-size: 0.75rem !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
  }

  /* ---- PRODUKTNAME ---- */
  .loyalen-product-title {
    font-size: 2rem !important;
    letter-spacing: -1.5px !important;
    margin-bottom: 4px !important;
    line-height: 1.05 !important;
  }

  /* ---- SUBTITLE ---- */
  .loyalen-product-subtitle {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  /* ---- PREIS ---- */
  .loyalen-price {
    font-size: 1.8rem !important;
    margin-bottom: 0 !important;
  }

  /* ---- MAIN IMAGE ---- */
  .loyalen-main-image {
    height: 320px !important;
    border-radius: 18px !important;
    margin-bottom: 10px !important;
  }

  /* ---- BADGE ---- */
  .loyalen-badge {
    top: 12px !important;
    left: 12px !important;
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
    border-radius: 16px !important;
  }

  /* ---- THUMBNAILS ---- */
  .loyalen-thumbnails {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }

  .loyalen-thumbnail {
    height: 62px !important;
    border-radius: 10px !important;
    border-width: 2px !important;
  }

  /* ============================================
     CUSTOMIZER BOX
     ============================================ */
  .loyalen-customizer {
    padding: 18px 14px !important;
    border-radius: 16px !important;
    margin-bottom: 14px !important;
  }

  .loyalen-customizer-title {
    font-size: 1.4rem !important;
    margin-bottom: 14px !important;
  }

  .loyalen-option-group {
    margin-bottom: 16px !important;
  }

  .loyalen-option-label {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  /* ---- COLOR SWATCHES ---- */
  .loyalen-color-options {
    gap: 8px !important;
  }

  .loyalen-color-swatch {
    width: 38px !important;
    height: 38px !important;
    border-width: 3px !important;
  }

  .loyalen-color-swatch.active {
    box-shadow: 0 0 0 3px var(--light-bg, #F5EFE6) !important;
  }

  /* ---- SIZE OPTIONS: 3er Grid ---- */
  .loyalen-size-options {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .loyalen-size-option {
    padding: 10px 0 !important;
    font-size: 0.9rem !important;
    border-radius: 10px !important;
    min-width: unset !important;
    text-align: center !important;
    border-width: 2px !important;
  }

  /* ============================================
     UPLOAD ZONE: VIEL kleiner!
     ============================================ */
  .loyalen-upload-zone {
    padding: 20px 14px !important;
    border-radius: 14px !important;
    border-width: 2px !important;
  }

  .loyalen-upload-icon {
    font-size: 2rem !important;
    margin-bottom: 6px !important;
  }

  .loyalen-upload-title {
    font-size: 1.1rem !important;
    margin-bottom: 4px !important;
  }

  .loyalen-upload-subtitle {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .hero-upload-preview {
    border-radius: 12px !important;
    border-width: 2px !important;
  }

  .hero-upload-preview img {
    max-height: 130px !important;
  }

  .hero-upload-success {
    padding: 8px !important;
    font-size: 0.82rem !important;
  }

  /* ============================================
     ADD TO CART
     ============================================ */
  .loyalen-add-to-cart {
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .loyalen-quantity {
    padding: 10px 12px !important;
    gap: 8px !important;
    border-radius: 12px !important;
    border-width: 2px !important;
    flex-shrink: 0;
  }

  .loyalen-qty-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
  }

  .loyalen-qty-value {
    font-size: 1rem !important;
    min-width: 20px !important;
  }

  .loyalen-btn-cart {
    padding: 14px 16px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
  }

  /* ============================================
     FEATURES: 2x2 GRID!
     ============================================ */
  .loyalen-features {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .loyalen-feature-item {
    padding: 12px 10px !important;
    border-radius: 12px !important;
    gap: 8px !important;
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
  }

  .loyalen-feature-icon {
    font-size: 1.4rem !important;
  }

  .loyalen-feature-title {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
  }

  .loyalen-feature-description {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }

  /* ============================================
     ACCORDION
     ============================================ */
  .loyalen-accordion-group {
    margin-top: 14px !important;
  }

  .loyalen-accordion-header {
    padding: 10px 0 !important;
  }

  .loyalen-accordion-title {
    font-size: 0.82rem !important;
  }

  .loyalen-accordion-arrow {
    width: 24px !important;
    height: 24px !important;
  }

  .loyalen-accordion-body {
    font-size: 0.78rem !important;
    padding-bottom: 10px !important;
  }
}
