/* SISTA global components — ported from Concept E @ 694cd0893bdd1e045f10ee0c134c063497bb1307. */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.72em 1.5em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--solid {
  background: var(--red);
  color: var(--ink);
}

.btn--solid:hover {
  background: var(--red-hover);
}

.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--cream {
  background: var(--cream);
  color: var(--ink);
}

.btn--cream:hover {
  background: var(--yellow);
}

.btn--sm {
  min-height: 40px;
  padding: 0.55em 1.05em;
  font-size: 0.68rem;
}

.btn--lg {
  min-height: 54px;
  padding: 0.9em 2.1em;
  font-size: 0.8rem;
}

.btn--block {
  width: 100%;
}

/* Elementor button widget mapping — the wrapper carries the canonical .btn
   classes; non-inherited component properties must be restated on the inner
   anchor, using the same canonical tokens as the rules above. The wrapper
   itself is layout-only and visually transparent so there is exactly ONE
   button box (the clickable anchor). */
.elementor-widget-button.btn {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 0;
}

.btn .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.72em 1.5em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: inherit;
  text-transform: uppercase;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--solid .elementor-button {
  background: var(--red);
  color: var(--ink);
}

.btn--solid:hover .elementor-button {
  background: var(--red-hover);
}

.btn--ghost .elementor-button {
  border-color: currentColor;
}

.btn--ghost:hover .elementor-button {
  background: var(--ink);
  color: var(--cream);
}

.btn--cream .elementor-button {
  background: var(--cream);
  color: var(--ink);
}

.btn--cream:hover .elementor-button {
  background: var(--yellow);
}

/* ---------- Text links ---------- */
.text-link {
  display: inline-block;
  padding-bottom: 0.25em;
  border-bottom: 2px solid currentColor;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.text-link:hover {
  color: var(--red);
}

/* ---------- Best Seller tag ---------- */
.tag-best {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35em 0.7em;
  border-radius: var(--radius);
}

/* ---------- Hairline ---------- */
.hairline-top {
  border-top: 1px solid var(--hairline);
}

/* ---------- Reduced motion (components with transitions) ---------- */
@media (prefers-reduced-motion: reduce) {
  .btn,
  .text-link {
    transition: none;
  }
}
