:root {
  --velvee-navy: #1e4a7a;
  --velvee-navy-soft: #2d5f94;
  --velvee-blue-light: #e8f4fa;
  --velvee-coral: #e8836a;
  --velvee-coral-soft: #f4a99a;
  --velvee-pink: #f5d0dc;
  --velvee-pink-soft: #fdf2f6;
  --velvee-mint: #6db5a0;
  --velvee-mint-dark: #5a9a8a;
  --velvee-green-bar: #4a9e88;
  --velvee-cream: #fdfbf7;
  --velvee-cream-footer: #fdf9f0;
  --velvee-sky: #a8d8ea;
  --velvee-sky-topbar: #e3f2fd;
  --velvee-lavender: #d6cfff;
  --velvee-beige: #f5efe6;
  --velvee-navy-deep: #1d2b4d;
  --tienda-red: #e8836a;
  --tienda-red-dark: #d66b52;
  --tienda-black: #1e4a7a;
  --tienda-bg: #ffffff;
  --tienda-page-bg: #ffffff;
  --tienda-muted: #7a8fa3;
  --tienda-border: #e4edf3;
  --tienda-border-soft: #eef4f8;
  --tienda-card-bg: #f8fbfd;
  --tienda-footer: var(--velvee-cream-footer);
  --tienda-font: "Nunito", system-ui, sans-serif;
  --tienda-font-display: "Quicksand", "Nunito", system-ui, sans-serif;
  --tienda-radius: 16px;
  --tienda-radius-sm: 12px;
  --tienda-panel-shadow: 0 4px 24px rgba(30, 74, 122, 0.06);
  --eshop-header-bg: var(--velvee-blue-light);
  --eshop-header-text: var(--velvee-navy);
  --eshop-footer-bg: var(--velvee-cream-footer);
  --eshop-footer-text: var(--velvee-navy-deep);
  --eshop-btn-add-bg: var(--velvee-navy);
  --eshop-btn-add-text: #fff;
  --eshop-btn-page-bg: var(--velvee-navy);
  --eshop-btn-page-text: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.tienda-body {
  margin: 0;
  font-family: var(--tienda-font);
  background: #fff;
  color: var(--tienda-black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.tienda-body--no-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.tienda-no-pin {
  max-width: 480px;
  text-align: center;
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  padding: 2rem;
  box-shadow: var(--tienda-panel-shadow);
}

.tienda-no-pin h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.tienda-no-pin__ej code {
  background: #f5f5f5;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.tienda-root {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

.tienda-page-body {
  flex: 1;
  padding: 0 1.25rem 2rem;
}

/* Site top: topbar + header — ancho completo como el footer */
.tienda-site-top {
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  box-shadow: 0 4px 24px rgba(30, 74, 122, 0.08);
  margin-bottom: 0;
}

/* Top promo bar */
.tienda-topbar {
  background: var(--velvee-green-bar);
  color: #fff;
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
}

/* Header */
.tienda-header {
  position: relative;
  top: auto;
  z-index: auto;
  display: block;
  padding: 0;
  flex-wrap: nowrap;
  background: transparent;
  color: var(--eshop-header-text);
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.tienda-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .tienda-header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    grid-template-areas:
      "logo icon1 icon2 icon3"
      "nav nav nav nav";
    gap: 0.55rem 0.4rem;
    align-items: center;
    padding: 0.65rem 1rem 0.75rem;
  }

  .tienda-logo {
    grid-area: logo;
    width: auto;
    justify-content: flex-start;
    justify-self: start;
  }

  .tienda-logo-img {
    height: 44px;
    max-width: 150px;
  }

  .tienda-nav {
    grid-area: nav;
    width: 100%;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.1rem;
  }

  .tienda-nav::-webkit-scrollbar {
    display: none;
  }

  .tienda-nav a,
  .tienda-nav-route {
    padding: 0.38rem 0.8rem;
    font-size: 0.82rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .tienda-header-actions {
    display: contents;
  }

  .tienda-header .tienda-search-wrap {
    display: none;
  }

  .tienda-header-actions > .tienda-icon-btn:first-of-type {
    grid-area: icon1;
    justify-self: end;
  }

  .tienda-header-actions > .tienda-icon-btn:nth-of-type(2) {
    grid-area: icon2;
  }

  .tienda-header-actions > .tienda-user-menu {
    grid-area: icon3;
  }

  .tienda-header .tienda-icon-btn {
    width: 38px;
    height: 38px;
  }

  .tienda-header .tienda-icon-btn .tienda-svg-icon {
    width: 18px;
    height: 18px;
  }

  .tienda-topbar {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
    line-height: 1.35;
  }
}

.tienda-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--tienda-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.tienda-logo-img {
  width: auto;
  height: 62px;
  max-width: 230px;
  object-fit: contain;
}

.tienda-logo-tagline {
  display: none;
}

.tienda-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
  background: none;
  padding: 0;
  border-radius: 0;
}

.tienda-nav a,
.tienda-nav-route {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--velvee-navy);
  font-weight: 700;
}

.tienda-nav a:hover,
.tienda-nav-route:hover:not(.is-active) {
  background: transparent;
  color: var(--velvee-navy-soft);
}

.tienda-nav-route.is-active,
.tienda-nav a.is-active {
  font-weight: 800;
  color: #fff;
  background: var(--velvee-navy);
  border-bottom: none;
  box-shadow: 0 2px 8px rgba(30, 74, 122, 0.35);
}

.tienda-nav a {
  color: var(--velvee-navy);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.tienda-nav-route {
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--velvee-navy);
  text-decoration: none;
}

.tienda-foot-link {
  border: 0;
  background: none;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.tienda-foot-link:hover {
  color: var(--eshop-btn-page-bg);
}

.tienda-main--contact {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.tienda-contact-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-family: var(--tienda-font-display);
  color: var(--velvee-navy);
}

.tienda-contact-lead {
  margin: 0 0 1rem;
  color: var(--tienda-muted);
  line-height: 1.5;
}

.tienda-contact-panel {
  position: relative;
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  background: var(--tienda-bg);
  padding: 1rem 1.1rem;
  overflow: visible;
}

.tienda-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tienda-contact-form .tienda-field textarea {
  width: 100%;
  min-height: 8rem;
  resize: vertical;
}

.tienda-optional {
  font-weight: 400;
  color: var(--tienda-muted);
  font-size: 0.85em;
}

.tienda-hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tienda-contact-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.tienda-contact-feedback--ok {
  color: #15803d;
}

.tienda-contact-feedback--err {
  color: #b91c1c;
}

.tienda-contact-mapwrap {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tienda-border);
}

.tienda-contact-map-title {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.tienda-contact-map {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--tienda-radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.tienda-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tienda-user-menu {
  position: relative;
}

.tienda-user-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.4rem);
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--tienda-border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  padding: 0.35rem;
  z-index: 900;
}

.tienda-user-menu-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.tienda-user-menu-item:hover {
  background: #f4f4f4;
}

.tienda-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: #eef1f4;
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1.1rem;
  min-width: 260px;
  flex: 1;
  max-width: 420px;
  box-shadow: inset 0 1px 3px rgba(30, 74, 122, 0.06);
  transition: box-shadow 0.2s ease;
}

.tienda-search-wrap:focus-within {
  box-shadow: inset 0 1px 3px rgba(30, 74, 122, 0.08), 0 0 0 2px rgba(168, 216, 234, 0.55);
}

.tienda-search-wrap input {
  border: 0;
  outline: 0;
  flex: 1;
  font: inherit;
  font-size: 1rem;
  color: #222;
  min-width: 0;
  background: transparent;
}

.tienda-search-wrap input::placeholder {
  color: #8a8a8a;
}

.tienda-search-wrap button {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--velvee-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
  box-shadow: none;
}

.tienda-search-wrap button:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.tienda-search-wrap button .tienda-svg-icon {
  stroke: var(--velvee-navy);
}

.tienda-icon-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: linear-gradient(145deg, #3d6f9e 0%, var(--velvee-navy) 100%);
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  color: #fff;
  box-shadow: 0 3px 12px rgba(30, 74, 122, 0.28);
}

.tienda-icon-btn:hover {
  filter: brightness(1.08);
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 5px 16px rgba(30, 74, 122, 0.38);
}

.tienda-svg-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tienda-svg-icon--fill {
  fill: currentColor;
  stroke: none;
}

.tienda-svg-icon--cute {
  width: 21px;
  height: 21px;
  stroke-width: 2.2;
}

/* Iconos del header — fondo azul, glifo blanco */
.tienda-header .tienda-icon-btn {
  color: #fff;
}

.tienda-header .tienda-icon-btn .tienda-svg-icon {
  stroke: #fff;
  color: #fff;
}

.tienda-header .tienda-icon-btn .tienda-svg-icon--fill {
  fill: #fff;
  stroke: none;
}

.tienda-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  background: var(--velvee-navy);
  color: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Advanced search panel */
.tienda-adv {
  margin-top: 1rem;
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  overflow: visible;
  background: var(--tienda-bg);
}

.tienda-adv summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 1rem;
  font-weight: 600;
  background: var(--tienda-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tienda-adv summary::-webkit-details-marker {
  display: none;
}

.tienda-adv[open] summary {
  border-bottom: 1px solid var(--tienda-border);
}

.tienda-adv-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--tienda-bg);
  overflow: visible;
}

