@charset "UTF-8";
/* Colours*/
/* Typo and Fonts */
.navbar {
  font-family: "Sour Gummy", sans-serif;
}
.navbar .logo {
  max-height: 150px;
  transition: transform 0.25s ease;
}
.navbar .logo:hover {
  transform: scale(1.05);
}
.navbar .navbar-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navbar .nav-link {
  color: #333;
  font-size: 1.7rem;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
.navbar .nav-link:hover {
  color: #ff7fa2;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(0.3);
}

.footer-section {
  background-color: #FAB0BD;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-section__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.footer__logo {
  width: 28%;
}

.footer-section__social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.footer-section__social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
}

.social-icon {
  display: block;
  /* supprime les petits traits */
  color: white;
  /* icônes blanches */
  font-size: 32px;
  text-decoration: none;
  margin: 0 10px;
}

.footer-section__contacts {
  display: flex;
  flex-direction: row;
  margin: 10px;
}

.fa-envelope {
  color: #F4F4F4;
  margin: 0 10px;
}

.footer-section__container-contacts a {
  text-decoration: none;
  color: #F4F4F4;
}

.footer-section__container-contacts p {
  margin-left: 5px;
}

.terms-and-conditions {
  text-decoration: none;
  color: #F4F4F4;
  margin-bottom: 2rem;
}

/* Icônes réseaux sociaux + hover */
.footer-section__social-media a {
  display: inline-block;
  margin: 0 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-section__social-media a:hover {
  transform: translateY(-4px); /* effet lift */
}

/* Agrandir légèrement l’icône */
.footer-section__social-media i {
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-section__social-media a:hover i {
  transform: scale(1.1);
  color: #ff5a5f;
}

.title {
  margin: 50px 0;
}

#product-list {
  margin-bottom: 50px;
}

.brand-section {
  margin-bottom: 50px;
}

.icon-card,
i.icon-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6C6D1;
  color: #F4F4F4;
  width: 20%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 15px auto 16px auto;
}

.card-body-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}

/* Layout principal */
.product-container {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  align-items: start;
}

/* Miniatures */
.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.thumbnails img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.thumbnails img:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Par défaut (desktop et tablette) → cacher les dots */
.carousel-dots {
  display: none;
}

/* Image principale */
.main-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Détails produit */
.product-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-details h1 {
  font-size: 1.8rem;
  margin: 0;
}

.product-details p {
  margin: 0;
  line-height: 1.5;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #b22222;
}

.buy-btn {
  background-color: #ff5a5f;
  border: none;
  color: white;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

.buy-btn:hover {
  background-color: #e0484c;
}

/* Bouton Add to Cart Payhip */
#payhipButton {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #de6e83;
  color: #F4F4F4;
  font-weight: 600;
  font-size: 1.3rem;
  font-family: "Comfortaa";
  font-weight: 800;
  text-align: center;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

#payhipButton:hover {
  background-color: #cd586d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#payhipButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
  }
  .thumbnails {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .thumbnail {
    max-width: 70px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  .main-image {
    order: 1;
  }
  .product-details {
    order: 3;
    align-items: center;
    text-align: center;
  }
  .main-image img {
    max-width: 90%;
  }
}
/* --- Version mobile/tablette : miniatures en carrousel --- */
@media (max-width: 900px) {
  .product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-image {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-bottom: 1rem;
  }
  .main-image img {
    width: 100%;
    border-radius: 10px;
  }
  /* Miniatures transformées en slider */
  .thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* masque scrollbar sur Firefox */
  }
  .thumbnails::-webkit-scrollbar {
    display: none; /* masque scrollbar sur Chrome */
  }
  .thumbnails img {
    flex: 0 0 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
    scroll-snap-align: center;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .thumbnails img.active {
    opacity: 1;
    border: 2px solid #ff7fa2;
  }
  /* Petits points (pagination Etsy-style) */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }
  .carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .carousel-dots button.active {
    background-color: #ff7fa2;
  }
}
/* ----- Layout global boutique ----- */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  padding: 2rem;
}
@media (max-width: 992px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

/* ----- Sidebar ----- */
.sidebar {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
}
.sidebar h3 {
  font-family: "Sour Gummy", sans-serif;
  margin-bottom: 1rem;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar li {
  margin-bottom: 0.8rem;
}
.sidebar .category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: "Comfortaa", sans-serif;
  font-size: 0.9rem;
  color: #333;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sidebar .category-btn:hover {
  background-color: rgba(255, 127, 162, 0.1);
  color: #ff7fa2;
}
.sidebar .category-btn.active {
  background-color: rgba(255, 127, 162, 0.15);
  color: #ff7fa2;
  font-weight: 600;
  box-shadow: 0 0 0 2px rgba(255, 127, 162, 0.3);
}
.sidebar .category-btn::after {
  content: attr(data-count);
  background: #eee;
  color: #555;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  margin-left: auto;
}
.sidebar .category-btn.active::after {
  background: #ff7fa2;
  color: #fff;
}

/* ----- Grille produits ----- */
.product-grid {
  /* ----- Style de chaque card ----- */
}
.product-grid h1 {
  font-family: "Sour Gummy", sans-serif;
  margin-bottom: 2rem;
}
.product-grid .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .product-grid .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .product-grid .products {
    grid-template-columns: 1fr;
  }
}
.product-grid .card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.product-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}
.product-grid .card .card-img-top {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-grid .card .card-body {
  padding: 1rem;
}
.product-grid .card .card-body h5 {
  font-family: "Sour Gummy", sans-serif;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.product-grid .card .card-body p {
  font-family: "Comfortaa", sans-serif;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.8rem;
}
.product-grid .card .card-body a {
  color: #ff7fa2;
  font-weight: 600;
  text-decoration: none;
}
.product-grid .card .card-body a:hover {
  text-decoration: underline;
}

h1 {
  text-align: center;
  background-color: #F6C6D1;
  margin-top: 2rem;
}

/* Page index*/
/*Cards Business*/
@media (max-width: 992px) {
  .title-products {
    margin-left: 0.8rem;
  }
  .card-body-brand {
    padding: 1.2rem;
    font-size: 0.9rem;
  }
}
/* Page product-page */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
  }
  .thumbnails {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    order: 2;
  }
  .thumbnail {
    max-width: 70px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 4px;
  }
  .main-image {
    order: 1;
  }
  .product-details {
    order: 3;
    align-items: center;
    text-align: center;
  }
  .main-image img {
    max-width: 90%;
  }
}
/* --- Version mobile/tablette : miniatures en carrousel --- */
@media (max-width: 900px) {
  .product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-image {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    max-width: 450px;
    margin-bottom: 1rem;
  }
  .main-image img {
    width: 100%;
    border-radius: 10px;
  }
  /* Miniatures transformées en slider */
  .thumbnails {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* masque scrollbar sur Firefox */
  }
  .thumbnails::-webkit-scrollbar {
    display: none; /* masque scrollbar sur Chrome */
  }
  .thumbnails img {
    flex: 0 0 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
    scroll-snap-align: center;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .thumbnails img.active {
    opacity: 1;
    border: 2px solid #ff7fa2;
  }
  /* Petits points (pagination Etsy-style) */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
  }
  .carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .carousel-dots button.active {
    background-color: #ff7fa2;
  }
}
.container1200 {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  margin: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sour Gummy", sans-serif;
}

.title {
  text-align: center;
  background-color: #F6C6D1;
  color: #F4F4F4;
}

body, p, li {
  font-family: "Comfortaa", sans-serif;
}/*# sourceMappingURL=main.css.map */