/* /* =========================================================
   DE HOME PACKS
   Design Essentials France
   ========================================================= */

.de-home-packs {
  margin: 56px 0;
}

.de-home-packs__inner {
  width: 100%;
}

/* Header */
.de-home-packs__header {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.de-home-packs__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bb4d99;
}

.de-home-packs__title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  color: #222;
}

.de-home-packs__intro {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}

/* Grille */
.de-home-packs__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* Carte */
.de-home-packs__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid #eee7e1;
  border-left: 3px solid #c6a15b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.de-home-packs__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

/* Image */
.de-home-packs__image-link {
  display: block;
  text-decoration: none;
}

.de-home-packs__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f5f1;
}

.de-home-packs__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .3s ease;
}

.de-home-packs__card:hover .de-home-packs__image {
  transform: scale(1.03);
}

/* Contenu */
.de-home-packs__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.de-home-packs__name {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.de-home-packs__name a {
  color: #4f0b3a;
  text-decoration: none;
  text-transform: capitalize;
}

.de-home-packs__name a:hover {
  color: #c6a15b;
}

.de-home-packs__description {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
  color: #666;
}

/* Bas carte */
.de-home-packs__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.de-home-packs__price {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.de-home-packs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  background: #74096e;
  border: 1px solid #74096e;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}

.de-home-packs__button:hover {
  background: #c6a15b;
  border-color: #c6a15b;
  color: #111 !important;
}

/* Footer */
.de-home-packs__footer {
  margin-top: 30px;
  text-align: center;
}

.de-home-packs__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid #74096e;
  color: #74096e !important;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.de-home-packs__all:hover {
  background: #74096e;
  border-color: #74096e;
  color: #fff !important;
}

/* =========================================================
   TABLETTE
   ========================================================= */

@media (max-width: 1199px) {

  .de-home-packs {
    margin: 42px 0;
  }

  .de-home-packs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .de-home-packs__title {
    font-size: 30px;
  }

}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

  .de-home-packs {
    margin: 34px 0;
  }

  .de-home-packs__header {
    margin-bottom: 22px;
    padding: 0 10px;
  }

  .de-home-packs__title {
    font-size: 26px;
  }

  .de-home-packs__intro {
    font-size: 14px;
  }

  .de-home-packs__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .de-home-packs__content {
    padding: 15px;
  }

  .de-home-packs__name {
    font-size: 17px;
  }

  .de-home-packs__price {
    font-size: 18px;
  }

}

/* Très petits écrans */
@media (max-width: 420px) {

  .de-home-packs__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .de-home-packs__price {
    text-align: center;
  }

  .de-home-packs__button {
    width: 100%;
  }

}CSS Document */