.tienda-adv-filters-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.35fr);
  gap: 1rem;
  align-items: start;
}

@media (max-width: 960px) {
  .tienda-adv-filters-top {
    grid-template-columns: 1fr;
  }
}

.tienda-field label {
  display: block;
  font-size: 0.8rem;
  color: var(--tienda-muted);
  margin-bottom: 0.35rem;
}

.tienda-field input,
.tienda-field select,
.tienda-field textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--tienda-border);
  border-radius: 4px;
  font: inherit;
  background: var(--tienda-bg);
}

.tienda-field--price-range {
  align-self: start;
  min-width: 0;
}

.tienda-price-range {
  margin-top: 0;
}

.tienda-price-range-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.tienda-price-range-slider-col {
  position: relative;
  flex: 1;
  min-width: min(100%, 12rem);
}

/* Fuera del flujo: no empuja los inputs min/max hacia abajo respecto a Nombre/Código. */
.tienda-price-range-tooltips {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 4px);
  height: 1.75rem;
  overflow: visible;
  pointer-events: none;
}

.tienda-price-range-tip {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  background: #374151;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
}

.tienda-price-range-tip::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #374151;
}

.tienda-price-range-tip--flush-start::after {
  left: 12px;
  margin-left: 0;
}

.tienda-price-range-tip--flush-end::after {
  left: auto;
  right: 12px;
  margin-left: 0;
}

.tienda-price-range-wrap {
  position: relative;
  height: 36px;
  margin: 0 0 0.15rem;
  overflow: visible;
}

/* Por encima de .tienda-price-range-in:focus / --drag (z-index 8), si no quedan tapadas al interactuar. */
.tienda-price-range-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 11;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--eshop-btn-add-bg);
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.tienda-price-range-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 6px;
  margin-top: -3px;
  border-radius: 3px;
  background: #e5e7eb;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.tienda-price-range-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background: var(--eshop-btn-add-bg);
  opacity: 0.85;
  pointer-events: none;
}

.tienda-price-range-in {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  z-index: 5;
}

.tienda-price-range-in--min {
  z-index: 5;
}

.tienda-price-range-in--max {
  z-index: 6;
}

.tienda-price-range-in:focus,
.tienda-price-range-in--drag {
  z-index: 8;
}

.tienda-price-range-in:focus:not(:focus-visible) {
  outline: none;
}

.tienda-price-range-in:focus-visible {
  outline: 2px solid var(--eshop-btn-add-bg);
  outline-offset: 2px;
}

.tienda-price-range-in::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  cursor: grab;
}

.tienda-price-range-in::-webkit-slider-thumb:active {
  cursor: grabbing;
}

.tienda-price-range-in::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0;
  cursor: grab;
  pointer-events: auto;
}

.tienda-price-range-in::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.tienda-price-range-in::-moz-range-track {
  height: 6px;
  background: transparent;
}

.tienda-price-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 11.5rem;
  max-width: 100%;
  flex-shrink: 0;
  margin-bottom: 0;
}

.tienda-price-range-inputs input {
  flex: 1;
  min-width: 0;
}

.tienda-price-range-dash {
  color: var(--tienda-muted);
  font-weight: 600;
  flex-shrink: 0;
}

.tienda-adv-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Hero row: sidebar + banner */
.tienda-hero-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 960px) {
  .tienda-hero-row {
    grid-template-columns: 1fr;
  }
}

.tienda-sidebar {
  padding: 1rem 1rem 1.1rem;
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  align-self: start;
}

@media (max-width: 960px) {
  .tienda-sidebar {
    width: 100%;
  }
}

.tienda-sidebar h2 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--tienda-border-soft);
}

.tienda-cat {
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 320px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.tienda-cat li {
  margin: 0;
}

.tienda-cat::-webkit-scrollbar {
  width: 9px;
}

.tienda-cat::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 6px;
}

.tienda-cat::-webkit-scrollbar-track {
  background: #f4f4f5;
  border-radius: 6px;
}

.tienda-cat button {
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.25rem;
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
}

.tienda-cat button:hover {
  color: var(--eshop-btn-page-bg);
  background: var(--tienda-page-bg);
}

.tienda-cat button.is-active {
  color: var(--eshop-btn-page-bg);
  background: var(--tienda-page-bg);
}

/* Banner dentro del contenedor */
.tienda-banner-wrap {
  width: 100%;
  margin: 1.25rem 0 2rem;
  position: relative;
  isolation: isolate;
}

.tienda-banner-wrap::before {
  content: "";
  position: absolute;
  inset: 4px 0 8px;
  border-radius: calc(var(--tienda-radius) + 8px);
  background: linear-gradient(
    180deg,
    rgba(168, 216, 234, 0.5) 0%,
    rgba(255, 236, 220, 0.4) 55%,
    rgba(253, 249, 240, 0.55) 100%
  );
  filter: blur(16px);
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
}

