body {
  margin: 0;
  background-color: #121212;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  padding: 20px 40px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-right: 50px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00bfff;
}

.social-buttons img {
  width: 50px;
  height: 50px;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.social-buttons img:hover {
  transform: scale(1.1);
}

.container {
  text-align: center;
  margin-top: 40px;
  color: white;
  padding: 40px 20px;
}

#bvn {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.container p {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 30px;
}

.cards-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 220px;
  max-width: 280px;
  color: white;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.card p {
  font-size: 16px;
  color: #cccccc;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.4);
}

/*-----------------------------------------------------------------------------------------------BOUTIQUE------------------------------*/

.product-card {
  background-color: #1e1e1e;      /* fond sombre, proche du reste */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3); /* légère lueur bleue */
  color: #eee;                   /* texte clair */
  font-size: 16px;
  font-weight: 500;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 4px;
}

.product-card:hover {
  box-shadow: 0 0 20px #00bfff;
  transform: translateY(-5px);
}

.product-card .price {
  margin-top: 4px;
  font-weight: 700;
  font-size: 18px;
  color: #00bfff;
}

/*-----------------------------------------------------------------------------------------------PHOTOS------------------------------*/

.photo-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.photo-filters button {
  background-color: #1e1e1e;
  color: #00bfff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.photo-filters button:hover {
  background-color: #00bfff;
  color: #1e1e1e;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.photo-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.photo-card h3 {
  color: #00bfff;
  padding: 10px;
  font-size: 18px;
}

.photo-card:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
}

.lightbox-content .close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.lightbox-content p {
  color: #ccc;
  margin-top: 10px;
}

/*-----------------------------------------------------------------------------------------------À PROPOS------------------------------*/

.about-section {
  margin-bottom: 40px;
  background-color: #1e1e1e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
  color: #ddd;
}

.about-section h2 {
  color: #00bfff;
  margin-bottom: 10px;
}

.about-section ul {
  padding-left: 20px;
}

.about-section ul li {
  margin-bottom: 8px;
}


/*-----------------------------------------------------------------------------------------------Panier------------------------------*/

button {
  background-color: #0a84ff;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #006edc;
}

.cart-icon {
  position: relative;
  left: -5px;
  top: -2px;
  font-size: 24px;
  cursor: pointer;
}

.badge {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: -12px;
}

/* Styles pour la page panier */

#cart-items {
  max-width: 800px;
  margin: 0 auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f1f1f;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  box-shadow: 0 0 8px rgba(42, 157, 143, 0.3);
  transition: background-color 0.3s ease;
}

.cart-item:hover {
  background-color: #2a9d8f;
  color: #121212;
}

.cart-item .name {
  font-weight: 600;
  font-size: 1.1rem;
  flex: 1;
}

.cart-item .price {
  width: 90px;
  text-align: right;
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 20px;
}

.cart-item button {
  background-color: #e63946;
  border: none;
  color: #f0f0f0;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cart-item button:hover {
  background-color: #b52b34;
}

.total {
  max-width: 800px;
  margin: 20px auto 0 auto;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a9d8f;
  text-shadow: 0 0 8px #2a9d8f;
}

.checkout-btn {
  display: block;
  max-width: 800px;
  margin: 30px auto 0 auto;
  padding: 15px 0;
  font-size: 1.3rem;
  font-weight: 700;
  background-color: #2a9d8f;
  color: #121212;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #2a9d8f;
  transition: background-color 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
  background-color: #23867a;
  box-shadow: 0 0 12px #23867a;
}

.checkout-btn:disabled {
  background-color: #555;
  cursor: not-allowed;
  box-shadow: none;
}

.empty-msg {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
  font-size: 1.2rem;
  color: #888;
  font-style: italic;
}

/*-----------------------------------------------------------------------------------------------CAISSE------------------------------*/

h1 {
  text-align: center;
  color: #2a9d8f;
  text-shadow: 0 0 10px #2a9d8f;
  margin-bottom: 30px;
}

#checkout-container {
  background-color: #1f1f1f;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(42, 157, 143, 0.7);
}

form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #a0d8cf;
}

form input[type="text"],
form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: none;
  background-color: #333333;
  color: #f0f0f0;
  font-size: 1rem;
  box-shadow: inset 0 0 5px #2a9d8f;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

form input[type="text"]:focus,
form input[type="email"]:focus {
  outline: none;
  background-color: #2a9d8f;
  color: #121212;
  box-shadow: 0 0 8px #2a9d8f;
}

h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #2a9d8f;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 8px #2a9d8f;
}

#paypal-button-container {
  text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
  #checkout-container {
    padding: 20px 20px;
  }
}

#pay-button {
  width: 100%;  
  max-width: 400px; 
  padding: 15px 0; 
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 10px;
  background-color: #2a9d8f;
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

#pay-button:hover {
  background-color: #256f78;
}