/*
Theme Name: Butik Anetki Child
Template: twentytwentyfive
Description: Motyw potomny dla Butiku Anetki
Version: 1.0
Author: Butik Anetki
*/

        /* CSS Custom Properties - Design System Tokens */
        :root {
            /* PRIMARY PINK - CTA COLOR (WCAG SAFE) */
            --pink-cta: #C32F8A;
            --pink-cta-hover: #FE44B3;
            --pink-cta-active: #A22971;
            
            /* ERROR COLOR */
            --error-color: #D64545;
            
            /* PUDROWE RÓŻE - BACKGROUNDS & ACCENTS */
            --pink-powder-light: #F9E8F4;
            --pink-powder: #F0D1E8;
            --pink-powder-medium: #E6B8D9;
            --pink-powder-dark: #D499C7;
            
            /* NEUTRALNE BEŻE I KREMY */
            --cream-light: #FAF8F5;
            --cream: #F5F1EB;
            --cream-medium: #EDE7DE;
            --cream-dark: #D4C4B0;
            
            /* CIEPŁE AKCENTY */
            --warm-peach: #FFD4B3;
            --warm-coral: #FFAB8A;
            --warm-gold: #F4D03F;
            
            /* NEUTRALNE BRĄZY */
            --brown-light: #D7CCC8;
            --brown-medium: #A1887F;
            --brown-dark: #6D4C41;
            
            /* TEKST COLORS */
            --text-primary: #2C1810;
            --text-secondary: #5D4037;
            --text-muted: #8D6E63;
            --text-light: #BCAAA4;
            --text-white: #FFFFFF;
            
            /* GRADIENTS */
            --gradient-hero: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 100%);
            --gradient-section: linear-gradient(120deg, #F5F1EB 0%, #EDE7DE 100%);
            --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.6) 0%, rgba(240,209,232,0.15) 100%);
            --gradient-button: linear-gradient(135deg, #C32F8A 0%, #A22971 100%);
            --gradient-button-hover: linear-gradient(135deg, #FE44B3 0%, #E63AA2 100%);
            --gradient-badge: linear-gradient(135deg, #C32F8A 0%, #F4D03F 100%);
            
            /* ACCENT HIGHLIGHT */
            --accent-warm-highlight: #FF8A50;
            
            /* FONTS */
            --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-accent: 'Crimson Text', Georgia, serif;
            
            /* SPACING SYSTEM */
            --space-xs: 4px;
            --space-sm: 8px;
            --space-md: 16px;
            --space-lg: 24px;
            --space-xl: 32px;
            --space-2xl: 48px;
            --space-3xl: 64px;
            --space-4xl: 80px;
            --space-5xl: 96px;
            --space-6xl: 120px;
            
            /* LAYOUT SPACING */
            --container-max: 1200px;
            --container-padding: 20px;
            --section-padding-y: 80px;
            --section-padding-y-sm: 48px;
            --section-padding-y-lg: 120px;
            
            /* BENTO BOX SYSTEM */
            --bento-radius: 20px;
            --bento-radius-sm: 12px;
            --bento-radius-lg: 28px;
            --bento-gap: 24px;
            --bento-gap-sm: 16px;
            --bento-gap-lg: 32px;
            
            /* GLASSMORPHISM */
            --glass-bg: rgba(255, 255, 255, 0.55);
            --glass-border: rgba(255, 255, 255, 0.6);
            --glass-blur: 12px;
            --glass-blur-light: 8px;
            --glass-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            
            /* ELEVATION */
            --elevation-1: 0 4px 12px rgba(0, 0, 0, 0.06);
            --elevation-2: 0 8px 24px rgba(0, 0, 0, 0.08);
            --elevation-3: 0 12px 40px rgba(0, 0, 0, 0.12);
            
            /* BORDER RADIUS */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            
            /* MOTION */
            --ease-out: cubic-bezier(.2,.8,.2,1);
            --duration-fast: 120ms;
            --duration-base: 180ms;
            
            /* Z-INDEX */
            --z-sticky: 50;
            --z-modal: 100;
            
            /* BREAKPOINTS */
            --bp-sm: 480px;
            --bp-md: 768px;
            --bp-lg: 1024px;
            --bp-xl: 1200px;
            --bp-2xl: 1440px;
        }
        
        
        /* SEKCJA 8: OPINIE KLIENTEK */
        .testimonials {
            padding: var(--section-padding-y) 0;
            background: var(--cream-light);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-2xl);
        }
        
        .testimonial-card {
            padding: var(--space-2xl);
            text-align: left;
            transition: all var(--duration-base) var(--ease-out);
        }
        
        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--elevation-3);
        }
        
        .stars {
            margin-bottom: var(--space-lg);
        }
        
        .stars span {
            font-size: 18px;
            color: var(--warm-gold);
        }
        
        .testimonial-card blockquote {
            margin: 0 0 var(--space-xl) 0;
        }
        
        .testimonial-card blockquote p {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-primary);
            font-style: italic;
            margin: 0;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }
        
        .author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-button);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden; 
    position: relative; 
}

