﻿/* Base shared styles */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("../../fonts/fonts.css?v=20260516-material-symbols");

:root {
  --market-blue: #075ed0;
  --market-blue-dark: #0647a5;
  --market-green: #0b7d2c;
  --market-orange: #ff6a13;
  --market-ink: #101827;
  --market-muted: #5f7088;
  --market-line: #dce6f1;
  --market-bg: #f4f7fb;
  --market-card: #ffffff;
  --market-shadow: 0 4px 14px rgba(15, 23, 42, 0.055);
  --market-shadow-lift: 0 8px 20px rgba(15, 23, 42, 0.085);
  --market-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --offer-blue-soft: #eef6ff;
  --offer-green: #10833d;
  --offer-green-soft: #e8f7ee;
  --offer-orange: #f97316;
  --offer-orange-soft: #fff3e8;
  --offer-gray-soft: #f6f8fb;
  --ui-radius-control: 10px;
  --ui-radius-card: 12px;
  --ui-radius-panel: 14px;
  --ui-shadow-soft: 0 3px 10px rgba(15, 23, 42, 0.04);
  --ui-shadow-card: 0 5px 14px rgba(15, 23, 42, 0.055);
  --ui-shadow-card-hover: 0 8px 20px rgba(15, 23, 42, 0.075);
  --ui-shadow-action: 0 6px 14px rgba(7, 94, 208, 0.14);
  --ui-page-width: 1120px;
  --ui-space-page-x: 14px;
  --ui-section-gap: 18px;
  --ui-weight-title: 800;
  --ui-weight-action: 800;
  --ui-weight-meta: 700;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

body {
  margin: 0;
  background: var(--market-bg);
  color: var(--market-ink);
  font-family: var(--market-font);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.emoji-icon {
  width: 1.18em;
  min-width: 1.18em;
  height: 1.18em;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", var(--market-font);
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.emoji-icon.is-small {
  font-size: 0.9em;
}

.emoji-icon.is-large {
  font-size: 1.35em;
}

.emoji-icon.catalog-icon-img {
  object-fit: contain;
}

.emoji-icon.icon-initials {
  font-family: var(--market-font);
  font-size: 0.62em;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.search-icon.emoji-icon {
  color: #6f8098;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  width: 100%;
  padding: 12px clamp(12px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e8eef6;
  box-shadow: var(--ui-shadow-soft);
}

.nav-main {
  display: grid;
  grid-template-columns: minmax(116px, 156px) minmax(118px, 190px) auto;
  align-items: center;
  gap: clamp(8px, 2vw, 18px);
  max-width: 1120px;
  margin: 0 auto;
}

.logo-image {
  width: clamp(118px, 14vw, 150px);
  height: 42px;
  object-fit: contain;
}

.logo-text {
  color: var(--market-blue);
  font-size: clamp(0.96rem, 2.4vw, 1.25rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.logo-link {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.brand-logo-image {
  width: clamp(142px, 18vw, 188px);
  height: auto;
  max-height: 46px;
  display: block;
  object-fit: contain;
}

.offer-badge,
.discount-badge,
.deal-badge,
.all-badge,
.detail-badges span,
.related-offer-card > span,
.seller-landing-offer-badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  border-radius: 9px;
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: none;
  transition: transform 150ms ease-out, filter 150ms ease-out;
}

.offer-badge .emoji-icon,
.discount-badge .emoji-icon,
.deal-badge .emoji-icon,
.seller-landing-offer-badge .emoji-icon {
  width: 1em;
  min-width: 1em;
  height: 1em;
}

.offer-badge .catalog-icon-img,
.discount-badge .catalog-icon-img,
.deal-badge .catalog-icon-img,
.seller-landing-offer-badge .catalog-icon-img {
  border-radius: 3px;
}

.badge-discount {
  background: #dcfce7;
  color: #10833d;
}

.badge-2x1,
.badge-combo {
  background: #fff3d7;
  color: #8a5200;
}

.badge-flash,
.badge-day {
  background: #ffedd5;
  color: #c2410c;
}

.badge-reduced {
  background: #fef2f2;
  color: #b42318;
}

.badge-bank {
  background: #eef2ff;
  color: #3730a3;
}

.offer-activity {
    width: fit-content;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    border-radius: 3px;
    background: #f1fff0;
    color: #212121;
    font-size: 0.7rem;
    font-weight: 400 !important;
}

.deal-saving,
.price-section,
.all-offer-price,
.detail-price-card,
.offer-price,
.all-offer-price strong,
.detail-price-card strong,
.seller-landing-offer aside strong,
.related-offer-card strong {
  color: var(--offer-green);
}

.all-saving,
.all-saving-kind,
.all-saving-amount,
.all-mobile-saving-kind,
.all-mobile-saving-amount,
.detail-saving-kind,
.detail-saving-amount,
.related-saving-kind,
.related-saving-amount,
.seller-saving-kind,
.seller-saving-amount,
.detail-price-card em,
.seller-landing-offer aside em {
  background: var(--offer-green-soft);
  color: var(--offer-green);
}

.type-pill,
.promo-ofertas-type-btn,
.filter-select-card,
.detail-secondary-cta,
.detail-card-actions a,
.detail-card-actions button,
.seller-type-pill,
.seller-landing-actions a,
.seller-landing-actions button {
  transition: background 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out, transform 150ms ease-out, box-shadow 150ms ease-out;
}

.type-pill.active,
.promo-ofertas-type-btn.active,
.seller-type-pill.active {
  background: var(--offer-blue-soft);
  border-color: #bfdbfe;
  color: var(--market-blue);
  box-shadow: none;
}

.empty-state,
.detail-empty-state {
  border-color: #e5edf6;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.empty-state strong,
.detail-empty-state h1 {
  color: #172033;
}

.empty-state span,
.detail-empty-state p {
  color: #64748b;
}

.landing-bottom-link {
  transition: background 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
}

.landing-bottom-link-active {
  background: var(--offer-blue-soft);
  color: var(--market-blue);
  border-radius: 999px;
}

.landing-bottom-link-active .emoji-icon,
.landing-bottom-link-active .material-symbols-rounded {
  transform: translateY(-1px);
}

.all-detail-link,
.detail-main-cta,
.seller-landing-whatsapp {
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}

.all-detail-link:active,
.detail-main-cta:active,
.seller-landing-whatsapp:active {
  transform: translateY(1px);
}

.zone-chip {
  width: 100%;
  min-width: 0;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--market-line);
  border-radius: 999px;
  background: #fff;
  color: #17324a;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--market-line);
  border-radius: 13px;
  background: #fff;
  color: #233b56;
  box-shadow: none;
}

.icon-btn:hover,
.icon-btn.active {
  border-color: #bfd3eb;
  background: #eaf3ff;
  color: var(--market-blue);
}

.barra-busqueda {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 8px;
  max-width: 1120px;
  height: 56px;
  margin: 12px auto 0;
  padding: 0 4px 0 16px;
  border: 1px solid var(--market-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.search-icon {
  color: #64748b;
  font-size: 1.05rem;
}

.barra-busqueda input {
  height: 52px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 500;
  outline: 0;
}

.barra-busqueda input::placeholder {
  color: #8a99ad;
}

.header-search-submit {
  width: 50px;
  height: 48px;
  border: 0;
  border-radius: 13px;
  background: var(--market-blue);
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(7, 94, 208, 0.18);
}

.nav-top {
  max-width: 1120px;
  margin: 10px auto 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.nav-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: #eaf3ff;
  color: var(--market-blue);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 14px 56px;
}

.public-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 14px auto 10px;
  padding: 16px;
  border: 1px solid #dfe8f3;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(7, 94, 208, 0.08), transparent 38%), #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

.public-page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--market-blue);
}

.public-page-hero-icon,
.public-section-icon {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--market-blue);
}

.public-page-hero-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  font-size: 1.25rem;
  box-shadow: 0 10px 22px rgba(7, 94, 208, 0.2);
}

.public-kicker {
  margin: 0 0 3px;
  color: var(--market-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.public-page-hero h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.22rem, 4.4vw, 1.72rem);
  line-height: 1.08;
}

.public-page-hero p:last-child {
  max-width: 660px;
  margin: 6px 0 0;
  color: #607089;
  font-size: 0.88rem;
  line-height: 1.42;
}

.public-section-heading {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 16px auto 8px;
}

.public-section-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eaf3ff;
  color: var(--market-blue);
}

.public-section-heading h2,
.section-title h2 {
  margin: 0;
  color: #111827;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.15;
}

.public-section-heading p {
  margin: 3px 0 0;
  color: #6b7b91;
  font-size: 0.8rem;
}

.nav-categories-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 10px;
  background: transparent;
  overflow-x: auto;
}

.promo-ofertas-types {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.promo-ofertas-types::-webkit-scrollbar,
.nav-top::-webkit-scrollbar {
  display: none;
}

.promo-ofertas-type-btn,
.btn-limpiar,
.promo-ofertas-scroll-btn {
  border: 1px solid #dfe8f3;
  background: #fff;
  color: #22344d;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
  font-weight: 800;
}

.promo-ofertas-type-btn {
  min-width: auto;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.promo-ofertas-type-btn:hover,
.promo-ofertas-type-btn.active {
  border-color: var(--market-blue);
  background: var(--market-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 94, 208, 0.2);
}

.promo-ofertas-scroll-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--market-blue);
}

.btn-limpiar {
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
}

.hidden-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 10px;
}

.section-title span,
.panel-status {
  color: #6b7b91;
  font-size: 0.84rem;
  font-weight: 700;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(174px, 1fr));
  gap: 12px;
}

.offer-card {
  min-width: 0;
  overflow: hidden;
  position: relative;
  border: 1px solid #dfe8f3;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.offer-card:hover {
  border-color: #c6daf3;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.offer-card.featured::before {
  content: "Oferta";
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--market-blue);
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.offer-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #eaf3ff, #fff4ec);
  background-position: center;
  background-size: cover;
}

