.h2-style {
    position: relative;
    margin: 20px auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #f4d1b1;
    padding: 10px;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
    font-family: 'Arial';
    font-size: 1.25rem;
    line-height: 30.47px;
    font-weight: 700;
    color: #67635f;
}

.h2-style::before,
.h2-style::after {
    content: '';
    position: absolute;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    border: 2px solid #67635f;
    top: 50%;
    transform: translateY(-50%);
}

.h2-style::before {
    left: 15px; /* Ajustement de la position */
}

.h2-style::after {
    right: 15px; /* Ajustement de la position */
}

.slider-left-btn {
  display: flex;
  height: 36px; /* remplace calc(var(--spacing) * 9) */
  width: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3b3b3;
  background-color: #fff;
  box-shadow: -4px 4px 0px 0px #be8b5e;
}

.slider-right-btn {
  display: flex;
  height: 36px;
  width: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid #b3b3b3;
  background-color: #fff;
  box-shadow: 4px -4px 0px 0px #be8b5e;
}
.breadcrumb {
  margin-inline: auto;
  padding: 15px;
  font-family: 'Arial';
  font-size: 13.54px;
  color: #67635f;
}


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

.product-item {
  background: #FFF;
  width: 100%;
}

.product-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px;
  text-align: center;
  color: #b28351;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Arial';
  text-decoration: underline;
  line-height: 1.25;
}

.product-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tag-style {
  position: relative;
  display: flex;
  width: fit-content;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #b28351;
  padding: 10px;
  padding-inline: 20px;
  font-family: 'Arial';
  font-size: 16.3px;
  line-height: 30.47px;
  color: #FFF;
  &:hover {
    @media (hover: hover) {
      background-color: #82603c;
    }
  }
}

@media (max-width: 1024px) {
  .product-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .product-grid {
      grid-template-columns: 1fr;
  }
}

.home-content ul {
  list-style-type: disc;
}

