/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap");

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.btn {
  background-color: #fb77b4;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(251, 119, 180, 0.2);
  text-transform: uppercase;
}

.btn:hover {
  background-color: #e95ea0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 119, 180, 0.3);
}

.btn-secondary {
  background-color: #3498db;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.btn-secondary:hover {
  background-color: #2980b9;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.section-title {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  color: #fb77b4;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
}

.hidden {
  display: none !important;
}

/* Fancy Divider */
.fancy-divider {
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 20c20-8 40-8 50-20h-100c10 12 30 12 50 20z' fill='%23f8f9fa' fill-opacity='1'/%3E%3C/svg%3E");
  background-size: 100px 30px;
  margin: 30px 0;
}

/* Header Styles */
header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.top-bar {
  background-color: #fb77b4;
  padding: 10px 0;
  font-size: 14px;
  color: #fff;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info span {
  margin-right: 15px;
  opacity: 0.9;
}

.contact-info span i {
  margin-right: 5px;
}

.main-nav {
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(251, 119, 180, 0.1);
}

/* Ajuster la taille du conteneur principal pour donner plus d'espace */
.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
}

/* Ajuster l'espacement du logo pour qu'il prenne moins de place */
.logo {
  background-color: white;
}

#navbarNav{
  padding-left: 40px;
}

@media (max-width: 992px) {
  #navbarNav{
    padding-left: 0 px;
  }

}

.logo a {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #fb77b4;
  letter-spacing: 1px;
  position: relative;
}

.logo a:before,
.logo a:after {
  content: "❀";
  font-size: 14px;
  color: #fc8ec0;
  position: absolute;
  opacity: 0.7;
}

.logo a:before {
  left: -20px;
  top: 5px;
}

.logo a:after {
  right: -20px;
  top: 5px;
}

/* Modifier le style de la barre de navigation pour que tous les éléments soient sur une ligne */
.nav-links {
  align-content: center;
  display: flex;
  position: relative;
  justify-content: center;
  flex-wrap: nowrap;
}

.nav-links li a {
  margin: 0 10px;
  padding: 5px 0;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  white-space: nowrap;
  font-size: 14px;
}

.nav-links li a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fb77b4;
  transition: all 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #fb77b4;
}

.nav-links a.active:before,
.nav-links a:hover:before {
  width: 100%;
}

/* Styles pour les menus déroulants */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.dropdown-toggle i {
  margin-left: 5px;
  font-size: 12px;
  transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 15px 0;
  z-index: 1000;
  opacity: 0;
  
  display: none;
  transform: translateY(10px);
  transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  display: block;
  transform: translateY(0);
}

.dropdown-menu.price-menu,
.dropdown-menu.occasions-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-width: 600px;
  padding: 20px;
}

.dropdown-menu.price-menu {
  grid-template-columns: repeat(2, 1fr);
  min-width: 400px;
}

.dropdown-item {
  padding: 10px 20px;
  color: #333;
  font-size: 14px;
  transition: all 0.3s;
  white-space: nowrap;
  text-align: center;
}

.dropdown-item:hover {
  background-color: #f9f7fe;
  color: #ff3e9a;
}

/* Style pour les liens actifs dans les dropdowns */
.dropdown-toggle.active {
  color: #ff3e9a;
}

.dropdown-toggle.active:before {
  width: 100%;
}

/* Ajustement pour le menu mobile */
@media (max-width: 992px) {

  .dropdown-menu.price-menu,
  .dropdown-menu.occasions-menu {
    grid-template-columns: 1fr;
    min-width: 200px;
  }
}

.cart-icon a {
  color: #fb77b4;
  position: relative;
  font-size: 20px;
  transition: all 0.3s;
}

.cart-icon a:hover {
  color: #e95ea0;
}

.cart-icon span {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #fb77b4;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/placeholder.svg?height=600&width=1200");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(251, 119, 180, 0.7) 0%, rgba(41, 128, 185, 0.7) 100%);
  opacity: 0.8;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: #f9f7fe;
  position: relative;
}

.features:before,
.features:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background-size: 20px 20px;
  background-repeat: repeat-x;
}

.features:before {
  top: 0;
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, white 13px);
}