.offer-image::after {
  content: "🏷️";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(7, 94, 208, 0.2);
  font-size: 3rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", var(--market-font);
}

.offer-image[style*="url"]::after {
  display: none;
}

.offer-body {
  padding: 12px;
}

.offer-meta,
.seller-row,
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.offer-category,
.offer-days {
  color: #6b7b91;
  font-size: 0.72rem;
  font-weight: 800;
}

.offer-category {
  color: var(--market-blue);
}

.offer-card h3 {
  min-height: 40px;
  margin: 8px 0 6px;
  color: #142033;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.22;
}

.offer-description {
  min-height: 38px;
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.35;
}

.offer-price {
  color: var(--market-green);
  font-size: 1.22rem;
  font-weight: 900;
}

.regular-price {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: line-through;
}

.seller-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #edf2f7;
}

.seller-name {
  min-width: 0;
  overflow: hidden;
  color: #1f2d3d;
  font-size: 0.78rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 10px;
  background: #e9f8ee;
  color: #0b7d2c;
  font-size: 0.76rem;
  font-weight: 900;
}

.offer-interest-button {
    position: relative;
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid #dbe7f6b3;
    border-radius: 7px;
    background: #fff;
    color: #075ed0;
    font: inherit;
    font-size: 1rem;
    font-weight: 50;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.offer-interest-button .interest-icon {
  width: 20px;
  min-width: 20px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  font-size: 1.2rem;
  line-height: 1;
}

.offer-interest-button .interest-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.offer-interest-button b {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #075ed0;
  color: #fff;
  font-size: 0.66rem;
  line-height: 1;
}

.offer-interest-button.is-active {
  border-color: #b8d6ff;
  background: #eef6ff;
  color: #075ed0;
}

.offer-interest-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-stack {
  display: grid;
  gap: 14px;
}

.form-stack label {
  display: grid;
  gap: 6px;
  color: #52637a;
  font-size: 0.86rem;
  font-weight: 800;
}

.form-stack input,
.form-stack select,
.form-stack textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #dce6f1;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  outline: 0;
}