.tienda-banner {
  position: relative;
  z-index: 1;
  border-radius: var(--tienda-radius);
  overflow: hidden;
  border: 1px solid var(--tienda-border);
  box-shadow:
    var(--tienda-panel-shadow),
    0 0 28px rgba(168, 216, 234, 0.22);
  background: linear-gradient(180deg, #e8f4fa 0%, #fdfbf7 100%);
  margin-bottom: 0;
}

.tienda-banner-media {
  width: 100%;
  line-height: 0;
  background: linear-gradient(180deg, #dceaf2 0%, #eef6fa 100%);
  overflow: hidden;
  position: relative;
}

.tienda-banner-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(15, 35, 64, 0.22) 0%,
    rgba(15, 35, 64, 0.1) 38%,
    rgba(15, 35, 64, 0.03) 55%,
    transparent 72%
  );
}

.tienda-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 0 36px rgba(255, 255, 255, 0.2),
    inset 0 0 64px rgba(253, 249, 240, 0.35);
  z-index: 2;
}

.tienda-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  position: relative;
  z-index: 0;
}

.tienda-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
  pointer-events: none;
  z-index: 2;
}

.tienda-banner-content-inner {
  pointer-events: auto;
  max-width: min(620px, 68%);
  padding: 0.5rem 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  backdrop-filter: none;
}

.tienda-banner-cloud {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.tienda-banner-title {
  margin: 0 0 clamp(0.5rem, 1.2vw, 0.85rem);
  font-family: var(--tienda-font-display);
  font-size: clamp(1.75rem, 2.8vw + 1rem, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f2340;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 1),
    0 0 6px rgba(255, 252, 248, 0.98),
    0 0 14px rgba(255, 248, 240, 0.92),
    0 0 22px rgba(255, 243, 232, 0.78),
    0 0 32px rgba(255, 238, 225, 0.55),
    0 1px 1px rgba(255, 255, 255, 0.9);
}

.tienda-banner-text {
  margin: 0 0 clamp(0.85rem, 2vw, 1.35rem);
  font-size: clamp(1.08rem, 0.65vw + 1rem, 1.32rem);
  line-height: 1.55;
  font-weight: 500;
  color: #0f2340;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 1),
    0 0 5px rgba(255, 252, 248, 0.96),
    0 0 10px rgba(255, 248, 240, 0.88),
    0 0 18px rgba(255, 243, 232, 0.72),
    0 0 26px rgba(255, 238, 225, 0.5),
    0 1px 1px rgba(255, 255, 255, 0.85);
}

.tienda-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
}

.tienda-btn--banner-primary {
  background: linear-gradient(135deg, #3d6f9e 0%, var(--velvee-navy) 55%, #1a3d66 100%);
  color: #fff;
  padding: clamp(0.65rem, 1.2vw, 0.85rem) clamp(1.25rem, 2.5vw, 1.85rem);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--tienda-font-display);
  font-size: clamp(0.9rem, 0.45vw + 0.82rem, 1.05rem);
  border: none;
  box-shadow: 0 5px 18px rgba(30, 74, 122, 0.35);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.tienda-btn--banner-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 74, 122, 0.42);
  color: #fff;
}

.tienda-btn--banner-ghost {
  background: #fff;
  color: var(--velvee-navy);
  padding: clamp(0.6rem, 1.1vw, 0.78rem) clamp(1.1rem, 2.2vw, 1.55rem);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--tienda-font-display);
  font-size: clamp(0.88rem, 0.4vw + 0.8rem, 1rem);
  border: 1.5px solid rgba(30, 74, 122, 0.15);
  box-shadow: 0 4px 14px rgba(30, 74, 122, 0.12);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tienda-btn--banner-ghost:hover {
  background: #fff;
  transform: translateY(-1px);
  color: var(--velvee-navy-deep);
  border-color: rgba(30, 74, 122, 0.28);
  box-shadow: 0 6px 18px rgba(30, 74, 122, 0.18);
}

@media (max-width: 768px) {
  .tienda-banner-content {
    position: relative;
    inset: auto;
    padding: clamp(1rem, 4vw, 1.35rem) clamp(1rem, 4vw, 1.25rem);
    background: transparent;
  }

  .tienda-banner-content-inner {
    max-width: 100%;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0;
    background: transparent;
  }

  .tienda-banner-title {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
  }

  .tienda-banner-text {
    font-size: clamp(1.05rem, 3.8vw, 1.18rem);
  }

  .tienda-banner {
    display: flex;
    flex-direction: column;
  }
}

.tienda-banner-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}

.tienda-banner-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: background 0.2s ease, transform 0.15s ease;
}

.tienda-banner-dots span.is-on {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  transform: scale(1.2);
}

/* Features bar */
.tienda-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .tienda-features {
    grid-template-columns: 1fr;
  }
}

.tienda-features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1.1rem 1rem;
  background: #fff;
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  box-shadow: var(--tienda-panel-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tienda-features__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 74, 122, 0.1);
}

.tienda-features__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--velvee-pink-soft);
  color: var(--velvee-navy);
  margin-bottom: 0.25rem;
}

.tienda-features__icon svg {
  width: 24px;
  height: 24px;
}

.tienda-features__item strong {
  font-family: var(--tienda-font-display);
  font-size: 0.95rem;
  color: var(--velvee-navy);
}

.tienda-features__item span:last-child {
  font-size: 0.82rem;
  color: var(--tienda-muted);
  line-height: 1.35;
}

/* About section — panel muy claro, casi blanco */
.tienda-about {
  position: relative;
  margin-top: 2.75rem;
  padding: 2.5rem 2.75rem 2.85rem;
  background: #fafcfd;
  border: none;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 8px 32px rgba(30, 74, 122, 0.05);
  overflow: hidden;
}

.tienda-about__brand {
  text-align: center;
  padding-bottom: 1.35rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px dashed rgba(26, 43, 76, 0.2);
}

.tienda-about__logo {
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.tienda-about__slogan {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--velvee-navy-deep);
  opacity: 0.82;
}

.tienda-about__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 1.5rem 3rem;
  align-items: center;
}

.tienda-about__content {
  grid-column: auto;
}

.tienda-about__img {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tienda-about__img img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 14px 32px rgba(30, 74, 122, 0.14));
}

.tienda-about__feather {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.tienda-about__feather svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tienda-about__feather--1 {
  width: 42px;
  height: 84px;
  left: 2%;
  bottom: 8%;
  transform: rotate(-28deg);
}

.tienda-about__feather--2 {
  width: 36px;
  height: 72px;
  right: 34%;
  top: 18%;
  transform: rotate(18deg);
  opacity: 0.65;
}

.tienda-about__feather--3 {
  width: 32px;
  height: 64px;
  right: 8%;
  bottom: 22%;
  transform: rotate(-12deg);
  opacity: 0.55;
}

.tienda-about__feather--4 {
  width: 28px;
  height: 56px;
  right: 22%;
  top: 42%;
  transform: rotate(32deg);
  opacity: 0.5;
}

@media (max-width: 860px) {
  .tienda-about {
    padding: 2rem 1.35rem 2.25rem;
    border-radius: 32px;
  }

  .tienda-about__body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .tienda-about__feather--2,
  .tienda-about__feather--3,
  .tienda-about__feather--4 {
    display: none;
  }
}

.tienda-about__content h2 {
  font-family: var(--tienda-font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--velvee-navy-deep);
  margin: 0 0 1.1rem;
}

.tienda-about__content p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: var(--velvee-navy-deep);
  font-size: 0.94rem;
  opacity: 0.92;
}