/* ✅ NOWY CSS DLA ZDJĘĆ */
.avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
        
        .author-info {
            display: flex;
            flex-direction: column;
        }
        
        .author-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 16px;
            margin-bottom: 2px;
        }
        
        .author-role {
            font-size: 14px;
            color: var(--text-muted);
        }
        
        /* Mobile Responsive */
        @media (max-width: 767px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .testimonial-card {
                padding: var(--space-lg);
            }
            
            .testimonial-card blockquote p {
                font-size: 16px;
            }
            
            .author-avatar {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }
        
        /* SEKCJA 7: BEZPIECZEŃSTWO ZAKUPÓW */
        .security {
            padding: var(--section-padding-y) 0;
            background: var(--gradient-section);
        }
        
        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-2xl);
            margin-bottom: var(--space-4xl);
        }
        
        .security-card {
            padding: var(--space-2xl);
            text-align: center;
            transition: all var(--duration-base) var(--ease-out);
        }
        
        .security-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--elevation-3);
        }
        
        .security-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-button);
            color: var(--text-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
            box-shadow: var(--elevation-1);
        }
        
        .security-icon svg {
            width: 24px;
            height: 24px;
        }
        
        .security-card h3 {
            font-family: var(--font-primary);
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-md);
            line-height: 1.3;
        }
        
        .security-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 16px;
        }
        
        /* Mobile Responsive for all sections */
        @media (max-width: 767px) {
            .benefits-grid-simple {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .security-grid {
                grid-template-columns: 1fr;
                gap: var(--space-lg);
            }
            
            .security-card {
                padding: var(--space-lg);
            }
            
            .security-icon {
                width: 48px;
                height: 48px;
            }
            
            .security-card h3 {
                font-size: 18px;
            }
        }
        
        /* SEKCJA 6: DLACZEGO BUTIK ANETKI */
        .why-us {
            padding: var(--section-padding-y) 0;
            background: var(--cream-light);
        }
        
        .section-badge {
            display: inline-block;
            background: var(--gradient-badge);
            color: var(--text-white);
            padding: var(--space-xs) var(--space-md);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: var(--space-lg);
        }
        
        .why-us-content {
            margin-bottom: var(--space-4xl);
        }
        
        /* Benefits Grid - Simple 2x2 Layout */
        .benefits-grid-simple {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-2xl);
            max-width: 900px;
            margin: 0 auto;
        }

        
        .visual-placeholder {
            width: 300px;
            height: 400px;
            background: linear-gradient(135deg, var(--pink-powder-light) 0%, var(--cream) 100%);
            border-radius: var(--bento-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--elevation-2);
            position: relative;
        }
        
        .visual-placeholder .placeholder-icon {
            font-size: 64px;
            opacity: 0.7;
        }
        
        /* Benefits Grid */
        .benefits-grid {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 400px 1fr;
            gap: var(--space-2xl);
        }
        
        .benefits-grid .benefit-card:nth-child(1) {
            grid-column: 1;
            grid-row: 1;
        }
        
        .benefits-grid .benefit-card:nth-child(2) {
            grid-column: 3;
            grid-row: 1;
        }
        
        .benefits-grid .benefit-card:nth-child(3) {
            grid-column: 1;
            grid-row: 2;
        }
        
        .benefits-grid .benefit-card:nth-child(4) {
            grid-column: 3;
            grid-row: 2;
        }
        
        .benefit-card {
            padding: var(--space-xl);
            text-align: center;
            transition: all var(--duration-base) var(--ease-out);
        }
        
        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--elevation-3);
        }
        
        .benefit-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-button);
            color: var(--text-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto var(--space-lg);
            box-shadow: var(--elevation-1);
        }
        
        .benefit-icon svg {
            width: 24px;
            height: 24px;
        }
        
        .benefit-card h3 {
            font-family: var(--font-primary);
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-md);
            line-height: 1.3;
        }
        
        .benefit-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 16px;
        }
        
        /* Bottom Highlight */
        .bottom-highlight {
            margin-top: var(--space-4xl);
        }
        
        .highlight-card {
            padding: var(--space-2xl);
            display: flex;
            align-items: center;
            gap: var(--space-xl);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .highlight-icon {
            font-size: 48px;
            flex-shrink: 0;
        }
        
        .highlight-content h3 {
            font-family: var(--font-primary);
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
        }
        
        .highlight-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: var(--space-md);
        }
        
        .promo-highlight {
            background: var(--gradient-button);
            color: var(--text-white);
            padding: var(--space-md) var(--space-lg);
            border-radius: var(--radius-md);
            text-align: center;
            font-weight: 600;
        }
        
       /* Mobile Responsive */
