.category-section,
.product-section {
  padding: 1.3rem 1rem 0;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-heading--art {
  margin-bottom: 0.7rem;
  text-align: center;
}

.section-heading h2,
.footer h2 {
  margin: 0.32rem 0 0;
  font-size: clamp(1.6rem, 7vw, 2.2rem);
  line-height: 1.1;
}

.section-heading__art-title {
  margin: 0;
}

.section-heading__art-image {
  display: block;
  width: auto;
  max-width: min(100%, 24rem);
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.section-heading__art-image--featured {
  max-width: min(100%, 17rem);
}

.section-heading__art-image--catalog {
  max-width: min(100%, 16rem);
}

.section-heading__copy {
  margin: 0.65rem 0 0;
  max-width: 32rem;
  color: var(--muted);
  line-height: 1.6;
}

.product-section__status,
.product-section__empty {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.product-section__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.1rem 0.2rem;
  border-radius: 1.1rem;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

.product-section__empty-image {
  display: block;
  width: min(100%, 14.5rem);
  height: auto;
}

.product-card h3,
.product-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.product-card__subtitle {
  margin: 0.28rem 0 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.88rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.product-card--interactive {
  cursor: pointer;
}

.product-card--interactive:focus-visible {
  outline: 3px solid rgba(18, 37, 58, 0.18);
  outline-offset: 3px;
}

.product-card__photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(24, 26, 28, 0.28)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.52), transparent 35%);
}

.product-card__photo--olive {
  background:
    linear-gradient(140deg, rgba(162, 187, 138, 0.92), rgba(89, 112, 74, 0.9)),
    linear-gradient(45deg, #bcd0aa, #75866a);
}

.product-card__photo--pearl {
  background:
    linear-gradient(140deg, rgba(235, 229, 219, 0.96), rgba(184, 173, 160, 0.92)),
    linear-gradient(45deg, #f0e7dc, #d0c0b0);
}

.product-card__photo--stone {
  background:
    linear-gradient(140deg, rgba(198, 188, 177, 0.94), rgba(107, 98, 91, 0.92)),
    linear-gradient(45deg, #d8cabc, #82776f);
}

.product-card__photo--night {
  background:
    linear-gradient(140deg, rgba(74, 88, 103, 0.96), rgba(28, 37, 48, 0.94)),
    linear-gradient(45deg, #73859a, #27303a);
}

.product-card__photo--sage-soft {
  background:
    linear-gradient(140deg, rgba(196, 213, 179, 0.96), rgba(134, 154, 116, 0.92)),
    linear-gradient(45deg, #d8e4ca, #8ea57f);
}

.product-card__photo--olive-deep {
  background:
    linear-gradient(140deg, rgba(132, 155, 107, 0.96), rgba(67, 84, 56, 0.94)),
    linear-gradient(45deg, #9eb58c, #566a49);
}

.product-card__photo--mist-soft {
  background:
    linear-gradient(140deg, rgba(214, 223, 229, 0.96), rgba(161, 176, 188, 0.92)),
    linear-gradient(45deg, #edf2f6, #aab8c3);
}

.product-card__photo--sand-soft {
  background:
    linear-gradient(140deg, rgba(244, 227, 205, 0.96), rgba(214, 186, 154, 0.92)),
    linear-gradient(45deg, #f8eddf, #ddc0a4);
}

.product-card__photo--pearl-deep {
  background:
    linear-gradient(140deg, rgba(208, 198, 186, 0.96), rgba(144, 132, 120, 0.94)),
    linear-gradient(45deg, #e2d6ca, #8f8478);
}

.product-card__photo--rose-soft {
  background:
    linear-gradient(140deg, rgba(240, 214, 207, 0.96), rgba(206, 169, 160, 0.92)),
    linear-gradient(45deg, #f7e1da, #d5aea4);
}

.product-card__photo--stone-soft {
  background:
    linear-gradient(140deg, rgba(221, 210, 198, 0.96), rgba(171, 156, 144, 0.92)),
    linear-gradient(45deg, #ece1d6, #b6a595);
}

.product-card__photo--night-soft {
  background:
    linear-gradient(140deg, rgba(122, 138, 156, 0.96), rgba(68, 82, 98, 0.92)),
    linear-gradient(45deg, #93a3b5, #4b5a69);
}

.product-card__photo--night-deep {
  background:
    linear-gradient(140deg, rgba(47, 58, 71, 0.98), rgba(18, 25, 34, 0.96)),
    linear-gradient(45deg, #5a6878, #1e2731);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.34rem;
  padding: 0.8rem 0.82rem 0.82rem;
}

.product-card h3,
.product-card__subtitle {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.product-card h3 {
  min-height: 2.1rem;
  -webkit-line-clamp: 2;
  color: #3f433f;
}

.product-card__subtitle {
  min-height: 3.85rem;
  -webkit-line-clamp: 3;
}

.product-card__price {
  margin: 0.08rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a5e5a;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  width: min(10.1rem, 100%);
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.product-card__link-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-card__link:focus,
.product-card__link:active,
.footer__link:focus,
.footer__link:active {
  outline: none;
  box-shadow: none;
}

.product-card__link:focus-visible,
.footer__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(214, 184, 137, 0.34);
  border-radius: 999px;
}

@media (min-width: 720px) {
  .section-heading__art-image--featured {
    max-width: min(100%, 19rem);
  }

  .section-heading__art-image--catalog {
    max-width: min(100%, 18rem);
  }
}

.whatsapp-button,
.footer__link,
.back-to-top {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(11, 54, 126, 0.92);
  border-radius: 0.8rem;
  background: linear-gradient(180deg, #1f5eb2 0%, #123f87 100%);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(18, 63, 135, 0.22);
}

.whatsapp-button:hover,
.footer__link:hover,
.back-to-top:hover {
  background: linear-gradient(180deg, #2a6bc1 0%, #174893 100%);
}

.footer {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 1rem 0;
  padding: 1.3rem 1rem 1.8rem;
  border-top: 1px solid var(--line);
}

.footer__actions {
  display: grid;
  gap: 0.55rem;
}

.footer__cnpj {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: center;
}

.footer__link {
  width: min(16rem, 100%);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.footer__link-image {
  display: block;
  width: 100%;
  height: auto;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.1rem;
  z-index: 30;
  width: 2.9rem;
  height: 2.9rem;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
}

.back-to-top .lanya-inline-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--white);
}
