.fcarou  .product-right{
 height: 136px !important;
}
.fcarou  .product-name{
  height: 48px;
  overflow: hidden;
}
.check-box-list label{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 16px !important;
}
.list .product{
  width: 100%;
}
.block-list-category>ul>li:after{
  display: none;
}

/* Corrections et améliorations pour le template EDO */

/* Fix pour les conteneurs de produits */
.products .product {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.products .product-container {
    border: 1px solid #e8e8e8;
    background: #ffffff;
    border-radius: 4px;
    padding: 15px;
    height: auto;
    min-height: 350px;
    position: relative;
    transition: all 0.3s ease;
}

.products .product-container:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.products .product-left {
    margin-bottom: 15px;
}

.products .product-thumb {
    text-align: center;
    position: relative;
    height: 180px;
    overflow: hidden;
}

.products .product-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
    display: block;
}

.products .product-right {
    position: static;
    background: transparent;
    padding: 0;
    bottom: auto;
}

.products .product-name {
    margin-bottom: 10px;
}

.products .product-name a {
    color: #333;
    font-size: 14px;
    line-height: 1.3;
    text-decoration: none;
    display: block;
    height: 40px;
    overflow: hidden;
}

.products .product-name a:hover {
    color: #007bff;
}

.products .price-box {
    margin-bottom: 15px;
}

.products .product-price {
    color: #dc3545;
    font-weight: 700;
    font-size: 16px;
}

.products .product-button {
    text-align: center;
}

.products .button-radius {
    display: inline-block;
    padding: 8px 16px;
    background: #007bff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    transition: background 0.2s ease;
}

.products .button-radius:hover {
    background: #0056b3;
    color: #ffffff;
    text-decoration: none;
}

/* Fix pour le carousel Owl Carousel */
.owl-carousel .owl-item {
    float: left;
}

.owl-carousel .owl-item .product {
    margin: 0 10px;
}

/* Carousel navigation */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    color: #ffffff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
    opacity: 0;
}

.block-offers:hover .owl-nav .owl-prev,
.block-offers:hover .owl-nav .owl-next {
    opacity: 1;
}

.owl-nav .owl-prev {
    left: -20px;
}

.owl-nav .owl-next {
    right: -20px;
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background: rgba(0,0,0,0.8);
}

/* Responsive grid pour les produits */
@media (min-width: 992px) {
    .fcarou .owl-item {
        width: 33.333% !important;
    }
}

@media (max-width: 991px) {
    .fcarou .owl-item {
        width: 50% !important;
    }
}

@media (max-width: 576px) {
    .fcarou .owl-item {
        width: 100% !important;
    }
    
    .products .product-container {
        min-height: auto;
    }
}