/**
 * Home tienda editorial — ViniGalicia (clases mr-* con tokens VG)
 */

.vg-mej-badge,
.mr-mej-badge {
  position: sticky;
  top: 0;
  z-index: 9500;
  font-family: var(--vg-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0.3rem 1rem;
  background: var(--vg-brand);
  color: #fff;
  letter-spacing: 0.03em;
}

/* Promo: estilos finales en vg-layout-overrides + vg-shop-overrides (evitar duplicar color de enlaces) */

.mr-editorial-opener {
  background: var(--vg-surface-editorial-opener);
  padding: 3.5rem 1rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--vg-border-subtle);
}

.mr-editorial-opener__tagline {
  font-family: var(--vg-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vg-brand);
  margin-bottom: 0.75rem;
}

.mr-editorial-opener__title {
  font-family: var(--vg-font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--vg-text);
  max-width: 42rem;
  margin: 0 auto 1rem;
  line-height: 1.25;
}

.mr-editorial-opener__sub {
  font-family: var(--vg-font-ui);
  font-size: 1rem;
  color: var(--vg-muted);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
}

.mr-cat-visual-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.mr-cat-visual {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  color: var(--vg-text-body);
}

.mr-cat-visual__img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vg-border-subtle);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mr-cat-visual:hover .mr-cat-visual__img {
  border-color: var(--vg-brand);
  transform: scale(1.03);
}

.mr-cat-visual__label {
  font-family: var(--vg-font-ui);
  font-size: 0.78rem;
  margin-top: 0.4rem;
  font-weight: 500;
}

.mr-product-grid {
  display: grid;
  gap: 1.25rem;
}

.mr-product-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
  .mr-product-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .mr-product-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mr-wine-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--vg-border-subtle);
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mr-wine-card:hover {
  box-shadow: 0 12px 36px rgba(22, 13, 125, 0.08);
  transform: translateY(-4px);
}

.mr-wine-card__img-wrap {
  background: var(--vg-surface-card-muted);
  overflow: hidden;
}

.mr-wine-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.mr-wine-card__body {
  padding: 0.9rem 1rem 1rem;
}

.mr-wine-card__do {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vg-muted);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mr-wine-card__name {
  font-family: var(--vg-font-display);
  font-size: 1rem;
  margin: 0.25rem 0 0.4rem;
}

.mr-wine-card__price {
  font-weight: 600;
}

.mr-editorial-block {
  background: var(--vg-surface-editorial-block);
  padding: 2.5rem 0;
}

/* btn_fb por defecto es blanco (hero/footer); en bloque claro usar marca VG */
body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb {
  color: var(--vg-brand) !important;
  border-bottom-color: var(--vg-brand);
  background: transparent !important;
}

body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb:hover {
  color: var(--vg-brand-bright) !important;
  border-bottom-color: var(--vg-brand-bright);
  background: transparent !important;
}

body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb:active,
body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb:focus,
body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb:focus-visible,
body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb:hover:active {
  color: var(--vg-brand) !important;
  background-color: transparent !important;
  border-color: transparent !important;
  border-bottom-color: var(--vg-brand-bright) !important;
  box-shadow: none;
}

body.mr-shop-body .mr-editorial-block:not(.mr-editorial-block--brand):not(.mr-editorial-block--dark):not(.mr-editorial-block--gift) .btn_fb:focus-visible {
  outline: 2px solid var(--vg-brand);
  outline-offset: 3px;
}

.mr-editorial-block--brand {
  background: var(--vg-brand);
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.mr-editorial-block--brand .mr-editorial-block__title {
  color: #fff;
  font-family: var(--vg-font-display);
}

.mr-usp-strip {
  font-family: var(--vg-font-ui);
  background: #faf9fc;
  border-top: 1px solid var(--vg-border-subtle);
  border-bottom: 1px solid var(--vg-border-subtle);
}

.mr-usp-item i {
  color: var(--vg-brand);
}

.mr-search-inline .form-control {
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Líquido azul VG (bloque regalo con .mr-wine-liquid-content) */
body.mr-shop-body .mr-editorial-block--gift[data-mr-liquid-palette="vg-blue"] {
  background: var(--vg-brand);
  color: #fff;
  border: none;
}

body.mr-shop-body .mr-editorial-block--gift.mr-wine-liquid-root[data-mr-liquid-palette="vg-blue"] {
  background: transparent;
}

body.mr-shop-body .mr-wine-liquid-root[data-mr-liquid-palette="vg-blue"] > .mr-shop-header-wine-backdrop {
  background: linear-gradient(165deg, #2219a8 0%, #160d7d 48%, #0a0640 100%);
}

body.mr-shop-body .mr-editorial-block--gift[data-mr-liquid-palette="vg-blue"] .mr-editorial-block__title {
  color: #fff;
}

body.mr-shop-body .mr-editorial-block--gift[data-mr-liquid-palette="vg-blue"] .mr-editorial-block__text {
  color: rgba(255, 255, 255, 0.78);
}

body.mr-shop-body .mr-editorial-block--gift[data-mr-liquid-palette="vg-blue"] .mr-editorial-block__icon-gift {
  color: rgba(255, 255, 255, 0.9);
}

body.mr-shop-body .mr-wine-liquid-root[data-mr-liquid-palette="vg-blue"] .mr-wine-liquid-content {
  position: relative;
  z-index: 2;
}

/* Showcase productos destacados: vg-slider-vinos-showcase.css (pasador mirror VG4) */