.tienda-about__content p:last-of-type {
  margin-bottom: 0;
}

.tienda-about__highlight-box {
  margin-top: 1.25rem;
  padding: 1.15rem 1.35rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--velvee-navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.tienda-about__highlight-box strong {
  color: var(--velvee-navy-deep);
  display: inline;
  font-weight: 800;
}

.tienda-guia-section {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem 2.35rem;
  background: #fafcfd;
  border-radius: 44px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 8px 32px rgba(30, 74, 122, 0.05);
}

@media (max-width: 860px) {
  .tienda-guia-section {
    padding: 1.75rem 1.35rem 2rem;
    border-radius: 32px;
  }
}

.tienda-about__guia {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.95fr);
  grid-template-areas:
    'title title title'
    'img benefits info';
  gap: 1.25rem 2rem;
  align-items: stretch;
}

.tienda-about__guia-title {
  grid-area: title;
  font-family: var(--tienda-font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--velvee-navy-deep);
  margin: 0 0 0.25rem;
  text-align: center;
}

.tienda-about__guia-img {
  grid-area: img;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tienda-about__guia-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 10px 24px rgba(30, 74, 122, 0.12));
}

.tienda-about__guia-col--benefits {
  grid-area: benefits;
  align-self: stretch;
}

.tienda-about__guia-col--info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  border: none;
}

.tienda-about__guia-col {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.95);
}

.tienda-about__guia-col p,
.tienda-about__guia-lead {
  margin: 0 0 0.75rem;
  line-height: 1.7;
  color: var(--velvee-navy-deep);
  font-size: 0.94rem;
  opacity: 0.92;
}

.tienda-about__guia-col p:last-child {
  margin-bottom: 0;
}

.tienda-about__guia-lead {
  margin-bottom: 0.65rem;
}

.tienda-about__guia-list,
.tienda-about__guia-ol {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.65;
  color: var(--velvee-navy-deep);
  font-size: 0.94rem;
  opacity: 0.92;
}

.tienda-about__guia-list {
  list-style: none;
  padding-left: 0;
}

.tienda-about__guia-list li {
  margin-bottom: 0.4rem;
}

.tienda-about__guia-card {
  flex: 1;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  border: 1px solid rgba(26, 43, 76, 0.06);
}

.tienda-about__guia-card p {
  margin: 0;
}

.tienda-about__guia-sizes {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.tienda-about__guia-card--cuentanos .tienda-about__guia-ol {
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .tienda-about__guia {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      'title title'
      'img img'
      'benefits info';
    gap: 1.15rem 1.25rem;
  }

  .tienda-about__guia-img img {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 640px) {
  .tienda-about__guia {
    grid-template-columns: 1fr;
    grid-template-areas:
      'title'
      'img'
      'benefits'
      'info';
    gap: 1rem;
  }

  .tienda-about__guia-title {
    text-align: left;
  }

  .tienda-about__guia-img img {
    max-width: 280px;
  }
}

/* Pestañas de ofertas vigentes (debajo del banner) */
.tienda-oferta-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0 0.15rem;
}

.tienda-oferta-tab {
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--tienda-border);
  background: var(--tienda-bg);
  color: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.tienda-oferta-tab:hover {
  border-color: var(--velvee-navy);
  color: var(--velvee-navy);
}

.tienda-oferta-tab.is-active {
  background: var(--velvee-navy);
  color: #fff;
  border-color: var(--velvee-navy);
}

.tienda-oferta-tab.is-active:hover {
  color: #fff;
}

.tienda-oferta-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.25rem 1rem;
  text-align: center;
  color: var(--tienda-muted);
  font-size: 0.95rem;
}

.tienda-card-price--offer {
  color: var(--eshop-btn-add-bg);
  font-weight: 700;
}

/* Section titles */
.tienda-products-wrap {
  margin-top: 2rem;
  padding: 0.5rem 0 1.75rem;
  background: transparent;
  border-radius: 0;
  border: none;
}

.tienda-products-wrap .tienda-section-head {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 1.25rem 0 0.75rem;
  margin: 0;
}

.tienda-products-wrap .tienda-grid {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.tienda-products-wrap .tienda-count-meta {
  padding: 0 0 0.25rem;
  color: #7a8fa3;
}

.tienda-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 0;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-bottom: none;
  border-radius: var(--tienda-radius) var(--tienda-radius) 0 0;
}

#explore {
  scroll-margin-top: clamp(5.5rem, 16vh, 7.5rem);
}

.tienda-section-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.tienda-section-title::before {
  content: "✦";
  width: auto;
  height: auto;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--velvee-navy);
  font-size: 1.1rem;
}

.tienda-section-title small {
  display: block;
  color: var(--velvee-navy-soft);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tienda-section-title h2 {
  margin: 0;
  font-family: var(--tienda-font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--velvee-navy);
}

.tienda-countdown {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.tienda-countdown span {
  background: var(--velvee-navy);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.tienda-countdown span em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.85;
}

.tienda-carousel-nav {
  display: flex;
  gap: 0.5rem;
}

.tienda-carousel-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--tienda-border);
  background: #fff;
  color: var(--velvee-navy);
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.15s ease;
}

.tienda-carousel-nav button:hover:not(:disabled) {
  background: var(--velvee-pink-soft);
  transform: scale(1.05);
}

/* Product grid */
.tienda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.35rem;
  padding: 1.25rem;
  margin: 0 0 1.5rem;
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
}

.tienda-section-head + .tienda-grid {
  margin-top: 0;
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-radius: 0 0 var(--tienda-radius) var(--tienda-radius);
}

.tienda-grid + .tienda-section-head {
  margin-top: 2.5rem;
  border-radius: var(--tienda-radius) var(--tienda-radius) 0 0;
}

.tienda-ad-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  background: var(--tienda-card-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tienda-ad-badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 3;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  pointer-events: none;
}

.tienda-ad-carousel-hit {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
}

.tienda-ad-carousel-nav {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.tienda-ad-carousel-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
}

.tienda-ad-carousel-dots {
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 2;
}

.tienda-ad-carousel-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.tienda-ad-carousel-dots span.is-on {
  background: var(--velvee-navy);
  border: 2px solid #fff;
}

.tienda-card {
  position: relative;
  background: #fff;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(30, 74, 122, 0.1);
}

.tienda-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(30, 74, 122, 0.14);
}

.tienda-card-imgwrap {
  background: #f5f7fa;
  border-radius: 0;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
}