@media (max-width: 767px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .center-visual {
        grid-column: 1;
        order: 1;
    }
    
    .visual-placeholder {
        width: 250px;
        height: 300px;
    }
    
    .visual-placeholder .placeholder-icon {
        font-size: 48px;
    }
    
    /* ✅ Benefits Grid - 2 kolumny na mobile */
    .benefits-grid-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .benefits-grid {
        grid-column: 1;
        grid-template-columns: 1fr;
        order: 2;
        gap: var(--space-lg);
    }
    
    .benefit-card {
        padding: var(--space-lg);
        text-align: center;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    .highlight-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
    }
    
    .highlight-icon {
        font-size: 40px;
    }
    
    .highlight-content h3 {
        font-size: 20px;
    }
}
        
        /* SEKCJA 4: ASORTYMENT - ANETKA W CENTRUM */
.assortment {
    padding: var(--section-padding-y) 0;
    background: var(--gradient-section);
}

/* NOWY GRID - Anetka w centrum */
.assortment-grid-anetka-center {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 200px);
    gap: var(--bento-gap);
    max-width: 1200px;
    margin: 0 auto;
}

/* Row 1 - Górny */
.item-1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.item-2 {
    grid-column: 2;
    grid-row: 1;
}

.item-3 {
    grid-column: 3;
    grid-row: 1 / 3;
}

.item-4 {
    grid-column: 2;
    grid-row: 2;
}

/* Row 2 - Dolny z Anetką w centrum */
.item-5 {
    grid-column: 1;
    grid-row: 3;
}

.item-6 {
    grid-column: 2;
    grid-row: 3 / 5; /* ANETKA - TALL w centrum */
}

.item-7 {
    grid-column: 3;
    grid-row: 3;
}

.item-8 {
    grid-column: 1;
    grid-row: 4;
}

.item-9 {
    grid-column: 3;
    grid-row: 4;
}

/* Styling dla wszystkich items */
.assortment-item-center {
    border-radius: var(--bento-radius);
    overflow: hidden;
    box-shadow: var(--elevation-2);
    transition: all var(--duration-base) var(--ease-out);
    cursor: pointer;
    position: relative;
    background: var(--cream-light);
}

.assortment-item-center:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-3);
}

