/* Section 8 Custom Styles - Smaller cards matching banner height */

/* Ensure row and columns don't overflow */
.home1-sec8-products .swiper-slide .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure Bootstrap columns don't overflow */
.home1-sec8-products .swiper-slide [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.home1-sec8-products .sec8-products-column {
    height: 670px;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 5px;
    padding-left: 5px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Scrollbar styling */
.home1-sec8-products .sec8-products-column::-webkit-scrollbar {
    width: 6px;
}

.home1-sec8-products .sec8-products-column::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.home1-sec8-products .sec8-products-column::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.home1-sec8-products .sec8-products-column::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Smaller product cards */
.home1-sec8-products .sec8-product-card {
    flex: 0 0 auto;
    margin-bottom: 0;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 8px;
    background: #fff;
    transition: box-shadow 0.2s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.home1-sec8-products .sec8-product-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.home1-sec8-products .sec8-product-card .card-grid-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home1-sec8-products .sec8-image-box {
    width: 70px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f8f8;
    border-radius: 4px;
    padding: 5px;
}

.home1-sec8-products .sec8-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.home1-sec8-products .sec8-info {
    flex: 1;
    padding: 0;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.home1-sec8-products .sec8-info a.color-brand-3 {
    font-size: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 3px 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .home1-sec8-products .sec8-products-column {
        height: auto;
        max-height: 400px;
    }
}

@media (max-width: 767px) {
    .home1-sec8-products .sec8-products-column {
        height: auto;
        max-height: 300px;
    }
    
    .home1-sec8-products .sec8-image-box {
        width: 60px;
        min-width: 60px;
        height: 60px;
    }
}
