.products-carousel-container {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.products-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px; /* Space for buttons */
}

.product-card {
    height: 520px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card__content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Force arrow visibility with black color and higher contrast */
.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
    width: 50px !important;
    height: 50px !important;
    background: #fff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
}

/* Fallback for icon if font doesn't load */
.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
    font-weight: 900 !important;
    display: block !important;
}

.swiper-button-next { right: 5px !important; }
.swiper-button-prev { left: 5px !important; }
