

.products-showcase-section {
    padding: 80px 0;
    background-color: #FBF6F0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.section-title {
    text-align: center;
    color: var(--text-color);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.showcase-separator {
    width: 80px;
    height: 2px;
    margin: 0 auto 50px;
}

.products-showcase-container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto minmax(300px, 350px);
    grid-template-areas: 
        "prev showcase next info";
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

/* Nawigacja */
.showcase-nav {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
    z-index: 10;
}

.showcase-nav:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.showcase-prev {
    grid-area: prev;
}

.showcase-next {
    grid-area: next;
}

/* Produkty */
.products-showcase {
    grid-area: showcase;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.product-items-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.product-item {
    position: absolute;
    transition: all 0.5s ease;
    opacity: 1;
    height: auto;
    max-height: 100%;
}

.product-item.left {
    transform: translateX(-75%) scale(0.85);
    z-index: 1;
    opacity: 0.7;
}

.product-item.center {
    transform: translateX(0) scale(1);
    z-index: 2;
}

.product-item.right {
    transform: translateX(75%) scale(0.85);
    z-index: 1;
    opacity: 0.7;
}

.product-item.hidden {
    opacity: 0;
    z-index: 0;
}

.product-item img {
    height: 400px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.product-info-box {
    grid-area: info;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: white;
  
    display: flex;
    flex-direction: column;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.view-product-button {
    display: inline-block;
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: white;
}

.view-product-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Wskaźniki */
.showcase-indicators {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
}

/* Responsywność */
@media (max-width: 992px) {
    .products-showcase-container {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: 
            "prev showcase next"
            "info info info";
        gap: 15px;
    }

    .product-info-box {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .products-showcase-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .product-items-wrapper {
        height: 350px;
    }

    .product-item img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .products-showcase-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .product-items-wrapper {
        height: 300px;
    }

    .product-item img {
        height: 250px;
    }

    .product-item.left {
        transform: translateX(-60%) scale(0.75);
    }

    .product-item.right {
        transform: translateX(60%) scale(0.75);
    }
}