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

:root {
    --primary-green: #2D5016;
    --accent-green: #4CAF50;
    --light-bg: #F8F9FA;
    --dark-text: #212529;
    --white: #FFFFFF;
    --warning-orange: #FF6B35;
    --info-blue: #007BFF;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --gradient-primary: linear-gradient(135deg, #2D5016 0%, #4CAF50 100%);
    --gradient-accent: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    text-decoration: none;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 0.75rem;
    color: var(--accent-green);
    margin-left: 0.5rem;
    font-weight: 500;
}

.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--accent-green);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: width 0.3s ease;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.online-status {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.online-status.open {
    color: var(--accent-green);
}

.online-status.closed {
    color: #dc3545;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.status-dot.open {
    background: var(--accent-green);
}

.status-dot.closed {
    background: #dc3545;
}

@keyframes pulse {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
    70% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

@keyframes pulse-red {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { opacity: 0.7; box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}

.status-dot.closed {
    animation: pulse-red 2s infinite;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: white;
    font-size: 1.1rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--primary-green);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    opacity: 0.9;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* How it works section */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-light);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.step p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products section */
.products {
    padding: 100px 0;
    background: var(--light-bg);
}

.product-categories {
    margin-top: 3rem;
}

.category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.category-description {
    font-size: 1.1rem;
    color: #6c757d;
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.product-card.featured {
    border: 2px solid var(--accent-green);
    transform: scale(1.02);
}

.product-card.featured::after {
    content: 'DOPORUČUJEME';
    position: absolute;
    top: 25px;
    right: -30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 45px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: 220px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: white;
    opacity: 0.8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

.strain-type {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-prices {
    margin-bottom: 1.5rem;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.price-buttons {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.price-option:last-child {
    border-bottom: none;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.btn-add-cart {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--primary-green);
    transform: translateY(-1px);
}

.btn-fast-order {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@keyframes fireGlow {
    0% {
        box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4), 
                    0 0 8px rgba(255, 165, 0, 0.6);
    }
    100% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.6), 
                    0 0 12px rgba(255, 69, 0, 0.8),
                    0 0 20px rgba(255, 140, 0, 0.3);
    }
}

@keyframes lightningFlicker {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-2deg); }
    50% { transform: scale(1.05) rotate(1deg); }
    75% { transform: scale(1.08) rotate(-1deg); }
}

.btn-fast-order:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    animation: fireGlow 0.8s ease-in-out infinite alternate;
}

.btn-fast-order:hover::before {
    content: "⚡";
    position: absolute;
    animation: lightningFlicker 0.6s ease-in-out infinite;
}

/* Mobile animace - jemné efekty bez hoveru */
@media (max-width: 768px) {
    .btn-fast-order {
        animation: mobilePulse 2s ease-in-out infinite;
    }
    
    @keyframes mobilePulse {
        0%, 100% { 
            box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
            transform: scale(1);
        }
        50% { 
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5), 
                        0 0 8px rgba(255, 165, 0, 0.4);
            transform: scale(1.02);
        }
    }
}

.price-amount {
    font-weight: 600;
    color: var(--dark-text);
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-green);
}

.btn-product {
    width: 100%;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.availability-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.available {
    background: rgba(40, 167, 69, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.unavailable {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Trust section */
.trust {
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-medium);
}

.trust-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.trust-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ section */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-green);
}

.faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding-top 0.5s ease-in-out;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    padding-top: 15px;
    max-height: 1000px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}
/* Contact section */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
}

.contact-item span {
    font-size: 1rem;
    color: var(--dark-text);
}

.coverage-map {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 500px; /* Zvětšeno z 400px na 500px pro desktop */
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
}

/* Zvětšení základních prvků i na desktopu */
.map-placeholder svg text {
    font-size: 10px; /* Větší než původních 8-9px */
}

.map-placeholder svg circle {
    transform: scale(1.2); /* Mírně větší kruhy i na desktopu */
    transform-origin: center;
}

.coverage-legend {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 0.5rem;
}