.features:after {
  bottom: 0;
  background-image: radial-gradient(circle at 10px 15px, transparent 12px, white 13px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
}

.feature i {
  font-size: 40px;
  color: #fb77b4;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.feature:hover i {
  transform: scale(1.1);
}

.feature h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.feature p {
  color: #666;
}

/* Products Section */
.products {
  padding: 80px 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
  color: #fb77b4;
}

.currency-selector {
  text-align: center;
  margin-bottom: 40px;
}

.currency-btn {
  background: none;
  border: 1px solid #ddd;
  padding: 8px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
  font-weight: 500;
}

.currency-btn.active {
  background-color: #fb77b4;
  color: #fff;
  border-color: #fb77b4;
  box-shadow: 0 4px 10px rgba(251, 119, 180, 0.2);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
}

.product-card:hover .product-image:before {
  opacity: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-details {
  padding: 20px;
  background-color: #fff;
  position: relative;
}

.product-title {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.product-description {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.product-price {
  font-size: 22px;
  font-weight: bold;
  color: #fb77b4;
}

/* Ajout des styles pour les actions des produits */
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.btn-view {
  display: inline-block;
  background-color: #fb77b4;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s;
  text-align: center;
  flex: 1;
  margin-right: 10px;
}

.btn-view:hover {
  background-color: #e95ea0;
  transform: translateY(-2px);
}

.btn-add-to-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-add-to-cart:hover {
  background-color: #fb77b4;
  color: white;
  border-color: #fb77b4;
}

.view-all {
  text-align: center;
  margin-top: 60px;
}

/* Newsletter Section */
.newsletter {
  background-color: #f9f7fe;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.newsletter:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.newsletter h2 {
  margin-bottom: 15px;
  color: #fb77b4;
  font-size: 36px;
}

.newsletter p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

.newsletter form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter input {
  flex: 1;
  padding: 15px 25px;
  border: none;
  font-size: 16px;
  outline: none;
}

.newsletter button {
  border-radius: 0 50px 50px 0;
  padding: 15px 30px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: right;
}

.service:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.service i {
  font-size: 40px;
  color: #fb77b4;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.service:hover i {
  transform: scale(1.1);
}

.service h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

.service p {
  font-size: 14px;
  color: #666;
}

/* Footer */
footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 80px 0 20px;
  position: relative;
}

footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #fb77b4, #fc8ec0, #3498db);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 25px;
  font-size: 22px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-about h3:after,
.footer-links h3:after,
.footer-contact h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #fb77b4;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #ddd;
  transition: all 0.3s;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a:before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s;
}

.footer-links ul li a:hover {
  color: #fb77b4;
  padding-left: 20px;
}

.footer-links ul li a:hover:before {
  opacity: 1;
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: #fb77b4;
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #aaa;
}

/* Breadcrumb */
.breadcrumb {
  padding: 20px 0;
  background-color: #f9f7fe;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb ul {
  display: flex;
  align-items: center;
}

.breadcrumb ul li {
  margin-right: 10px;
  font-size: 14px;
}

.breadcrumb ul li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #999;
}

.breadcrumb ul li:last-child {
  color: #fb77b4;
  font-weight: 500;
}

.breadcrumb ul li a {
  color: #666;
  transition: all 0.3s;
}

.breadcrumb ul li a:hover {
  color: #fb77b4;
}

/* Product Details Page */
.product-details {
  padding: 80px 0;
}

.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-images {
  display: flex;
  flex-direction: column;
}

.main-image {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thumbnail-images {
  display: flex;
  gap: 15px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #8e44ad;
}

.product-info h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.product-info .product-price {
  font-size: 28px;
  color: #fb77b4;
  margin-bottom: 25px;
  font-weight: 600;
}

.product-description {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.8;
}

.product-options {
  margin-bottom: 30px;
}

.option {
  margin-bottom: 20px;
}

.option label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.option select,
.option textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.option select:focus,
.option textarea:focus {
  border-color: #fb77b4;
  box-shadow: 0 0 0 3px rgba(251, 119, 180, 0.1);
  outline: none;
}

.quantity-selector {
  margin-bottom: 30px;
}

.quantity-selector label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.quantity-controls button {
  width: 40px;
  height: 40px;
  background-color: #f8f9fa;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.quantity-controls button:hover {
  background-color: #e9ecef;
}

.quantity-controls input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

.add-to-cart {
  margin-bottom: 30px;
}

.add-to-cart button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.add-to-cart button i {
  margin-right: 10px;
}

.delivery-info {
  background-color: #f9f7fe;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #fb77b4;
}

.delivery-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.delivery-info i {
  color: #fb77b4;
  margin-right: 10px;
  font-size: 18px;
}

/* Styles pour la section des produits similaires */
.similar-products {
  padding: 80px 0;
  background-color: #f9f7fe;
}

.similar-products .section-title {
  margin-bottom: 40px;
}

.related-products,
.recommended-products {
  padding: 80px 0;
  background-color: #f9f7fe;
}

.related-products h2,
.recommended-products h2 {
  color: #fb77b4;
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  position: relative;
}

.related-products h2:after,
.recommended-products h2:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
}

.related-products-grid,
.recommended-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

/* Cart Page */
.cart {
  padding: 80px 0;
}

.cart h1 {
  color: #fb77b4;
  margin-bottom: 50px;
  text-align: center;
  font-size: 36px;
  position: relative;
}

.cart h1:after {
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
}

.empty-cart {
  text-align: center;
  padding: 80px 0;
}

.empty-cart i {
  font-size: 80px;
  color: #ddd;
  margin-bottom: 30px;
}

.empty-cart p {
  font-size: 24px;
  margin-bottom: 30px;
  color: #666;
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.cart-items {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-item-details h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #333;
}

.cart-item-price {
  color: #fb77b4;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

.cart-item-options {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.cart-item-quantity button {
  width: 30px;
  height: 30px;
  background-color: #f8f9fa;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.cart-item-quantity button:hover {
  background-color: #e9ecef;
}

.cart-item-quantity input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 500;
}

.cart-item-remove {
  color: #e74c3c;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.cart-item-remove:hover {
  color: #c0392b;
  text-decoration: underline;
}

.cart-summary {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
}

.cart-summary h3 {
  color: #fb77b4;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  font-size: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
}

.summary-row.total {
  color: #fb77b4;
  font-size: 22px;
  font-weight: bold;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.promo-code {
  display: flex;
  margin-bottom: 25px;
}

.promo-code input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  outline: none;
}

.promo-code input:focus {
  border-color: #fb77b4;
}

.promo-code button {
  border-radius: 0 8px 8px 0;
  padding: 12px 15px;
}

#checkout-btn {
  width: 100%;
  padding: 15px;
  font-size: 18px;
  margin-bottom: 20px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#checkout-btn i {
  margin-right: 10px;
}

.continue-shopping {
  display: block;
  text-align: center;
  color: #3498db;
  font-weight: 500;
  transition: all 0.3s;
}

.continue-shopping:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s;
}

.whatsapp-float a:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.contact-info h2 {
  color: #fb77b4;
  margin-bottom: 30px;
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
}

.contact-info h2:after {
  background-color: #fb77b4;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-detail i {
  color: #fb77b4;
  margin-right: 20px;
  font-size: 24px;
  width: 30px;
  text-align: center;
}

.contact-detail-content h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #333;
}