.tienda-card-imgwrap img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.tienda-card-noimg {
  color: var(--tienda-muted);
  font-size: 0.9rem;
}

.tienda-card:hover .tienda-card-imgwrap img {
  transform: scale(1.03);
}

.tienda-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

.tienda-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.tienda-pill--sale {
  background: var(--velvee-navy);
  color: #fff;
  border-radius: 999px;
}

.tienda-pill--new {
  background: var(--velvee-mint);
  color: #fff;
  border-radius: 999px;
}

.tienda-card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}

.tienda-card-actions button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--tienda-border);
  background: #fff;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(30, 74, 122, 0.08);
  color: var(--velvee-navy);
  transition: background 0.2s ease, transform 0.15s ease;
}

.tienda-card-actions button:hover {
  background: var(--velvee-pink-soft);
  transform: scale(1.08);
}

.tienda-card-actions button.is-on {
  color: var(--velvee-navy);
  border-color: var(--velvee-navy);
  background: var(--velvee-blue-light);
}

.tienda-card-add {
  display: none;
}

.tienda-card-body {
  padding: 1rem 1.15rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: left;
}

.tienda-card-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--velvee-navy-soft);
  margin: 0 0 0.15rem;
}

.tienda-card-sku {
  display: none;
}

.tienda-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
  color: var(--velvee-navy-deep);
  font-family: var(--tienda-font-display);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.tienda-card-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #7a8799;
  flex: 1;
}

.tienda-card-price-wrap {
  margin: 0.5rem 0 0.75rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tienda-card-price {
  color: var(--velvee-navy-deep);
  font-weight: 800;
  font-size: 1.4rem;
  font-family: var(--tienda-font-display);
}

.tienda-card-price--offer {
  color: var(--velvee-navy);
}

.tienda-card-btn {
  width: 100%;
  margin-top: auto;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--velvee-sky);
  color: var(--velvee-navy-deep);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  font: inherit;
  font-family: var(--tienda-font-display);
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: none;
}

.tienda-card-btn:hover {
  background: #96cce4;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 74, 122, 0.12);
}

.tienda-card-price-old {
  color: var(--tienda-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}

/* Modals */
.tienda-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.tienda-modal {
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  padding: 1.25rem;
}

.tienda-modal--cart {
  max-width: 760px;
}

.tienda-cart-ship {
  margin: 1rem 0 0.85rem;
  padding: 1rem 1.05rem;
  background: #f8fafc;
  border: 1px solid var(--tienda-border-soft);
  border-radius: 12px;
}

.tienda-cart-ship__title {
  margin: 0 0 0.75rem;
  font-family: var(--tienda-font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--velvee-navy);
}

.tienda-cart-ship__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
}

.tienda-cart-ship__grid .tienda-field {
  margin: 0;
}

.tienda-cart-ship__grid .tienda-field--full {
  grid-column: 1 / -1;
}

.tienda-cart-ship__grid label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--velvee-navy-deep);
  margin-bottom: 0.35rem;
}

.tienda-cart-ship__grid input,
.tienda-cart-ship__grid textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--tienda-border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.88rem;
  background: #fff;
  color: var(--velvee-navy-deep);
}

.tienda-cart-ship__grid input:focus,
.tienda-cart-ship__grid textarea:focus {
  outline: none;
  border-color: var(--velvee-sky);
  box-shadow: 0 0 0 3px rgba(168, 216, 234, 0.35);
}

@media (max-width: 560px) {
  .tienda-cart-ship__grid {
    grid-template-columns: 1fr;
  }
}

.tienda-modal--tc {
  max-width: 760px;
}

.tienda-modal--noti {
  max-width: 900px;
}

.tienda-noti-content {
  max-height: 65vh;
  overflow: auto;
  border: 1px solid var(--tienda-border-soft);
  border-radius: 8px;
  padding: 0.85rem;
  background: #fff;
}

.tienda-noti-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tienda-noti-page {
  margin-inline: auto;
  font-weight: 600;
  color: var(--tienda-muted);
}

.tienda-modal h3 {
  margin: 0 0 1rem;
}

.tienda-tc-title {
  margin: 1rem 0 0.5rem;
  font-size: 1.05rem;
}

.tienda-tc-grid {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.tienda-tc-chip {
  min-width: 108px;
  border: 1px solid var(--tienda-border);
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font: inherit;
  transition: all 0.18s ease;
}

.tienda-tc-chip span {
  font-weight: 600;
}

.tienda-tc-chip small {
  color: var(--tienda-muted);
  font-size: 0.78rem;
}

.tienda-tc-chip:hover {
  border-color: #8dc4f7;
  transform: translateY(-1px);
}

.tienda-tc-chip.is-active {
  background: #1d9bf0;
  border-color: #1d9bf0;
  color: #fff;
}

.tienda-tc-chip.is-active small {
  color: rgba(255, 255, 255, 0.92);
}

.tienda-tc-chip.is-disabled,
.tienda-tc-chip:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.tienda-cart-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1rem;
}

.tienda-cart-detail {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tienda-cart-detail th,
.tienda-cart-detail td {
  border: 1px solid var(--tienda-border);
  padding: 0.5rem 0.6rem;
  text-align: left;
  vertical-align: middle;
}

.tienda-cart-detail th {
  background: var(--tienda-page-bg);
  font-weight: 600;
}

.tienda-cart-detail .tienda-cart-thumb {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--tienda-card-bg);
  display: block;
}

.tienda-cart-detail .tienda-cart-thumb-wrap {
  width: 52px;
  height: 52px;
  background: var(--tienda-card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--tienda-muted);
}

.tienda-cart-qty {
  width: 4.5rem;
  padding: 0.35rem;
  border: 1px solid var(--tienda-border);
  border-radius: 4px;
  font: inherit;
}

.tienda-cart-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tienda-border-soft);
}

.tienda-modal--pay {
  max-width: 28rem;
}

.tienda-pay-lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--tienda-muted);
  line-height: 1.45;
}

.tienda-pay-total {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.tienda-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.tienda-pay-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: var(--tienda-radius);
  border: 1.5px solid var(--tienda-border);
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
  cursor: pointer;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.tienda-pay-method:hover {
  border-color: rgba(30, 74, 122, 0.35);
  box-shadow: 0 6px 18px rgba(30, 74, 122, 0.12);
  transform: translateY(-1px);
}

.tienda-pay-method:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.tienda-pay-method__name {
  font-family: var(--tienda-font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--velvee-navy);
}

.tienda-pay-method__hint {
  font-size: 0.82rem;
  color: var(--tienda-muted);
}

.tienda-cart-meta {
  font-size: 0.85rem;
  color: var(--tienda-muted);
  margin: 0.5rem 0 0;
}

.tienda-modal .tienda-field {
  margin-bottom: 0.75rem;
}

.tienda-btn {
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--tienda-font-display);
  transition: filter 0.2s ease, transform 0.15s ease;
}

.tienda-btn:hover {
  transform: translateY(-1px);
}