.assortment-item-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .assortment-grid-anetka-center {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(6, 180px);
        gap: var(--bento-gap-sm);
    }
    
    .item-1 {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    
    .item-2 {
        grid-column: 2;
        grid-row: 1;
    }
    
    .item-3 {
        grid-column: 2;
        grid-row: 2 / 4;
    }
    
    .item-4 {
        grid-column: 1;
        grid-row: 3;
    }
    
    .item-6 {
        grid-column: 1 / 3;
        grid-row: 4 / 6; /* Anetka pełna szerokość na mobile */
    }
    
    .item-5 {
        grid-column: 1;
        grid-row: 6;
    }
    
    .item-7 {
        grid-column: 2;
        grid-row: 6;
    }
    
    .item-8 {
        display: none; /* Ukryj na mobile */
    }
    
    .item-9 {
        display: none; /* Ukryj na mobile */
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .assortment-grid-anetka-center {
        grid-template-rows: repeat(4, 180px);
    }
}
        
        /* SEKCJA 5: MARKI PARTNERSKIE */
        .brands {
            padding: var(--section-padding-y-sm) 0;
            background: var(--cream-light);
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: var(--space-2xl);
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .brand-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-lg);
            background: var(--text-white);
            border-radius: var(--radius-md);
            box-shadow: var(--elevation-1);
            transition: all var(--duration-base) var(--ease-out);
            min-height: 80px;
        }
        
        .brand-logo:hover {
            transform: translateY(-2px);
            box-shadow: var(--elevation-2);
        }
        
        .logo-placeholder {
            font-family: var(--font-primary);
            font-weight: 600;
            color: var(--text-primary);
            font-size: 18px;
            opacity: 0.8;
        }
        
        /* Mobile Responsive */
        @media (max-width: 767px) {
            .assortment-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: repeat(4, 150px);
                gap: var(--bento-gap-sm);
            }
            
            .assortment-item.large {
                grid-row: span 2;
                grid-column: span 1;
            }
            
            .assortment-item.tall {
                grid-row: span 1;
                grid-column: span 1;
            }
            
            .placeholder-icon {
                font-size: 32px;
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-lg);
            }
            
            .brand-logo {
                min-height: 60px;
                padding: var(--space-md);
            }
            
            .logo-placeholder {
                font-size: 16px;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1023px) {
            .assortment-grid {
                grid-template-rows: repeat(3, 180px);
            }
            
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* SEKCJA 3: JAK KUPOWAĆ - FACEBOOK/MESSENGER */
        .how-to-social {
            padding: var(--section-padding-y) 0;
            background: var(--cream-light);
        }
        
        .social-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
        }
        
        /* Social Steps - Left Column */
        .social-steps {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .social-steps .step-card {
            padding: var(--space-xl);
            display: flex;
            align-items: flex-start;
            gap: var(--space-lg);
            transition: all var(--duration-base) var(--ease-out);
        }
        
        .social-steps .step-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--elevation-3);
        }
        
        .step-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-button);
            color: var(--text-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--elevation-1);
        }
        
        .step-icon svg {
            width: 24px;
            height: 24px;
        }
        
        .social-steps .step-content h3 {
            font-family: var(--font-primary);
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
            line-height: 1.3;
        }
        
        .social-steps .step-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 16px;
        }
        
        .social-steps .step-cta {
            margin-top: var(--space-xl);
        }
        
        .social-steps .step-cta .cta-button {
            flex: none; /* DODAJ */
            min-width: 200px; /* DODAJ */
            max-width: 280px; /* DODAJ */
            background: var(--gradient-button);
            color: var(--text-white);
            justify-content: center;
        }
        
        /* Social Visual - Right Column */
        .social-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* Mobile Responsive */
        @media (max-width: 767px) {
            .social-content {
                grid-template-columns: 1fr;
                gap: var(--space-3xl);
            }
            
            .social-visual {
                order: 1;
            }
            
            .social-steps {
                order: 2;
            }
            
            .social-steps .step-card {
                padding: var(--space-lg);
            }
            
            .step-icon {
                width: 40px;
                height: 40px;
            }
            
            .step-icon svg {
                width: 20px;
                height: 20px;
            }
            
            .social-steps .step-content h3 {
                font-size: 20px;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1023px) {
            .social-content {
                gap: var(--space-3xl);
            }
            
        }
        
        /* SEKCJA 2: JAK KUPOWAĆ - APLIKACJA SELMO */
        .how-to-buy {
            padding: var(--section-padding-y) 0;
            background: var(--gradient-section);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: var(--space-4xl);
        }
        
        .section-header h2 {
            font-family: var(--font-primary);
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            margin-bottom: var(--space-md);
        }
        
        .section-subtitle {
            font-size: clamp(16px, 2vw, 18px);
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .how-to-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
        }

        /* Steps */
        .how-to-steps {
            display: flex;
            flex-direction: column;
            gap: var(--space-lg);
        }
        
        .step-card {
            padding: var(--space-xl);
            display: flex;
            align-items: flex-start;
            gap: var(--space-lg);
            transition: all var(--duration-base) var(--ease-out);
        }
        
        .step-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--elevation-3);
        }
        
        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gradient-button);
            color: var(--text-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: var(--elevation-1);
        }
        
        .step-content h3 {
            font-family: var(--font-primary);
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: var(--space-sm);
            line-height: 1.3;
        }
        
        .step-content p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 16px;
        }
        
        .step-cta {
            display: flex;
            gap: var(--space-md);
            margin-top: var(--space-lg);
            justify-content: center;
        }
        
        .step-cta .cta-button {
            flex: none;
            min-width: 180px;
             max-width: 220px;
            background: var(--gradient-button);
            color: var(--text-white);
        }
        
        .step-cta .cta-button:hover {
            background: var(--gradient-button-hover);
        }
        
        /* Mobile Responsive */
        @media (max-width: 767px) {
            .how-to-content {
                grid-template-columns: 1fr;
                gap: var(--space-3xl);
            }
            
            .how-to-visual {
                order: 1;
            }
            
            .how-to-steps {
                order: 1;
            }
            
            .phone-screen {
                width: 240px;
                height: 480px;
                padding: 16px;
            }
            
            .step-card {
                padding: var(--space-lg);
            }
            
            .step-number {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .step-content h3 {
                font-size: 20px;
            }
            
            .step-cta {
                flex-direction: column;
            }
            
            .step-cta .cta-button {
                flex: none;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1023px) {
            .how-to-content {
                gap: var(--space-3xl);
            }
            
            .phone-screen {
                width: 260px;
                height: 520px;
            }
        }
        
        /* CSS RESET & BASE STYLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            font-size: 16px; /* iOS zoom prevention */
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--text-primary);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        /* GLASSMORPHISM COMPONENTS */
        .glass-card {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: var(--bento-radius);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            box-shadow: var(--elevation-2);
        }
        
       /* Fallback for unsupported backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .social-link {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(240, 209, 232, 0.3);
    }
}
        
        /* PROMO BADGE */
        .promo-badge {
            background: var(--gradient-badge);
            color: var(--text-white);
            padding: var(--space-sm) var(--space-md);
            border-radius: var(--bento-radius);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 
                0 4px 15px rgba(254, 68, 179, 0.3),
                0 0 0 3px rgba(255, 255, 255, 0.8);
            display: inline-block;
            margin-bottom: var(--space-lg);
        }
        
        /* CTA BUTTONS */
        .cta-button {
            background: var(--gradient-button);
            color: var(--text-white);
            border: none;
            border-radius: var(--radius-md); 
            padding: 14px 18px; 
            font-size: 16px;
            font-weight: 700; 
            font-family: var(--font-primary);
            cursor: pointer;
            transition: all var(--duration-base) var(--ease-out); 
            box-shadow: var(--elevation-1);
            text-decoration: none;
            display: inline-block;
            min-height: 48px; 
            line-height: 1.4;
            text-align: center;
            letter-spacing: 0.02em; 
        }
        
        .cta-button:hover {
            background: var(--gradient-button-hover);
            transform: translateY(-2px);
            box-shadow: var(--elevation-3);
        }
        
        .cta-button:active {
            background: linear-gradient(135deg, var(--pink-cta-active) 0%, #8B2462 100%);
            transform: translateY(1px);
        }
        
        .cta-button:focus-visible {
            outline: 2px solid var(--accent-warm-highlight);
            outline-offset: 2px;
        }
        
        .cta-button.secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--pink-cta);
            font-weight: 700;
        }
        
        .cta-button.secondary:hover {
            background: var(--pink-cta);
            color: var(--text-white);
            transform: translateY(-2px);

        }
        
        /* TRUST INDICATOR */
        .trust-indicator {
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(254, 68, 179, 0.15);
            border-radius: var(--radius-md);
            padding: var(--space-md) var(--space-lg);
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin-top: var(--space-lg);
        }

        .logo-svg {
            width: auto;
            height: 40px;
            flex-shrink: 0;
        }
        
        /* LAYOUT COMPONENTS */
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }
        
        /* HERO SECTION */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: var(--section-padding-y) 0;
            position: relative;
             background: var(--gradient-hero); 

        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4xl);
            align-items: center;
        }
        
        .hero-text h1 {
            font-family: var(--font-accent);
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 600;
            line-height: 1.1;
            color: var(--text-primary);
            margin-bottom: var(--space-lg);
        }
        
        .hero-text .subtitle {
            font-family: var(--font-primary);
            font-size: clamp(16px, 2vw, 20px);
            font-weight: 400;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: var(--space-2xl);
        }
        
        .hero-cta {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
            margin-bottom: var(--space-lg);
        }

        /* ✅ KUPON W HERO - prosty layout */
