/* 
* TeaVital - Bylinkový čaj pre normálny tlak
* Color palette:
* - Main: #00FFB2 (neon mint)
* - Accent: #A100FF (vibrant purple)
* - Background: #0E0E0E (soft black)
* - Secondary bg: #1E1E1E (light graphite)
* - Text: #FFFFFF (white) and #F7F0F5 (powder)
* - Button contrast: #FFB300 (warm amber)
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-main: #00FFB2;
    --color-accent: #A100FF;
    --color-bg: #0E0E0E;
    --color-bg-secondary: #1E1E1E;
    --color-text: #FFFFFF;
    --color-text-secondary: #F7F0F5;
    --color-cta: #FFB300;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-main);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    background-color: var(--color-main);
    color: var(--color-bg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: all 0.4s;
    z-index: -1;
}

.btn:hover {
    color: var(--color-text);
}

.btn:hover:before {
    left: 0;
}

.btn-cta {
    background-color: var(--color-cta);
    font-size: 1.1rem;
    padding: 16px 38px;
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.3);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(255, 179, 0, 0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-main);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text);
}

.logo svg {
    margin-right: 10px;
}

.logo span {
    background: linear-gradient(to right, var(--color-main), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li:not(:last-child) {
    margin-right: 30px;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.main-nav a:hover {
    color: var(--color-main);
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-main);
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

.nav-btn {
    background-color: var(--color-main);
    color: var(--color-bg) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.nav-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-text) !important;
}

.nav-btn:after {
    display: none;
}

.menu-toggle {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(14,14,14,0.9) 0%, rgba(30,30,30,0.8) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/2GhlOk.jpg') no-repeat center center/cover;
    z-index: -1;
    filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero h1 span {
    color: var(--color-main);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-text-secondary);
}

.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 600px;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

/* Benefits Section */
.benefits {
    background-color: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(30,30,30,0.7), rgba(14,14,14,0.9));
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,255,178,0.1) 0%, rgba(161,0,255,0.1) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-card:hover:before {
    opacity: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 255, 178, 0.15);
    border-radius: 50%;
    color: var(--color-main);
    font-size: 2rem;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--color-main);
}

/* Ingredients Section */
.ingredients {
    position: relative;
    overflow: hidden;
}

.ingredients-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.ingredients-text {
    flex: 1;
    min-width: 300px;
}

.ingredients-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.ingredient-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.ingredient-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0,255,178,0.2) 0%, rgba(161,0,255,0.2) 100%);
    border-radius: 50%;
    margin-right: 20px;
}

.ingredient-info h4 {
    color: var(--color-main);
    margin-bottom: 5px;
}

.ingredient-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-text-secondary);
}

/* How it works */
.how-it-works {
    background-color: var(--color-bg-secondary);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: step-counter;
}

.process-step {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 280px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-10px);
}

.process-step:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-main);
    color: var(--color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
    color: var(--color-main);
    margin-top: 10px;
}

/* About Us */
.about-us {
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    position: relative;
    display: inline-block;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-main);
}

/* Products */
.products {
    background-color: var(--color-bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px;
    position: relative;
}

.product-content h3 {
    margin-bottom: 10px;
    color: var(--color-main);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-cta);
    margin-bottom: 20px;
    display: block;
}

.product-features {
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.product-features li:before {
    content: '✓';
    color: var(--color-main);
    position: absolute;
    left: 0;
    top: 0;
}

/* Testimonials */
.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--color-main);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* FAQ */
.faq {
    background-color: var(--color-bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    background: var(--color-bg);
    padding: 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    color: var(--color-text);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-main);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--color-main);
}

.faq-answer {
    background: rgba(30, 30, 30, 0.5);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item input[type="checkbox"]:checked + .faq-question:after {
    content: '−';
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Order Form */
.order-form-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(14,14,14,0.9) 0%, rgba(30,30,30,0.8) 100%);
    overflow: hidden;
}

.order-form-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./img/PeXu4e.jpg') no-repeat center center/cover;
    z-index: -1;
    filter: blur(5px);
}

.order-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(14, 14, 14, 0.8);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 1;
    animation: slideUp 0.5s ease-out;
}

.order-form-container:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--color-main), var(--color-accent));
    border-radius: calc(var(--border-radius) + 5px);
    z-index: -1;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 30, 30, 0.5);
    color: var(--color-text);
    border-radius: var(--border-radius);
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-main);
    background: rgba(30, 30, 30, 0.8);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2300FFB2' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-container label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-container label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(30, 30, 30, 0.5);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container input[type="checkbox"]:checked + label:before {
    background: var(--color-main);
    border-color: var(--color-main);
}

.checkbox-container label:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 11px;
    border: solid var(--color-bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: var(--transition);
}

.checkbox-container input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
    padding: 16px 40px;
}

/* Footer */
.site-footer {
    background-color: var(--color-bg);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo svg {
    margin-right: 10px;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--color-main), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-contact h3, .footer-links h3 {
    color: var(--color-main);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact ul li, .footer-links ul li {
    margin-bottom: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact li svg {
    margin-right: 15px;
    min-width: 16px;
    margin-top: 5px;
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-main);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--color-bg-secondary);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    animation: slideUp 0.5s ease-out;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-btn {
    background: var(--color-main);
    color: var(--color-bg);
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: var(--color-accent);
}

/* Thank You Page */
.thank-you {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.thank-you-content {
    max-width: 600px;
    animation: fadeIn 1s ease-out, slideUp 1s ease-out;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--color-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

.thank-you-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-bg);
}

.thank-you h1 {
    margin-bottom: 20px;
}

.thank-you p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 40%;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .menu-toggle:checked ~ .main-nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle:checked ~ .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked ~ .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg);
        padding: 100px 30px 30px;
        transform: translateX(100%);
        transition: all 0.4s ease;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav li {
        width: 100%;
        margin: 0 0 20px 0 !important;
    }
    
    .main-nav a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .about-content, .ingredients-content {
        flex-direction: column-reverse;
    }
    
    .about-image, .ingredients-visual {
        margin-bottom: 30px;
    }
    
    .order-form-container {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 25px;
    }
    
    .benefit-card, .testimonial-card, .product-card {
        margin-bottom: 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
} 