.tienda-btn--primary {
  background: var(--eshop-btn-add-bg);
  color: var(--eshop-btn-add-text);
}

.tienda-btn--primary:hover {
  filter: brightness(0.92);
}

.tienda-btn--success {
  background: #15803d;
  color: #fff;
}

.tienda-btn--success:hover {
  background: #166534;
}

.tienda-btn--danger {
  background: #dc2626;
  color: #fff;
}

.tienda-btn--danger:hover {
  background: #b91c1c;
}

.tienda-btn--ghost {
  background: var(--tienda-bg);
  border: 2px solid var(--tienda-border);
  color: var(--velvee-navy);
}

/* Modales de autenticación Velvée */
.tienda-modal-backdrop--auth {
  z-index: 1010;
  background: rgba(29, 43, 77, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.25rem;
}

.tienda-modal--auth {
  position: relative;
  max-width: 440px;
  padding: 0;
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fdf9f0 100%);
  box-shadow:
    0 24px 64px rgba(30, 74, 122, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.85);
}

.tienda-modal--auth-wide {
  max-width: 520px;
}

.tienda-auth-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--velvee-navy-deep);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(30, 74, 122, 0.1);
  transition: background 0.2s ease, transform 0.15s ease;
}

.tienda-auth-close:hover {
  background: var(--velvee-sky-topbar);
  transform: scale(1.06);
}

.tienda-auth-header {
  text-align: center;
  padding: 1.75rem 1.5rem 1.1rem;
  background: linear-gradient(180deg, var(--velvee-sky-topbar) 0%, rgba(227, 242, 253, 0.35) 100%);
  border-bottom: 1px dashed rgba(30, 74, 122, 0.12);
}

.tienda-auth-logo {
  display: block;
  max-width: 130px;
  height: auto;
  margin: 0 auto 0.75rem;
}

.tienda-modal--auth h3 {
  margin: 0;
  font-family: var(--tienda-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--velvee-navy-deep);
}

.tienda-auth-lead {
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: #5a7088;
  line-height: 1.45;
}

.tienda-auth-note {
  margin: 0;
  padding: 0.65rem 1.25rem;
  background: rgba(232, 131, 106, 0.1);
  border-bottom: 1px solid rgba(232, 131, 106, 0.15);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--velvee-navy-deep);
  text-align: center;
}

.tienda-auth-switch {
  padding: 0.85rem 1.35rem 0;
  font-size: 0.88rem;
  color: #5a7088;
  text-align: center;
}

.tienda-auth-switch a {
  color: var(--velvee-navy);
  font-weight: 700;
  text-decoration: none;
}

.tienda-auth-switch a:hover {
  text-decoration: underline;
}

.tienda-auth-body {
  padding: 1.1rem 1.35rem 0.25rem;
  max-height: min(52vh, 420px);
  overflow-y: auto;
}

.tienda-auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.85rem;
}

@media (max-width: 520px) {
  .tienda-auth-grid {
    grid-template-columns: 1fr;
  }
}

.tienda-modal--auth .tienda-field {
  margin-bottom: 0.85rem;
}

.tienda-modal--auth .tienda-field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--velvee-navy-deep);
  opacity: 0.75;
}

.tienda-modal--auth .tienda-field input {
  padding: 0.68rem 0.85rem;
  border: 1.5px solid rgba(168, 216, 234, 0.65);
  border-radius: 12px;
  background: #fff;
  color: var(--velvee-navy-deep);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tienda-modal--auth .tienda-field input:focus {
  outline: none;
  border-color: var(--velvee-sky);
  box-shadow: 0 0 0 3px rgba(168, 216, 234, 0.35);
}

.tienda-auth-msg {
  margin: 0.75rem 1.35rem 0;
  border-radius: 12px;
}

.tienda-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: stretch;
  padding: 1.1rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, transparent 0%, rgba(253, 249, 240, 0.65) 100%);
  border-top: 1px solid rgba(30, 74, 122, 0.08);
}

.tienda-auth-actions .tienda-btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  justify-content: center;
}

.tienda-btn--auth-primary {
  background: linear-gradient(135deg, #3d6f9e 0%, var(--velvee-navy) 55%, #1a3d66 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 74, 122, 0.32);
}

.tienda-btn--auth-primary:hover {
  filter: brightness(1.06);
  box-shadow: 0 6px 20px rgba(30, 74, 122, 0.4);
}

.tienda-modal--auth .tienda-btn--ghost {
  background: #fff;
  border-color: rgba(168, 216, 234, 0.85);
  color: var(--velvee-navy-deep);
}

.tienda-modal--auth .tienda-btn--ghost:hover {
  background: var(--velvee-sky-topbar);
  border-color: var(--velvee-sky);
}

.tienda-modal--auth .tienda-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tienda-modal--auth .tienda-contact-form .tienda-field textarea {
  width: 100%;
  min-height: 6.5rem;
  resize: vertical;
  padding: 0.68rem 0.85rem;
  border: 1.5px solid rgba(168, 216, 234, 0.65);
  border-radius: 12px;
  background: #fff;
  color: var(--velvee-navy-deep);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tienda-modal--auth .tienda-contact-form .tienda-field textarea:focus {
  outline: none;
  border-color: var(--velvee-sky);
  box-shadow: 0 0 0 3px rgba(168, 216, 234, 0.35);
}

.tienda-modal--auth .tienda-auth-body .tienda-contact-mapwrap {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(30, 74, 122, 0.12);
}

.tienda-modal--auth .tienda-contact-mapwrap--modal .tienda-contact-map {
  min-height: 160px;
  border-radius: 12px;
}

.tienda-modal--auth .tienda-contact-map-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--velvee-navy-deep);
  opacity: 0.75;
  margin: 0 0 0.55rem;
}

.tienda-modal--auth .tienda-contact-feedback--ok {
  background: #e8fff0;
  color: #15803d;
}

.tienda-modal--auth .tienda-contact-feedback--err {
  background: #ffe8e8;
  color: #b91c1c;
}

