/* Styles désactivés pour éviter les conflits */ 

.retourstock-block {
    margin-bottom: 10px;
}

.retourstock-block .products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.retourstock-block .product-container {
    flex: 1;
    min-width: 200px;
    max-width: calc(25% - 15px);
    text-align: center;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.retourstock-block .product-flags {
    text-align: center;
}

.retourstock-block .product-name {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    word-wrap: break-word;
}

.retourstock-block .product-name a {
    color: #333;
    text-decoration: none;
}

.retourstock-block .product-name a:hover {
    color: #666;
}

.retourstock-block .left-block {
    margin-bottom: 15px;
}

.retourstock-block .img-responsive {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.retourstock-block .return-date {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    background: #f8f8f8;
    padding: 6px 8px;
    border-radius: 4px;
    display: inline-block;
    width: auto;
    text-align: center;
}

.retourstock-block .btn-default {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .retourstock-block .product-container {
        max-width: calc(33.33% - 14px);
    }
}

@media (max-width: 767px) {
    .retourstock-block .product-container {
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .retourstock-block .product-container {
        max-width: 100%;
    }
} 