* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            background: linear-gradient(to bottom, #f9fafb, #ffffff);
            color: #1f2937;
        }
        
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #374151;
            padding: 4px 18px;
            border: 1.5px solid #374151;
            border-radius: 8px;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #1f2937;
        }
        
        section {
            padding: 40px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }
        
        /* Reduced top padding for flavors section to match h2 margin-bottom */
        #flavors {
            padding-top: 30px;
        }
        
        .hero {
            padding: 130px 20px 40px;
        }
        
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .hero-text {
            text-align: left;
        }
        
        .hero h1 {
            font-size: 5rem;
            font-weight: bold;
            color: #111827;
            margin-bottom: 30px;
        }
        
        .hero p {
            font-size: 1.5rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 50px;
        }
        
        .hero-image {
            display: flex;
            justify-content: center;
        }
        
        .hero-image img {
            max-width: 400px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
            transition: transform 0.3s;
        }
        
        .hero-image img:hover {
            transform: scale(1.05);
        }
        
        /* Hide mobile image on desktop */
        .hero-image-mobile {
            display: none;
        }
        
        .btn {
            background: #374151;
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1.125rem;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .btn:hover {
            background: #1f2937;
            transform: scale(1.05);
        }
        
        h2 {
            font-size: 3rem;
            font-weight: bold;
            text-align: center;
            color: #111827;
            margin-bottom: 50px;
        }
        
        .grid {
            display: grid;
            gap: 30px;
        }
        
        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
        
        .card {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e5e7eb;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .card h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 15px;
        }
        
        .card p {
            color: #4b5563;
            line-height: 1.8;
        }
        
        /* How-to section styles */
        .howto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .howto-card {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e5e7eb;
            text-align: center;
            position: relative;
        }
        
        .howto-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .step-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #374151;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .howto-icon {
            margin: 20px auto 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 150px;
        }
        
        .howto-icon img {
            max-width: 120px;
            height: auto;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
        }
        
        .howto-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .howto-description {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Warning banner */
        .warning-banner {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            padding: 30px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid #e5e7eb;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .warning-banner:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .warning-banner .warning-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 10px;
        }
        
        .warning-banner .warning-text {
            color: #4b5563;
            font-size: 1.05rem;
            line-height: 1.5;
        }
        
        /* Flavors section styles */
        .flavors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .flavor-card {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e5e7eb;
            text-align: center;
        }
        
        .flavor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .flavor-image {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 280px;
        }
        
        .flavor-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
        }
        
        .flavor-name {
            font-size: 1.1rem;
            font-weight: 500;
            color: #1f2937;
            line-height: 1.4;
            padding: 12px 20px;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background: linear-gradient(135deg, #fafbfc 0%, #f3f4f6 100%);
        }
        
        footer {
            background: #1f2937;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        footer .logo {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 15px;
            padding: 8px 20px;
            border: 1.5px solid white;
            border-radius: 8px;
            display: inline-block;
        }
        
        footer p {
            color: #d1d5db;
            margin-bottom: 10px;
        }
        
        footer .copyright {
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        .bg-white {
            background: white;
        }
        
        .bg-gradient {
            background: linear-gradient(to bottom, #f9fafb, white);
        }
        
        /* Tablet styles */
        @media (max-width: 1024px) {
            section {
                padding: 50px 15px;
            }
            
            .hero {
                padding: 120px 15px 50px;
            }
            
            h2 {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }
        }
        
        /* Mobile styles - Horizontal scroll */
        @media (max-width: 768px) {
            nav {
                height: auto;
            }
            
            .nav-container {
                padding: 15px 0;
                flex-direction: column;
                gap: 15px;
                height: auto;
            }
            
            .logo {
                font-size: 1.5rem;
                padding: 3px 13px;
                margin: 0 15px;
            }
            
            .nav-links {
                display: flex;
                flex-direction: row;
                gap: 10px;
                width: 100%;
                padding: 0 15px;
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            
            .nav-links::-webkit-scrollbar {
                display: none;
            }
            
            .nav-links li {
                flex-shrink: 0;
            }
            
            .nav-links a {
                display: block;
                padding: 10px 20px;
                white-space: nowrap;
                background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
                border-radius: 50px;
                border: 1px solid #e5e7eb;
                font-size: 0.9rem;
                transition: all 0.3s;
            }
            
            .nav-links a:hover,
            .nav-links a:active {
                background: #374151;
                color: white;
            }
            
            section {
                padding: 40px 15px;
            }
            
            .hero {
                padding: 150px 15px 40px;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .hero-text {
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 20px;
            }
            
            /* Show mobile image, hide desktop image */
            .hero-image-mobile {
                display: flex;
                justify-content: center;
                margin-bottom: 20px;
            }
            
            .hero-image-mobile img {
                max-width: 300px;
                width: 100%;
                height: auto;
                filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
            }
            
            .hero-image-desktop {
                display: none;
            }
            
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            h2 {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .card {
                padding: 25px;
            }
            
            .card h3 {
                font-size: 1.25rem;
            }
            
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .howto-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .howto-card {
                padding: 30px 20px;
            }
            
            .howto-title {
                font-size: 1.1rem;
            }
            
            .howto-description {
                font-size: 0.95rem;
            }
            
            .warning-banner {
                padding: 20px 25px;
            }
            
            .warning-banner .warning-title {
                font-size: 1.1rem;
            }
            
            .warning-banner .warning-text {
                font-size: 0.95rem;
            }
            
            .flavors-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .flavor-card {
                padding: 15px;
            }
            
            .flavor-image {
                height: 180px;
                margin-bottom: 15px;
            }
            
            .flavor-name {
            font-size: 1.1rem;
            font-weight: 500;
                font-size: 0.85rem;
                padding: 10px 12px;
            }
            
            footer .logo {
                font-size: 2rem;
            }
        }
        
        /* Very small mobile screens */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
            
            .btn {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .flavors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .step-number {
                width: 35px;
                height: 35px;
                font-size: 1.25rem;
            }
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px;
        }
        
        @media (max-width: 768px) {
            html {
                scroll-padding-top: 140px;
            }
        }
/* Buy button styles */
.buy-btn {
    background: #374151;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-top: 15px;
}

.buy-btn:hover {
    background: #1f2937;
    transform: scale(1.02);
}

/* Modal/Popup styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    border-radius: 20px;
    padding: 50px 40px 40px 40px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #9ca3af;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 10px;
    }

.modal-subtitle {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}



.modal-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-option-btn {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}

.modal-option-btn:hover:not(:disabled) {
    border-color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-option-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-option-btn:disabled::after {
    content: " (Незабаром)";
    font-size: 0.85rem;
    color: #9ca3af;
}

/* City selection */
.city-selection {
    display: none;
}

.city-selection.active {
    display: block;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.city-btn {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all 0.3s;
}

.city-btn:hover {
    border-color: #374151;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Stores list */
.stores-list {
    display: none;
}

.stores-list.active {
    display: block;
}



.stores-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1f2937;
    }

.back-btn {
    background: #f3f4f6;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #e5e7eb;
}

.store-item {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 1px solid #e5e7eb;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.store-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.store-address {
    font-size: 0.95rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .modal {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .city-grid {
        grid-template-columns: 1fr;
    }
}


/* Fix flavor name height to align buttons */
.flavor-name {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* Hide line breaks on desktop, show on mobile */
br.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    br.mobile-only {
        display: inline;
    }
}

/* Fix flavor names height for small phones like iPhone 14 */
@media (max-width: 480px) {
    .flavor-name {
        min-height: 65px;
        font-size: 0.8rem;
    }
}

/* Better mobile modal layout */
@media (max-width: 768px) {
    .modal {
        padding: 50px 20px 30px 20px;
    }
    
    .modal-title,
    .stores-title {
        text-align: center;
        padding: 0 30px;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
    }
}
