.products-carousel-section {
    width: 100%;
    margin:0;
    padding: 15px 20px;        
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}

.products-carousel-title {
    margin: 0 0 30px 0;
    font-size: 38px;
    font-weight: 700;
    color: #191919;  
    line-height: 1.2;
}

.products-carousel-title-link {
    text-decoration: none;
    color: #191919;  
    display: inline-block;
    transition: color 0.2s ease;
}

.products-carousel-title-link:hover {
    color: #ffffff;
}

.products-carousel-title-band {
    margin: -24px -70px 20px -70px;  
    border-radius: 12px 12px 0 0;    
    padding: 28px 20px;
    background-color: #eeb645;
}

.products-carousel-box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto 30px auto;  
    padding: 24px 70px;
    background-color: #ffffff; 
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
}

.products-carousel-text {
    font-size: 22px;
    font-weight: 500;
}

.products-carousel-text p {
    color: #191919;  
}

.products-carousel-window {
    overflow: hidden;
    max-width: 1200px;
    padding: 12px 0;
}

.products-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.35s ease;
}

.product-card-link {
    flex: 0 0 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    padding: 20px 16px 24px;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #f2b632;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.12);
}

.product-card:active {
    transform: translateY(-2px) scale(0.985);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

.product-card img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 14px;
}

.product-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #f2ab1d;
}

.product-card p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
}

.carousel-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #a59f9f;
    font-size: 4.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    z-index: 2;
}

.carousel-arrow:hover {
    color: #f2ab1d;
}

.carousel-arrow-left {
    left: 18px;
}

.carousel-arrow-right {
    right: 18px;
}


@media (max-width: 768px) {
    .products-carousel-box {
        padding: 24px 50px 24px;
    }

    .product-card-link {
        flex: 0 0 calc((100% - 28px) / 2);
        max-width: calc((100% - 28px) / 2);
    }

    .product-card h3 {
        font-size: 1.2rem;
    }
}


@media (max-width: 480px) {
    .products-carousel-box {
        padding: 24px 40px 24px;
    }

    .product-card-link {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .products-carousel-title {
        font-size: 1.8rem;
    }

    .products-carousel-text {
        font-size: 20px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 4px;
}

.carousel-dot {
    width: 28px;
    height: 4px;
    border-radius: 4px;
    background: #d0d0d0;
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.carousel-dot.active {
    background: #f2b632;
    width: 40px;
}

.highlight {
    color: #f2b632;
    font-weight: 700;
}