.contact-detail-content p {
  color: #666;
}

.contact-form {
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #3498db, #2980b9);
}

.contact-form h2 {
  color: #fb77b4;
  margin-bottom: 30px;
  font-size: 28px;
  position: relative;
  padding-bottom: 10px;
}

.contact-form h2:after {
  background-color: #fb77b4;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #fb77b4;
  box-shadow: 0 0 0 3px rgba(251, 119, 180, 0.1);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 1em;
}

.map-container {
  margin-top: 60px;
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.business-hours {
  margin-top: 30px;
  background-color: #f9f7fe;
  padding: 20px;
  border-radius: 8px;
}

.business-hours h3 {
  color: #fb77b4;
  margin-bottom: 15px;
  font-size: 18px;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
  color: #333;
}

.faq-section {
  padding: 80px 0;
  background-color: #f9f7fe;
}

.faq-section h2 {
  color: #fb77b4;
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
  position: relative;
}

.faq-section h2:after {
  background: linear-gradient(to right, #fb77b4, #fc8ec0);
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px 25px;
  background-color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  transition: all 0.3s;
}

.faq-question:hover {
  color: #fb77b4;
}

.faq-question:after {
  content: "+";
  font-size: 22px;
  color: #fb77b4;
  transition: all 0.3s;
}

.faq-question.active {
  color: #fb77b4;
}

.faq-question.active:after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-out;
  background-color: #fff;
  color: #666;
  line-height: 1.8;
}

.faq-answer.active {
  padding: 20px 25px;
  max-height: 500px;
}

/* Responsive Styles */
@media (max-width: 992px) {

  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-details-grid {
    grid-template-columns: 1fr;
  }

  .cart-content {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 42px;
  }

  /* Responsive pour les petits écrans */
  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .related-products-grid,
  .recommended-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  /* Responsive pour les produits similaires */
  .product-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-view {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {

  .feature-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    flex-direction: column;
    border-radius: 10px;
  }

  .newsletter input {
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .newsletter button {
    border-radius: 10px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .cart-item-image img {
    margin: 0 auto;
  }

  .cart-item-quantity {
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* Nouvelles options de produit */
.option-card {
  display: flex;
  align-items: center;
  background-color: #f8f9ff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.option-image {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.option-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.option-text {
  flex: 1;
}

.option-text p {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #333;
}

.option-price {
  color: #ff3e9a !important;
  font-weight: 600;
  font-size: 16px !important;
}

.option-select {
  margin-left: 15px;
}

.option-select input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #ddd;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}

.option-select input[type="radio"]:checked {
  border-color: #ff3e9a;
}

.option-select input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #ff3e9a;
  border-radius: 50%;
}

/* Section Accessoires */
.accessories-section {
  margin-top: 30px;
  background-color: #f8f9ff;
  border-radius: 10px;
  padding: 20px;
}

.accessories-section h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.accessories-intro {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

/* Section Livraison */
.delivery-section {
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 0;
}

.delivery-header {
  display: flex;
  align-items: center;
  background-color: #ff3e9a;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.delivery-icon {
  margin-right: 10px;
  font-size: 18px;
}

.delivery-time {
  margin: 0;
  font-weight: 500;
}

.delivery-form {
  padding: 0 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  position: relative;
}

.form-label i {
  color: #ff3e9a;
  margin-right: 5px;
}

.form-label.required::after {
  content: "*";
  color: #ff3e9a;
  margin-left: 5px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #ff3e9a;
  box-shadow: 0 0 0 3px rgba(255, 62, 154, 0.1);
  outline: none;
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select-wrapper i.fa-chevron-down {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

.date-selector {
  display: flex;
  gap: 10px;
}

.date-selector .select-wrapper {
  flex: 1;
}

.message-help {
  margin-top: 10px;
  background-color: #f8f9ff;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.message-help p {
  margin-bottom: 8px;
  color: #666;
}

/* Ajouter ces styles pour améliorer l'apparence du sélecteur de messages */

.select-wrapper select {
  max-height: 300px;
}

.select-wrapper select optgroup {
  font-weight: 600;
  color: #333;
}

.select-wrapper select option {
  padding: 8px 10px;
  font-weight: normal;
}

.message-help {
  margin-top: 15px;
  background-color: #f0f7ff;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.message-help p {
  margin-bottom: 10px;
  color: #333;
  font-weight: 500;
}

.delivery-note {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  line-height: 1.4;
  background-color: #fff9e6;
  padding: 10px;
  border-radius: 5px;
  border-left: 3px solid #ffcc00;
}

.delivery-note i {
  color: #ffcc00;
  margin-right: 5px;
}

.city-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.city-selector {
  display: flex;
  gap: 10px;
}

.city-btn {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.city-btn.active {
  background-color: #00c853;
  color: white;
}

.city-btn.change-city {
  background-color: #ff3e9a;
  color: white;
}

.city-btn i {
  margin-right: 8px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .accessories-grid {
    grid-template-columns: 1fr;
  }

  .date-selector {
    flex-direction: column;
  }

  .city-selector {
    flex-direction: column;
  }
}

/* Pre-Footer Section */
.pre-footer {
  border-top: 3px solid #fb77b4;
  background-color: #fff;
}

.pre-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.pre-footer-column h3 {
  color: #fb77b4;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.cities-list {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  text-align: center;
  margin-bottom: 15px;
}

.btn-light {
  background-color: #fb77b4;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  display: block;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.btn-light:hover {
  background-color: #e95ea0;
  transform: translateY(-2px);
}

.patente {
  text-align: center;
  font-size: 14px;
  color: #666;
}

.patente p {
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: #666;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #fb77b4;
  color: white;
}

.pre-footer-links {
  list-style: none;
  padding: 0;
}

.pre-footer-links li {
  margin-bottom: 10px;
}

.pre-footer-links a {
  color: #666;
  font-size: 14px;
  transition: all 0.3s;
  display: block;
  text-align: center;
}

.pre-footer-links a:hover {
  color: #fb77b4;
  padding-left: 5px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.contact-info-list i {
  color: #fb77b4;
  margin-right: 10px;
  min-width: 16px;
  text-align: center;
}

/* Responsive styles for pre-footer */
@media (max-width: 992px) {
  .pre-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .pre-footer-grid {
    grid-template-columns: 1fr;
  }

  .pre-footer-column {
    margin-bottom: 30px;
  }
}

/* Ajout des styles pour la page de connexion */

/* Bannière des services */
.services-banner {
  background-color: #ffeef6;
  padding: 20px 0;
  margin-bottom: 40px;
}

.services-icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-icon {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 3px 10px rgba(251, 119, 180, 0.2);
}

.icon-circle i {
  font-size: 24px;
  color: #fb77b4;
}

.service-icon p {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
  color: #333;
}

.service-icon span {
  font-size: 12px;
  color: #666;
}

/* Section de connexion */
.login-section {
  padding: 40px 0 80px;
}

.login-title {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 28px;
  position: relative;
}

.login-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #fb77b4;
}

.login-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.benefit-card {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-left: 3px solid #fb77b4;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  margin-right: 20px;
  min-width: 50px;
}

.benefit-icon i {
  font-size: 30px;
  color: #fb77b4;
}

.benefit-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.benefit-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.login-importance {
  background-color: #ffeef6;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 40px;
  text-align: center;
  border-left: 4px solid #fb77b4;
}

.login-importance p:first-child {
  font-weight: 700;
  color: #fb77b4;
  margin-bottom: 10px;
  font-size: 18px;
}

.importance-content p {
  font-size: 16px;
  color: #333;
}

.login-container {
  max-width: 900px;
  margin: 0 auto;
}

.login-form-container {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.login-form-container h2 {
  text-align: center;
  color: #fb77b4;
  margin-bottom: 30px;
  font-size: 24px;
}

.login-forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.create-account,
.login-account {
  padding: 20px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.create-account h3,
.login-account h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  text-align: center;
}

.create-account p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s;
}

.form-group input:focus {
  border-color: #fb77b4;
  box-shadow: 0 0 0 3px rgba(251, 119, 180, 0.1);
  outline: none;
}

.forgot-password {
  text-align: right;
  margin-bottom: 20px;
  font-size: 13px;
}

.forgot-password a {
  color: #fb77b4;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.btn-login {
  width: 100%;
  background-color: #fb77b4;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-login:hover {
  background-color: #e95ea0;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  background-color: #ffeef6;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 10px;
}

.faq-header p {
  color: #666;
  font-size: 16px;
}

.faq-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.faq-category h3 {
  background-color: #ffeef6;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  color: #333;
  font-size: 18px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question span {
  font-weight: 500;
  color: #333;
  font-size: 15px;
}

.faq-question i {
  color: #fb77b4;
  transition: all 0.3s;
}

.faq-answer {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
  .login-benefits {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-icons {
    flex-direction: column;
    align-items: center;
  }

  .service-icon {
    margin-bottom: 20px;
  }

  .login-forms {
    grid-template-columns: 1fr;
  }

  .create-account,
  .login-account {
    margin-bottom: 30px;
  }
}

/* Modifier les couleurs de la page de connexion */
.services-banner {
  background-color: #ffeef6;
  /* Changé de #ffebf3 à #f9f0ff pour correspondre au thème violet */
}

.icon-circle {
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(251, 119, 180, 0.2);
  /* Ajout d'une ombre violette */
}

.icon-circle i {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad pour correspondre au thème violet */
}

.benefit-card {
  border-left: 3px solid #fb77b4;
  /* Ajout d'une bordure violette */
}

.benefit-icon i {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.login-importance {
  background-color: #ffeef6;
  /* Changé de #ffebf3 à #f9f0ff */
  border-left: 4px solid #fb77b4;
  /* Ajout d'une bordure violette */
}

.login-importance p:first-child {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.login-form-container h2 {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.btn-login {
  background-color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.btn-login:hover {
  background-color: #e95ea0;
  /* Couleur plus foncée pour l'effet hover */
}

.forgot-password a {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.faq-header {
  background-color: #ffeef6;
  /* Changé de #ffebf3 à #f9f0ff */
}

.faq-category h3 {
  background-color: #ffeef6;
  /* Changé de #ffebf3 à #f9f0ff */
}

.faq-question i {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

/* Modifier les couleurs du pré-footer */
.pre-footer {
  border-top: 3px solid #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.pre-footer-column h3 {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.btn-light {
  background-color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.btn-light:hover {
  background-color: #e95ea0;
  /* Couleur plus foncée pour l'effet hover */
}

.social-icons a:hover {
  background-color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.pre-footer-links a:hover {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}

.contact-info-list i {
  color: #fb77b4;
  /* Changé de #ff3e9a à #8e44ad */
}