.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
  padding-bottom: 15px;
}

.featured-card {
  padding: 15px;
  margin-bottom: 50px;
  margin-top: 50px;
  border: none;
  background-color: var(--grey);
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-card img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  display: block;
}

.featured-card h1 {
  margin-top: 15px;
  font-family: "Monserrat";
  font-size: 1.30rem;
  color: var(--black);
  text-align: start;
}

.featured-card p {
  font-family: "Monserrat";
  font-size: 1.05rem;
  color: var(--muted-card-p);
  text-align: start;
  width: 90%;
}

.featured-products {
  margin-top: 100px;
}

.featured-products h1 {
  margin-left: 20px;
  font-size: 39px;
  color: var(--black);
  -webkit-text-stroke: 1px black;
  font-family: "Monserrat";
}

.featured-products p {
  margin-right: 20px;
  font-size: 17px;
  color: rgb(112, 111, 111);
  padding-top: 20px;
  font-family: "Monserrat";
}

.collections-btn {
  align-self: center;
  text-decoration: none;
  color: #111;
  border: none;
  border-radius: 5px;
  padding: 12px 18px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: white;
  transition: all 0.25s ease;
  -webkit-text-stroke: 0.15px black;
}

.collections-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  width: 34px;
  height: 34px;
  background-color: #DA4B2C;
  color: white;
  font-size: 18px;
}

.featured-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  margin-right: 15px;
}

.card-style {
  text-decoration: none;
  color: #111;
  border: 1px solid #111;
  padding: 10px 14px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  transition: all 0.25s ease;
  flex: 0 0 auto;
  white-space: nowrap;
}

.card-style:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background-color: #111;
  color: white;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.featured-card .card-img-anim-wrap {
  overflow: hidden;
}

.featured-card .card-img-anim {
  transition: transform 0.7s ease;
}

.featured-card:hover .card-img-anim {
  transform: scale(1.07);
}

/* Tablet */
@media (max-width: 992px) {
  .featured-products {
    margin-top: 70px;
  }

  .featured-products h1 {
    margin-left: 15px;
    font-size: 32px;
  }

  .featured-products p {
    margin-right: 15px;
    font-size: 15px;
    padding-top: 15px;
  }

  .featured-card {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 12px;
  }

  .featured-card img {
    height: 40vh;
  }

  .featured-card h1 {
    font-size: 1.15rem;
  }

  .featured-card p {
    width: 100%;
    font-size: 0.98rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .featured-products {
    margin-top: 50px;
  }

  .featured-products h1 {
    margin-left: 10px;
    font-size: 26px;
    -webkit-text-stroke: 0;
  }

  .featured-products p {
    margin-right: 10px;
    font-size: 14px;
    padding-top: 10px;
  }

  .featured-grid {
    gap: 12px;
  }

  .featured-card {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
  }

  .featured-card img {
    height: 32vh;
  }

  .featured-card h1 {
    font-size: 1rem;
    margin-top: 12px;
  }

  .featured-card p {
    width: 100%;
    font-size: 0.92rem;
  }

  .featured-cards {
    margin: 10px 0;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .card-style {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 9px 12px;
  }

  .collections-btn {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 11px 14px;
    gap: 10px;
  }

  .btn-span {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {

  .featured-products {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  .featured-products h1,
  .featured-products p {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
  }

  .featured-cards {
    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
  }

}