.hero-text .bottom-highlight {
    margin-top: var(--space-xl);
}

.hero-text .highlight-card {
    padding: var(--space-lg);
    max-width: 100%;
}

.hero-text .coupon-title {
    font-size: 18px;
}

.hero-text .coupon-subtitle {
    font-size: 14px;
}

/* Mobile - kupon nad trust indicator */
@media (max-width: 767px) {
    .hero-text .trust-indicator {
        order: 2;
    }
    
    .hero-text .bottom-highlight {
        order: 1;
        margin-top: 0;
        margin-bottom: var(--space-lg);
    }
    
    .hero-text .coupon-banner {
        text-align: center;
    }
    
    .hero-text .coupon-left {
        align-items: center;
    }
}
        
        .hero-video {
            position: relative;
            border-radius: var(--bento-radius-lg);
            overflow: hidden;
            background: var(--cream-medium);
            aspect-ratio: 16/10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--elevation-2);
        }

        /* Wistia Video Player Styling */
wistia-player[media-id='2g60mahazc']:not(:defined) { 
    background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/2g60mahazc/swatch'); 
    display: block; 
    filter: blur(5px); 
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

wistia-player {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--bento-radius-lg);
    overflow: hidden;
}

/* Wrapper dla kontroli aspect ratio */
.wistia-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--bento-radius-lg);
    overflow: hidden;
}

