
.lfs-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.lfs-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.lfs-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.lfs-product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.lfs-product-image {
    flex: 1 1 40%;
}

.lfs-product-gallery .woocommerce-product-gallery {
    margin: 0 auto;
}

/* NIE zaokrąglamy już na koło – ma być normalna galeria produktu */
.lfs-product-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lfs-product-content {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lfs-product-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.lfs-product-title a {
    text-decoration: none;
}

.lfs-product-short-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.lfs-product-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.lfs-product-price {
    font-size: 1.6rem;
    font-weight: 700;
}

.lfs-add-to-cart-button {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    animation: lfs-pulse 1.5s infinite;
}

@keyframes lfs-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 18px rgba(0,0,0,0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Navigation arrows */
.lfs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255,255,255,0.9);
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 10;
}

.lfs-nav-prev {
    left: 1rem;
}

.lfs-nav-next {
    right: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .lfs-product {
        flex-direction: column;
    }

    .lfs-product-content {
        align-items: flex-start;
    }

    .lfs-product-bottom {
        justify-content: flex-start;
    }

    .lfs-product-title {
        font-size: 1.6rem;
    }
}
