@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #f7f7f9;
  color: #222;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   🎨 BRAND COLORS
================================= */
/* ===============================
   🎯 BRAND GRADIENT
================================= */
/* ===============================
   UI
================================= */
.main-nav {
  background: #111111;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Links */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}
.nav-links a:after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #d98b74;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  color: #d98b74;
}
.nav-links a:hover:after {
  width: 100%;
}

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background: #111;
    flex-direction: column;
    padding: 100px 30px 30px;
    gap: 30px;
    transform: translateX(100%);
    transition: 0.3s ease;
    z-index: 200;
  }
  .nav-links.active {
    transform: translateX(0);
  }
}
.site-footer {
  background: #111111;
  color: #ffffff;
  padding: 60px 20px 30px;
}
.site-footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.site-footer h3 {
  color: #d98b74;
  margin-bottom: 15px;
}
.site-footer h4 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #d98b74;
}
.site-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777777;
}
.site-footer ul {
  list-style: none;
  padding: 0;
}
.site-footer ul li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #777777;
}
.site-footer .footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #777777;
}
.site-footer .footer-links {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.site-footer .footer-links a {
  color: #777777;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.site-footer .footer-links a:hover {
  color: #d98b74;
}
.site-footer .footer-contact a {
  color: #777777;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer .footer-contact a:hover {
  color: #d98b74;
}

.contact-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f9;
  padding: 60px 20px;
}

.contact-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  width: 100%;
  transition: all 0.3s ease;
}
.contact-card:hover {
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.contact-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1rem;
  color: #777777;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 8px;
  color: #222222;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: 1px solid #ececf1;
  border-radius: 14px;
  font-size: 1rem;
  color: #222222;
  background: #ffffff;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d98b74;
  box-shadow: 0 0 10px rgba(217, 139, 116, 0.15);
}

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

.contact-form .btn-submit {
  background: linear-gradient(135deg, #d98b74, #e4a890);
  color: #ffffff;
  border: none;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 40px 25px;
  }
  .contact-title {
    font-size: 1.8rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
  }
  .contact-form .btn-submit {
    width: 100%;
    padding: 15px;
  }
}
/* ===============================
   PAGE
================================= */
.catalog-page {
  padding-block: 60px; /* haut / bas */
  padding-inline: 20px; /* gauche / droite */
  background: #f7f7f9;
}

/* ===============================
   LAYOUT PRINCIPAL
================================= */
.catalog-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===============================
   SIDEBAR FILTRES
================================= */
.catalog-filters {
  background: #ffffff;
  border: 1px solid #ececf1;
  border-radius: 14px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.filters-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-list li a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  color: #222222;
  transition: all 0.3s ease;
}
.category-list li a:hover {
  color: #d98b74;
}
.category-list li.active a {
  color: #d98b74;
  font-weight: 600;
}

/* ===============================
   CONTENU
================================= */
.catalog-content {
  min-width: 0; /* IMPORTANT anti overflow */
}

.catalog-header {
  margin-bottom: 40px;
}
.catalog-header h1 {
  font-size: 1.8rem;
  font-weight: 600;
}
.catalog-header h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #d98b74;
  margin-top: 10px;
}

/* ===============================
   GRID PRODUITS
================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  width: 100%;
}

/* ===============================
   CARD
================================= */
.product-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ececf1;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-image {
  aspect-ratio: 4/3;
  background: #f5f5f5;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ===============================
   BOUTON
================================= */
.btn-outline {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  border: 1px solid #d98b74;
  color: #d98b74;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #d98b74;
  color: #ffffff;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  .catalog-container {
    grid-template-columns: 1fr;
  }
  .catalog-filters {
    position: static;
  }
  .category-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .category-list li a {
    border: 1px solid #ececf1;
    border-radius: 20px;
    padding: 6px 12px;
  }
  .category-list li.active a {
    background: #d98b74;
    color: #ffffff;
    border-color: #d98b74;
  }
}
.product-page {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  background: #f7f7f9;
  min-height: 100vh;
}