/* Mobile optimization */
@media (max-width: 767px) {
    .hero-video {
        aspect-ratio: 16/9; /* Zmiana na 16:9 na mobile */
    }
}
        
        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--cream-medium) 0%, var(--brown-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 18px;
            position: relative;
        }
        
        .play-button {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--duration-base) var(--ease-out);
            box-shadow: var(--elevation-2);
        }
        
        .play-button:hover {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 1);
        }
        
        .play-button::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 20px solid var(--pink-cta);
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }
        
        /* RESPONSIVE DESIGN */
        
        /* Mobile Styles */
        @media (max-width: 767px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
                text-align: center;
            }
            
            .hero-text {
                order: 2;
            }
            
            .hero-video {
                order: 1;
                aspect-ratio: 16/9;
            }
            
            .hero-cta {
                justify-content: center;
            }
            
            .cta-button {
                flex: 1;
                min-width: 140px;
                text-align: center;
            }
            
            .trust-indicator {
                text-align: center;
            }
            
            /* Mobile CTA Priority: Selmo primary */
            .sticky-cta .cta-selmo { 
                order: 1; 
                flex: 2; 
            }
            
            .sticky-cta .cta-messenger { 
                order: 2; 
                flex: 1; 
                opacity: 0.8; 
            }
            
            /* Mobile shadow optimization */
            .glass-card {
                box-shadow: var(--elevation-1);
            }
            
            .cta-button:hover {
                box-shadow: var(--elevation-1);
            }
        }
        
        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 1023px) {
            .hero-content {
                gap: var(--space-3xl);
            }
            
            .hero-cta {
                justify-content: flex-start;
            }
        }
        
        /* Desktop Styles */
        @media (min-width: 768px) {
            /* Desktop CTA Priority: Messenger primary */
            .sticky-cta .cta-messenger { 
                order: 1; 
                flex: 1; 
            }
            
            .sticky-cta .cta-selmo { 
                order: 2; 
                flex: 1; 
            }
        }
        
        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* High contrast support */
        @media (prefers-contrast: high) {
            .cta-button {
                border: 2px solid var(--text-primary);
            }
            
            .glass-card {
                border: 2px solid var(--text-muted);
            }
        }
        /* STICKY NAVIGATION */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(254, 68, 179, 0.1);
    z-index: var(--z-sticky);
    padding: 16px 0;
    transition: all var(--duration-base) var(--ease-out);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .sticky-nav {
        background: rgba(255, 255, 255, 0.95);
    }
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.nav-logo {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 16px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: all var(--duration-base) var(--ease-out);
}
.nav-link:hover {
    color: var(--pink-cta);
    background: rgba(254, 68, 179, 0.05);
}
.nav-link:focus-visible {
    outline: 2px solid var(--pink-cta);
    outline-offset: 2px;
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    color: var(--text-primary);
}
.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}
@media (max-width: 767px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: var(--space-lg);
        border-top: 1px solid rgba(254, 68, 179, 0.1);
        margin: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--space-md);
        border-bottom: 1px solid rgba(254, 68, 179, 0.1);
    }
    .nav-link:last-child {
        border-bottom: none;
    }
}
/* FAQ SECTION CSS */
.faq {
    padding: var(--section-padding-y) 0;
    background: var(--cream-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--space-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--bento-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--elevation-1);
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.faq-question:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-2);
    border-color: rgba(195, 47, 138, 0.2);
}

.faq-question:focus-visible {
    outline: 2px solid var(--pink-cta);
    outline-offset: 2px;
}

.faq-question[aria-expanded="true"] {
    margin-bottom: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: transform var(--duration-base) var(--ease-out);
    margin-left: var(--space-lg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s var(--ease-out);
    margin-top: -1px; /* Overlap border with question */
}

.faq-answer.active {
    max-height: 500px; /* Large enough to accommodate content */
}

.faq-content {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--bento-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--elevation-1);
}

.faq-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

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

/* Contact CTA */
.faq-cta {
    text-align: center;
    margin-top: var(--space-4xl);
    padding: var(--space-2xl);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--bento-radius);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--elevation-2);
}

.faq-cta h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.faq-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl); /* Zwiększony margines dla przycisków */
}

/* Kontener dla przycisków - jak w Hero */
.faq-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Style przycisków - dziedziczą z głównych .cta-button */
.faq-cta-buttons .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px; /* Szerokość jak w Hero */
}

/* Ikony w przyciskach */
.faq-cta-buttons .cta-button svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .faq-cta {
        padding: var(--space-xl);
    }
    
    .faq-cta h3 {
        font-size: 20px;
    }
    
    /* Przyciski pod sobą na mobile */
    .faq-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-cta-buttons .cta-button {
        width: 100%;
        min-width: auto;
    }
}

/* Fallback for unsupported backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .faq-question,
    .faq-content,
    .faq-cta {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(240, 209, 232, 0.3);
    }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .faq-question {
        padding: var(--space-lg);
        font-size: 16px;
    }
    
    .faq-content {
        padding: 0 var(--space-lg) var(--space-lg);
    }
    
    .faq-cta {
        padding: var(--space-xl);
    }
    
    .faq-cta h3 {
        font-size: 20px;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
        margin-left: var(--space-md);
    }
    
    .faq-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .faq-question,
    .faq-answer,
    .faq-icon {
        transition: none;
    }
    
    .faq-answer.active {
        max-height: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .faq-question {
        border: 2px solid var(--text-primary);
    }
    
    .faq-question:hover {
        border-color: var(--pink-cta);
    }
}
/* FOOTER SECTION CSS */
.footer {
    padding: var(--section-padding-y) 0 var(--space-2xl);
    background: var(--gradient-section);
    border-top: 1px solid rgba(195, 47, 138, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-4xl);
}

/* Company Info - Left Column */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
}

