/*Spoločné*/
/* HLAVIČKA */
.home-gallery-slider-header .ponuka-full a,
.home-product-slider-header .ponuka-full a {
    color: var(--color-category);
    font-size: 1.7rem;
    padding: 0 25px;    
}
.home-gallery-slider-header .ponuka,
.home-product-slider-header .ponuka {
    color: var(--color-danger);
    padding: 0 25px;
    font-size: 1.7rem;
}
/* TLAČIDLÁ KATEGÓRIÍ */
.home-product-category-btn {
  border: none;
  background: none;
  color: var(--color-input-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  margin: 0 0.25rem;
  transition: color 0.2s ease;
}
.home-product-category-btn.active,
.home-product-category-btn:hover {
  color: var(--color-category);
  text-decoration: underline;
}

.home-product-slider-wrapper {
    padding: 1.5rem 0;
    overflow: hidden;
    border-radius: 0.375rem;
    margin-bottom: 2rem;
    background-color: var(--color-gray);
    border: 1px solid var(--color-border2);
}


.homeProductSwiper  {
    padding: 10px;
}
/* Slide – základné rozloženie */
.home-product-slide {
    width: 100%;
    max-width: 270px;
    min-height: 400px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.95);
    transition: all 0.4s ease;
    filter: blur(0.5px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    background: var(--color-bg2, #fff);
    box-shadow: 1px 1px 8px var(--color-shadow);
    padding: 1rem;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

.home-product-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    z-index: 2;
    padding: 0 0 0 0;
}
/* Obrázok */
.home-product-img-wrapper {
    aspect-ratio: 300 / 225;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.home-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Info blok */
.home-product-info {
    ;
}

/* Názov produktu */
.home-product-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

/* Cena */
.home-product-price {
    font-size: 1.2rem;
    color: var(--color-danger);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* Popis – max 3 riadky */
.home-product-description {
    font-size: 0.95rem;
    color: var(--color-text, #555);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* max 3 riadky */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 1rem;
}

/* Dostupnosť */
.home-product-info .badge {
    font-size: 0.8rem;
    margin-right: 0.25rem;
}

/* === GALÉRIA SLIDER (homeGallerySwiper) === */
/* Štýly sú úplne oddelené od produktového slidera */

/* Wrapper okolo celého slidera */
.home-gallery-slider-wrapper {
    padding: 1.5rem 0;
    overflow: hidden;
    border-radius: 0.375rem;
    margin-bottom: 2rem;
    background-color: var(--color-gray);
    border: 1px solid var(--color-border2);
}

/* Tlačidlá kategórií */
.home-gallery-category-btn {
  border: none;
  background: none;
  color: var(--color-input-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.25rem 0.75rem;
  margin: 0 0.25rem;
  transition: color 0.2s ease;
}

.home-gallery-category-btn.active,
.home-gallery-category-btn:hover {
  color: var(--color-category);
  text-decoration: underline;
}

/* Swiper samotný */
.homeGallerySwiper {
  overflow: hidden;
  padding-bottom: 1rem;
}

.homeGallerySwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

/* Každý obrázok v galérii (slide) */
.homeGallerySwiper .swiper-slide {
    width: 100%;
    max-width: 300px; /* obmedz max veľkosť na desktopoch */
    flex-shrink: 0;
    opacity: 0.7;
    transform: scale(0.9);
    filter: blur(0.5px);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* Zvýraznený aktívny */
.homeGallerySwiper .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    z-index: 2;
}

/* Obrázok s pomerom */
.home-gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 300 / 225;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}
/* Obrázok načítaný (fade-in efekt) */
.home-gallery-slide.loaded img {
  opacity: 1;
}

@media (max-width: 768px) {
    .home-gallery-slider-header .ponuka-full a,
    .home-product-slider-header .ponuka-full a {
        color: var(--color-category);
        padding: 0 15px;    
        font-size: 1.5rem;
    }
    .home-gallery-slider-header .ponuka,
    .home-product-slider-header .ponuka {
        color: var(--color-danger);
        padding: 0 15px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .home-gallery-slider-header,
    .home-product-slider-header {
        flex-direction: column;
    }
    .home-gallery-slider-header .ponuka-full a,
    .home-product-slider-header .ponuka-full a {
        color: var(--color-category);
        padding: 0 15px;    
        font-size: 1.3rem;
    }
    .home-gallery-slider-header .ponuka,
    .home-product-slider-header .ponuka {
        color: var(--color-danger);
        padding: 0 15px;
        font-size: 1.3rem;
    }
    .homeGallerySwiper .swiper-slide {
        max-width: 220px;
    }
    .home-product-slide {
        max-width: 220px;
        min-height: 360px;
        padding: 0.75rem;
    }

    .home-product-name {
        font-size: 1rem;
    }

    .home-product-price {
        font-size: 0.95rem;
    }

    .home-product-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .home-product-img-wrapper {
        aspect-ratio: 16 / 10; /* trochu nižšie obrázky na mobiloch */
    }

    .home-product-slider-wrapper {
        padding: 1rem 0;
    }
}

