* {
    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', system-ui, -apple-system, 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-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    margin-right: 0.5rem;
}

.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;
}

.btn-en-flag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--primary-green);
    border: 1.5px solid rgba(45, 80, 22, 0.35);
    border-radius: 4px;
    padding: 0.2rem 0.45rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-en-flag:hover {
    background: var(--primary-green);
    color: #fff;
}

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

.status-labels {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

#status-subtext {
    font-size: 0.65rem;
    font-weight: 400;
    color: #aaa;
    text-transform: none;
}

.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 announcement badges */
.hero-announcement {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.2);
    color: var(--primary-green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    flex-shrink: 0;
}

.hero-badge--new {
    background: rgba(45, 80, 22, 0.12);
    border-color: rgba(45, 80, 22, 0.3);
}

.hero-badge--highlight {
    background: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.35);
    color: #2d6a30;
}

/* 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: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #2D5016 0%, #4CAF50 40%, #58a85b 55%, #4CAF50 70%, #2D5016 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shine 8s linear infinite;
}

@keyframes text-shine {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.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;
}

.no-registration-note {
    display: inline-block;
    margin-top: 0.75rem !important;
    font-size: 0.9rem !important;
    color: var(--primary-green) !important;
    background: rgba(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 0.35rem 1rem;
}

.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: linear-gradient(135deg, #1a1a2e 0%, #2d2d4e 100%);
    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.stripe-blue::before {
    background: linear-gradient(135deg, #1a3a6b, #5b9bd5);
}

.product-card.stripe-plum::before {
    background: linear-gradient(135deg, #2d0a3a, #9b5bbf);
}

.product-card.stripe-forest::before {
    background: linear-gradient(135deg, #1e5c1e, #3a8c3a);
}

.product-card.stripe-platinum::before {
    background: linear-gradient(135deg, #3a3a3a, #b8b8b8);
}

.product-card.featured.stripe-blue {
    border-color: #5b9bd5;
}

.product-card.featured.stripe-plum {
    border-color: #9b5bbf;
}

.product-card.featured.stripe-forest {
    border-color: #3a8c3a;
}

.product-card.featured.stripe-platinum {
    border-color: #b8b8b8;
}

.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-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 1;
}

.card-color-blue     { background: linear-gradient(135deg, #1a3a6b, #2d6bbf, #5b9bd5); }
.card-color-plum     { background: linear-gradient(135deg, #2d0a3a, #6b2d8b, #9b5bbf); }
.card-color-forest   { background: linear-gradient(135deg, #0d2b0d, #1e5c1e, #3a8c3a); }
.card-color-platinum { background: linear-gradient(135deg, #3a3a3a, #7a7a7a, #b8b8b8); }

.card-color-label {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 0 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

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

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

.product-image.card-color-blue::before {
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.2) 0%, rgba(91, 155, 213, 0.2) 100%);
}

.product-image.card-color-plum::before {
    background: linear-gradient(135deg, rgba(45, 10, 58, 0.2) 0%, rgba(155, 91, 191, 0.2) 100%);
}

.product-image.card-color-forest::before {
    background: linear-gradient(135deg, rgba(13, 43, 13, 0.2) 0%, rgba(58, 140, 58, 0.2) 100%);
}

.product-image.card-color-platinum::before {
    background: linear-gradient(135deg, rgba(58, 58, 58, 0.2) 0%, rgba(184, 184, 184, 0.2) 100%);
}

.product-name-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

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

.effect-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    color: #e0e0e0;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.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;
}

.type-badge {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    color: #888;
    margin: -0.5rem 0 0.75rem;
    letter-spacing: 0.01em;
}

.type-badge.type-sativa { color: #3a8c3a; }
.type-badge.type-indica { color: #7b3fa0; }
.type-badge.type-hybrid { color: #2d6bbf; }

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

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

.category-disclaimer {
    font-size: 0.72rem;
    color: #aaa;
    margin-top: 0.5rem;
    font-style: italic;
}

.joint-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0 1rem;
    color: #888;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.joint-divider::before,
.joint-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.joint-info {
    font-size: 0.75rem;
    color: #999;
    margin: -0.25rem 0 0.75rem;
    text-align: center;
}

.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-original {
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: line-through;
    display: block;
}

.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(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

.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,
.contact-item .contact-link {
    font-size: 1rem;
    color: var(--dark-text);
}

.contact-item .contact-link {
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item .contact-link:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

.wa-order-cta {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.wa-order-label {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.btn-wa-order {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-wa-order:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

.btn-wa-order--hero {
    font-size: 1.05rem;
    padding: 0.85rem 1.75rem;
}

.btn-wa-order--secondary {
    background: transparent;
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #25D366;
}

.btn-wa-order--secondary:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

.btn-wa-order i {
    font-size: 1.2rem;
}

.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;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.legend-badge {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 100px;
    padding: 0.4rem 0.9rem;
    font-size: 0.83rem;
    color: #444;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.legend-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot--primary {
    background: var(--accent-green);
    box-shadow: 0 0 5px rgba(76,175,80,0.5);
}

.legend-dot--secondary {
    background: #fff;
    border: 2px solid #4CAF50;
}

.legend-badge-text strong {
    color: #222;
    font-weight: 600;
}

.coverage-note {
    margin-top: 0.75rem;
    font-size: 0.78rem;
    color: #888;
}

/* Mobilní optimalizace pro mapu pokrytí */
@media (max-width: 768px) {
    .coverage-map {
        padding: 1.5rem;
    }
    
    .map-placeholder {
        height: 450px;
    }
    
    .coverage-legend {
        flex-direction: column;
    }

    .legend-badge {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .coverage-map {
        padding: 1rem;
    }

    .map-placeholder {
        height: 500px;
    }
}

/* 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(76, 175, 80, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.2);
    color: var(--primary-green);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 400;
    opacity: 0.85;
}

.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;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: white;
    transition: border-color 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--accent-green);
}

.phone-prefix {
    padding: 0.75rem 0.5rem 0.75rem 0.75rem;
    font-size: 1rem;
    color: #555;
    white-space: nowrap;
    user-select: none;
}

.phone-input-wrapper input {
    border: none !important;
    margin-bottom: 0 !important;
    padding-left: 0.25rem !important;
    flex: 1;
    min-width: 0;
    outline: none;
}

.phone-input-wrapper input:focus {
    border-color: transparent !important;
}

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

.address-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--accent-green);
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 100;
    max-height: 240px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.address-suggestion {
    padding: 0.65rem 0.75rem;
    cursor: pointer;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}

.address-suggestion:last-child {
    border-bottom: none;
}

.address-suggestion:hover {
    background: #f0faf0;
}

.address-suggestion:hover .suggestion-name {
    color: var(--primary-green);
}

.suggestion-name {
    display: block;
    font-weight: 500;
    color: #222;
}

.suggestion-location {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 1px;
}

/* OTP Modal */
.otp-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.otp-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.otp-modal-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.otp-modal-content p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

#otp-code-input {
    width: 100%;
    padding: 0.85rem;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-sizing: border-box;
}

