.plp { padding-bottom: 8px; }

.fbar, .dsort { display: none; }

.filterbar {
  position: sticky;
  top: 62px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.filterbar__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.filterbar__btn .icon { width: 18px; height: 18px; color: var(--ink); }
.filterbar__chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filterbar__chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--field);
  border-radius: 20px;
  padding: 9px 16px;
  white-space: nowrap;
}

.plp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 16px 16px;
}
.plp-count {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.plp-count b { font-weight: 700; color: var(--ink); }
.plp-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.plp-sort .icon { width: 20px; height: 20px; }

.pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.pgrid .pcard {
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  padding: 16px 14px 22px;
}
.pgrid .pcard:nth-child(odd) { border-right: 1px solid var(--line); }
.pgrid .pcard__badge { left: auto; right: 0; top: 10px; }
.pgrid .pcard.is-hidden { display: none; }
.pgrid .pcard__name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 14px;
  min-height: 2.4em;
}
.pgrid .pcard__price { margin-top: 12px; }
.pgrid .price__now { font-size: 15px; }
.pgrid .price__inst { font-size: 12px; }

.loadmore { padding: 26px 16px 12px; }

.lojas { padding: 28px 0 6px; }

.sheet {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}
.sheet.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease;
}
.sheet__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px 16px;
  border-bottom: 1px solid var(--line);
}
.sheet__title {
  flex: 1;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sheet__clear {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.sheet__close { flex: 0 0 auto; color: var(--ink); }
.sheet__close .icon { width: 22px; height: 22px; }
.sheet__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sortopt {
  display: block;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 20px 18px;
  border-bottom: 1px solid var(--line);
}
.sortopt.is-active {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sheet .acc { border-bottom: 1px solid var(--line); }
.sheet .acc__head { padding: 18px; }
.sheet .acc__title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.sheet .acc.is-open .acc__title { color: var(--coral-strong); }
.sheet .acc__panel { padding: 0 18px; }
.sheet .acc.is-open .acc__panel { max-height: none; padding-bottom: 14px; }

.fopt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
}
.fopt input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.fopt__box {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  display: grid;
  place-items: center;
}
.fopt__box::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
}
.fopt input:checked + .fopt__box { background: var(--coral); border-color: var(--coral); }
.fopt input:checked + .fopt__box::after { opacity: 1; }
.fopt__label { flex: 1; }
.fopt__n { color: var(--muted); font-size: 12px; }

.gem {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}
.gem--agata-negra { background: #2b2b2b; }
.gem--agata-verde { background: #1f6b4b; }
.gem--agua-marinha { background: #7fd4e3; }
.gem--ametista { background: #9b59b6; }
.gem--ametista-rosa { background: #c98bc0; }
.gem--ametista-roxa { background: #7a3a99; }
.gem--ametista-verde { background: #4caf7d; }
.gem--apatita { background: #2bb6c4; }
.gem--aventurina { background: #2e9e6b; }
.gem--calcedonia-verde { background: #1d6e52; }
.gem--citrino { background: #e8a838; }
.gem--cristal { background: #dfe6ea; }
.gem--cristal-natural { background: #e8eef0; }
.gem--diamante { background: #eef2f5; }
.gem--diamante-brown { background: #a07a55; }
.gem--aco { background: #b8bcc0; }
.gem--couro { background: #7a4a2b; }
.gem--ouro-amarelo { background: #e8c34a; }
.gem--ouro-branco { background: #e8e8e6; }
.gem--ouro-champagne { background: #e6d2a8; }
.gem--ouro-rose { background: #e3b6a0; }
.gem--ouro-vivara { background: #d8c9a8; }
.gem--prata { background: #cfd2d4; }
.gem--prata-rodio { background: #3a3a3a; }
.gem--prata-e-ouro { background: #d9c07a; }

.prange__inputs {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 16px;
}
.prange__field { flex: 1; }
.prange__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.prange__input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 0 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
}
.prange__sep {
  flex: 0 0 auto;
  padding-bottom: 13px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-soft);
}

.sheet__apply {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.sheet__apply .btn { flex: 1; }