/* Mobilní optimalizace pro mapu pokrytí */
@media (max-width: 768px) {
    .coverage-map {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        height: 450px;
    }
    
    .coverage-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .legend-item {
        font-size: 1rem;
    }
    
    .legend-color {
        width: 18px;
        height: 18px;
    }
    
    /* Zvětšení grafických prvků v SVG mapě pro mobil */
    .map-placeholder svg text {
        font-size: 12px !important; /* Větší texty měst */
    }
    
    .map-placeholder svg circle {
        transform: scale(1.3); /* Zvětšení všech kruhů */
        transform-origin: center;
    }
    
    .map-placeholder svg line {
        stroke-width: 4 !important; /* Tlustší čáry */
    }
    
    .map-placeholder svg path {
        stroke-width: 3 !important; /* Tlustší cesty */
    }
}

@media (max-width: 480px) {
    .coverage-map {
        padding: 1rem;
    }
    
    .map-placeholder {
        height: 500px;
    }
    
    .coverage-legend {
        gap: 1rem;
    }
    
    .legend-item {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .legend-color {
        width: 20px;
        height: 20px;
    }
    
    /* Ještě větší grafické prvky pro malé mobily */
    .map-placeholder svg text {
        font-size: 14px !important; /* Ještě větší texty */
        font-weight: bold !important;
    }
    
    .map-placeholder svg circle {
        transform: scale(1.5); /* Ještě větší kruhy */
        transform-origin: center;
    }
    
    .map-placeholder svg line {
        stroke-width: 5 !important; /* Nejsilnější čáry */
    }
    
    .map-placeholder svg path {
        stroke-width: 4 !important; /* Nejsilnější cesty */
    }
    
    /* Oprava šipky pro mobily - větší a správný tvar */
    .map-placeholder svg marker polygon {
        transform: scale(1.3); /* Mírnější zvětšení */
        transform-origin: center;
    }
}

/* Mini košík */
.mini-cart {
    background: white;
    border: 2px solid var(--accent-green);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: var(--shadow-light);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-green);
}

.cart-header h4 {
    color: var(--primary-green);
    margin: 0;
    font-size: 1.2rem;
}

.cart-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
}

.cart-empty {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    flex-grow: 1;
}

.item-info strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.item-details {
    font-size: 0.85rem;
    color: #6c757d;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: var(--accent-green);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.qty-btn:hover {
    background: var(--primary-green);
}

.qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.item-price {
    min-width: 70px;
    text-align: right;
    font-weight: 600;
    color: var(--primary-green);
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.remove-btn:hover {
    background: #c82333;
}

/* Price breakdown */
.price-breakdown {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-row:not(:last-child) {
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.delivery-fee {
    color: var(--accent-green);
    font-weight: 500;
}

.delivery-fee.free-delivery {
    color: var(--primary-green);
    font-weight: 600;
}

.free-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.free-delivery-hint {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #f57c00;
    padding: 0.6rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.9rem;
}

.total-row {
    font-size: 1.1rem;
    color: var(--primary-green);
    padding-top: 0.75rem;
}

.cart-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--accent-green);
}

.order-form h5 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.order-form input,
.order-form .form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.order-form input:focus,
.order-form .form-select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    appearance: none;
    padding-right: 2.5rem;
}

.delivery-fields {
    transition: opacity 0.3s ease, height 0.3s ease;
}

.btn-order {
    width: 100%;
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Delivery status v košíku */
.delivery-status {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.status-dot.active {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.status-text {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.delivery-stat {
    font-size: 0.85rem;
    color: var(--primary-green);
}

/* Floating Cart Widget */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 2px solid var(--accent-green);
    border-radius: 50px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.floating-cart.has-items {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.3);
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.floating-icon {
    font-size: 1.2rem;
}

.floating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-count {
    background: var(--accent-green);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.floating-text {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
}

.floating-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(76, 175, 80, 0.3);
}

.floating-status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.floating-status-text {
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-cart {
        bottom: 15px;
        right: 15px;
        padding: 0.6rem 0.8rem;
    }
    
    .delivery-info {
        font-size: 0.8rem;
    }
}

/* Toast notifikace */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
    max-width: 300px;
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Mobile responsive pro toast */
@media (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-green);
    font-weight: 600;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 480px) {
    .header-cta .btn-primary {
        display: none;
    }
    
    .online-status {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 79px;
        left: 0;
        width: 100%;
        height: calc(100vh - 79px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav a {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}