.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus {
  border-color: #bfd3eb;
  box-shadow: 0 0 0 3px rgba(7, 94, 208, 0.14);
}

.form-stack select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #64748b 50%) right 16px center / 7px 7px no-repeat,
    linear-gradient(135deg, #64748b 50%, transparent 50%) right 11px center / 7px 7px no-repeat,
    #fff;
  padding-right: 36px;
}

.form-stack button,
.form-actions button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--market-blue);
  color: #fff;
  font-weight: 900;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(7, 94, 208, 0.24);
  outline-offset: 3px;
}

:where(button, a, .offer-card, .deal-card, .mini-deal-card, .category-card) {
    -webkit-tap-highlight-color: transparent;
    font-family: "Overpass", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.form-message {
  min-height: 20px;
  color: #b42318;
  font-weight: 800;
}

.panel-layout {
  max-width: 1120px;
}

.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 14px 0 18px;
  padding: 16px;
  border: 1px solid #dfe8f3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--market-blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-heading h1 {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 16px;
  align-items: start;
}

.panel-card {
  padding: 18px;
}

.panel-card h2 {
  margin: 0 0 14px;
  font-size: 1.02rem;
}

.split-fields,
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.secondary-button,
.link-button {
  background: #edf1f5;
  color: #172033;
}

