/* ==========================================================
   PRODUCTS SLIDER
   ========================================================== */

.lsh-products-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 4px 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.lsh-products-grid::-webkit-scrollbar {
    height: 6px;
}

.lsh-products-grid::-webkit-scrollbar-thumb {
    background: rgba(198,167,106,.35);
    border-radius: 999px;
}

.lsh-product-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid var(--lsh-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0,0,0,.28);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.lsh-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(226,196,141,.38);
    box-shadow: 0 18px 40px rgba(0,0,0,.34);
}

.lsh-product-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.lsh-product-image {
    background: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsh-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lsh-product-content {
    padding: 20px;
}

.lsh-product-content h3 {
    margin: 0;
    color: var(--lsh-gold-soft);
    font-size: 20px;
    line-height: 1.25;
    font-weight: var(--lsh-heading-font-weight);
}

@media (max-width: 991px) {
    .lsh-product-card {
        flex: 0 0 84%;
    }

    .lsh-product-content h3 {
        font-size: 18px;
    }
}
.lsh-product-desc {
    margin-top: 8px;
    font-size: 14px;
    color: var(--lsh-text-soft);
    line-height: 1.5;
    opacity: 0.85;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}