body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-image: url("Image/background_panier.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: #333;
}

/* Conteneur principal */
.container,
.container1 {
  margin: 50px auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-left: 10%;
  margin-right: 10%;
}

/* Titre */
h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Articles du panier */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.cart-item img {
  width: 100px;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
  margin-left: 20px;
}

.cart-item-info h3 {
  margin: 0;
  color: #333;
}

.cart-item-info p {
  margin: 5px 0;
  color: #777;
  font-size: 0.9rem;
}

.cart-item-price {
  font-weight: 600;
  color: #388e3c;
}

.total {
  text-align: right;
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: 600;
}

.actions {
  text-align: right;
  margin-top: 20px;
}

/* Bouton général */
.btn {
  display: inline-block;
  background: #9acd32;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #b22222;
}

/* =============================== */
/* PRODUITS PHARES */
/* =============================== */
.container-panier {
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-left: 10%;
  margin-right: 10%;
}

.panier-produits {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.produit {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 220px;
  padding: 15px;
}

.produit img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.produit h3 {
  margin: 10px 0 5px;
}

.produit .prix {
  font-weight: bold;
  color: #b22222;
  margin-bottom: 10px;
}

/* Boutons produits */
.btn-panier {
  display: inline-block;
  padding: 10px 20px;
  background-color: #9acd32;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-panier:hover {
  background-color: #b22222;
}

.en-savoir-plus {
  text-align: center;
  margin-top: 20px;
}

.btn-en-savoir-plus {
  display: inline-block;
  padding: 12px 25px;
  background-color: #b22222;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-en-savoir-plus:hover {
  background-color: #9acd32;
}

.pied-page {
    background-color: var(--gris);
    color: var(--beige);
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 60px 10px 0 10px;
    box-shadow: var(--shadow);
}

.pied-page h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-align: left;
}

.pied-page h2 span {
    color: var(--rouge);
    text-align: left;
}

.conteneur-pied {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-pied {
    flex: 1 1 250px;
}

.contact-pied p {
    margin: 12px 0;
    display: flex;
    align-items: center;
    color: var(--beige);
}

.contact-pied .material-symbols-outlined {
    color: var(--rouge);
    font-size: 22px;
    margin-right: 10px;
}

.liens-pied {
    display: flex;
    flex: 2 1 500px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.liens-pied ul {
    list-style: none;
    padding: 0;
}

.liens-pied li {
    margin: 8px 0;
}

.liens-pied a {
    color: var(--beige);
    text-decoration: none;
    transition: 0.3s;
}

.liens-pied a:hover {
    color: var(--vert);
}

.carte-pied iframe {
    border: 0;
    width: 500px;
    height: 220px;
    border-radius: 8px;
}

.bas-pied {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--beige);
}

.bas-pied span {
    color: var(--rouge);
    font-weight: 600;
}

@media (max-width: 750px) {
    .carte-pied iframe {
        width: 100%;
        height: 200px;
    }
}