#otp-code-input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.otp-error {
    color: #e53935;
    font-size: 13px;
    margin-bottom: 0.75rem;
}

.btn-otp-verify {
    width: 100%;
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 0.85rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: background 0.2s;
}

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

.btn-otp-verify:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-otp-resend {
    background: none;
    border: none;
    color: #888;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

.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;
}

.status-dot.pending {
    width: 10px;
    height: 10px;
    background: #ffa500;
    border-radius: 50%;
    animation: slowPulse 3s infinite;
}

@keyframes slowPulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@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: 1;
    transform: translateY(0);
    pointer-events: all;
}

.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-dot.pending {
    background: #ffa500;
    animation: slowPulse 3s infinite;
}

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

.floating-status-text.pending {
    color: #ffa500;
}

/* 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;
}

.footer-tech {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #555;
}

.footer-tech a {
    color: #777;
    text-decoration: none;
    border-bottom: 1px solid #444;
    transition: color 0.2s ease;
}

.footer-tech a:hover {
    color: #aaa;
}

/* 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;
    }
}

/* WhatsApp fallback */
.whatsapp-fallback {
    text-align: center;
    margin-top: 10px;
    font-size: 0.78rem;
    color: #888;
}

.whatsapp-fallback a {
    color: #888;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.whatsapp-fallback a:hover {
    color: #555;
}

