/* Styles personnalisés pour le module customhomeproducts */
.custom-home-products {
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.custom-home-products .products-section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Design personnalisé des produits */
.custom-products-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.custom-product-miniature {
    width: 100%;
    max-width: 900px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
}

.custom-product-miniature:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.custom-product-container {
    display: flex;
    align-items: flex-start;
}

/* Inverser l'ordre (image à droite) un produit sur deux */
.custom-product-miniature:nth-child(even) .custom-product-container {
    flex-direction: row-reverse;
}

.custom-product-miniature:nth-child(even) .custom-product-info {
    text-align: right;
}

.custom-product-miniature:nth-child(even) .custom-product-btn {
    align-self: flex-end;
}

.custom-product-image-container {
    width: 250px;
    flex-shrink: 0;
}

.custom-product-img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-product-info {
    padding: 20px 30px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.custom-product-name {
    font-size: 1rem;
    margin: 0 0 8px 0;
    color: #232323;
    font-weight: 500;
}

.custom-product-name a {
    color: inherit;
    text-decoration: none;
}

.custom-product-name a:hover {
    color: #2fb5d2;
}

.custom-product-short-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
}

.custom-product-price-and-shipping {
    margin-bottom: 15px;
}

.custom-price {
    font-weight: bold;
    color: #2fb5d2;
    font-size: 1.1rem;
}

.custom-regular-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.9rem;
}

.custom-product-btn {
    align-self: flex-start;
    background-color: #2fb5d2;
    color: #fff;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.custom-product-btn:hover {
    background-color: #2698b0;
    color: #fff;
}

/* Rendre l'affichage responsive sur mobile */
@media (max-width: 768px) {
    .custom-product-container,
    .custom-product-miniature:nth-child(even) .custom-product-container {
        flex-direction: column;
    }
    .custom-product-image-container {
        width: 100%;
    }
    .custom-product-info,
    .custom-product-miniature:nth-child(even) .custom-product-info {
        align-items: center;
        text-align: center;
    }
    .custom-product-btn,
    .custom-product-miniature:nth-child(even) .custom-product-btn {
        align-self: center;
    }
}