.footer-logo .logo-text {
    font-family: var(--font-accent);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.company-details p {
    margin-bottom: var(--space-sm);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.company-details p:last-child {
    margin-bottom: 0;
}

.company-name {
    font-weight: 600;
    color: var(--text-primary) !important;
}

.company-email a {
    color: var(--pink-cta);
    text-decoration: none;
    font-weight: 600;
}


.company-email a:hover {
    text-decoration: underline;
}

/* Navigation Links - Center Column */
.footer-nav h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color var(--duration-base) var(--ease-out);
}

.footer-links a:hover {
    color: var(--pink-cta);
}

.footer-links a:focus-visible {
    outline: 2px solid var(--pink-cta);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Social Media - Right Column */
.footer-social h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--duration-base) var(--ease-out);
    box-shadow: var(--elevation-1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--elevation-2);
    border-color: var(--pink-cta);
    color: var(--pink-cta);
}

.social-link:focus-visible {
    outline: 2px solid var(--pink-cta);
    outline-offset: 2px;
}

/* Specific social media colors on hover */
.social-link.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    color: white;
    border-color: #DD2A7B;
}

.social-link.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
    border-color: #000000;
}


/* Footer Bottom */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(195, 47, 138, 0.3) 50%, transparent 100%);
    margin-bottom: var(--space-xl);
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.footer-copyright p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--duration-base) var(--ease-out);
}

.footer-legal a:hover {
    color: var(--pink-cta);
}

/* Fallback for unsupported backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .social-link,
    .newsletter-reminder {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(240, 209, 232, 0.3);
    }
}

/* Mobile Responsive */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
    
    .footer-company {
        grid-column: 1 / -1;
        order: 3;
        text-align: center;
    }
    
    .footer-nav {
        order: 1;
    }
    
    .footer-social {
        order: 2;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: var(--section-padding-y-sm) 0 var(--space-xl);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
    
    .footer-company {
        order: 1;
    }
    
    .footer-nav {
        order: 2;
    }
    
    .footer-social {
        order: 3;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-legal {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .social-link,
    .newsletter-link,
    .footer-links a {
        transition: none;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .social-link {
        border: 2px solid var(--text-primary);
    }
    
    .footer-divider {
        background: var(--text-muted);
    }
}
/* SEKCJA SELMO - PROSTA GRAFIKA BEZ EFEKTÓW */
.how-to-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.selmo-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    /* BEZ EFEKTÓW - tylko podstawowe style */
}

/* Mobile responsive */
@media (max-width: 767px) {
    .selmo-image {
        max-width: 80%;
        width: 80%;
    }
}
/* SEKCJA FACEBOOK - PROSTA GRAFIKA BEZ EFEKTÓW */
.social-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.facebook-image {
    width: 100%;
    max-width: 800px; /* taki sam rozmiar jak selmo-image */
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    /* BEZ efektów szkła */
}

@media (max-width: 767px) {
    .facebook-image {
        max-width: 80%; 
        width: 80%;
    }
}

/* Mobile responsive dla przycisków */
@media (max-width: 767px) {
    .step-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-cta .cta-button,
    .social-steps .step-cta .cta-button {
        width: 100%;
        max-width: none;
        min-width: none;
    }
}
/* Usuwanie różowego tła dla WebP ikon w sekcji security */
.security .security-icon {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: 80px;
    height: 80px;
}

.security .security-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
/* Split layout - desktop i mobile */
.coupon-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
}

/* Lewa kolumna - 55% */
.coupon-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gift-icon {
    font-size: 32px;
    margin-bottom: 4px;
}

.coupon-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.coupon-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Prawa kolumna - 45% z subtelnym tłem */
.coupon-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: var(--space-lg);
    background: transparent; /* ← DODAJ TO */
    align-items: center;
}

/* Kontener kuponu */
.coupon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Kupon - kapsuła dominant */
.coupon-code {
    background: rgba(195, 47, 138, 0.08);
    border: 2px solid var(--pink-cta);
    border-radius: 999px;
    padding: 12px 22px;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-height: 48px;
}

.coupon-code:hover {
    background: rgba(195, 47, 138, 0.12);
    border-color: var(--pink-cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(195, 47, 138, 0.2);
}

.coupon-code:focus {
    outline: 2px solid var(--accent-warm-highlight);
    outline-offset: 2px;
}

.code-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--pink-cta);
    letter-spacing: 0.03em;
}

.copy-icon {
    color: var(--pink-cta);
    opacity: 0.8;
    width: 18px;
    height: 18px;
}

/* Animacja po skopiowaniu */
.coupon-code.copied {
    animation: couponPulse 320ms ease-in-out;
}

@keyframes couponPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Link pomocniczy */
.copy-link {
    background: none;
    border: none;
    color: var(--pink-cta);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    padding: var(--space-sm);
    transition: color var(--duration-base) var(--ease-out);
}