/* Order status banner */
#order-status-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #1a4a2e 0%, #2d7a4e 100%);
    color: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    animation: bannerSlideDown 0.4s ease-out;
}

@keyframes bannerSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

#order-status-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

#order-status-banner .banner-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

#order-status-banner .banner-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

#order-status-banner .banner-title {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#order-status-banner .banner-subtitle {
    font-size: 0.78rem;
    opacity: 0.85;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#order-status-banner .banner-close {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

#order-status-banner .banner-close:hover {
    background: rgba(255,255,255,0.3);
}

body.has-order-banner {
    padding-top: 60px;
}

@media (max-width: 480px) {
    #order-status-banner {
        padding: 10px 12px;
    }
    #order-status-banner .banner-title {
        font-size: 0.82rem;
    }
    #order-status-banner .banner-subtitle {
        font-size: 0.72rem;
    }
    body.has-order-banner {
        padding-top: 56px;
    }
}

/* 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);
}

/* ============================================
   ARTICLE PAGES — /th9x/, /hhc-cartridge/ etc.
   ============================================ */

.article-site-header {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 1.5rem;
}

.article-site-header .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.article-site-header .logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.article-site-header .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-site-header .header-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* Article hero */
.article-hero {
    background: linear-gradient(135deg, #0d1a0d 0%, #111 50%, #0a0a0a 100%);
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(76,175,80,0.15);
}

.article-hero .container {
    max-width: 800px;
}

.article-breadcrumb {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.article-breadcrumb a {
    color: var(--accent-green);
    text-decoration: none;
    opacity: 0.8;
}

.article-breadcrumb a:hover {
    opacity: 1;
}

.article-breadcrumb span {
    color: #555;
}

.article-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-hero .article-lead {
    font-size: 1.1rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 680px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: #555;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Article body */
.article-body {
    background: #fff;
    padding: 60px 0 80px;
}

.article-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 1.5rem;
    color: #222;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--accent-green);
    display: inline-block;
}

.article-container h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    margin: 2rem 0 0.75rem;
}

.article-container p {
    margin-bottom: 1.2rem;
    color: #333;
}

.article-container ul,
.article-container ol {
    margin: 0 0 1.2rem 1.5rem;
    color: #333;
}

.article-container li {
    margin-bottom: 0.4rem;
}

.article-container strong {
    color: #111;
    font-weight: 600;
}

.article-container a {
    color: var(--accent-green);
    text-decoration: none;
    border-bottom: 1px solid rgba(76,175,80,0.3);
    transition: border-color 0.2s;
}

.article-container a:hover {
    border-color: var(--accent-green);
}

/* Article disclaimer box */
.article-disclaimer {
    background: #f8f9fa;
    border-left: 3px solid #ddd;
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    font-size: 0.82rem;
    color: #777;
    margin: 2rem 0;
    line-height: 1.6;
}

/* CTA box inside article */
.article-cta-box {
    background: linear-gradient(135deg, #0d1a0d, #1a2e1a);
    border: 1px solid rgba(76,175,80,0.25);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    text-align: center;
    color: #fff;
}

.article-cta-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.article-cta-box p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.article-cta-box .btn-primary {
    display: inline-block;
    background: var(--accent-green);
    color: #fff;
    padding: 0.7rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: background 0.2s, transform 0.1s;
}

.article-cta-box .btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-1px);
}

