.catalog-showcase {
  background: #fbf5f2;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(143 78 82 / 14%);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgb(47 25 30 / 7%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgb(47 25 30 / 13%);
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--rose-soft);
}

.catalog-card-copy {
  padding: 24px 24px 27px;
}

.catalog-card-copy > span {
  color: var(--rose-deep);
  letter-spacing: .15em;
  font-size: 10px;
  font-weight: 900;
}

.catalog-card-copy h3 {
  margin: 10px 0 8px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.15;
}

.catalog-card-copy p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.catalog-whatsapp {
  color: var(--rose-deep);
  border-top: 1px solid rgb(143 78 82 / 16%);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 19px;
  padding-top: 15px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  transition: color .2s ease;
}

.catalog-whatsapp:hover {
  color: var(--ink);
}

.catalog-whatsapp span {
  font-size: 16px;
}

.social-outline {
  border: 1px solid rgb(33 23 25 / 45%);
}

.contact-details {
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px !important;
  font-size: 12px !important;
  font-weight: 700;
  display: flex;
}

.contact-details a {
  border-bottom: 1px solid rgb(33 23 25 / 35%);
  padding-bottom: 3px;
}

.catalog-note {
  color: var(--muted);
  max-width: 680px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.65;
}

.catalog-note strong {
  color: var(--ink);
}

@media (max-width: 980px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .catalog-card {
    border-radius: 16px;
  }

  .catalog-card-copy {
    padding: 21px 20px 24px;
  }

  .catalog-card-copy h3 {
    font-size: 24px;
  }

  .catalog-whatsapp {
    min-height: 44px;
  }

  .contact-details {
    flex-direction: column;
    gap: 8px;
  }

  .contact-details span {
    display: none;
  }
}