.danger-button {
  background: #b42318;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-row input {
  width: auto;
  min-height: auto;
}

.seller-offers {
  display: grid;
  gap: 10px;
}

.seller-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid #dfe8f3;
  border-radius: 14px;
  background: #fff;
}

.seller-offer h3,
.seller-offer p {
  margin: 0 0 4px;
}

.seller-offer h3 {
  font-size: 0.96rem;
}

.seller-offer p,
.seller-offer span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
}

.seller-actions {
  display: flex;
  gap: 8px;
}

.seller-actions button {
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  background: #eaf3ff;
  color: var(--market-blue);
  font-weight: 900;
  padding: 0 10px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 12px;
  }

  .nav-main {
    grid-template-columns: minmax(98px, 1fr) auto auto;
  }

  .zone-chip {
    width: auto;
    padding: 0 12px;
  }

  .nav-top {
    padding-bottom: 2px;
  }

  main {
    padding-inline: 10px;
  }

  .public-page-hero {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }

  .public-page-hero-icon {
    width: 46px;
    height: 46px;
  }

  .offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .offer-body {
    padding: 10px;
  }

  .offer-card h3 {
    font-size: 0.88rem;
  }

  .offer-description {
    display: none;
  }

  .offer-price {
    font-size: 1.05rem;
  }

  .seller-row,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .panel-grid,
  .split-fields,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .panel-heading,
  .seller-offer {
    align-items: stretch;
    flex-direction: column;
  }
}

/* UX/UI refinement pass: shared density, weight and surface defaults. */
.offer-card,
.deal-card,
.mini-deal-card,
.category-card,
.all-offer-card,
.detail-hero-card,
.detail-info-card,
.seller-landing-offer,
.seller-landing-info-grid article,
.seller-landing-offers-section,
.auth-card,
.panel-card {
  box-shadow: var(--ui-shadow-card);
}

.offer-card:hover,
.deal-card:hover,
.mini-deal-card:hover,
.landing-offer-card:hover,
.all-offer-card:hover,
.related-offer-card:hover,
.seller-landing-offer:hover {
  box-shadow: var(--ui-shadow-card-hover);
}

.offer-card h3,
.deal-card h3,
.mini-deal-card h3,
.all-offer-info h3,
.all-offer-info h3 a,
.seller-landing-offer h3,
.seller-landing-offer h3 a,
.related-offer-card a,
.app-section-row h2,
.public-section-heading h2 {
  font-weight: var(--ui-weight-title);
}

.offer-category,
.offer-days,
.seller-name,
.deal-card small,
.mini-deal-card small,
.all-offer-info > span,
.all-offer-info small,
.seller-landing-offer small,
.detail-badges span,
.detail-badges button,
.offer-activity {
  font-weight: var(--ui-weight-meta);
}

.header-search-submit,
.whatsapp-link,
.deal-whatsapp-link,
.all-offer-price a,
.detail-main-cta,
.seller-landing-actions a,
.seller-landing-actions button,
.form-stack button,
.type-pill,
.promo-ofertas-type-btn {
  font-weight: var(--ui-weight-action);
}
