/* Utilisation de ton CSS existant */
body {
    background-color: aliceblue;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


/* Style de la barre de navigation */
.navbar {
    background-color: #007bff;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    background: linear-gradient(45deg, rgba(0, 0, 255, 0.5), rgba(0, 255, 255, 0.2), rgba(0, 0, 255, 0.5));
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container-fluid {
    background: linear-gradient(45deg, rgba(0, 0, 255, 0.5), rgba(0, 255, 255, 0.2), rgba(0, 0, 255, 0.5));
  }
  
  .navbar-brand {
    color: #000;
  }
  
  .navbar-brand img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
  }
  
  .navbar-nav .nav-item .nav-link {
    color: #000;
    font-size: 16px;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .navbar-nav .nav-item .nav-link:hover {
    background-color: rgba(169, 169, 169, 0.163);
    color: aliceblue;
    border-radius: 5px;
  }
  
  .navbar-nav .nav-item .nav-link.active {
    background-color: rgba(169, 169, 169, 0.163);
  }
  
  .navbar-nav .nav-item.dropdown .dropdown-menu {
    background-color: #80808053;
    border: none;
    border-radius: 5px;
  }
  
  .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: #000;
    padding: 10px 20px;
    transition: background-color 0.3s;
  }
  
  .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: rgba(169, 169, 169, 0.163);
    color: #fff;
  }
  
  .navbar .d-flex {
    margin-left: auto;
  }
  
  .navbar .form-control {
    border-radius: 20px;
    border: 1px solid #ccc;
  }
  
  .navbar .btn-outline-success {
    border-radius: 20px;
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
  }
  
  .navbar .btn-outline-success:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  @media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }
  
    .navbar-nav {
        text-align: center;
    }
  
    .navbar-nav .nav-item .nav-link {
        padding: 8px 10px;
    }
  
    .navbar-toggler {
        border: none;
    }
  
    .navbar-toggler-icon {
        background-color: #fff;
    }
  }  

/* Conteneur principal */
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Image du produit */
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* Description du produit */
.product-description {
    flex: 1;
    max-width: 600px;
}

.product-description h1 {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 20px;
}

.product-description p {
    font-size: 1.125rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-description strong {
    color: #007bff;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .product-description {
        max-width: 100%;
    }

    .product-description h1 {
        font-size: 2rem;
    }

    .product-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-description h1 {
        font-size: 1.8rem;
    }

    .product-description p {
        font-size: 0.9rem;
    }
}