/** Shopify CDN: Minification failed

Line 3856:1 Expected "}" to go with "{"

**/
/* TRUST8 STYLES - NUR PRODUKTKARTEN GEÄNDERT, REST ORIGINAL */

:root {
    --white: 
#FFFFFF;
    --pastel-blue: 
#333333;        /* Dunkelgrau für Buttons /
    --pastel-blue-hover: 
#555555;  / Helleres Grau für Hover /
    --pastel-mint: 
#F8F8F8;        / Helles Grau für Container /
    --pastel-pink: 
#F0F0F0;        / Mittelgrau /
    --warm-beige: 
#E8E8E8;         / Dunkles Grau */

--dark-gray: 
#333333;
    --medium-gray: 
#666666;
    --light-gray: 
#999999;
}

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

body {
    font-family: 'Circular Std', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.5;:root {
    overflow-x: hidden;
}

/* Typography */
.heading-primary {
    font-family: 'Freight Display Pro', Georgia, serif;
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.heading-secondary {
    font-family: 'Freight Display Pro', Georgia, serif;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.heading-tertiary {
    font-family: 'Freight Display Pro', Georgia, serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
}

.body-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
}

.accent-text {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    transform: scale(0.98);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    font-family: 'Freight Display Pro', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--dark-gray);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 400;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--pastel-blue);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pastel-blue);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    stroke: currentColor;
}

.nav-icon:hover {
    transform: scale(1.1);
    color: var(--pastel-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--pastel-blue);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--pastel-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 216, 232, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--pastel-blue);
    border: 2px solid var(--pastel-blue);
}

.btn-secondary:hover {
    background: var(--pastel-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--warm-beige) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin-top: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-title {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-subtitle {
    color: var(--medium-gray);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PRODUKTKARTEN - NUR DIESE GEÄNDERT
   =================================== */

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
    justify-items: center;
}

/* Product Card Container */
.product-card {
    position: relative;
    overflow: visible;
    background: #F8F8F8;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--pastel-blue);
}

/* Product Image - KOMPAKTE ANZEIGE WIE BILD 3 */
.product-image {
    aspect-ratio: 4/5; /* KOMPAKTER RATIO */
    background: #F8F8F8;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px; /* REDUZIERT für weniger Weißraum */
    background: white;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

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

/* Product Placeholder */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--pastel-mint), var(--pastel-pink));
    border-radius: 12px 12px 0 0;
    color: #666;
    font-size: 24px; /* Reduziert */
}

/* Wishlist Button - Links oben */
.product-card .wishlist-btn {
    position: absolute !important;
    top: 8px !important;
    left: 8px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 10 !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;

}

.product-card .wishlist-btn:hover {
    transform: scale(1.1) !important;
    background: var(--pastel-pink) !important;
    color: white !important;
}

/* Quick Add Button - Rechts unten */
.product-quick-add,
.quick-add {
    position: absolute !important;
    bottom: 8px !important;
    right: 8px !important;
    width: 32px !important;
    height: 32px !important;
    background: var(--pastel-blue) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    opacity: 0 !important;
    transform: scale(0.8) !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 2px 8px rgba(184, 216, 232, 0.2) !important;
}

.product-card:hover .product-quick-add,
.product-card:hover .quick-add {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.product-quick-add:hover,
.quick-add:hover {
    background: var(--pastel-blue-hover) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(184, 216, 232, 0.4) !important;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
    letter-spacing: 0.5px;
}

.sale-badge {
    background: #E74C3C;
    color: white;
}

.sold-out-badge {
    background: var(--light-gray);
    color: white;
}

.new-badge {
    background: #27AE60;
    color: white;
}

/* Product Info - KOMPAKTER */
.product-info {
    padding: 16px; /* REDUZIERT */
    text-align: center;
}

.product-name {
    font-weight: 600;
    font-size: 15px; /* REDUZIERT */
    margin-bottom: 6px; /* REDUZIERT */
    color: var(--dark-gray);
    line-height: 1.2;
    min-height: 36px; /* REDUZIERT */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--pastel-blue);
}

.product-price {
    font-family: 'Roboto Mono', monospace;
    font-weight: 600;
    font-size: 16px;
    color: var(--pastel-blue);
    margin-bottom: 8px; /* REDUZIERT */
}

.price-compare {
    text-decoration: line-through;
    color: var(--light-gray);
    margin-left: 8px;
    font-size: 14px;
}

.price-sale {
    color: #E74C3C;
    margin-right: 8px;
}

.price-regular {
    color: #333;
}

/* Color Swatches - KOMPAKTER */
.color-swatches {
    display: flex;
    justify-content: center;
    gap: 3px; /* REDUZIERT */
    margin-top: 6px; /* REDUZIERT */
    flex-wrap: wrap;
}

.color-swatch {
    width: 14px; /* REDUZIERT */
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
    border-color: var(--pastel-blue);
}