.tienda-cart-lines {
  border-top: 1px solid var(--tienda-border-soft);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.tienda-cart-line {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.tienda-footer {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 0;
  padding: 2.5rem 0 1.75rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.tienda-footer--velvee {
  background: var(--velvee-green-bar);
  color: rgba(255, 255, 255, 0.92);
}

.tienda-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.tienda-footer-row {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.tienda-footer-row--top {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.tienda-footer-row--mid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
  padding: 2rem 0;
}

.tienda-footer-row--bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding: 1.25rem 0 0;
  font-size: 0.82rem;
}

.tienda-footer-row--bottom a {
  color: var(--velvee-navy-deep);
  text-decoration: none;
  opacity: 0.85;
}

.tienda-footer-row--bottom a:hover {
  text-decoration: underline;
  opacity: 1;
}

.tienda-footer-divider {
  height: 0;
  border: none;
  border-top: 1px dotted rgba(30, 74, 122, 0.22);
  margin: 0;
}

.tienda-footer-block--sep {
  border-left: 1px dotted rgba(30, 74, 122, 0.22);
  padding-left: 2rem;
}

.tienda-footer h4 {
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-family: var(--tienda-font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--velvee-navy-deep);
}

.tienda-footer-logo {
  max-width: 180px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.tienda-footer-tagline {
  margin: 0.65rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--velvee-navy-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.tienda-footer-copy-inline {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: #4a6278;
  line-height: 1.5;
}

.tienda-footer-made {
  margin: 0;
  font-size: 0.82rem;
  color: #4a6278;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tienda-footer-flag {
  font-size: 1rem;
  line-height: 1;
}

.tienda-footer-handle {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--velvee-navy-deep);
}

.tienda-footer-shipping {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--velvee-navy-deep);
}

.tienda-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tienda-footer-links li {
  margin-bottom: 0.55rem;
}

.tienda-footer-links a,
.tienda-footer--velvee .tienda-foot-link {
  color: var(--velvee-navy-deep);
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.88;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.tienda-footer-links a:hover,
.tienda-footer--velvee .tienda-foot-link:hover {
  text-decoration: underline;
  opacity: 1;
}

.tienda-footer-certs {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.tienda-footer-cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  max-width: 120px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--velvee-navy-deep);
}

.tienda-footer-cert-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2px solid rgba(168, 216, 234, 0.65);
  color: var(--velvee-navy);
}

.tienda-footer-cert-icon svg {
  width: 26px;
  height: 26px;
}

.tienda-footer-cert-icon--leaf {
  color: var(--velvee-mint-dark);
  border-color: rgba(109, 181, 160, 0.45);
}

.tienda-pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tienda-pay-badges--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  max-width: 220px;
}

.tienda-pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(30, 74, 122, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--velvee-navy-deep);
}

.tienda-pay-badge--visa {
  color: #1a1f71;
}

.tienda-pay-badge--mc {
  color: #eb001b;
}

.tienda-pay-badge--bank svg {
  width: 18px;
  height: 18px;
}

.tienda-pay-badge--bank span {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tienda-footer-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.15rem;
}

.tienda-footer--velvee .tienda-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  border: none;
  color: #fff;
}

.tienda-footer--velvee .tienda-footer-social a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.tienda-footer--velvee .tienda-footer-social a[aria-label="Facebook"] {
  background: #1877f2;
}

.tienda-footer--velvee .tienda-footer-social a[aria-label="TikTok"] {
  background: #111;
}

.tienda-footer--velvee .tienda-footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 74, 122, 0.18);
}

.tienda-footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer verde — textos y separadores claros */
.tienda-footer--velvee h4,
.tienda-footer--velvee .tienda-footer-tagline,
.tienda-footer--velvee .tienda-footer-handle,
.tienda-footer--velvee .tienda-footer-shipping,
.tienda-footer--velvee .tienda-footer-cert {
  color: #fff;
}

.tienda-footer--velvee .tienda-footer-copy-inline,
.tienda-footer--velvee .tienda-footer-made {
  color: rgba(255, 255, 255, 0.88);
}

.tienda-footer--velvee .tienda-footer-links a,
.tienda-footer--velvee .tienda-foot-link {
  color: rgba(255, 255, 255, 0.92);
}

.tienda-footer--velvee .tienda-footer-links a:hover,
.tienda-footer--velvee .tienda-foot-link:hover {
  color: #fff;
}

.tienda-footer--velvee .tienda-footer-row--bottom a {
  color: rgba(255, 255, 255, 0.88);
}

.tienda-footer--velvee .tienda-footer-row--bottom a:hover {
  color: #fff;
}

.tienda-footer--velvee .tienda-footer-divider {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.tienda-footer--velvee .tienda-footer-block--sep {
  border-left-color: rgba(255, 255, 255, 0.28);
}

@media (max-width: 1024px) {
  .tienda-footer-row--top,
  .tienda-footer-row--mid {
    grid-template-columns: 1fr 1fr;
  }

  .tienda-footer-block--sep:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .tienda-footer-row--top,
  .tienda-footer-row--mid {
    grid-template-columns: 1fr;
  }

  .tienda-footer-block--sep {
    border-left: none;
    padding-left: 0;
    border-top: 1px dotted rgba(30, 74, 122, 0.22);
    padding-top: 1.5rem;
  }

  .tienda-footer-block:first-child {
    border-top: none;
    padding-top: 0;
  }
}

.tienda-msg {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.tienda-msg--err {
  background: #ffe8e8;
  color: #a00;
}

.tienda-msg--ok {
  background: #e8fff0;
  color: #060;
}

.tienda-loading {
  text-align: center;
  padding: 2rem;
  color: var(--tienda-muted);
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
}

.tienda-grid--explore {
  position: relative;
  min-height: 220px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: transparent;
  border: none;
  padding: 0.5rem 0 0;
  gap: 1.25rem;
}

@media (max-width: 1280px) {
  .tienda-grid--explore {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

@media (max-width: 480px) {
  .tienda-grid--explore {
    grid-template-columns: 1fr;
  }
}

.tienda-grid--explore .tienda-card-name {
  font-size: 0.82rem;
}

.tienda-grid--explore .tienda-card-desc {
  font-size: 0.76rem;
}

.tienda-grid--explore .tienda-card-price {
  font-size: 1.15rem;
}

.tienda-grid--explore .tienda-card-btn {
  font-size: 0.82rem;
  padding: 0.62rem 0.75rem;
}

.tienda-catalog-loading-status {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  padding: 0.35rem 1rem 1.1rem;
}

.tienda-catalog-loading__orbit {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 3px solid rgba(45, 106, 79, 0.2);
  border-top-color: #2d6a4f;
  border-right-color: #a8d8ea;
  animation: tienda-catalog-spin 0.85s linear infinite;
  flex-shrink: 0;
}

.tienda-catalog-loading__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--velvee-navy-deep, #1a3d2e);
  letter-spacing: 0.02em;
}

.tienda-catalog-loading__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tienda-catalog-loading__dots span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2d6a4f;
  animation: tienda-catalog-dot 1.1s ease-in-out infinite;
}

.tienda-catalog-loading__dots span:nth-child(2) {
  animation-delay: 0.15s;
  background: #a8d8ea;
}

.tienda-catalog-loading__dots span:nth-child(3) {
  animation-delay: 0.3s;
  background: #e8a87c;
}

.tienda-card--skeleton {
  pointer-events: none;
  cursor: default;
  box-shadow: 0 4px 18px rgba(30, 74, 122, 0.06);
}

.tienda-card--skeleton:hover {
  transform: none;
  box-shadow: 0 4px 18px rgba(30, 74, 122, 0.06);
}

.tienda-card-skeleton__img {
  aspect-ratio: 1;
  background: linear-gradient(
    110deg,
    #f0f4f8 0%,
    #f8fafc 40%,
    #e8eef5 55%,
    #f8fafc 70%,
    #f0f4f8 100%
  );
  background-size: 220% 100%;
  animation: tienda-catalog-shimmer 1.35s ease-in-out infinite;
}

.tienda-card-skeleton__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 1rem 1.1rem;
}

.tienda-card-skeleton__line,
.tienda-card-skeleton__btn {
  display: block;
  height: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(
    110deg,
    #eef2f6 0%,
    #f8fafc 45%,
    #e2e8f0 55%,
    #f8fafc 70%,
    #eef2f6 100%
  );
  background-size: 220% 100%;
  animation: tienda-catalog-shimmer 1.35s ease-in-out infinite;
}

.tienda-card-skeleton__line--xs {
  width: 38%;
  height: 0.5rem;
}

.tienda-card-skeleton__line--sm {
  width: 72%;
}

.tienda-card-skeleton__line--price {
  width: 42%;
  height: 0.85rem;
  margin-top: 0.15rem;
  animation-delay: 0.12s;
}

.tienda-card-skeleton__btn {
  width: 100%;
  height: 2.15rem;
  border-radius: 12px;
  margin-top: 0.35rem;
  animation-delay: 0.2s;
}

.tienda-card--skeleton-1 .tienda-card-skeleton__img,
.tienda-card--skeleton-1 .tienda-card-skeleton__line,
.tienda-card--skeleton-1 .tienda-card-skeleton__btn {
  animation-delay: 0.08s;
}

.tienda-card--skeleton-2 .tienda-card-skeleton__img,
.tienda-card--skeleton-2 .tienda-card-skeleton__line,
.tienda-card--skeleton-2 .tienda-card-skeleton__btn {
  animation-delay: 0.16s;
}

.tienda-card--skeleton-3 .tienda-card-skeleton__img,
.tienda-card--skeleton-3 .tienda-card-skeleton__line,
.tienda-card--skeleton-3 .tienda-card-skeleton__btn {
  animation-delay: 0.24s;
}

.tienda-card--skeleton-4 .tienda-card-skeleton__img,
.tienda-card--skeleton-4 .tienda-card-skeleton__line,
.tienda-card--skeleton-4 .tienda-card-skeleton__btn {
  animation-delay: 0.32s;
}

@keyframes tienda-catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tienda-catalog-shimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

@keyframes tienda-catalog-dot {
  0%,
  80%,
  100% {
    transform: scale(0.65);
    opacity: 0.45;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.tienda-carousel-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.tienda-count-meta {
  color: var(--tienda-muted);
  font-size: 0.9rem;
  background: var(--tienda-bg);
  border: 1px solid var(--tienda-border);
  border-radius: var(--tienda-radius);
  padding: 0.75rem 1rem;
  margin: 0 0 1.5rem;
}

/* Botón flotante WhatsApp (telefono_movil válido) */
.tienda-contact-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2400;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  animation: tienda-wa-pulse 2.5s ease-in-out infinite;
}

@keyframes tienda-wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65); }
}

