/* 

  Messavussu Claude Junior
  2025-03-03
  cjayGym.css



*/




/* 🌑 Thème sombre et élégant */
body {
    background-color: #1E1E1E !important;
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}

/* 📦 Conteneur principal */
.container-fluid {
    max-width: 1100px !important;
    margin: auto !important;
    padding: 30px !important;
}

/* 🎨 Design de la carte produit */
.product-container {
    background-color: #2C2C2C !important;
    padding: 25px !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 15px rgba(174, 0, 255, 0.3) !important;
    transition: transform 0.3s ease-in-out !important;
}

.product-container:hover {
    transform: scale(1.02) !important;
}

/* 🖼 Image du produit */
.product-image img {
    width: 100% !important;
    max-height: 320px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out !important;
}

.product-image img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 12px rgba(174, 0, 255, 0.7) !important;
}

/* 📝 Détails produit */
.product-details {
    padding: 25px !important;
}

.product-title {
    font-size: 1.8rem !important;
    font-weight: bold !important;
    color: rgb(174, 0, 255) !important;
    text-transform: uppercase !important;
    margin-top: 10px !important;
    text-align: center !important;
}

.product-price {
    font-size: 1.6rem !important;
    font-weight: bold !important;
    color: #FFD700 !important;
}

/* 🟡 Bouton amélioré */
.btn-primary {
    background-color: #6a0dad !important;
    border: none !important;
    font-size: 1.3rem !important;
    padding: 12px 25px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease-in-out !important;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #9c4dcc !important;
    color: #fff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
}

.bg-purple {
    background-color: #6a0dad !important; /* Purple color */
}

/* 📦 Sections */
.sectionGauche {
    background-color: #1E1E1E !important;
    color: white !important;
    border-radius: 15px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 20px !important;
}

.sectionDroite {
    background-color: #2C2C2C !important;
    border-radius: 15px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* 🛍️ Listes et produits */
.list-group-item {
    background-color: transparent !important;
    color: white !important;
    border: none !important;
}
.text-white {
    color: white !important;
    font-size: 1.2rem !important;
    margin-top: 10px !important;
}
.product-card {
    background-color: #333 !important;
    border-radius: 15px !important;
    padding: 20px !important;
    transition: transform 0.3s, box-shadow 0.3s ease, background-color 0.3s ease !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden !important;
    height: 350px !important; /* Taille uniforme pour toutes les cartes */
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.product-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2) !important;
    background-color: #444 !important;
}
.product-title {    
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
    text-align: center !important;
    color: rgb(174, 0, 255) !important;
}

.product-card img {
    border-radius: 10px !important;
    max-height: 200px !important;
    object-fit: cover !important;
    max-width: 100% !important;
    height: auto !important;
    transition: transform 0.3s ease-in-out !important;
}

.product-card img:hover {
    transform: scale(1.05) !important;
}

.category-title {
    color: rgb(174, 0, 255) !important;
    font-size: 1.5rem !important;
    margin-bottom: 20px !important;
}

/* 🏗️ Formulaires et boutons */
.form-select, .btn {
    width: 100% !important;
    border-radius: 8px !important;
}

.btn-outline-light:hover {
    background-color: #4B8BFF !important;
}

/* 🛒 Panier */
.cart-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: 15px !important;
}

.cart-text {
    color: white !important;
    font-size: 1.2rem !important;
}

.cart-icon {
    width: 50px !important;
    height: 25px !important;
}

.cart-link {
    display: block !important;
    width: 50px !important;
    height: 25px !important;
    margin-left: 80% !important;
}
