/* Porto Stone Products Module Styles */
.porto-stone-products-block {
    margin: 40px 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/*
.porto-stone-products-block .title_block {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    border-bottom: none;
    padding-bottom: 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}*/

/* Slider Container */
.porto-stone-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 50px;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 2em, #000 3em, #000 calc(100% - 3em), transparent calc(100% - 2em));
    -webkit-mask-image: -webkit-linear-gradient(left, transparent 0.1em, #000 3em, #000 calc(100% - 2em), transparent calc(100% - 1em));
}

.porto-stone-products {
    display: flex;
    transition: transform 0.3s ease;
    gap: 15px;
    margin: 0;
    padding: 10px 5px;
    width: max-content;
    min-width: 100%;
}

/* Product blocks */
.porto-stone-product {
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: calc(100vw / 1.2 - 60px);
    max-width: 300px;
    //min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.porto-stone-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: #d4d4d4;
}

.porto-stone-product img {
    width: 100%;
    max-width: 180px;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
    border-radius: 6px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.porto-stone-product:hover img {
    transform: scale(1.05);
}

.porto-stone-product .product-name {
    font-size: 15px;
    margin: 10px 0 5px;
    line-height: 1.4;
    //font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 42px;
}

.porto-stone-product .product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.porto-stone-product .product-name a:hover {
    color: #d4a017;
}

.porto-stone-product .product-description-short {
    font-size: 13px;
    color: #666;
    margin: 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 55px;
}

.porto-stone-product .product-price {
    font-size: 18px;
    font-weight: 700;
    color: #d4a017;
    margin-top: 10px;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: #d4a017;
    border-color: #d4a017;
    color: #ffffff;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive Design */
@media (min-width: 768px) {
    .porto-stone-product {
        width: calc((100vw - 100px) / 2);
        //min-height: 400px;
    }
    
    .porto-stone-product img {
        max-width: 300px;
        height: 250px;
    }
    
    .porto-stone-product .product-name {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .porto-stone-product {
        width: calc((100vw - 150px) / 3);
        //min-height: 420px;
    }
    
    .porto-stone-slider {
        padding: 0 60px;
    }
}

@media (min-width: 1200px) {
    .porto-stone-product {
        width: calc((100vw - 200px) / 4);
        //min-height: 430px;
        max-width: 320px;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .porto-stone-slider {
        padding: 0 70px;
    }
}

@media (max-width: 767px) {
    .porto-stone-product {
        width: calc(100vw - 80px);
        //min-height: 360px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .porto-stone-slider {
        padding: 0 45px;
    }
}

/* Drag and Touch improvements */
.porto-stone-products {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.porto-stone-products:active {
    cursor: grabbing;
}

.porto-stone-product {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}