/* ── Products Section ───────────────────────────────────────────────── */
.products {
    overflow: visible;
}

.products-wrapper {
    position: relative;
    padding: 0 55px;
    opacity: 1 !important;
    visibility: visible !important;
}

.products-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding: 20px 4px;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

/* ── Product Card — uniform size ───────────────────────────────────── */
.product-card {
    min-width: 320px;
    width: 320px;
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.product-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

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

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.product-desc {
    flex: 1;
    margin: 8px 0 0;
}

.product-link {
    margin-top: 16px;
    display: inline-block;
}

/* ── Slider Buttons ─────────────────────────────────────────────────── */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slider-btn:hover {
    background: #FF6A00;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.left  { left: 0; }
.slider-btn.right { right: 0; }

.slider-btn.disabled {
    opacity: 0.3 !important;
    cursor: default;
    pointer-events: none;
}