.copy-link:hover {
    color: var(--pink-cta-hover);
}

.copy-link:focus {
    outline: 2px solid var(--accent-warm-highlight);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Komunikat o skopiowaniu */
.copy-feedback {
    background: var(--pink-cta);
    color: var(--text-white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--duration-base) var(--ease-out);
    position: absolute;
    top: 50%;
    right: 20px;
    pointer-events: none;
    z-index: 10;
}

.copy-feedback.show {
    opacity: 1;
    transform: translateY(-50%);
}

/* Przycisk CTA - w prawej kolumnie */
.coupon-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

/* Zagęszczenie - zmniejszony padding karty */
.highlight-card {
    padding: var(--space-xl); /* Zmniejszone z space-2xl */
}

/* Mobile responsive - stack 1-kolumnowy */
@media (max-width: 767px) {
    .coupon-banner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .coupon-left {
        order: 1;
        align-items: center;
        text-align: center;
    }
    
    .coupon-right {
        order: 2;
        background: rgba(195, 47, 138, 0.06);
        padding: var(--space-lg);
    }
    
    .gift-icon {
        font-size: 40px;
    }
    
    .coupon-title {
        font-size: 24px;
    }
    
    .coupon-subtitle {
        font-size: 15px;
    }
    
    .code-text {
        font-size: 18px;
        letter-spacing: 0.02em;
    }
    
    .coupon-cta {
        max-width: none;
        width: 100%;
    }
    
    .copy-feedback {
        position: static;
        margin-top: var(--space-md);
        transform: none;
    }
    
    .copy-feedback.show {
        transform: none;
    }
}

/* Tablet responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .coupon-banner {
        gap: var(--space-xl);
    }
    
    .coupon-title {
        font-size: 26px;
    }
    
    .coupon-right {
        padding: var(--space-md);
    }
}

/* Wsparcie dla starszych przeglądarek */
@supports not (grid-template-columns: 1fr 1fr) {
    .coupon-banner {
        display: flex;
        flex-wrap: wrap;
    }
    
    .coupon-left {
        flex: 1 1 55%;
        margin-right: var(--space-xl);
    }
    
    .coupon-right {
        flex: 1 1 40%;
    }
}

.video-secret {
    padding: var(--section-padding-y) 0;
    background: #F4EFE8; /* ← Ciemniejszy beżowy jak chciałeś */
    position: relative;
    overflow: hidden;
}

/* Subtelny pattern w tle */
.video-secret::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(195, 47, 138, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
}

.video-secret-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Header */
.video-secret-header {
    margin-bottom: var(--space-3xl);
}

.video-secret-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.video-secret-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Player - IDENTYCZNY jak Hero */
.video-secret-player {
    position: relative;
    border-radius: var(--bento-radius-lg);
    overflow: hidden;
    background: var(--cream-medium);
    aspect-ratio: 16/10; /* ← DODANE - jak Hero */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--elevation-2); /* ← ZMIENIONE z elevation-3 */
    max-width: 800px;
    margin: 0 auto var(--space-3xl) auto;
}

.video-secret-player .wistia-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--bento-radius-lg);
    overflow: hidden;
}

/* Wistia player styling */
.video-secret-player wistia-player {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: var(--bento-radius-lg);
    overflow: hidden;
}

.video-secret-player wistia-player:not(:defined) { 
    background: center / contain no-repeat url('https://fast.wistia.com/embed/medias/1269g5psns/swatch'); 
    display: block; 
    filter: blur(5px); 
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

/* CTA Buttons */
.video-secret-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.video-secret-cta .cta-button {
    min-width: 200px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .video-secret {
        padding: var(--section-padding-y-sm) 0;
    }
    
    .video-secret-header {
        margin-bottom: var(--space-2xl);
    }
    
    .video-secret-header h2 {
        font-size: 28px;
    }
    
    .video-secret-subtitle {
        font-size: 16px;
    }
    
    .video-secret-player {
        aspect-ratio: 16/9; /* ← Zmiana na 16:9 na mobile - jak Hero */
        margin-bottom: var(--space-2xl);
        max-width: 100%;
    }
    
    .video-secret-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .video-secret-cta .cta-button {
        width: 100%;
        min-width: auto;
    }
    
    /* Mobile CTA Priority: Selmo primary */
    .video-secret-cta .cta-selmo { 
        order: 1; 
    }
    
    .video-secret-cta .cta-messenger { 
        order: 2; 
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1023px) {
    .video-secret-player {
        max-width: 700px;
    }
}

/* Desktop - przyciski obok siebie */
@media (min-width: 768px) {
    .video-secret-cta .cta-selmo,
    .video-secret-cta .cta-messenger {
        flex: 0 1 auto;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .video-secret::before {
        animation: none;
    }
}

