 body {
      font-family: 'Inter', sans-serif;
      background-color: #f5f7fa;
      color: #222;
      overflow-x: hidden;
    }
    .navbar {
      background-color: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: #007bff !important;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    .nav-link {
      font-weight: 600;
      color: #222 !important;
    }
    .nav-link:hover {
      color: #007bff !important;
    }
.hero {
  position: relative;
  height: 1000px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.category-card {
  cursor: pointer;
}
.category-card:hover {
  background-color: #f0f8ff;
  color: #0d6efd !important;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 31, 77, 0.7);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}

    .btn-hero {
      background-color: #007bff;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      color: #fff;
      font-weight: 700;
    }
    .promo {
      background-color: #007bff;
      color: #fff;
      padding: 15px 0;
      text-align: center;
    }
    .category-card, .product-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: 0.3s;
      text-align: center;
      padding: 30px 20px;
    }
    .category-card:hover, .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,123,255,0.2);
    }
    .category-card i {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #007bff;
    }
    .product-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    footer {
      background: #001f4d !important;;
      color: #cbd5e1;
      padding: 40px 0;
    }
footer {
  flex-shrink: 0;
}
    footer a {
      color: #a8c5ff;
      text-decoration: none;
    }
    footer a:hover {
      color: #d0e4ff;
    }

    /* page boutique */
    .promo-banner {
      height: 300px;
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      margin-top: 30px;
    }
    .promo-banner img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      filter: brightness(60%);
    }
    .promo-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
    }
    .promo-text h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .promo-text p {
      font-size: 1.1rem;
    }

    .search-bar {
      background: white;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 8px 20px rgb(0 0 0 / 0.05);
      margin-top: 30px;
    }

    .product-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      transition: 0.3s;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
    }
    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .product-body {
      padding: 15px;
      text-align: center;
    }
    .product-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #001f4d;
    }
    .product-price {
      font-weight: 700;
      color: #007bff;
    }
    .product-price del {
      color: #888;
      font-size: 0.9rem;
    }
    .btn-product {
      margin-top: 10px;
      background-color: #007bff;
      color: #fff;
      border-radius: 25px;
      padding: 8px 20px;
      font-weight: 600;
      border: none;
    }
    .btn-product:hover {
      background-color: #0056b3;
    }
    .badge-promo {
      position: absolute;
      top: 10px;
      left: 10px;
      background-color: #dc3545;
      color: white;
      padding: 5px 10px;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 5px;
    }