.tienda-contact-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.tienda-contact-fab svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

/* Toast (añadir al carrito, etc.) */
.tienda-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 2500;
  max-width: min(90vw, 380px);
  padding: 0.75rem 1.35rem;
  background: var(--velvee-mint-dark);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  border: none;
  box-shadow: 0 6px 24px rgba(90, 154, 138, 0.35);
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  pointer-events: none;
}

.tienda-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.tienda-success-card {
  width: min(92vw, 340px);
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(22, 101, 52, 0.2);
  padding: 1.1rem 1rem 1rem;
  text-align: center;
}

.tienda-success-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  border: 2px solid #86efac;
}

.tienda-success-card h3 {
  margin: 0;
  color: #166534;
}

.tienda-success-card p {
  margin: 0.55rem 0 1rem;
  color: #166534;
  font-size: 0.94rem;
}

/* Horario en pie de página */
.tienda-footer-horario {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.tienda-footer-horario li {
  margin: 0.15rem 0;
}

.tienda-horario-dia {
  font-weight: 700;
}

.tienda-footer-block--horario h4 {
  margin-bottom: 0.5rem;
}

/* Badge transferencia clickeable */
button.tienda-pay-badge {
  font: inherit;
  cursor: pointer;
  border: none;
}

button.tienda-pay-badge--bank:hover {
  filter: brightness(1.05);
  box-shadow: 0 4px 12px rgba(30, 74, 122, 0.15);
}

/* Tarjeta transferencia bancaria */
.tienda-transfer-card {
  background: #fdf9f0;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: #1a3d2e;
  text-align: left;
}

.tienda-transfer-card__head,
.tienda-transfer-card__account {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.tienda-transfer-card__account {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border: 2px dashed rgba(26, 61, 46, 0.35);
  border-radius: 12px;
}

.tienda-transfer-card__account + .tienda-transfer-card__account {
  margin-top: 0.65rem;
}

.tienda-transfer-card__account .tienda-transfer-card__bank {
  margin: 0 0 0.35rem;
}

.tienda-transfer-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tienda-transfer-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.tienda-transfer-card__icon--bank {
  background: #2d6a4f;
  color: #fff;
}

.tienda-transfer-card__icon--piggy {
  background: #1e4a7a;
  color: #fff;
}

.tienda-transfer-card__title {
  margin: 0;
  font-family: var(--tienda-font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #1b5e3b;
}

.tienda-transfer-card__sub {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
}

.tienda-transfer-card__bank {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.tienda-transfer-card__acct-label {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
}

.tienda-transfer-card__acct-num {
  margin: 0.15rem 0;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tienda-transfer-card__acct-holder {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.tienda-transfer-card__note {
  margin-top: 1rem;
}

.tienda-transfer-card__note-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #1b5e3b;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 8px 8px 8px 4px;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.tienda-transfer-card__note-bar svg {
  width: 1rem;
  height: 1rem;
}

.tienda-transfer-card__note ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Modales informativos */
.tienda-modal--info {
  max-width: 32rem;
  max-height: min(88vh, 720px);
  overflow-y: auto;
  position: relative;
  text-align: left;
}

.tienda-modal--info-wide {
  max-width: 40rem;
}

.tienda-modal--guia-tallas {
  max-width: min(52rem, 96vw);
}

.tienda-guia-modal {
  display: grid;
  grid-template-columns: minmax(140px, 36%) minmax(0, 1fr);
  gap: 1.15rem 1.5rem;
  align-items: start;
}

.tienda-guia-modal__img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 6px 16px rgba(30, 74, 122, 0.1));
}

.tienda-guia-modal__text {
  min-width: 0;
}

@media (max-width: 520px) {
  .tienda-guia-modal {
    grid-template-columns: 1fr;
  }

  .tienda-guia-modal__img {
    max-width: 220px;
    margin: 0 auto;
  }
}

.tienda-info-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--tienda-muted);
}

.tienda-info-modal__body {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--tienda-text);
}

.tienda-info-modal__body--pre p {
  margin: 0.65rem 0;
}

.tienda-info-list,
.tienda-info-ol {
  margin: 0.35rem 0 0.65rem;
  padding-left: 1.25rem;
}

.tienda-info-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--tienda-border-soft);
}

.tienda-modal--pay-wide {
  max-width: 34rem;
}

.tienda-pay-transfer-preview {
  margin-top: 0.75rem;
}

.tienda-pay-transfer-preview[hidden] {
  display: none !important;
}