.product-back .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #ffffff;
  color: #222222;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid #ececf1;
  transition: all 0.3s ease;
}
.product-back .btn-back:hover {
  background: #e4a890;
  border-color: #d98b74;
  color: #ffffff;
}
.product-back .btn-back i {
  font-size: 0.9rem;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 900px) {
  .product-content {
    flex-direction: row;
    gap: 60px;
  }
  .product-content .product-gallery,
  .product-content .product-info {
    flex: 1;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-gallery .main-image-wrapper {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  overflow: hidden;
}
.product-gallery .main-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}
.product-gallery .product-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-gallery .product-thumbnails .thumbnail-btn {
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 2px;
  cursor: pointer;
  background: #ffffff;
  transition: all 0.3s ease;
}
.product-gallery .product-thumbnails .thumbnail-btn.is-active {
  border-color: #d98b74;
}
.product-gallery .product-thumbnails .thumbnail-btn img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
}
.product-gallery .product-thumbnails .thumbnail-btn:hover {
  border-color: #e4a890;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-info .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111111;
}
.product-info .product-category {
  font-size: 0.95rem;
  color: #777777;
}
.product-info .product-category a {
  color: #d98b74;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.product-info .product-category a:hover {
  color: #e4a890;
}
.product-info .product-description {
  font-size: 1rem;
  color: #222222;
  line-height: 1.6;
  white-space: pre-line;
}
.product-info .product-actions {
  margin-top: 20px;
}
.product-info .product-actions .btn-primary {
  padding: 15px 25px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #d98b74, #e4a890);
  transition: all 0.3s ease;
}
.product-info .product-actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

@media (max-width: 768px) {
  .product-gallery .product-thumbnails {
    justify-content: flex-start;
  }
  .product-info .product-title {
    font-size: 1.7rem;
  }
  .product-info .product-actions .btn-primary {
    width: 100%;
    text-align: center;
  }
  .main-image-wrapper {
    height: 350px;
  }
}
.home-page {
  font-family: "Inter", sans-serif;
  color: #222222;
  background: #f7f7f9;
}

.hero {
  background: #111111;
  color: #d98b74;
  padding: 120px 20px;
  text-align: center;
}
.hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
}
.hero .btn-primary {
  background: #111111;
  color: #d98b74;
  padding: 15px 30px;
  border-radius: 14px;
  border: 1px solid #d98b74;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .btn-primary:hover {
  background: #e4a890;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

.about {
  padding: 100px 20px;
}
.about .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
@media (min-width: 900px) {
  .about .container {
    flex-direction: row;
    gap: 60px;
  }
}
.about .container .about-content {
  flex: 1;
}
.about .container .about-content h2 {
  font-size: 2rem;
  color: #111111;
  margin-bottom: 20px;
}
.about .container .about-content p {
  font-size: 1rem;
  line-height: 1.6;
}
.about .container .about-image {
  flex: 1;
}
.about .container .about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services {
  padding: 100px 20px;
  background: #ffffff;
}
.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #111111;
}
.services .services-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
}
.services .services-grid .service-card {
  background: #f7f7f9;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  width: 280px;
  transition: all 0.3s ease;
}
.services .services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}
.services .services-grid .service-card .service-icon {
  font-size: 2rem;
  color: #d98b74;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services .services-grid .service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #111111;
}
.services .services-grid .service-card p {
  font-size: 0.95rem;
  color: #777777;
}

.image-slider {
  padding: 100px 20px;
  background: #f7f7f9;
  text-align: center;
}
.image-slider h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #111111;
}
.image-slider .slider {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.image-slider .slides {
  display: flex;
  width: max-content;
  animation: scroll 15s linear infinite;
}
.image-slider .slides img {
  width: 400px;
  height: 250px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 14px;
}
.image-slider .slider:hover .slides {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cta {
  padding: 80px 20px;
  text-align: center;
  background: #111111;
  color: #d98b74;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.cta .btn-primary {
  background: #111111;
  color: #d98b74;
  padding: 15px 30px;
  border-radius: 14px;
  border: 1px solid #d98b74;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta .btn-primary:hover {
  background: #e4a890;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
}

@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .about .container {
    flex-direction: column;
    gap: 30px;
  }
  .services .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.legal-page {
  padding: 50px 20px;
  background: #f7f7f9;
  min-height: 100vh;
}
.legal-page .container {
  max-width: 900px;
  margin: auto;
}
.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #111111;
  text-align: center;
}
.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #d98b74;
}
.legal-page p {
  line-height: 1.8;
  color: #222222;
  font-size: 1rem;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  background: #f7f7f9;
}
.error-page h1 {
  font-size: 6rem;
  color: #d98b74;
  margin-bottom: 10px;
}
.error-page h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111111;
}
.error-page p {
  margin-bottom: 40px;
  color: #777777;
}
.error-page .btn-primary {
  background: #111111;
  color: #d98b74;
  padding: 15px 30px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.error-page .btn-primary:hover {
  background: #d98b74;
  color: #ffffff;
}

/*# sourceMappingURL=app.output.css.map */
