/**
 * Advanced Slider CSS Styles - Verze 2.6.13
 * Styly pro všech 8 typů sliderů
 */

/* Základní Swiper styly */
.swiper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.swiper-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Navigační prvky */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* 1. Image Slider */
.image-slider {
    height: 400px;
}

.image-slide {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.slide-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.slide-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.slide-button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 2. Content Slider */
.content-slider {
    height: 400px;
}

.content-slide {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
}

.slide-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.slide-content.left-aligned {
    flex-direction: row;
}

.slide-content.center-aligned {
    flex-direction: column;
    text-align: center;
}

.slide-content.right-aligned {
    flex-direction: row-reverse;
}

.slide-text {
    flex: 1;
}

.slide-text .slide-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.slide-text .slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #666;
}

/* 3. Post Cards Carousel */
.post-cards-carousel {
    height: 350px;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-image:hover img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
    color: #999;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-title a {
    color: #333;
    text-decoration: none;
}

.card-title a:hover {
    color: #0073aa;
}

.card-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.card-button {
    display: inline-block;
    padding: 8px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.card-button:hover {
    background: #005a87;
    transform: translateY(-1px);
}

/* Card Carousel (nový typ) */
.card-carousel {
    height: 360px;
}

.card-carousel .swiper-slide {
    height: auto;
}

.card-carousel .card {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-carousel .card.rounded {
    border-radius: 16px;
    overflow: hidden;
}

.card-carousel .card.square {
    border-radius: 0;
}

.card-carousel .card.shadow {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card-carousel .card.none {
    box-shadow: none;
}

.card-carousel .image {
    height: 180px;
    overflow: hidden;
}

.card-carousel .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-carousel .title {
    font-size: 18px;
    font-weight: 700;
    padding: 16px 16px 8px;
    color: #222;
}

.card-carousel .excerpt {
    padding: 0 16px 16px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.card-carousel .button {
    margin: 0 16px 16px;
    align-self: flex-start;
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.card-carousel .button:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Hover efekty */
.card-carousel .card.hover-lift:hover {
    transform: translateY(-6px);
}

.card-carousel .card.hover-zoom:hover .image img {
    transform: scale(1.06);
    transition: transform 0.25s ease;
}

.card-carousel .card.hover-tilt:hover {
    transform: perspective(800px) rotateX(2deg) rotateY(-2deg);
}

/* Aktivní slide zvýraznění */
.card-carousel .swiper-slide-active .card {
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* Responzivní výška a CTA zarovnání */
.card-carousel .card { min-height: 100%; }
.card-carousel .excerpt { flex: 1; }

/* Product Slider (nový typ) */
.product-slider {
    height: 400px;
}

.product-slider .swiper-slide {
    height: auto;
}

.product-slider .product {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-slider .product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-slider .image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-slider .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-slider .product:hover .image img {
    transform: scale(1.05);
}

.product-slider .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-slider .badge.sale {
    background: #e74c3c;
    color: white;
}

.product-slider .badge.out-of-stock {
    background: #95a5a6;
    color: white;
}

.product-slider .name {
    padding: 16px 16px 8px;
    flex: 1;
}

.product-slider .name a {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-slider .name a:hover {
    color: #0073aa;
}

.product-slider .price {
    padding: 0 16px 12px;
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

.product-slider .add-to-cart {
    padding: 0 16px 16px;
}

.product-slider .add-to-cart .button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.product-slider .add-to-cart .button:hover {
    background: #005a87;
    transform: translateY(-1px);
}

/* Stylové varianty */
.product-slider.compact .product {
    border-radius: 8px;
}

.product-slider.compact .image {
    height: 150px;
}

.product-slider.compact .name a {
    font-size: 14px;
}

.product-slider.compact .price {
    font-size: 16px;
}

.product-slider.detailed .product {
    border-radius: 16px;
}

.product-slider.detailed .image {
    height: 220px;
}

.product-slider.detailed .name a {
    font-size: 18px;
}

.product-slider.detailed .price {
    font-size: 20px;
}

/* Video Slider (nový typ) */
.video-slider {
    height: 500px !important;
    position: relative;
    width: 100%;
    background: #000;
}

.video-slider .swiper-slide {
    height: 100%;
    width: 100%;
}

.video-slider .slide {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.video-slider .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}

.video-slider .video-container iframe,
.video-slider .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-slider .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
    z-index: 10;
}

.video-slider .overlay .title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.video-slider .overlay .description {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Thumbnail Slider (nový typ) */
.thumbnail-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.thumbnail-slider .main-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.thumbnail-slider .main-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.thumbnail-slider .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.thumbnail-slider .main-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.thumbnail-slider .main-image a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-slider .main-image img.fade-out {
    opacity: 0;
}

.thumbnail-slider .main-image img.fade-in {
    opacity: 1;
}

.thumbnail-slider .image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 16px;
    font-weight: 600;
}

.thumbnail-slider .thumbnails-container {
    position: relative;
}

.thumbnail-slider .thumbnails {
    display: flex;
    gap: 8px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.thumbnail-slider .thumb {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail-slider .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-slider .thumb:hover img {
    transform: scale(1.05);
}

/* Styly aktivní miniatury */
.thumbnail-slider[data-style="border"] .thumb.active {
    border: 3px solid #007cba;
    box-shadow: 0 0 0 1px rgba(0, 124, 186, 0.3);
}

.thumbnail-slider[data-style="shadow"] .thumb.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.thumbnail-slider[data-style="opacity"] .thumb.active {
    opacity: 1;
}

.thumbnail-slider[data-style="opacity"] .thumb:not(.active) {
    opacity: 0.6;
}

/* Navigační tlačítka pro miniatury */
.thumbnail-slider .thumb-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail-slider .thumb-prev,
.thumbnail-slider .thumb-next {
    background: #007cba;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-slider .thumb-prev:hover,
.thumbnail-slider .thumb-next:hover {
    background: #005a87;
    transform: scale(1.1);
}

.thumbnail-slider .thumb-prev:disabled,
.thumbnail-slider .thumb-next:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Pozice miniatur */
.thumbnail-slider[data-position="bottom"] {
    display: flex;
    flex-direction: column;
}

.thumbnail-slider[data-position="top"] {
    display: flex;
    flex-direction: column-reverse;
}

.thumbnail-slider[data-position="top"] .main-image-container {
    margin-bottom: 0;
    margin-top: 15px;
}

.thumbnail-slider[data-position="left"] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.thumbnail-slider[data-position="left"] .main-image-container {
    margin-bottom: 0;
    margin-right: 15px;
    flex: 1;
}

.thumbnail-slider[data-position="left"] .thumbnails-container {
    flex: 0 0 100px;
}

.thumbnail-slider[data-position="left"] .thumbnails {
    flex-direction: column;
}

.thumbnail-slider[data-position="left"] .thumb {
    width: 100px;
    height: 80px;
}

.thumbnail-slider[data-position="right"] {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.thumbnail-slider[data-position="right"] .main-image-container {
    margin-bottom: 0;
    margin-left: 15px;
    flex: 1;
}

.thumbnail-slider[data-position="right"] .thumbnails-container {
    flex: 0 0 100px;
}

.thumbnail-slider[data-position="right"] .thumbnails {
    flex-direction: column;
}

.thumbnail-slider[data-position="right"] .thumb {
    width: 100px;
    height: 80px;
}

/* Lazy loading */
.thumbnail-slider .lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail-slider .lazy-load.loaded {
    opacity: 1;
}

/* První obrázek by měl být viditelný i s lazy loading */
.thumbnail-slider .main-image .lazy-load {
    opacity: 1;
}

/* Responzivní design pro Thumbnail Slider */
@media (max-width: 768px) {
    .thumbnail-slider .main-image {
        height: 250px;
    }
    
    .thumbnail-slider .thumb {
        width: 60px;
        height: 60px;
    }
    
    .thumbnail-slider[data-position="left"] .thumb,
    .thumbnail-slider[data-position="right"] .thumb {
        width: 80px;
        height: 60px;
    }
    
    .thumbnail-slider[data-position="left"] .thumbnails-container,
    .thumbnail-slider[data-position="right"] .thumbnails-container {
        flex: 0 0 80px;
    }
    
    .thumbnail-slider .image-title {
        font-size: 14px;
        padding: 15px 10px 10px;
    }
}

@media (max-width: 480px) {
    .thumbnail-slider[data-position="left"],
    .thumbnail-slider[data-position="right"] {
        flex-direction: column;
    }
    
    .thumbnail-slider[data-position="left"] .main-image-container,
    .thumbnail-slider[data-position="right"] .main-image-container {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 15px;
    }
    
    .thumbnail-slider[data-position="left"] .thumbnails-container,
    .thumbnail-slider[data-position="right"] .thumbnails-container {
        flex: none;
    }
    
    .thumbnail-slider[data-position="left"] .thumbnails,
    .thumbnail-slider[data-position="right"] .thumbnails {
        flex-direction: row;
    }
    
    .thumbnail-slider[data-position="left"] .thumb,
    .thumbnail-slider[data-position="right"] .thumb {
        width: 60px;
        height: 60px;
    }
}

/* Responzivní design pro Video Slider */
@media (max-width: 768px) {
    .video-slider {
        height: 300px;
    }
    
    .video-slider .overlay {
        padding: 20px 15px 15px;
    }
    
    .video-slider .overlay .title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .video-slider .overlay .description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .video-slider {
        height: 250px;
    }
    
    .video-slider .overlay {
        padding: 15px 10px 10px;
    }
    
    .video-slider .overlay .title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .video-slider .overlay .description {
        font-size: 13px;
    }
}

/* 4. Single Slide Carousel */
.single-slide-carousel {
    height: 500px;
}

.single-slide {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
}

.slide-content .slide-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-content .slide-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
}

.slide-content .slide-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

/* 5. Testimonial Slider */
.testimonial-slider {
    height: 300px;
}

.testimonial-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: #0073aa;
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0073aa;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.author-position {
    font-size: 14px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 6. Product Carousel */
.product-carousel {
    height: 400px;
}

.product-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-title a {
    color: #333;
    text-decoration: none;
}

.product-title a:hover {
    color: #0073aa;
}

.product-description {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.product-button {
    display: inline-block;
    padding: 10px 25px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-button:hover {
    background: #218838;
    transform: translateY(-1px);
}

/* 7. Hero Slider */
.hero-slider {
    height: 600px;
}

.hero-slider.fullscreen {
    height: 100vh;
}

.hero-slide {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 80px 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);
}

.hero-description {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    max-width: 700px;
}

.hero-button {
    display: inline-block;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid white;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Responzivní design */
@media (max-width: 768px) {
    .image-slider,
    .content-slider,
    .post-cards-carousel,
    .single-slide-carousel,
    .testimonial-slider,
    .product-carousel {
        height: 300px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content,
    .testimonial-item,
    .product-content {
        padding: 20px;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .slide-title {
        font-size: 20px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .image-slider,
    .content-slider,
    .post-cards-carousel,
    .single-slide-carousel,
    .testimonial-slider,
    .product-carousel {
        height: 250px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content,
    .testimonial-item,
    .product-content {
        padding: 15px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .slide-description {
        font-size: 12px;
    }
    
    .testimonial-quote {
        font-size: 16px;
    }
    
    .hero-button {
        padding: 15px 30px;
        font-size: 14px;
    }
}