/* Color mappings */
.color-swatch[data-color*="black"] { background: #333; }
.color-swatch[data-color*="white"] { background: #fff; border-color: #ccc; }
.color-swatch[data-color*="gray"] { background: #888; }
.color-swatch[data-color*="blue"] { background: #4A90E2; }
.color-swatch[data-color*="red"] { background: #E74C3C; }
.color-swatch[data-color*="green"] { background: #27AE60; }
.color-swatch[data-color*="pink"] { background: var(--pastel-pink); }

/* Loading States für Product Cards */
.product-quick-add.loading,
.quick-add.loading {
    opacity: 0.7 !important;
    pointer-events: none !important;
    animation: pulse 1.5s infinite;
}

.product-quick-add.success,
.quick-add.success {
    background: #28a745 !important;
    animation: success 0.6s ease;
}

.product-quick-add.error,
.quick-add.error {
    background: #dc3545 !important;
    animation: error 0.6s ease;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes success {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes error {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===================================
   AB HIER ALLES ORIGINAL UNVERÄNDERT
   =================================== */

/* Collection Grid */
.collection-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.collection-scroll::-webkit-scrollbar {
    height: 8px;
}

.collection-scroll::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

.collection-scroll::-webkit-scrollbar-thumb {
    background: var(--pastel-blue);
    border-radius: 4px;
}

.collection-scroll .product-card {
    min-width: 300px;
    flex-shrink: 0;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.story-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.story-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-visual {
    height: 400px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.story-visual.visible {
    opacity: 1;
    transform: translateX(0);
}

.story-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Community Grid */
.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 80px;
}

.community-item {
    aspect-ratio: 1;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-mint));
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.community-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.community-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.community-item:hover .community-overlay {
    transform: translateY(0);
}

/* Values Cards */
.value-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 216, 232, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.8;
}

.value-title {
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.value-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Freight Display Pro', Georgia, serif;
    font-size: 32px;
    margin-bottom: 24px;
}

.footer-text {
    color: var(--light-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pastel-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    color: var(--light-gray);
    font-size: 14px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 12px 0;
    z-index: 1000;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--medium-gray);
    font-size: 12px;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--pastel-blue);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .story-grid {
        gap: 48px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-container {
        padding: 0 16px;
    }

    .collection-scroll {
        padding-left: 16px;
    }

    .collection-scroll .product-card {
        min-width: 250px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero {
        padding-top: 70px;
        height: 90vh;
    }
    
    .hero-bg-image {
        object-position: center 20%;
    }
    
    .hero-content {
        margin-top: 10px;
    }
    
    /* MOBILE PRODUKTKARTEN */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .product-image {
        aspect-ratio: 4/5;
    }
    
    .product-image img {
        padding: 6px;
    }
    
    .product-info {
        padding: 14px;
    }
    
    .product-name {
        font-size: 14px;
        min-height: 32px;
    }
    
    .product-price {
        font-size: 15px;
    }
    
    .product-quick-add,
    .quick-add,
    .product-card .wishlist-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 12px !important;
        bottom: 6px !important;
        right: 6px !important;
    }
    
    .product-card .wishlist-btn {
        top: 6px !important;
        left: 6px !important;
    }
    
    .product-badge {
        font-size: 9px;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }
    
    .color-swatches {
        gap: 2px;
        margin-top: 4px;
    }
    
    .color-swatch {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
        padding-top: 60px;
    }
    
    .hero-bg-image {
        object-position: center 25%;
    }

    .section {
        padding: 60px 0;
    }
    
    /* SMALL MOBILE PRODUKTKARTEN */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .product-card {
        border-radius: 10px;
        max-width: none;
    }
    
    .product-image {
        border-radius: 10px 10px 0 0;
        aspect-ratio: 4/5;
    }
    
    .product-image img {
        padding: 5px;
        border-radius: 10px 10px 0 0;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 13px;
        min-height: 30px;
    }
    
    .product-price {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .product-placeholder {
        font-size: 20px;
    }
}

/* Very Small Screens - Keep 2 items but smaller */
@media (max-width: 360px) {
    .products-grid {
        gap: 0.6rem;
    }
    
    .product-image img {
        padding: 4px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-name {
        font-size: 12px;
        min-height: 28px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    .color-swatch {
        width: 10px;
        height: 10px;
    }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.hidden { display: none; }
.visible { display: block; }

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* TRUST8 PRODUCT PAGE - FIXED SIZING */
/* Product Page Layout - Better Proportions */
.product-page {
  padding: 20px 0;
  margin-top: 80px; /* Account for fixed header */
}

.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Gallery - Proper Sizing */
.product-gallery {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.main-image {
  position: relative;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 500px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.image-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
}

/* Thumbnail Gallery - Grid Layout (≤6 images) - REPARIERT */
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 8px;
  max-width: 500px;
}

.thumbnail {
  width: 70px; /* FESTE BREITE */
  height: 70px; /* FESTE HÖHE */
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0; /* VERHINDERT SCHRUMPFEN */
}

.thumbnail:hover {
  border-color: #B8D8E8;
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: #333;
  transform: scale(1.05);
}

/* Scrollable Gallery (>6 images) - REPARIERT */
.thumbnail-gallery-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
  scroll-behavior: smooth;
  max-width: 500px;
}

.thumbnail-gallery-scroll::-webkit-scrollbar {
  height: 4px;
}

.thumbnail-gallery-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.thumbnail-gallery-scroll::-webkit-scrollbar-thumb {
  background: #B8D8E8;
  border-radius: 2px;
}

.thumbnail-gallery-scroll .thumbnail {
  min-width: 70px; /* FESTE MINDESTBREITE */
  width: 70px;     /* FESTE BREITE */
  height: 70px;    /* FESTE HÖHE */
  flex-shrink: 0;  /* VERHINDERT SCHRUMPFEN */
}

/* Product Info - Better Typography */
.product-title {
  font-size: 28px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.2;
}

.product-price {
  margin-bottom: 24px;
  font-size: 20px;
}

.price-regular {
  color: #333;
  font-weight: 600;
}

.price-sale {
  color: #e74c3c;
  font-weight: 600;
  margin-right: 8px;
}

.price-compare {
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 16px;
}

.price-save {
  background: #e74c3c;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

/* Product Options - Proper Spacing */
.product-option {
  margin-bottom: 20px;
}

.option-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* Size Selection Container - Flexbox Layout */
.size-selection-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.size-selection-left {
  flex: 1;
  min-width: 250px;
}

.size-selection-right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
}

/* Size Header - Simplified */
.size-header {
  display: block;
  margin-bottom: 12px;
}

.size-header .option-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

/* Size Selection Grid */
.size-selection {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

/* Size Guide Button - Positioned next to size options */
.size-guide-btn {
  background: white;
  border: 2px solid #e0e0e0;
  color: #333;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  height: 50px;
  white-space: nowrap;
  letter-spacing: 0.3px;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.size-guide-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 216, 232, 0.2), transparent);
  transition: left 0.3s ease;
}

.size-guide-btn:hover::before {
  left: 100%;
}

.size-guide-btn:hover {
  border-color: #B8D8E8;
  color: #B8D8E8;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(184, 216, 232, 0.2);
}

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

.size-guide-btn .icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.size-guide-btn:hover .icon {
  transform: scale(1.1);
}

/* Size Hint */
.size-hint {
  width: 100%;
  margin-top: 8px;
}

.size-hint small {
  color: #666;
  font-style: italic;
  font-size: 12px;
}

/* Color Selection - Compact */
.color-selection {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.color-selection input {
  display: none;
}

.color-option {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.1s ease;
  background: white;
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
  font-size: 14px;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.color-option:hover {
  border-color: #B8D8E8;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(184, 216, 232, 0.2);
}

.color-selection input:checked + .color-option {
  border-color: #333;
  background: #333;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

/* Size Selection - Better Proportions */
.size-selection {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.size-selection input {
  display: none;
}

.size-option {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.size-option:hover {
  border-color: #B8D8E8;
  transform: scale(1.05);
}

.size-selection input:checked + .size-option {
  border-color: #333;
  background: #333;
  color: white !important;
  transform: scale(1.05);
}

/* Unavailable Size Buttons */
.size-option.unavailable {
  position: relative;
  color: #999 !important;
  background: #f5f5f5 !important;
  border-color: #ddd !important;
  cursor: not-allowed !important;
}

.size-option.unavailable::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #999;
  transform: translateY(-50%) rotate(-15deg);
  z-index: 1;
}

/* Quantity & Cart - Compact Layout */
.quantity-cart {
  margin-bottom: 16px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.quantity-selector label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.quantity-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn:hover {
  background: #B8D8E8;
  color: white;
}

.quantity-controls input {
  width: 50px;
  height: 36px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: white;
  color: #333;
}

.quantity-controls input:focus {
  outline: none;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: 14px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.add-to-cart-btn:hover {
  background: #555;
  transform: translateY(-1px);
}

.wishlist-btn {
  width: 100%;
  padding: 14px 20px;
  background: white;
  color: #333;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.wishlist-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 216, 232, 0.1), transparent);
  transition: left 0.5s ease;
}

.wishlist-btn:hover::before {
  left: 100%;
}

.wishlist-btn:hover {
  border-color: #B8D8E8;
  background: #B8D8E8;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 216, 232, 0.3);
}

/* Product Features */
.product-features {
  margin-top: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.product-features h3 {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  margin-bottom: 8px;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

/* Section Spacing */
.section-spacing {
  margin-bottom: 48px;
}

.product-description {
  max-width: 1200px;
  margin: 0 auto 48px auto;
  padding: 32px 24px;
  background: #fafafa;
  border-radius: 12px;
}

.product-description h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  padding-bottom: 12px;
  border-bottom: 2px solid #B8D8E8;
}

.description-content {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 0;
}

.description-content p {
  margin-bottom: 16px;
}

.description-content p:last-child {
  margin-bottom: 0;
}

/* Complete the Look */
.complete-look {
  max-width: 1200px;
  margin: 60px auto 48px auto;
  padding: 40px 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.complete-look h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #333;
  text-align: center;
  font-family: 'Freight Display Pro', Georgia, serif;
}

.collection-subtitle {
  text-align: center;
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  font-style: italic;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.recommendation-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
}

.recommendation-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #B8D8E8;
}

.recommendation-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.recommendation-item:hover img {
  transform: scale(1.08);
}

.rec-info {
  padding: 16px;
}

.rec-info h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
  min-height: 40px;
}

.rec-price {
  font-weight: 600;
  font-size: 16px;
  margin: 8px 0;
  font-family: 'Roboto Mono', monospace;
}

/* Community Vibes */
.community-vibes {
  text-align: center;
  padding: 48px 24px;
  background: linear-gradient(135deg, #F5F0E5 0%, #C4E0D0 50%, #B8D8E8 100%);
  border-radius: 12px;
  margin: 60px auto 48px auto;
  max-width: 1200px;
}

.community-vibes h2 {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.community-vibes p {
  margin-bottom: 24px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.hashtag-display {
  font-weight: 600;
  color: #333;
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal.show {
  display: block !important;
}

.modal-content {
  background-color: white;
  margin: 3% auto;
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close {
  color: #999;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 25px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close:hover,
.close:focus {
  color: #333;
  background: #f0f0f0;
  transform: scale(1.1);
}

.modal-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
  padding-right: 50px;
}

.modal-content h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #333;
}

/* Size Guide Options */
.fit-options,
.size-options-guide,
.body-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.fit-options input,
.size-options-guide input,
.body-options input {
  display: none;
}

.fit-options label,
.size-options-guide label,
.body-options label {
  padding: 14px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.1s ease;
  background: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.fit-options label:hover,
.size-options-guide label:hover,
.body-options label:hover {
  border-color: #B8D8E8;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(184, 216, 232, 0.2);
}

.fit-options input:checked + label,
.size-options-guide input:checked + label,
.body-options input:checked + label {
  border-color: #B8D8E8;
  background: #B8D8E8;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(184, 216, 232, 0.3);
}

.fit-title,
.body-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
}

.fit-desc,
.body-desc {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  line-height: 1.3;
}

/* Size Table */
.size-table {
  overflow-x: auto;
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.size-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 14px;
}

.size-table th,
.size-table td {
  padding: 12px 10px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.size-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #333;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-table tbody tr:hover {
  background: rgba(184, 216, 232, 0.1);
}

/* MISSING STYLES - FEHLENDE STYLES HINZUFÜGEN */

/* Featured Collection Styles */
.featured-collection {
    padding: 80px 0;
    background: var(--white);
}

.featured-collection .section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.featured-collection .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Collection Grid */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: center;
    align-items: start;
}

.collection-grid.items-1 {
    grid-template-columns: 1fr;
    justify-items: center;
}

.collection-grid.items-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 0 auto;
}

.collection-grid.items-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

/* COMPLETE THE LOOK - VIEW ALL BUTTON REPARIERT */
.view-all-collection {
    text-align: center;
    margin-top: 32px;
}

.view-all-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid #B8D8E8;
    border-radius: 8px;
    color: #B8D8E8;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #B8D8E8;
    transition: left 0.3s ease;
    z-index: -1;
}

.view-all-btn:hover::before {
    left: 0;
}

.view-all-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 216, 232, 0.3);
}

/* SIZE GUIDE MODAL - FEHLENDE STYLES */
.style-info {
    background: linear-gradient(135deg, #B8D8E8, #C4E0D0);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
}

.style-badge {
    background: white;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.size-recommendation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.recommendation-result {
    margin-bottom: 20px;
}

.rec-size {
    font-size: 18px;
    margin-bottom: 8px;
}

#recommended-size {
    color: #B8D8E8;
    font-weight: 700;
}

#recommendation-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.fit-preview {
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fit-indicator {
    width: 120px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.fit-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.fit-label {
    font-size: 12px;
    color: #4CAF50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.use-recommendation {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.use-recommendation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.chart-note {
    margin-bottom: 15px;
    text-align: center;
}

.chart-note small {
    color: #666;
    font-style: italic;
}

/* RECOMMENDATION ITEMS - KOMPAKTE SIZING WIE MAIN PRODUKTKARTEN */
.recommendation-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    max-width: 320px; /* Gleiche Begrenzung wie main cards */
    margin: 0 auto; /* Zentriert */
}

.recommendation-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #B8D8E8;
}

.recommendation-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.rec-image-container {
    position: relative;
    overflow: hidden;
    background: #F8F8F8; /* Weißer Hintergrund */
    aspect-ratio: 4/5; /* GLEICHE KOMPAKTE RATIO WIE MAIN CARDS */
    border-radius: 12px 12px 0 0;
}

.rec-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* CONTAIN WIE MAIN CARDS */
    padding: 8px; /* GLEICHE REDUZIERTE PADDING */
    background: F8F8F8;
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.recommendation-item:hover .rec-image-container img {
    transform: scale(1.02); /* GLEICHE SANFTE TRANSFORMATION */
}

.recommendation-placeholder {
    width: 100%;
    height: 100%;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 24px; /* REDUZIERT WIE MAIN CARDS */
    font-weight: 700;
    border-radius: 12px 12px 0 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sale-badge {
    position: absolute;
    top: 8px; /* ANGEPASST WIE MAIN CARDS */
    left: 8px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px; /* REDUZIERT */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.rec-info {
    padding: 16px; /* KOMPAKTER WIE MAIN CARDS */
}

.rec-info h4 {
    font-size: 15px; /* GLEICHE GRÖSSE WIE MAIN CARDS */
    margin-bottom: 6px; /* REDUZIERT */
    color: #333;
    font-weight: 600;
    line-height: 1.2;
    min-height: 36px; /* REDUZIERT WIE MAIN CARDS */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rec-price {
    font-weight: 600;
    font-size: 16px;
    margin: 8px 0; /* REDUZIERT */
    font-family: 'Roboto Mono', monospace;
    color: var(--pastel-blue);
    text-align: center;
}

.rec-price .price-sale {
    color: #e74c3c;
    margin-right: 8px;
}

.rec-price .price-compare {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.save-amount {
    color: #28a745;
    font-size: 12px;
    font-weight: 600;
    margin: 4px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.color-dots {
    display: flex;
    align-items: center;
    justify-content: center; /* ZENTRIERT */
    gap: 3px; /* REDUZIERT WIE MAIN CARDS */
    margin: 6px 0; /* REDUZIERT */
    flex-wrap: wrap;
}

.color-dot {
    width: 14px; /* GLEICHE GRÖSSE WIE MAIN CARDS */
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-dot[data-color*="black"] { background: #333; }
.color-dot[data-color*="white"] { background: #fff; }
.color-dot[data-color*="gray"], .color-dot[data-color*="grey"] { background: #888; }
.color-dot[data-color*="blue"] { background: #4A90E2; }
.color-dot[data-color*="red"] { background: #E74C3C; }
.color-dot[data-color*="green"] { background: #27AE60; }
.color-dot[data-color*="yellow"] { background: #F1C40F; }
.color-dot[data-color*="pink"] { background: #E91E63; }
.color-dot[data-color*="purple"] { background: #9B59B6; }
.color-dot[data-color*="brown"] { background: #8D6E63; }
.color-dot[data-color*="beige"] { background: #F5F0E5; }
.color-dot[data-color*="apricot"] { background: #FFB347; }
.color-dot[data-color*="pirate"] { background: #6B6B6B; }

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--pastel-blue);
}

.color-more {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.quick-view-btn {
    width: 100%;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.quick-view-btn:hover {
    background: #B8D8E8;
    border-color: #B8D8E8;
    color: white;
    transform: translateY(-1px);
}

/* PRODUKTDETAILS CONTAINER - FEHLENDE STYLES FÜR PRODUKTSEITE */

/* Product Options Container - HINZUGEFÜGT */
.product-option {
    margin-bottom: 24px;
    padding: 16px;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.option-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* Color Selection Container - HINZUGEFÜGT */
.product-form__input {
    margin-bottom: 20px;
}

.product-form__input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Farb-Container */
.color-input {
    margin-bottom: 20px;
}

.color-input .option-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* Size Container */
.size-input {
    margin-bottom: 20px;
}

.size-input .option-label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

/* Product Form Wrapper */
.product-form {
    padding: 0;
}

.product-form > * {
    margin-bottom: 20px;
}

.product-form .product-form__input:last-child {
    margin-bottom: 0;
}

/* Product Variant Selectors */
.product-form__input--dropdown select,
.product-form__input--swatch input,
.product-form__input--pill input {
    margin-bottom: 8px;
}

/* Swatch and Pill Options */
.product-form__input--swatch,
.product-form__input--pill {
    margin-bottom: 20px;
}

.product-form__input--swatch .swatch,
.product-form__input--pill .pill {
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Quantity Input Wrapper */
.quantity-input {
    margin-bottom: 20px;
}

.quantity-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Product Buttons Container */
.product-form__buttons {
    margin-top: 20px;
}

.product-form__buttons > * {
    margin-bottom: 12px;
}

.product-form__buttons > *:last-child {
    margin-bottom: 0;
}

/* IMAGE ZOOM MODAL */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    cursor: zoom-out;
}

.image-zoom-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    cursor: zoom-out;
}

.image-zoom-content img {
    width: 100%;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* MOBILE RESPONSIVE UPDATES */
@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .collection-scroll .product-card {
        min-width: 250px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .recommendation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .complete-look {
        margin: 40px auto 32px auto;
        padding: 24px 16px;
    }
    
    .complete-look h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .collection-subtitle {
        margin-bottom: 24px;
    }
    
    .size-selection-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .size-selection-right {
        align-self: flex-start;
        padding-bottom: 0;
    }
    
    .size-guide-btn {
        height: 44px;
        font-size: 11px;
        padding: 6px 10px;
        gap: 3px;
    }
    
    .size-option {
        width: 44px;
        height: 44px;
        font-size: 13px;
        transform: none;
    }
    
    .size-option:hover,
    .color-option:hover {
        transform: none;
        box-shadow: none;
        border-color: #B8D8E8;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 20px;
        max-height: 95vh;
    }
    
    .close {
        top: 15px;
        right: 20px;
        font-size: 28px;
    }
    
    .fit-options,
    .size-options-guide,
    .body-options {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .recommendation-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .recommendation-item {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .rec-image-container img,
    .recommendation-placeholder {
        height: 180px;
    }
    
    .recommendation-placeholder {
        font-size: 36px;
    }
    
    .view-all-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
    }
    
    .size-selection-container {
        gap: 8px;
    }
    
    .size-guide-btn {
        height: 40px;
        font-size: 10px;
        padding: 5px 8px;
    }
}

/* Anti-Wobble fixes */
button, .btn, label[for], [role="button"] {
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: auto;
}

.size-selection, .color-selection {
    transform: translateZ(0);
    backface-visibility: hidden;
}
/* ALLE PRODUKTKARTEN KOMPLETT GRAU - UNIVERSAL FIX */

/* 1. HAUPT PRODUKTKARTEN (products-grid) */
.product-card {
    position: relative;
    overflow: visible;
    background: #F8F8F8; /* GRAU */
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-image {
    aspect-ratio: 4/5;
    background: #F8F8F8; /* GRAU */
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    width: 100%;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #F8F8F8; /* GRAU */
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F8F8; /* GRAU */
    border-radius: 12px 12px 0 0;
    color: #666;
    font-size: 24px;
}

/* 2. FEATURED COLLECTION PRODUKTKARTEN */
.featured-collection .product-card {
    background: #F8F8F8 !important; /* GRAU */
}

.featured-collection .product-image {
    background: #F8F8F8 !important; /* GRAU */
}

.featured-collection .product-image img {
    background: #F8F8F8 !important; /* GRAU */
}

.featured-collection .product-placeholder {
    background: #F8F8F8 !important; /* GRAU */
    color: #666 !important;
}

/* 3. COLLECTION GRID PRODUKTKARTEN */
.collection-grid .product-card {
    background: #F8F8F8 !important; /* GRAU */
}

.collection-grid .product-image {
    background: #F8F8F8 !important; /* GRAU */
}

.collection-grid .product-image img {
    background: #F8F8F8 !important; /* GRAU */
}

.collection-grid .product-placeholder {
    background: #F8F8F8 !important; /* GRAU */
    color: #666 !important;
}

/* 4. COMPLETE THE LOOK / RECOMMENDATION ITEMS */
.recommendation-item {
    background: #F8F8F8 !important; /* GRAU - GANZER CONTAINER */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    max-width: 320px;
    margin: 0 auto;
}

.rec-image-container {
    position: relative;
    overflow: hidden;
    background: #F8F8F8 !important; /* GRAU */
    aspect-ratio: 4/5;
    border-radius: 12px 12px 0 0;
}

.rec-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #F8F8F8 !important; /* GRAU */
    transition: all 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.recommendation-placeholder {
    width: 100%;
    height: 100%;
    background: #F8F8F8 !important; /* GRAU */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666 !important;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px 12px 0 0;
}

.rec-info {
    padding: 16px;
    background: #F8F8F8 !important; /* GRAU - INFO BEREICH */
}

/* 5. COLLECTION SCROLL PRODUKTKARTEN */
.collection-scroll .product-card {
    background: #F8F8F8 !important; /* GRAU */
}

.collection-scroll .product-image {
    background: #F8F8F8 !important; /* GRAU */
}

.collection-scroll .product-image img {
    background: #F8F8F8 !important; /* GRAU */
}

.collection-scroll .product-placeholder {
    background: #F8F8F8 !important; /* GRAU */
    color: #666 !important;
}

/* 6. UNIVERSAL CATCH-ALL für alle vergessenen Produktkarten */
[class*="product"] .product-image,
[class*="product"] .product-image img,
[class*="recommendation"] .rec-image-container,
[class*="recommendation"] .rec-image-container img {
    background: #F8F8F8 !important; /* GRAU */
}

[class*="product"] .product-placeholder,
[class*="recommendation"] .recommendation-placeholder {
    background: #F8F8F8 !important; /* GRAU */
    color: #666 !important;
}

/* 7. SPEZIFISCHE CONTAINER OVERRIDES */
.products-grid .product-card,
.recommendation-grid .recommendation-item,
.complete-look .recommendation-item,
.featured-collection .product-card,
.collection-grid .product-card {
    background: #F8F8F8 !important; /* GRAU - GANZER CONTAINER */
/* FEAR OF GOD FARBEN FIX - FÜR ALLE TEMPLATE DATEIEN */
/* Füge diesen Code am Ende jeder Template-Datei hinzu oder in deine main CSS */

:root {
    /* FOG FARBPALETTE - GRAUTÖNE */
    --fog-white: #FFFFFF;
    --fog-light-gray: #F8F8F8;
    --fog-medium-gray: #E8E8E8;
    --fog-dark-gray: #D0D0D0;
    --fog-charcoal: #666666;
    --fog-black: #333333;
    
    /* ALTE VARIABLEN ÜBERSCHREIBEN */
    --white: #FFFFFF;
    --pastel-blue: #333333;
    --pastel-blue-hover: #555555;
    --pastel-mint: #F8F8F8;
    --pastel-pink: #F0F0F0;
    --warm-beige: #E8E8E8;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #999999;
}

/* 1. LIMITED COLLECTION PAGE FIX */
.collection-limited {
    background: var(--fog-white) !important;
}

.collection-header {
    background: var(--fog-white) !important;
}

.social-follow {
    background: var(--fog-light-gray) !important; /* GRAU statt beige */
}

.placeholder-product {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
}

.placeholder-product::before {
    background: rgba(255, 255, 255, 0.1) !important;
}

.limited-newsletter {
    background: linear-gradient(135deg, var(--fog-black), var(--fog-charcoal)) !important;
}

.legal-navigation,
.legal-contact {
    background: var(--fog-medium-gray) !important; /* GRAU statt beige */
}

/* 2. ABOUT PAGE FIX */
.about-hero {
    background: var(--fog-white) !important; /* WEISS statt Farbverlauf */
}

.brand-story {
    background: var(--fog-white) !important;
}

.values {
    background: var(--fog-light-gray) !important; /* GRAU statt beige */
}

.hero-placeholder {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
    color: var(--fog-charcoal) !important;
}

.story-placeholder {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
    color: var(--fog-charcoal) !important;
}

.values-placeholder {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
    color: var(--fog-charcoal) !important;
}

.about-cta {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
    color: var(--fog-black) !important;
}

.about-cta .section-heading,
.about-cta .section-text {
    color: var(--fog-black) !important;
}

.cta-button.primary {
    background: var(--fog-black) !important;
    color: var(--fog-white) !important;
}

.cta-button.secondary {
    color: var(--fog-black) !important;
    border-color: var(--fog-black) !important;
}

.cta-button.secondary:hover {
    background: var(--fog-black) !important;
    color: var(--fog-white) !important;
}

/* 3. COMMUNITY PAGE FIX */
.community-hero {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
    color: var(--fog-black) !important;
}

.coming-soon {
    background: var(--fog-white) !important;
}

.features-preview {
    background: var(--fog-light-gray) !important; /* GRAU statt beige */
}

.hashtag-section {
    background: var(--fog-light-gray) !important; /* GRAU statt beige */
}

.stay-updated {
    background: var(--fog-white) !important;
}

.qr-placeholder {
    background: var(--fog-medium-gray) !important; /* GRAU statt Farbverlauf */
    color: var(--fog-charcoal) !important;
}

.cta-button.primary {
    background: var(--fog-black) !important;
    color: var(--fog-white) !important;
}

.cta-button.primary:hover {
    background: var(--fog-charcoal) !important;
    color: var(--fog-white) !important;
}

.cta-button.secondary {
    color: var(--fog-black) !important;
    border-color: var(--fog-black) !important;
}

.cta-button.secondary:hover {
    background: var(--fog-black) !important;
    color: var(--fog-white) !important;
}

/* 4. UNIVERSAL TEMPLATE FIXES */
.page-wrapper,
.legal-page {
    background: var(--fog-white) !important;
}

/* Alle Farbverläufe entfernen */
*[style*="linear-gradient"] {
    background: var(--fog-medium-gray) !important;
}

/* Beige Farben ersetzen */
*[style*="#F5F0E5"],
*[style*="F5F0E5"] {
    background: var(--fog-light-gray) !important;
}

/* Alle Pastell-Farben durch FOG Grautöne ersetzen */
.section {
    background: var(--fog-white) !important;
}

/* HEADER/NAVIGATION BEREICHE */
.hero,
.section-header,
.page-header {
    background: var(--fog-white) !important;
}

/* CONTAINER BEREICHE */
.container,
.section-container {
    background: transparent !important;
}

/* 5. SPEZIFISCHE ELEMENT FIXES */
.value-item {
    background: var(--fog-white) !important;
}

.feature-item {
    background: var(--fog-white) !important;
}

.hashtag-item {
    background: var(--fog-white) !important;
}

.qr-container {
    background: var(--fog-white) !important;
    border-color: var(--fog-black) !important;
}

/* 6. BUTTON FIXES für FOG Style */
.btn-primary,
.cta-button.primary,
.newsletter-btn {
    background: var(--fog-black) !important;
    color: var(--fog-white) !important;
    border-color: var(--fog-black) !important;
}

.btn-primary:hover,
.cta-button.primary:hover,
.newsletter-btn:hover {
    background: var(--fog-charcoal) !important;
    color: var(--fog-white) !important;
}

.btn-secondary,
.cta-button.secondary {
    background: transparent !important;
    color: var(--fog-black) !important;
    border-color: var(--fog-black) !important;
}

.btn-secondary:hover,
.cta-button.secondary:hover {
    background: var(--fog-black) !important;
    color: var(--fog-white) !important;
}

/* 7. MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .about-hero,
    .community-hero,
    .collection-limited {
        background: var(--fog-white) !important;
    }
    
    .values,
    .hashtag-section,
    .features-preview {
        background: var(--fog-light-gray) !important;
    }
}

/* 8. ANTI-FARBVERLAUF NUCLEAR OPTION */
.about-page *,
.community-page *,
.collection-limited *,
.legal-page * {
    background-image: none !important;
}

/* Nur erlaubte Hintergründe */
.about-page,
.community-page,
.collection-limited,
.legal-page {
    background: var(--fog-white) !important;
    background-image: none !important;
}

/* Alle Sections in den Templates */
.about-page section,
.community-page section,
.collection-limited section,
.legal-page section {
    background-image: none !important;
}

.breadcrumbs {
  display: none !important;
}
/* PRODUCT.LIQUID - COMMUNITY VIBES FOG FIX */
/* Füge diesen CSS-Code in deine Haupt-CSS-Datei hinzu */

/* Community Vibes Section - FOG COLORS */
.community-vibes {
  text-align: center;
  padding: 48px 24px !important;
  background: #E8E8E8 !important; /* GRAU statt Farbverlauf */
  border-radius: 12px;
  margin: 60px auto 48px auto;
  max-width: 1200px;
}

.community-vibes h2 {
  margin-bottom: 20px;
  color: #333 !important;
  font-size: 24px;
}

.community-vibes p {
  margin-bottom: 24px;
  color: #666 !important;
  font-size: 16px;
  line-height: 1.6;
}

.hashtag-display {
  font-weight: 600;
  color: #333 !important;
  font-size: 16px;
  letter-spacing: 0.5px;
}
/* MOBILE HEADER FIX - Icons auf Mobile ausblenden */
@media (max-width: 768px) {
    .nav-actions {
        display: none !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* Logo zentrieren wenn Navigation weg ist */
    .nav-container {
        justify-content: center;
    }
}
/* MOBILE NAVIGATION FIX - BUTTONS KLICKBAR MACHEN */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 12px 0;
    z-index: 9999 !important; /* SEHR HOHER Z-INDEX */
    pointer-events: auto !important; /* KLICKS ERLAUBEN */
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    pointer-events: auto !important; /* KLICKS ERLAUBEN */
}

.mobile-nav-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #666 !important;
    font-size: 12px !important;
    transition: color 0.3s ease !important;
    pointer-events: auto !important; /* KLICKS ERLAUBEN */
    z-index: 10000 !important;
    padding: 8px 4px !important; /* GRÖSSERE KLICKFLÄCHE */
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: #333 !important;
}

.mobile-nav-item svg {
    margin-bottom: 4px !important;
    pointer-events: none !important; /* SVG BLOCKIERT KEINE KLICKS */
}

.mobile-nav-item span {
    pointer-events: none !important; /* TEXT BLOCKIERT KEINE KLICKS */
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block !important;
    }
    
    /* BODY PADDING für Mobile Nav */
    body {
        padding-bottom: 80px !important;
    }
}
/* MOBILE SHOP DROPDOWN - FEHLENDE STYLES */
.mobile-shop-dropdown {
    position: relative;
}

.shop-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    padding: 8px 4px;
}

.mobile-shop-menu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
    margin-bottom: 8px;
}

.mobile-shop-dropdown.active .mobile-shop-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-shop-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-shop-menu a:last-child {
    border-bottom: none;
}

.mobile-shop-menu a:hover {
    background: #f8f9fa;
    color: #333;
}
/* MOBILE SHOP DROPDOWN - COMPLETE FIX */
@media (max-width: 768px) {
    .mobile-shop-dropdown {
        position: relative;
    }
    
    .shop-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #666;
        font-size: 12px;
        cursor: pointer;
        padding: 8px 4px;
    }
    
    .mobile-shop-menu {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        min-width: 150px;
        z-index: 10001;
        margin-bottom: 8px;
        /* WICHTIG: Verstecken per default */
        display: none !important;
    }
    
    .mobile-shop-dropdown.active .mobile-shop-menu {
        display: block !important;
    }
    
    .mobile-shop-menu a {
        display: block;
        padding: 12px 16px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-shop-menu a:last-child {
        border-bottom: none;
    }
    
    .mobile-shop-menu a:hover {
        background: #f8f9fa;
        color: #333;
    }
}
/* WISHLIST BUTTON STATES - CSS VERSION */
.wishlist-btn {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.wishlist-btn span {
    color: #666;
    font-size: 16px;
    transition: all 0.3s ease;
}

.wishlist-btn.active {
    background: #ef4444 !important;
}

.wishlist-btn.active span {
    color: white !important;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}
/* OVERRIDE WISHLIST-BUTTON.LIQUID */
.wishlist-btn {
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    border-radius: 50% !important;
}

@media (max-width: 768px) {
    .wishlist-btn {
        width: 28px !important;
        height: 28px !important;
    }
}
/* PRODUCT CARD PRICE FIX - NUR PRODUKTKARTEN, REST BLEIBT UNVERÄNDERT */

/* 1. HAUPT PRODUKTKARTEN (products-grid) */
.products-grid .product-card .product-price {
    font-family: 'Roboto Mono', monospace;
    font-weight: 400 !important;  /* GEÄNDERT: 600 → 400 */
    font-size: 12px !important;   /* GEÄNDERT: 16px → 12px */
    color: #666 !important;       /* GEÄNDERT: var(--pastel-blue) → #666 */
    margin-bottom: 8px;
}

.products-grid .product-card .price-sale {
    color: #666 !important;       /* GEÄNDERT: #E74C3C → #666 */
    margin-right: 8px;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.products-grid .product-card .price-regular {
    color: #666 !important;       /* GEÄNDERT: #333 → #666 */
    font-weight: 400 !important;
    font-size: 12px !important;
}

.products-grid .product-card .price-compare {
    text-decoration: line-through;
    color: #999 !important;
    margin-left: 8px;
    font-size: 11px !important;
    font-weight: 400 !important;
}

/* 2. COLLECTION GRID PRODUKTKARTEN */
.collection-grid .product-card .product-price {
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #666 !important;
}

.collection-grid .product-card .price-sale {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.collection-grid .product-card .price-regular {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.collection-grid .product-card .price-compare {
    color: #999 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
}

/* 3. FEATURED COLLECTION PRODUKTKARTEN */
.featured-collection .product-card .product-price {
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #666 !important;
}

.featured-collection .product-card .price-sale {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.featured-collection .product-card .price-regular {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

/* 4. COLLECTION SCROLL PRODUKTKARTEN */
.collection-scroll .product-card .product-price {
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #666 !important;
}

.collection-scroll .product-card .price-sale {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.collection-scroll .product-card .price-regular {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

/* 5. COMPLETE THE LOOK / RECOMMENDATION PRODUKTKARTEN */
.recommendation-grid .recommendation-item .rec-price {
    font-weight: 400 !important;  /* GEÄNDERT: 600 → 400 */
    font-size: 12px !important;   /* GEÄNDERT: 16px → 12px */
    color: #666 !important;       /* GEÄNDERT: var(--pastel-blue) → #666 */
    text-align: center;
    margin: 8px 0;
    font-family: 'Roboto Mono', monospace;
}

.recommendation-grid .recommendation-item .rec-price .price-sale {
    color: #666 !important;
    margin-right: 8px;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.recommendation-grid .recommendation-item .rec-price .price-compare {
    color: #999 !important;
    text-decoration: line-through;
    font-size: 11px !important;
    font-weight: 400 !important;
}

/* 6. UNIVERSAL PRODUKTKARTEN-SELECTOR */
/* Falls es andere Produktkarten gibt, die wir übersehen haben */
.product-card .product-price,
.recommendation-item .rec-price {
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #666 !important;
}

.product-card .price-sale,
.recommendation-item .price-sale {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.product-card .price-regular,
.recommendation-item .price-regular {
    color: #666 !important;
    font-weight: 400 !important;
    font-size: 12px !important;
}

.product-card .price-compare,
.recommendation-item .price-compare {
    color: #999 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
}
/* NUCLEAR OPTION - PRODUKTKARTEN PREIS FIX - ÜBERSCHREIBT ALLES */

/* 1. ALLE PRODUKTKARTEN PREISE - MAXIMALE SPEZIFITÄT */
.product-card .product-price,
.product-card .product-price *,
.product-card .price-regular,
.product-card .price-sale,
.product-card .price-compare,
.products-grid .product-card .product-price,
.products-grid .product-card .product-price *,
.collection-grid .product-card .product-price,
.collection-grid .product-card .product-price *,
.featured-collection .product-card .product-price,
.featured-collection .product-card .product-price *,
.collection-scroll .product-card .product-price,
.collection-scroll .product-card .product-price * {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
    font-family: 'Roboto Mono', monospace !important;
}

/* 2. RECOMMENDATION ITEMS PREISE */
.recommendation-item .rec-price,
.recommendation-item .rec-price *,
.recommendation-grid .recommendation-item .rec-price,
.recommendation-grid .recommendation-item .rec-price *,
.complete-look .recommendation-item .rec-price,
.complete-look .recommendation-item .rec-price * {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
    font-family: 'Roboto Mono', monospace !important;
}

/* 3. SPEZIFISCHE PREIS-KLASSEN ÜBERSCHREIBEN */
.product-card .price-sale,
.recommendation-item .price-sale,
span.price-sale,
.price-item--sale {
    color: #666 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    margin-right: 8px !important;
}

.product-card .price-regular,
.recommendation-item .price-regular,
span.price-regular,
.price-item--regular {
    color: #666 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.product-card .price-compare,
.recommendation-item .price-compare,
span.price-compare {
    color: #999 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
}

/* 4. FEAR OF GOD STYLE - TITLE/PRICE LAYOUT */
.product-info.fog-style .product-title-price {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.product-info.fog-style .product-name {
    flex: 1 !important;
    min-width: 0 !important;
}

.product-info.fog-style .product-name a {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #333 !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.product-info.fog-style .product-price {
    flex-shrink: 0 !important;
    text-align: right !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
}

/* 5. COLLECTION NAME STYLING */
.product-collection {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    color: #999 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

/* 6. SHOPIFY SPEZIFISCHE KLASSEN ÜBERSCHREIBEN */
.money,
.price,
[class*="price"],
[class*="money"] {
    /* NUR auf Produktkarten anwenden */
}

.product-card .money,
.product-card .price,
.product-card [class*="price"],
.product-card [class*="money"],
.recommendation-item .money,
.recommendation-item .price,
.recommendation-item [class*="price"],
.recommendation-item [class*="money"] {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
}

/* 7. JAVASCRIPT ÜBERSCHREIBUNGEN VERHINDERN */
.product-card .product-price[style],
.product-card .price-regular[style],
.product-card .price-sale[style],
.recommendation-item .rec-price[style],
.recommendation-item .price-regular[style],
.recommendation-item .price-sale[style] {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
}

/* 8. MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .product-title-price {
        flex-direction: column !important;
        gap: 4px !important;
    }
    
    .product-info.fog-style .product-price {
        text-align: left !important;
    }
    
    .product-card .product-price,
    .recommendation-item .rec-price {
        font-size: 11px !important;
    }
    
    .product-info.fog-style .product-name a {
        font-size: 13px !important;
    }
}

/* 9. ANTI-BOLD FIX - Verhindert alle Bold-Styles auf Produktkarten-Preisen */
.product-card *[class*="price"],
.product-card *[class*="money"],
.recommendation-item *[class*="price"],
.recommendation-item *[class*="money"] {
    font-weight: 400 !important;
}

/* 10. LAST RESORT - Inline Styles überschreiben */
.product-card [style*="font-weight"],
.product-card [style*="font-size"],
.product-card [style*="color"],
.recommendation-item [style*="font-weight"],
.recommendation-item [style*="font-size"],
.recommendation-item [style*="color"] {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
}
/* FEAR OF GOD LAYOUT OVERRIDE - FINE-TUNED */

/* 1. VERTIKALES LAYOUT ERZWINGEN */
.product-info.fog-style {
    display: block !important;
    text-align: left !important;
    padding: 16px !important; /* MEHR PADDING FÜR ABSTAND ZUM RAND */
}

/* 2. COLLECTION NAME - LINKSBÜNDIG */
.product-collection {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    color: #999 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    text-align: left !important;
    display: block !important;
}

/* 3. PRODUCT NAME - LINKSBÜNDIG, DARUNTER */
.product-info.fog-style .product-name {
    margin: 0 0 4px 0 !important; /* REDUZIERT: 8px → 4px */
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    flex: none !important;
}

.product-info.fog-style .product-name a {
    color: #333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    display: block !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* 4. PREIS - LINKSBÜNDIG, GANZ UNTEN */
.product-info.fog-style .product-price {
    text-align: left !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
    margin-top: 0px !important; /* REDUZIERT: 4px → 0px */
    margin-bottom: 0 !important;
    display: block !important;
    width: 100% !important;
    flex: none !important;
}

/* 5. SPEZIFISCHE PREIS-ELEMENTS */
.product-info.fog-style .price-regular,
.product-info.fog-style .price-sale,
.product-info.fog-style .price-compare {
    font-size: 12px !important;
    font-weight: 400 !important;
    color: #666 !important;
    text-align: left !important;
}

.product-info.fog-style .price-compare {
    color: #999 !important;
    font-size: 11px !important;
    text-decoration: line-through !important;
    margin-left: 8px !important;
}

/* 6. ENTFERNE HORIZONTAL LAYOUT - ÜBERSCHREIBT ALLE FLEXBOX REGELN */
.product-info.fog-style .product-title-price {
    display: block !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 0 !important;
    text-align: left !important;
}

/* 7. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .product-info.fog-style,
    .product-info.fog-style .product-collection,
    .product-info.fog-style .product-name,
    .product-info.fog-style .product-price {
        text-align: left !important;
        display: block !important;
    }
    
    .product-info.fog-style .product-name a {
        font-size: 13px !important;
    }
    
    .product-info.fog-style .product-price {
        font-size: 11px !important;
    }
}

/* 8. NUCLEAR OPTION - Falls es immer noch nicht funktioniert */
.product-card .product-info.fog-style,
.products-grid .product-card .product-info.fog-style,
.collection-grid .product-card .product-info.fog-style {
    display: block !important;
    flex-direction: column !important;
}

.product-card .product-info.fog-style > *,
.products-grid .product-card .product-info.fog-style > *,
.collection-grid .product-card .product-info.fog-style > * {
    text-align: left !important;
    width: 100% !important;
    flex: none !important;
    display: block !important;
}