/* Plugin Alpina - styl hero slidera */
.hero-produkty-wc-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background: linear-gradient(135deg, #294896 0%, #5a93c1 100%);
    padding: 10px 0 12px;
    border-radius: 16px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.3);
}

.hero-produkty-wc-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    transition: transform 0.5s ease-in-out;
    padding: 0 20px;
}

.hero-produkty-wc-item {
    flex: 0 0 calc((100% - 4 * 18px) / 5);
    max-width: calc((100% - 4 * 18px) / 5);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-produkty-wc-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.hero-produkty-wc-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.hero-produkty-wc-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f9f9f9;
}

.hero-produkty-wc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-produkty-wc-item:hover .hero-produkty-wc-image img {
    transform: scale(1.05);
}

.hero-produkty-wc-category {
    background: #8b4513;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin: 12px;
    display: inline-block;
}

.hero-produkty-wc-category[data-category*="fungicyd"],
.hero-produkty-wc-category[data-category*="fungicyd"]:root {
    background: #0a6d30;
    color: #fff;
}

.hero-produkty-wc-category[data-category*="herbi"],
.hero-produkty-wc-category[data-category*="herbi"]:root {
    background: #3459a0;
    color: #fff;
}

.hero-produkty-wc-category[data-category*="insekt"],
.hero-produkty-wc-category[data-category*="insekt"]:root {
    background: #e74c3c;
    color: #fff;
}

.hero-produkty-wc-title {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 12px 5px;
    color: #242424;
    line-height: 1.3;
}

.hero-produkty-wc-price {
    font-size: 18px;
    font-weight: 700;
    color: #295091;
    margin: 0 12px 14px;
}

@media (max-width: 1200px) {
    .hero-produkty-wc-item {
        flex: 0 0 30%;
        max-width: 30%;
    }
}

@media (max-width: 992px) {
    .hero-produkty-wc-item {
        flex: 0 0 40%;
        max-width: 40%;
    }
    .hero-produkty-wc-track {
        gap: 12px;
        padding: 0 12px;
    }
}

@media (max-width: 768px) {
    .hero-produkty-wc-item {
        flex: 0 0 70%;
        max-width: 70%;
    }
}

.plugin-alpina-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plugin-alpina-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.plugin-alpina-nav-prev {
    left: 10px;
}

.plugin-alpina-nav-next {
    right: 10px;
}

@media (max-width: 767px) {
    .plugin-alpina-nav {
        display: none;
    }
}