/* Related articles */
.article-related {
    background: #f4f6f4;
    padding: 60px 0;
    border-top: 1px solid #e8e8e8;
}

.article-related h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
    text-align: center;
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.15s;
    display: block;
}

.article-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.article-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-green);
    margin-bottom: 0.5rem;
}

.article-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.4rem;
    line-height: 1.4;
}

.article-card p {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}

/* Article footer */
.article-footer {
    background: #1a1a1a;
    color: #888;
    padding: 1.75rem 0;
    text-align: center;
    font-size: 0.82rem;
}

.article-footer a {
    color: var(--accent-green);
    text-decoration: none;
    opacity: 0.8;
}

.article-footer a:hover {
    opacity: 1;
}

/* Mobile */
@media (max-width: 600px) {
    .article-hero {
        padding: 40px 0 35px;
    }

    .article-hero h1 {
        font-size: 1.6rem;
    }

    .article-hero .article-lead {
        font-size: 0.95rem;
    }

    .article-body {
        padding: 40px 0 60px;
    }

    .article-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .article-cards {
        grid-template-columns: 1fr;
    }
}

/* Article inline FAQ (details/summary) — vše scopováno pod .article-faq */
.article-faq {
    margin: 1.5rem 0 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.article-faq .faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 0;
    transition: none;
}

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

.article-faq .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.15s;
    line-height: 1.4;
}

.article-faq .faq-question::-webkit-details-marker {
    display: none;
}

.article-faq .faq-question::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--accent-green);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s;
}

.article-faq .faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.article-faq .faq-item[open] .faq-question {
    background: #f9fffe;
    color: var(--accent-green);
}

.article-faq .faq-answer {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    background: #f9fffe;
    max-height: none;
    overflow: visible;
}

.article-faq .faq-answer p {
    margin: 0;
    color: #444;
}

.article-faq .faq-answer a {
    color: var(--accent-green);
}


/* ============================================
   BLESK — rychlá objednávka
   ============================================ */

.blesk-section {
    background: linear-gradient(135deg, #0d1a0d, #162616);
    border: 1px solid rgba(76,175,80,0.3);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
}

.blesk-header {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-green);
    margin-bottom: 0.75rem;
}

.blesk-saved-info {
    margin-bottom: 0.85rem;
}

.blesk-info-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.blesk-info-icon {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.blesk-info-text {
    font-size: 0.82rem;
    color: #ccc;
}

.blesk-verified-badge {
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-left: 0.25rem;
}

.btn-blesk {
    width: 100%;
    background: var(--accent-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.01em;
}

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


.blesk-divider {
    text-align: center;
    font-size: 0.72rem;
    color: #555;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.blesk-local-note {
    text-align: center;
    font-size: 0.63rem;
    color: #444;
    margin-top: 0.35rem;
}

/* User info widget (nad floating cart widgetem) */
.user-info-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #1a1a1a;
    border: 1px solid rgba(76,175,80,0.35);
    border-radius: 50px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: box-shadow 0.2s, transform 0.15s;
    max-width: calc(100vw - 40px);
}

.btn-clear-data {
    background: none;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: #666;
    font-size: 0.6rem;
    width: 18px;
    height: 18px;
    min-width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin-left: 0.2rem;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}

.btn-clear-data:hover {
    color: #ff6b6b;
    border-color: rgba(255, 100, 100, 0.45);
}

.user-info-widget:hover {
    box-shadow: 0 6px 22px rgba(76,175,80,0.25);
    transform: translateY(-2px);
}

.user-info-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.user-info-data {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    overflow: hidden;
}

.ui-widget-address {
    font-size: 0.75rem;
    color: #ddd;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-widget-phone {
    font-size: 0.68rem;
    color: var(--accent-green);
    white-space: nowrap;
}

@media (max-width: 480px) {
    .user-info-widget {
        bottom: 90px;
        right: 12px;
        max-width: calc(100vw - 24px);
    }
}
