/* Základné štýly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6347;
    --secondary: #FF8C69;
    --accent: #FFB07A;
    --dark: #111827;
    --light: #F8FAFC;
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}


/* Header */
header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    background: var(--glass);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--glass);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 24px;
}

.mobile-menu li {
    margin: 0.5rem 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    padding: 1rem 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #FF8C69 0%, #FFB07A 50%, #FFDAB9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    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 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(135deg, #111827, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(17, 24, 39, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF6347, #FF8C69);
    color: #111827;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button::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.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.4);
}

.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #111827;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(17, 24, 39, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(17, 24, 39, 0.5);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services */
.services {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 99, 71, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF6347, #FF8C69);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark);
}

.service-card p {
    color: #64748b;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.7;
}

/* Order Form */
.order-form-section {
    background: linear-gradient(135deg, #FF8C69 0%, #FFB07A 100%);
    color: white;
}

.form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #111827;
}

.form-header p {
    font-size: 1.2rem;
    color: #111827;
}

.form-group {
    margin-bottom: 2rem;
}

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

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

input, select, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    background: #FFF;
    color: #111827;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: inherit;
}

input::placeholder, textarea::placeholder {
    color: #555;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: #FFF;
    transform: translateY(-2px);
}

select option {
    background: var(--dark);
    color: white;
}

.budget-input {
    position: relative;
}

.budget-input input {
    padding-left: 40px;
}

.budget-input::before {
    content: '€';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #111827;
    font-weight: 600;
    z-index: 1;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6347, #FF4500);
    color: #111827;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Why Us */
.why-us {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.feature p {
    color: #64748b;
    line-height: 1.7;
}

/* Process */
.process {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6347, #FF8C69);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.step p {
    color: #64748b;
    line-height: 1.7;
}

/* Gallery */
/* Nahraď existujúce .gallery štýly v style.css týmto kódom */

.gallery {
    background: white;
    position: relative;
    overflow: hidden;
}

/* Hlavný carousel kontajner */
.gallery-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Kontajner pre posuvný track */
.carousel-track-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Posuvný track */
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

/* Jednotlivé slidy */
.carousel-slide {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.carousel-slide-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #FF8C69 0%, #FFB07A 100%);
    height: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    cursor: pointer;
    width: 100%;
}

/* Overlay efekt */
.carousel-slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.carousel-slide-inner:hover::before {
    opacity: 0.95;
}

/* Obsah slidu */
.carousel-slide-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    width: 100%;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.carousel-slide-inner:hover .carousel-slide-content {
    transform: translateY(-10px);
}

.vehicle-model {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.vehicle-route {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.vehicle-route::before {
    content: '📍';
    font-size: 1.2rem;
}

/* Hover efekt na slide */
.carousel-slide-inner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Navigačné tlačidlá */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

/* Indikátory (bodky) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}

.indicator-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Počítadlo */
.carousel-counter {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 600;
}

#currentSlide {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.lightbox .close-btn {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

#lightboxCaption {
    margin-top: 1rem;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem;
    z-index: 99999;
    transition: color 0.3s ease;
}

.lightbox-nav:hover {
    color: #ffb07a;
}

.lightbox-nav.prev {
    left: 2rem;
}

.lightbox-nav.next {
    right: 2rem;
}



/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 6rem;
    color: #FF6347;
    position: absolute;
    top: -20px;
    left: 30px;
    font-weight: 900;
    opacity: 0.3;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.rating {
    color: #FFB07A;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #374151;
}

.client-info strong {
    color: var(--dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.client-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
    color: white;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #FFB07A;
}

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

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FFB07A;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive */

@media (max-width: 1200px) {
    .carousel-slide {
        min-width: 50%;
    }
    
    .gallery-carousel {
        padding: 0 70px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
	
.carousel-slide {
        min-width: 100%;
        padding: 0 10px;
    }
    
    .carousel-slide > div {
        height: 350px;
    }
    
    .gallery-carousel {
        padding: 0 60px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .vehicle-model {
        font-size: 1.4rem;
    }
    
    .vehicle-route {
        font-size: 1rem;
    }

    .cta-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 80px 0;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1rem;
    }

    .service-card,
    .testimonial {
        padding: 2rem;
    }

    .logo-img {
        height: 40px;
    }
	
	 .carousel-slide > div {
        height: 300px;
        border-radius: 16px;
    }
    
    .gallery-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .carousel-slide-content {
        padding: 2rem 1.5rem;
    }
    
    .vehicle-model {
        font-size: 1.2rem;
    }
    
    .vehicle-route {
        font-size: 0.9rem;
    }
    
    .indicator-dot {
        width: 10px;
        height: 10px;
    }
    
    .indicator-dot.active {
        width: 24px;
    }
    
    .carousel-counter {
        font-size: 1rem;
    }
}


/* Animácia načítania */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide {
    animation: slideIn 0.6s ease-out;
}

/* Zlepšenie accessibility */
.carousel-btn:focus,
.indicator-dot:focus {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

/* Loading state */
.carousel-track.loading {
    opacity: 0.5;
    pointer-events: none;
}