.products-carousel {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    margin-top: 20px;
}

.products-container {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.products-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.product-card {
    flex: 0 0 calc((100% - 140px) / 8);
    max-width: calc((100% - 140px) / 8);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-link {
    display: block;
    width: 100%;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.1);
}

.product-price {
    color: white;
    background-color: #002080;
    width: 100%;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.product-status {
    color: #3c7d0b;
    text-align: center;
    font-size: 12px;
    margin-bottom: 5px;
    font-family: 'Exo 2', sans-serif;
}

.product-title {
    color: #002080;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
}

.product-title:hover {
    text-decoration: underline;
}

.product-subtitle {
    color: #666;
    text-align: center;
    font-size: 11px;
    line-height: 1.2;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #002080;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-arrow:hover {
    background-color: #213b88;
    transition: 0.3s ease;
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-arrow img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
} 