/* Styles pour les produits sur la page d'accueil */
.product-card {
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-category {
    color: #777;
    font-size: 0.9rem;
}

.product-price {
    font-weight: 700;
    color: #e83e8c;
    font-size: 1.2rem;
}

.stock-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #28a745;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
}

/* Styles pour la section partenaires */
.partner-slider {
    padding: 20px 0;
}

.partner-logo {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    max-height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

#partnerCarousel .carousel-control-prev,
#partnerCarousel .carousel-control-next {
    width: 5%;
    background-color: rgba(0,0,0,0.2);
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-img { height: 150px; }
  .partner-logo img { max-height: 80px; }
  .section-title { font-size: 1.4rem; }
}

@media (max-width: 576px) {
  .product-img { height: 130px; }
  .partner-logo img { max-height: 70px; }
  .admin-container h1 { font-size: 1.6rem; }
}
/* Admin Dashboard styles */
.admin-container h1 { font-size: 1.8rem; }
.rv-section h3 { font-size: 1.2rem; }
.stats-grid .btn { font-size: 0.9rem; }
.service-item strong { font-size: 1rem; }
.service-item .text-muted { font-size: 0.95rem; }
.models-grid img { border: 1px solid #eee; }