/* ------------------------------
   PRODUCT CAROUSEL SECTION
------------------------------- */
.pcs-section {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pcs-category-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.pcs-category {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pcs-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    padding-right: 60px;
    /* space for button */
}

.pcs-category-header h3 {
    font-size: 1.5rem;
    color: var(--french-blue);
    margin: 0;
}

.pcs-arrows {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pcs-arrows button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.pcs-arrows button:hover {
    background: var(--hover-primary);
}

.pcs-carousel {
    overflow: hidden;
    position: relative;
    height: calc(4 * 120px + 3 * 15px);
    width: 100%;
}

.pcs-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.5s ease;
    position: relative;
}

.pcs-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 120px;
    width: 100%;
}

.pcs-card:hover {
    transform: translateY(-5px);
}

.pcs-card img {
    width: 40%;
}

.pcs-card-info {
    padding: 10px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pcs-card-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.pcs-price {
    display: flex;
    gap: 5px;
    font-size: 0.9rem;
}

.pcs-main-price {
    text-decoration: line-through;
    color: #888;
}

.pcs-discount-price {
    color: var(--accent);
    font-weight: 600;
}

.pcs-rating {
    color: #ffb400;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .pcs-card {
        height: 110px;
    }
}

@media (max-width: 992px) {
    .pcs-category-row {
        flex-direction: column;
    }

    .pcs-carousel {
        height: calc(4 * 100px + 3 * 15px);
    }
}

@media (max-width: 576px) {
    .pcs-carousel {
        height: calc(4 * 90px + 3 * 10px);
    }
}
