/* =============================================
  RESET & BASE
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #3c3b39;
  background: #F4F1E8;
  overflow-x: hidden;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1510px;
  }
}

img {
  display: block;
  max-width: 100%;
}

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

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* =============================================
  CSS VARIABLES
============================================= */
:root {
  --red: #d03f36;
  --darkred: #ae1a31;
  --navy: #2e3873;
  --dark: #3c3b39;
  --beige: #E9E2CF;
  --white: #ffffff;
  --sticky-height: 70px;
  --pinyon: 'Pinyon Script', cursive;
}

.pinyon {
  font-size: 3.2rem;
  font-family: var(--pinyon);
  color: var(--red);
}

/* =============================================
  X-GRAPHIC ICON (reusable via class)
============================================= */
.x-graphic {
  display: inline-block;
  width: 60px;
  height: 61px;
  flex-shrink: 0;
}

.x-graphic svg {
  width: 100%;
  height: 100%;
}

/* White version */
.x-graphic--white svg path {
  fill: white;
}

/* =============================================
  PRE-HEADER (top bar – beige)
============================================= */
#pre-header {
  background: var(--beige);
  height: 42px;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 200;
}

.pre-header__left {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 15px;
  margin-right: auto;
}

.pre-header__left a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.99px;
  text-transform: uppercase;
}

.pre-header__locator-icon {
  width: 13px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.pre-header__social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 15px;
}

.pre-header__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.pre-header__blog {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: var(--dark);
  margin-right: 20px;
}

/*--------------------------------------------------------------
# Blog 2026
--------------------------------------------------------------*/

.blog main {
  width: 100%;
  max-width: 1000px;
  margin: 3rem auto;
}

.blog main>article {
  margin-bottom: 60px;
  padding: 20px;
  background-color: white;
}

.blog main>article footer {
  font-size: .9rem;
  border-top: 1px solid var(--red);
  padding-top: 20px;
  margin-top: 30px;
  font-style: italic;
}

.blog main h2.entry-title {
  font-weight: bold;
  color: var(--red);
}

.blog main .entry-meta {
  font-size: .9rem;
  padding-bottom: 20px;
  margin-top: 10px;
  font-style: italic;
}

.post-thumbnail {
  display: block;
  margin-bottom: 20px;
}

.blog main>article h1.wp-block-heading {
  font-size: 24px;
}

.blog main>article ul {
  margin-bottom: 20px;
}

/* =============================================
  MAIN HEADER
============================================= */
#main-header {
  background: var(--red);
  position: relative;
  z-index: 190;
}

/* Top nav row – this is the megamenu positioning context */
.header__top-nav {
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  position: relative;
  /* megamenu anchors here */
}

.header__nav-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 10%;
  /* gap: 48px;*/
  flex: 1;
}



.header__nav-item {
  position: static;
}

.header__nav-item>a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  transition: opacity 0.2s;
}

.header__nav-item>a.no-arrow::after {
  display: none;
}

.header__nav-item.active>a {
  border-bottom: 3px solid white;
  padding-bottom: 12px;
}

.header__nav-item>a:hover {
  text-decoration: none;
  color: white;
  opacity: .5;
  background: var(--darkred);
}


.header__nav-item:hover>a::after {
  transform: rotate(180deg);
}

.header__search {
  margin-left: auto;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
}

.header__search img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Logo row */
.header__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 135px;
}

.header__logo img {
  height: 100px;
  width: auto;
}

/* =============================================
  MEGA-MENU (full viewport width, anchored to .header__top-nav)
  Only applied to Cervezas and Experiencias
============================================= */
.megamenu {
  position: absolute;
  top: calc(100% + 2px);
  /* bottom of the 45px nav row */
  left: 0;
  right: 0;
  background: var(--darkred);
  /*border-top: 3px solid var(--red);*/
  display: flex;
  opacity: 0;
  visibility: hidden;
  transform: translateY(2px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 300;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  min-height: 400px;
}

.header__nav-item:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Container for megamenu content */
.megamenu__container {
  display: flex;
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Left nav column */
.megamenu__left {
  width: 300px;
  flex-shrink: 0;
  padding: 48px 48px 48px 0;
}

.megamenu__left-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 28px;
  padding-bottom: 14px;
}

.megamenu__left-list li {
  margin-bottom: 8px;
}

.megamenu__left-list a {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.3px;
  display: block;
  padding: 7px 0 7px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.megamenu__left-list a:hover {
  color: white;
  padding-left: 8px;
}

.megamenu__left-list li.is-active a {
  color: white;
  font-weight: 700;
}

/* Right images area */
.megamenu__right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0 48px 48px;
  align-items: start;
}

.megamenu__img-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 0;
  padding-top: 100%;
}

.megamenu__img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  position: absolute;
  top: 0;
}

.megamenu__img-card:hover img {
  transform: scale(1.04);
}

.megamenu__img-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  padding: 28px 16px 14px;
  color: white;
}

.megamenu__img-card__caption strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.megamenu__img-card__caption span {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
}

/* =============================================
  STICKY HEADER
============================================= */
/* ── Main header sticky state ─────────────── */
#main-header {
  transition: box-shadow 0.3s ease;
}

.stickly-logo {
  display: none;
  width: 100%;
  max-width: 120px;
}

#main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#main-header.is-sticky .stickly-logo {
  display: block;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* Collapse logo row when sticky */
#main-header.is-sticky .header__logo-row {
  height: 0;
  overflow: hidden;
  padding: 0;
}

/* Placeholder to avoid layout jump when header becomes fixed */
#main-header-placeholder {
  display: none;
}

#main-header-placeholder.is-active {
  display: block;
}

/* =============================================
  SECTION 01 – HERO SLIDER (Slider Revolution)
============================================= */
#hero-slider {
  position: relative;
  width: 100%;
  /*height: 780px;*/
  overflow: hidden;
  background: #F4F1E8;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 780px;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.38) 100%);
}

.hero-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-slide__play {
  border: 2px solid white;
  border-radius: 50px;
  padding: 22px 52px;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: background 0.25s;
}

.hero-slide__play:hover {
  background: white;
  color: black;
}

.hero-dots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.hero-dot.active {
  background: white;
}

.sr-placeholder-note {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: white;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 20;
  pointer-events: none;
  white-space: nowrap;
}

/* =============================================
  SECTION 02 – ¿NOS TOMAMOS UNA?
============================================= */


div#video-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    width: 100vw;
    height: 100vh;
}
.video-modal__backdrop {
    background: rgba(0, 0, 0, .7);
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 1;
}
video.video-modal__video {
    width: 80%;
    max-width: 1280px;
    box-shadow: 30px 30px 30px rgba(0, 0, 0, .2);
}
.video-modal__dialog {
    z-index: 99999999999;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
button.video-modal__close {
    position: absolute;
    right: 30px;
    top: 30px;
    color: white;
    background: transparent;
    border: none;
    font-size: 55px;
}
#nos-tomamos {
  background: var(--red);
  text-align: center;
  padding: 88px 270px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nos-tomamos__xgraphic {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 101px;
  flex-shrink: 0;
}

.nos-tomamos__xgraphic svg {
  width: 100%;
  height: 100%;
}

.nos-tomamos__xgraphic--left {
  left: 100px;
}

.nos-tomamos__xgraphic--right {
  right: 100px;
}

.nos-tomamos__xgraphic--left,
.nos-tomamos__xgraphic--right {
  opacity: 0;
}

.nos-tomamos__title {
  font-family: 'Pinyon Script', cursive;
  font-size: 65px;
  color: white;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
}

.nos-tomamos__subtitle {
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 1.55;
  max-width: 700px;
  position: relative;
}

/* =============================================
  SECTION 02b – VIDEO PRODUCT PLACEHOLDER
============================================= */
#video-section {
  position: relative;
  background: var(--red);
}

.video-section__wrap {
  position: relative;
  width: 79.1%;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-section__wrap img,
.video-section__wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.8);
  will-change: transform;
}
button.video-section__trigger {
    border: none;
	transition: all .3s ease-out;
	background: transparent;
}
button.video-section__trigger:hover {
	transform: scale(1.05);
}
.video-note {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.99px;
  padding: 8px 28px;
  pointer-events: none;
  white-space: nowrap;
}

/* =============================================
  SECTION 02c – EN UN LUGAR DE C. LA MANCHA
============================================= */
#product-section {
  background: var(--red);
  text-align: center;
  padding: 80px 0 100px;
}

.product-section__heading {
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  color: white;
  line-height: 1.25;
  margin-bottom: 20px;
}

.product-section__heading strong {
  font-weight: 700;
}

.product-section__sub {
  font-size: 24px;
  font-weight: 400;
  color: white;
  line-height: 1.45;
  max-width: 860px;
  margin: 0 auto 70px;
  padding: 0 30px;
}

/* Beer carousel */
.beer-carousel-wrap {
  position: relative;
  padding: 0 120px;
}

.beer-carousel .slick-track {
  display: flex;
  align-items: flex-end;
}

.beer-item {
  text-align: center;
  padding: 0 20px;
  outline: none;
}

/* Stage: positioning context for podium + large X behind it */
.beer-item__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 140px;
  margin: 0 auto;
  padding-bottom: 15px;/*50*/
}

.beer-item__podium {
  /*background: var(--beige);
  border-radius: 160px;*/
  height: 436px;
  width: 207px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: visible;
  z-index: 2;
}

.beer-item__podium::after {
  content: '';
  background: var(--beige);
  display: block;
  width: 100%;
  height: 81%;
  border-radius: 160px;
}

.beer-item__bottle {
  position: absolute;
  bottom: 0;
  height: 436px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
  z-index: 3;
}

.beer-item:hover .beer-item__bottle {
  transform: translateY(-8px);
}

/* Large X — absolutely behind the podium, centred, peeks below */
.beer-item__xgraphic {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
}

.beer-item__xgraphic svg {
  width: 336px;
  height: 338px;
}

.beer-item__name {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: white;
  margin-top: 10px;
}

.beer-item__name strong {
  font-weight: 700;
}

.beer-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-105%);
  /* centred on podium height */
  z-index: 10;
  cursor: pointer;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beer-arrow img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.beer-arrow--prev {
  left: 40px;
}

.beer-arrow--next {
  right: 40px;
}


/* CTA button */
.btn-outline-white {
  display: inline-block;
  border: 2px solid white;
  border-radius: 50px;
  padding: 16px 50px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: white;
  margin-top: 60px;
  transition: background 0.25s;
}

.btn-outline-white:hover {
  color: black;
  background: white;
}

/* =============================================
  SECTION 03 – SOMOS MAESTROS (Horizontal Accordion)
============================================= */

.interior .entry-header {
  display: none !important;
}

span.el-tit-tema {
  color: var(--red);
  font-size: 2.2rem;
  background: var(--beige);
  display: block;
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50px;
}

.co-text-tema {
  color: white;
}

#somos-maestros {
  background: rgba(233, 226, 207, 0.5);
  padding: 80px 0 0;
  overflow: hidden;
}

.somos-maestros__header {
  text-align: center;
  padding: 0 270px 60px;
}

.somos-maestros__title {
  font-family: 'Pinyon Script', cursive;
  font-size: 55px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
}

.somos-maestros__sub {
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
}

.somos-maestros__sub strong {
  font-weight: 700;
}

/* Horizontal Accordion */
.h-accordion {
  display: flex;
  width: 100%;
  height: 630px;
  overflow: hidden;
}

.h-accordion__panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-width: 353px;
  transition: flex 0.65s cubic-bezier(0.77, 0, 0.175, 1);
}

.h-accordion__panel.is-open {
  flex: 4;
}

/* Shrink siblings */
.h-accordion__panel.is-open~.h-accordion__panel,
.h-accordion__panel:has(~ .h-accordion__panel.is-open) {
  flex: 0.7;
}

/* Panel solid bg colors */
.h-accordion__panel--tajo {
  background-color: var(--navy);
}

.h-accordion__panel--musica {
  background-color: #1a1a1a;
}

.h-accordion__panel--cerveza {
  background-color: var(--darkred);
}

.h-accordion__panel--toledo {
  background-color: var(--red);
}

.h-accordion__panel:hover {
  opacity: .8 !important;
  transition: all .3s ease-out;
}

.h-accordion__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  transition: all 0.45s;
  /* NO transform: scale() here */
}

/* When closed: image shows dimly */
.h-accordion__panel:not(.is-open) .h-accordion__bg {
  opacity: 1;
}

/*0,35*/

/* Panel header bar */
.h-accordion__header-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.h-accordion__panel--tajo .h-accordion__header-bar {
  background: var(--darkred);
}

.h-accordion__panel--musica .h-accordion__header-bar {
  background: var(--red);
}

.h-accordion__panel--cerveza .h-accordion__header-bar {
  background: var(--darkred);
}

.h-accordion__panel--toledo .h-accordion__header-bar {
  background: var(--red);
}

.h-accordion__label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  text-align: center;
  padding: 0 14px;
  overflow: hidden;
}

.h-accordion__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.45s;
  pointer-events: none;
  z-index: 2;
}

/*.h-accordion__panel.is-open .h-accordion__overlay {
  background: rgba(0,0,0,0.8);
}*/

.h-accordion__content {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  z-index: 3;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s 0.2s, transform 0.35s 0.2s;
  pointer-events: none;

  /* Two-column grid */
  display: grid;
  grid-template-columns: 353px 1fr;
  gap: 0;
  align-items: end;
}

.h-accordion__panel.is-open .h-accordion__content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Text column */
.h-accordion__content-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.h-accordion__content_col {
  height: calc(100% - 80px);
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
  padding: 15px 15px 30px;
}

.h-accordion__content p {
  font-size: 18px;
  font-weight: 400;
  color: white;
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 300px;
}

/* CTA column – right-aligned at bottom */
.h-accordion__content-cta {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.btn-outline-white-sm {
  display: inline-block;
  border: 2px solid white;
  border-radius: 50px;
  padding: 10px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: white;
  transition: background 0.25s;
}

.btn-outline-white-sm:hover {
  color: black;
  text-decoration: none;
  background: white;


}

@media (min-width: 1200px) {
  .h-accordion__content_col {
    gap: 30px;
    padding: 15px 40px 30px;
  }
}



/* =============================================
  SECTION 04 – ENTRE CAÑA Y CAÑA (Awards)
============================================= */
#premios {
  margin-top: 8rem;
  text-align: center;
  padding: 120px 270px 100px;
  position: relative;
  /*overflow: hidden;*/
  background: var(--red) url(images/img-text-premios.svg) no-repeat center 85%;
  background-size: contain;
}

#co-aspas {
  display: flex;
  position: absolute;
  top: -3.5rem;
  overflow: hidden;
  width: 100%;
  left: 0;
  justify-content: center;
}

#co-aspas img {
  will-change: transform, opacity;
}

.premios__title {
  font-family: 'Pinyon Script', cursive;
  font-size: 58px;
  color: white;
  line-height: 1;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.premios__sub {
  font-size: 24px;
  font-weight: 400;
  color: white;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.premios__sub strong {
  font-weight: 700;
}

.premios__awards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.premios__award img {
  max-height: 185px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s;
}

.premios__award:hover img {
  transform: scale(1.05);
}

/* =============================================
  SECTION 05 – BANDA INFO
============================================= */
#banda-info {
  background: var(--beige);
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banda-info__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banda-info__icon {
  width: 13px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.banda-info__inner a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.99px;
  text-transform: uppercase;
}

/* =============================================
  FOOTER
============================================= */

.row-footer {
  display: grid;
  width: 100%;
  justify-content: space-between;
	grid-template-columns: 1fr:	
}
.row-footer > div {
	margin-bottom: 15px;
}


#footer {
  background: var(--dark);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 99px;
}

.footer__legal {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.99px;
  color: var(--beige);
  line-height: 1.7;
  max-width: 600px;
	text-align: center !important;
}

.footer__legal strong {
  text-transform: uppercase;
}

.footer__links {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: var(--beige);
  line-height: 1.7;
	text-align: center !important;
}
@media (min-width: 992px) {
	.row-footer {
		grid-template-columns: 1fr 40%;
	}
	.row-footer > div { 
		margin-bottom: 0;
	}
	.footer__legal {
		text-align: left !important;
	}
	.footer__links {
	  text-align: right !important;
	}
}
/* =============================================
  SEARCH OVERLAY
============================================= */
#search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__inner {
  width: 60%;
  max-width: 700px;
}

.search-overlay__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  padding: 14px 0;
  font-size: 32px;
  font-family: 'Inter', sans-serif;
  color: white;
  outline: none;
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.search-overlay__close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  line-height: 1;
}

/* =============================================
  GSAP ANIMATION INITIAL STATES
============================================= */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(40px);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.85);
}

/* Slick default arrows hidden */
.slick-prev,
.slick-next {
  display: none !important;
}

/* =============================================
  BURGER MENU BUTTON (mobile only, hidden on desktop)
============================================= */
.mobile-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  align-items: flex-end;
}

.mobile-burger span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: width 0.25s, opacity 0.2s, transform 0.3s;
}

.mobile-burger span:nth-child(1) {
  width: 28px;
}

.mobile-burger span:nth-child(2) {
  width: 20px;
}

.mobile-burger span:nth-child(3) {
  width: 28px;
}

.mobile-burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}

.mobile-burger.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 28px;
}

/* =============================================
  MOBILE NAV OVERLAY
============================================= */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--red);
  z-index: 800;
  display: flex;
  flex-direction: column;
  padding: 90px 36px 48px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

#mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 34px;
  line-height: 1;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__logo-wrap {
  margin-bottom: 44px;
}

.mobile-nav__logo-wrap img {
  height: 52px;
  width: auto;
}

.mobile-nav__items {
  flex: 1;
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.mobile-nav__item a {
  display: block;
  padding: 18px 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: white;
}

.mobile-nav__item a:hover {
  opacity: 0.75;
}

.mobile-nav__bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav__social {
	color: white;
  display: flex;
  gap: 18px;
  align-items: center;
}

.mobile-nav__social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.mobile-nav__legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* Mobile nav accordion (for items with sub-menus) */
.mobile-nav__item--has-sub>.mobile-nav__item-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: white;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.mobile-nav__item-btn:hover {
  opacity: 0.75;
}

.mobile-nav__item-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.28s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__item-arrow svg {
  width: 14px;
  height: 14px;
}

.mobile-nav__item--has-sub.is-open .mobile-nav__item-arrow {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav__item--has-sub.is-open .mobile-nav__sub {
  max-height: 600px;
}

.mobile-nav__sub-list {
  padding: 4px 0 16px 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 4px;
}

.mobile-nav__sub-list li {
  margin-bottom: 2px;
}

.mobile-nav__sub-list a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav__sub-list a:hover {
  color: white;
  padding-left: 6px;
}

.mobile-nav__sub-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  display: none;
}

/* =============================================
  PREVENT ALL HORIZONTAL OVERFLOW
============================================= */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* =============================================
  RESPONSIVE — MOBILE (≤ 1200px)
============================================= */
@media (max-width: 1200px) {

  /* ── Global padding reset ─────────────────── */
  /* Kill the 270px desktop gutters everywhere */
  #pre-header,
  .header__top-nav,
  #main-header.is-sticky,
  .somos-maestros__header,
  #premios,
  #footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Pre-header ───────────────────────────── */
  #pre-header {
    display: none;
  }

  /* ── Main header ──────────────────────────── */
  .header__top-nav {
    display: none;
  }

  .header__logo-row {
    position: relative;
    height: 66px;
    padding: 0 20px;
    justify-content: center;
  }

  .header__logo img {
    height: 46px;
  }

  .mobile-burger {
    display: flex;
  }

  #search-btn {
    position: absolute;
    right: 62px;
    top: 50%;
    transform: translateY(-50%);
  }

  /* ── Sticky header (mobile) ───────────────── */
  #main-header.is-sticky {
    padding: 0 20px;
  }

  #main-header.is-sticky .header__top-nav {
    display: flex;
  }

  #main-header.is-sticky .header__nav-items {
    display: none;
  }

  .mobile-burger {
    display: flex;
  }

  /* ── Hero slider ──────────────────────────── */
  #hero-slider {
    /*height: 520px;*/
  }

  .hero-slide {
    height: 520px;
  }

  .hero-slide__play {
    font-size: 18px;
    padding: 14px 36px;
  }

  /* ── Nos tomamos una ──────────────────────── */
  #nos-tomamos {
    padding: 56px 20px 48px;
  }

  .nos-tomamos__xgraphic {
    width: 45px;
    height: 46px;
  }

  .nos-tomamos__xgraphic--left {
    left: 8px;
  }

  .nos-tomamos__xgraphic--right {
    right: 8px;
  }

  /* ── Product video ────────────────────────── */
  #product-section>div[style] {
    width: 100% !important;
    margin-bottom: 40px !important;
  }

  /* ── Product / beer section ───────────────── */
  #product-section {
    padding: 48px 0 64px;
  }

  .product-section__heading {
    font-size: 22px;
    line-height: 1.3;
    padding: 0 24px;
    margin-bottom: 16px;
  }

  .product-section__sub {
    font-size: 16px;
    margin-bottom: 36px;
    padding: 0 24px;
  }

  .beer-carousel-wrap {
    padding: 0 44px;
  }

  .beer-arrow {
    width: 36px;
    height: 36px;
  }

  .beer-arrow img {
    width: 36px;
    height: 36px;
  }

  .beer-arrow--prev {
    left: 4px;
  }

  .beer-arrow--next {
    right: 4px;
  }

  .beer-item__stage {
    width: 110px;
    padding-bottom: 10px;
  }

  .beer-item__podium {
    height: 200px;
    width: 110px;
    border-radius: 130px;
  }

  .beer-item__bottle {
    height: 214px;
  }

  .beer-item__xgraphic {
    bottom: 5px;
  }

  .beer-item__xgraphic svg {
    width: 166px;
    height: 168px;
    transform-origin: center;
  }

  .beer-item__name {
    font-size: 12px;
    min-height: 40px;
  }

  .btn-outline-white {
    font-size: 16px;
    padding: 14px 36px;
    margin-top: 36px;
  }

  /* ── Somos Maestros section ───────────────── */
  #somos-maestros {
    padding-top: 48px;
  }

  .somos-maestros__header {
    padding: 0 20px 40px;
  }

  .somos-maestros__title {
    font-size: 38px;
  }

  .somos-maestros__sub {
    font-size: 16px;
  }

  /* Horizontal accordion → vertical stack */
  .h-accordion {
    flex-direction: column;
    height: auto;
  }

  .h-accordion__panel {
    width: 100%;
    flex: none;
    min-height: 350px;
  }

  .h-accordion__panel.is-open {
    min-height: 450px;
  }

  .h-accordion__content {
    left: 0;
    right: 0;
    bottom: 30px;
    grid-template-columns: 1fr;
    /* text-align: center; */
    justify-content: center;
  }

  .h-accordion__content_col {
    padding: 30px;
  }

  .h-accordion__content p {
    font-size: 16px;
  }

  /* ── Awards section ───────────────────────── */
  #premios {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  #co-aspas {
    top: -26px;
  }

  #co-aspas img {
    width: 30px;
    height: 30px;
    width: 50px;
    height: 50px;
  }

  .premios__title {
    font-size: 38px;
  }

  .premios__sub {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .premios__awards {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .premios__award img {
    height: 72px;
    max-height: 72px;
  }

  /* ── Nos tomamos una text ─────────────────── */
  .nos-tomamos__title {
    font-size: clamp(42px, 10vw, 80px);
  }

  .nos-tomamos__subtitle {
    font-size: 15px;
  }

  /* ── Banda info / Footer ──────────────────── */
  #footer {
    flex-direction: column;
    gap: 18px;
    padding: 28px 20px;
  }

  .footer__links {
    text-align: left;
  }
}

/* Lock scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* =============================================
  EXPERIENCIAS SECTION
============================================= */
#experiencias {
  background: rgba(233, 226, 207, 0.5);
  padding: 0 0 80px;
}

.experiencias__header {
  text-align: center;
  padding: 72px 40px 56px;
}

.experiencias__title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(36px, 4.5vw, 65px);
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 20px;
}

.experiencias__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 22px);
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}

/* Two-card row */
.experiencias__cards {
  display: flex;
  gap: clamp(16px, 2vw, 36px);
  align-items: stretch;
}

.experiencias__card {
  flex: 1;
  overflow: hidden;
}

.experiencias__card-photo {
  width: 100%;
  /*height: clamp(220px, 28vw, 480px);*/
  overflow: hidden;
}

.experiencias__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.experiencias__card:hover .experiencias__card-photo img {
  transform: scale(1.04);
}

.experiencias__card-body {
  padding: 0;
  background: var(--beige);
  display: flex;
  flex-direction: column;
  gap: 14px;
  /**/
  flex: 1;
  height: 100%;
}

.experiencias__card-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--red);
  margin: 0;
  padding: 40px 20px 0 20px;
}

.experiencias__card-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 18px);
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
  padding: 0 20px 15px 20px;
  text-align: center;
}

/* Red info bar */
.experiencias__card-infobar {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 14px 16px;
  margin: 0 clamp(-20px, -3vw, -48px);
  gap: 12px;
}

.experiencias__card-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}

.experiencias__card-info img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.experiencias__card-cta {
  display: inline-block;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 40px;
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
  margin: 25px auto 50px auto;
}

.experiencias__card-cta:hover {
  background: var(--red);
  color: white;
  text-decoration: none;
}

/* =============================================
  TOLEDO MOLA SECTION
============================================= */
#toledo-mola {
  background: var(--red);
  overflow: hidden;
  padding-bottom: 0;
}

.toledo__header {
  text-align: center;
  padding: 72px 40px 56px;
}

.toledo__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.toledo__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 20px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}

/* Main content: video left + grid right */
.toledo__content {
  display: flex;
  align-items: stretch;
  gap: 14%;
  margin-bottom: 60px;
  padding: 0 5%;
}

/* Left: tall vertical video frame */
.toledo__main-video {
  flex: 0 0 clamp(200px, 30vw, 480px);
}

.toledo__main-frame {
  position: relative;
  width: 100%;
  /*height: 100%;*/
  min-height: 480px;
  /*border-radius: 280px 280px 0 0;*/
  /*overflow: hidden;
  border: 3px solid #918368;*/
  z-index: 0;
}

.toledo__main-frame::after {
  content: '';
  display: block;
  width: calc(100% + 100px);
  height: calc(100% + 100px);
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 0;
  border: 3px solid #F7E0B2;
  border-radius: 300px;
  /* padding: 40px; */
  z-index: -1;

}

.toledo__main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.toledo__play-btn {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid white;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 20px);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px 36px;
  min-width: 180px;
  border-radius: 40px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  background-color: transparent;
}

.toledo__play-btn:hover {
  background: white;
  color: var(--red);
  text-decoration: none;
}

/* Right: 3×2 thumbnail grid */
.toledo__grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 44px;
  align-content: start;
}

.toledo__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

.toledo__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.toledo__thumb:hover img {
  transform: scale(1.06);
}

.toledo__thumb-arrow {
  position: absolute;
  bottom: calc(50% - 20px);
  right: calc(50% - 20px);
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 1;
  transition: background 0.2s;
}

.toledo__thumb-arrow:hover {
  background: white;
  color: var(--red);
  text-decoration: none;
}

/* "Ver todas" sits below the grid, spanning all 3 cols */
.toledo__grid-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.toledo__cta-btn {
  display: inline-block;
  border: 2px solid white;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 16px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  min-width: 235px;
  padding: 14px 36px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
}

.toledo__cta-btn:hover {
  background: white;
  color: var(--red);
  text-decoration: none;
}

/* Typographic trama band at bottom */
.toledo__trama {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  padding: 0 15px 15px 15px;
}

.toledo__trama img {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  height: auto;
  display: block;
}

/* ── Responsive: experiencias + toledo ─────── */
@media (max-width: 900px) {
  .experiencias__cards {
    flex-direction: column;
  }

  .experiencias__card-infobar {
    flex-wrap: wrap;
    margin: 0 -20px;
  }

  #experiencias {
    padding-bottom: 48px;
  }

  .toledo__content {
    flex-direction: column;
  }

  .toledo__main-video {
    flex: none;
    padding: 0 30px;
    margin-top: 40px;
    margin-bottom: 90px;
  }

  .toledo__main-frame {
    min-height: 320px;
    border-radius: 160px 160px 0 0;
  }

  .toledo__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .toledo__header {
    padding: 48px 20px 36px;
  }
}

/* ============ LAZY VIDEO EMBED ============ */

/* Garantizar que el frame tenga altura calculada para el iframe */
.toledo__main-frame {
  height: 100%;
}

/* La imagen poster usa el mismo comportamiento que tenías en .toledo__main-frame img */
.toledo__main-poster {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

/* El iframe injectado se posiciona absoluto cubriendo el frame entero */
.toledo__main-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  z-index: 1;
}

/* Cuando el video está reproduciendo, ya no hace falta el botón (por si queda residuo) */
.toledo__main-frame.is-playing .toledo__play-btn {
  display: none;
}

@media (max-width: 900px) {

  .toledo__main-poster,
  .toledo__main-iframe {
    min-height: 320px;
  }
}


/* =============================================
  NUESTRAS CERVEZAS SECTION
============================================= */
#nuestras-cervezas {
  background: #F4F1E8;
  overflow: hidden;
}

/* ── Intro tagline ────────────────────────── */
.cervezas-intro {
  background: rgba(233, 226, 207, 0.5);
  text-align: center;
  padding: 60px 40px 56px;
}

.cervezas-intro__script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(38px, 5vw, 65px);
  color: var(--red);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cervezas-intro__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.5vw, 28px);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0;
  margin: 0;
}

/* ── Esenciales block (full width, split) ─── */
.cervezas-block--esenciales {
  display: flex;
  height: clamp(340px, 38vw, 628px);
  width: 100%;
}

.cervezas-block__img {
  flex: 1 1 69%;
  overflow: hidden;
  position: relative;
}

.cervezas-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cervezas-block__panel {
  flex: 0 0 31%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cervezas-block__x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cervezas-block__x svg {
  width: 60%;
  max-width: 260px;
  opacity: 0.9;
}

.cervezas-block__txt {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cervezas-block__label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.2vw, 22px);
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cervezas-block__name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.cervezas-block__cta {
  display: inline-block;
  border: 2px solid white;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 1vw, 18px);
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}

.cervezas-block__cta:hover {
  background: white;
  color: var(--red);
  text-decoration: none;
}

/* ── Bottom row: 2 cards ──────────────────── */
.cervezas-row {
  display: flex;
  /*height: clamp(300px, 32vw, 560px);*/
  width: 100%;
  height: 50vw;
  min-height: 50vw;
}

.cervezas-card {
  display: block;
  position: relative;
  width: 100%;
  /* min-height: 500px; */
  padding-top: 100%;
  height: 0;
}

.cervezas-card__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  min-height: 50vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cervezas-card__img {
  overflow: hidden;
}

.cervezas-card__img img {
  display: block;
  width: 100%;
  max-width: 30vw;
}

.cervezas-card__x {
  position: relative;
  /* bottom: 100px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  pointer-events: none;
}

.cervezas-card__x svg {
  width: clamp(120px, 40vw, 220px);
  opacity: 0.9;
}

.cervezas-card__txt {
  padding: 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.cervezas-card__txt::after {
  content: '';
  display: block;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 0;
  height: 250px;
  width: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 135 136" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M79.5801 83.4872L98.913 71.054L134.428 106.749L106.21 135.11L51.3539 79.9841L63.7326 99.4151L28.2179 135.11L0 106.749L54.8477 51.6145L35.5147 64.0561L0 28.3611L28.2179 0L83.0655 55.1261L70.6951 35.695L106.21 0L134.428 28.3611L79.5801 83.4872Z" fill="rgba(255,255,255,0.18)"></path></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ── Responsive: cervezas ─────────────────── */


@media (max-width: 1200px) {
  .cervezas-card__img img {
    max-width: 300px;
  }

  .cervezas-card__txt::after {
    height: 180px;
  }
}

@media (max-width: 992px) {
  .cervezas-card__img img {
    max-width: 200px;
  }

  .cervezas-card__txt::after {
    height: 170px;
  }
}

@media (max-width: 768px) {
  .cervezas-card__inner {
    width: 100vw;
    min-height: 100vw;
  }

  .cervezas-card__txt::after {
    height: 170px;
  }

  .cervezas-block--esenciales {
    flex-direction: column;
    height: auto;
  }

  .cervezas-block__img {
    flex: 0 0 240px;
    height: 240px;
  }

  .cervezas-block__panel {
    flex: 0 0 auto;
    padding: 40px 20px;
  }

  .cervezas-row {
    flex-direction: column;
    height: auto;
  }

  .cervezas-card {
    height: 340px;
  }

  .cervezas-intro {
    padding: 40px 20px;
  }
}

/* =============================================
  ESENCIALES TAB SECTION
============================================= */
#esenciales-section {
  background: rgba(233, 226, 207, 0.5);
  overflow: hidden;
}

/* ── Header ──────────────────────────────── */
.esenciales__header {
  text-align: center;
  padding: 64px 40px 48px;
}

.esenciales__pretitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 36px);
  font-weight: 400;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.esenciales__pretitle strong {
  font-weight: 800;
}

.esenciales__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.6;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Beer Tab Nav ─────────────────────────── */
.esenciales__tabs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 0 20px;
  position: relative;
}

.esenciales__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 0 clamp(12px, 2.5vw, 40px);
  padding-bottom: 20px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
  position: relative;
  flex: 1;
  max-width: 220px;
}

.esenciales__tab:hover .esenciales__tab-bottle {
  transform: translateY(-8px);
}

.esenciales__tab.is-active {}

.esenciales__tab-bottle-wrap {
  width: 100%;
  height: clamp(160px, 16vw, 260px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

/* X graphic watermark behind bottle */
.esenciales__tab-bottle-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 135 136' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M79.5801 83.4872L98.913 71.054L134.428 106.749L106.21 135.11L51.3539 79.9841L63.7326 99.4151L28.2179 135.11L0 106.749L54.8477 51.6145L35.5147 64.0561L0 28.3611L28.2179 0L83.0655 55.1261L70.6951 35.695L106.21 0L134.428 28.3611L79.5801 83.4872Z' fill='%23E9E2CF' fill-opacity='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
  pointer-events: none;
  transition: all .3s ease-in-out;
}

.esenciales__tab.is-active .esenciales__tab-bottle-wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 135 136' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M79.5801 83.4872L98.913 71.054L134.428 106.749L106.21 135.11L51.3539 79.9841L63.7326 99.4151L28.2179 135.11L0 106.749L54.8477 51.6145L35.5147 64.0561L0 28.3611L28.2179 0L83.0655 55.1261L70.6951 35.695L106.21 0L134.428 28.3611L79.5801 83.4872Z' fill='%23C2B57B' fill-opacity='1'/%3E%3C/svg%3E");
}

.esenciales__tab-bottle {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.esenciales__tab-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(10px, 0.9vw, 14px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  text-align: center;
  margin-top: 10px;
  line-height: 1.3;
  min-height: 40px;
}

.esenciales__tab-label strong {
  font-weight: 800;
}

.esenciales__tab.is-active .esenciales__tab-label {
  color: var(--red);
}

/* ── Tab Content Panel ────────────────────── */
.esenciales__content {
  background: var(--esenciales-bg, var(--red));
  transition: background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.esenciales__pane {
  display: none;
}

.esenciales__pane.is-active {
  display: flex;
}

/* Left: text */
.esenciales__pane-text {
  flex: 0 0 clamp(300px, 38%, 680px);
  padding: clamp(40px, 5vw, 80px) clamp(30px, 4vw, 60px) clamp(40px, 5vw, 80px) clamp(30px, 5vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.esenciales__pane-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.1;
}

.esenciales__pane-name strong {
  font-weight: 800;
}

.esenciales__pane-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 1.1vw, 18px);
  color: white;
  line-height: 1.65;
  opacity: 0.95;
}

.esenciales__pane-desc em {
  font-style: normal;
  font-weight: 700;
}

.esenciales__pane-cta {
  display: inline-block;
  border: 2px solid white;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 40px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}

.esenciales__pane-cta:hover {
  background: white;
  color: var(--red);
}

/* Right: bottle + image area */
.esenciales__pane-visual {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 45vw, 650px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 30px 0 30px 20px;
}

.esenciales__pane-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.esenciales__pane-bottle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 90%;
  width: auto;
  object-fit: contain;
  z-index: 2;
}

.esenciales__pane-awards {
  position: absolute;
  bottom: 30px;
  right: 40px;
  width: clamp(100px, 12vw, 220px);
  z-index: 3;
}


/* ── Notas de Cata bar ────────────────────── */
.esenciales__cata {
  background: #c2b57b;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}

.esenciales__cata-item {
  flex: 1;
  max-width: 380px;
  padding: clamp(24px, 3vw, 48px) clamp(20px, 2.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.esenciales__cata-item:last-child {
  border-right: none;
}

.esenciales__cata-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
  opacity: 0.85;
}

.esenciales__cata-title {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(28px, 3vw, 45px);
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}

.esenciales__cata-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 400;
  color: white;
  text-transform: uppercase;
  line-height: 1.55;
  letter-spacing: 0.5px;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .esenciales__pane.is-active {
    flex-direction: column;
  }

  .esenciales__pane-text {
    flex: none;
    padding: 36px 24px;
  }

  .esenciales__pane-visual {
    min-height: 300px;
  }

  .esenciales__cata {
    flex-wrap: wrap;
  }

  .esenciales__cata-item {
    max-width: 50%;
  }

  .esenciales__tabs {
    gap: 0;
    overflow-x: auto;
    justify-content: center;
    padding: 0 10px;
  }

  .esenciales__tab {
    max-width: 140px;
    min-width: 80px;
    padding: 0 10px 16px;
  }

  .esenciales__header {
    padding: 40px 20px 32px;
  }
}

@media (max-width: 600px) {
  .esenciales__cata-item {
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .esenciales__cata-item:last-child {
    border-bottom: none;
  }

  .esenciales__tab-bottle-wrap {
    width: 100%;
    height: clamp(120px, 16vw, 260px);
    padding: 0;
  }

  .esenciales__tab {
    max-width: 100px;
    min-width: 60px;
    padding: 0 2px;
  }

  .esenciales__tab-label {
    font-size: clamp(9px, 0.9vw, 14px);
  }
}

/* =============================================
  MÁS TAJO SECTION
============================================= */
#mas-tajo {
  background: #E9E2CF;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* ── BLOCK 1: 3 columns – 2026 image | text | tajo logo ── */
.mastajo__block1 {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  min-height: 480px;
  height: 675px;
  background: #E9E2CF;
  position: relative;
}

.mastajo__block1::before {
  content: '';
  display: block;
  /*background: url(images/tajo1-top.svg) no-repeat top center;*/
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 6.77%;
  z-index: 1;
  position: absolute;
}

.mastajo__block1::after {
  content: '';
  display: block;
  background: url(images/tajo-1-bot.svg) no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-bottom: 6.51%;
  z-index: 1;
  position: absolute;
  bottom: 0;
}



.mastajo__b1-img {
  overflow: hidden;
}

.mastajo__b1-img img {
  width: 100%;
  height: 675px;
  display: block;
}

.mastajo__b1-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background: #2E3873;
  /* navy blue from Figma */
  color: #fff;
}

.mastajo__b1-tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.mastajo__b1-label {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #fff;
}

.mastajo__b1-label strong {
  font-weight: 700;
}

.mastajo__b1-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
}

.mastajo__b1-logo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  /*padding: 50px 40px;*/
  background: #2E3873;
}

@media (min-width: 1700px) {
  .mastajo__b1-logo-col {
    align-items: flex-start;
  }
}

.mastajo__b1-logo-col img {
  width: 100%;
  height: auto;
}

/* ── BLOCK 2 & 3: 2 columns – image | text ── */
.mastajo__block2,
.mastajo__block3 {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 440px;
  height: 675px;
  background: white;
  position: relative;
}

.mastajo__block2::before {
  content: '';
  display: block;
  background: url(images/tajo-2-top.svg) no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 11.14%;
  z-index: 1;
  position: absolute;
}

.mastajo__block2::after {
  content: '';
  display: block;
  background: url(images/tajo-2-bot.svg) no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-bottom: 10.15%;
  z-index: 1;
  position: absolute;
  bottom: 0;
}

.mastajo__block3 {
  grid-template-columns: auto 1fr;
}

.mastajo__block3::before {
  content: '';
  display: block;
  background: url(images/tajo-3-top.svg) no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 6.92%;
  z-index: 1;
  position: absolute;
}

.mastajo__block3::after {
  content: '';
  display: block;
  background: url(images/tajo-3-bot.svg) no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-bottom: 5.15%;
  z-index: 1;
  position: absolute;
  bottom: 0;
}

.mastajo__bx-img {
  overflow: hidden;
}

.mastajo__bx-img img {
  width: 100%;
  height: 675px;
  object-fit: cover;
  display: block;
}

.mastajo__bx-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}

/* Block 2 uses light blue background */
.mastajo__block2 .mastajo__bx-text {
  background: #5BAFE0;
  color: #fff;
}

/* Block 3 uses beige background with dark text */
.mastajo__block3 .mastajo__bx-text {
  background: white;
  color: var(--dark, #3c3b39);
}

/* Block 3: image on right, text on left */
.mastajo__block3 .mastajo__bx-img {
  order: 1;
}

.mastajo__block3 .mastajo__bx-text {
  order: 2;
}

.mastajo__bx-label {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 20px;
}

.mastajo__bx-label strong {
  font-weight: 700;
}

.mastajo__bx-desc {
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.9;
}

/* Shared CTA pill button */
.mastajo__cta {
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 40px;
  padding: 14px 40px;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  align-self: flex-start;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}

.mastajo__cta:hover {
  background: currentColor;
}

.mastajo__cta:hover span {
  color: #2B3A7A;
}

.mastajo__b1-text .mastajo__cta:hover {
  background: #fff;
  color: #2B3A7A;
}

.mastajo__block2 .mastajo__cta:hover {
  background: #fff;
  color: #5BAFE0;
}

.mastajo__block3 .mastajo__cta:hover {
  background: var(--dark, #3c3b39);
  color: #E9E2CF;
}

@media (max-width: 1200px) {

  .mastajo__block1,
  .mastajo__b1-img img,
  .mastajo__bx-img img,
  .mastajo__block2,
  .mastajo__block3 {
    height: 550px;
  }
}

@media (max-width: 900px) {

  .mastajo__block1,
  .mastajo__block2,
  .mastajo__block3 {
    grid-template-columns: 1fr;
  }

  .mastajo__block1 {
    grid-template-columns: 1fr;
  }

  .mastajo__b1-img,
  .mastajo__bx-img {
    min-height: 260px;
  }

  .mastajo__b1-text,
  .mastajo__bx-text {
    padding: 40px 30px;
  }

  .mastajo__block3 .mastajo__bx-img {
    order: 0;
  }

  .mastajo__block3 .mastajo__bx-text {
    order: 0;
  }

  .mastajo__block1,
  .mastajo__block2,
  .mastajo__block3 {
    height: auto !important;
  }

  .mastajo__block1 {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto;
  }

  .mastajo__b1-img {
    background: white;
  }

  .mastajo__b1-img img {
    grid-column: 1;
    height: auto !important;
  }

  .mastajo__b1-text {
    grid-column: 2;
  }

  .mastajo__b1-logo-col {
    grid-column: 1 / 3;
    /* spans both columns */
  }

  .mastajo__bx-img img {
    width: 100%;
    height: auto !important;
  }
}

/* DEAD CODE from old section – removed */
.mastajo__project-year {
  display: none;
  /* kept to avoid parse errors if referenced */
  font-size: clamp(52px, 6vw, 90px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: -2px;
}

.mastajo__project--left .mastajo__project-year {
  left: 4%;
  bottom: 15%;
}

.mastajo__project--right .mastajo__project-year {
  right: 4%;
  bottom: 15%;
}

/* Content panel */
.mastajo__project-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  max-width: 520px;
  color: #fff;
}

.mastajo__project--left .mastajo__project-content {
  left: clamp(40px, 8vw, 160px);
}

.mastajo__project--right .mastajo__project-content {
  right: clamp(40px, 8vw, 160px);
  text-align: left;
}

.mastajo__project-label {
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.4;
}

.mastajo__project-label strong {
  font-weight: 700;
}

.mastajo__project-desc {
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
  letter-spacing: 0.3px;
}

.mastajo__project-cta {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 14px 40px;
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 400;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.25s, color 0.25s;
}

.mastajo__project-cta:hover {
  background: #fff;
  color: var(--dark, #3c3b39);
}

.mastajo__project-cta--dark {
  border-color: var(--dark, #3c3b39);
  color: var(--dark, #3c3b39);
}

.mastajo__project-cta--dark:hover {
  background: var(--dark, #3c3b39);
  color: #fff;
}

/* 2024 card – light image, dark text */
.mastajo__project--light .mastajo__project-overlay {
  background: linear-gradient(to right, rgba(233, 226, 207, 0.6) 0%, rgba(233, 226, 207, 0.1) 60%, transparent 100%);
}

.mastajo__project--light .mastajo__project-label,
.mastajo__project--light .mastajo__project-desc {
  color: var(--dark, #3c3b39);
}

.mastajo__project--light .mastajo__project-label {
  color: var(--dark, #3c3b39);
}


/***********************
 LA SAGRA EN TU SUPER
***********************/

#la-sagra-super-locator {
  padding-top: 3rem;
}

.ls-container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

.ls-header {
  text-align: center;
  margin-bottom: 30px;
}

.ls-header h2 {
  font-family: 'Pinyon Script', cursive;
  font-size: 55px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
}

.ls-main-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.ls-map-column {
  flex: 1.5;
  min-width: 300px;
}

.ls-info-column {
  flex: 1;
  min-width: 300px;
}

.mapa-sevende-wrapper {
  width: 100%;
}

#svg-spain {
  width: 100%;
  height: auto;
  display: block;
}

/* Province paths (class st0) – filled provinces */
#svg-spain g.ls-province {
  cursor: pointer;
}

#svg-spain g.ls-province path.st0 {
  fill: #ffffff;
  stroke: #1d1d1b;
  stroke-width: 0.5;
  transition: fill 0.2s;
}

#svg-spain g.ls-province:hover path.st0 {
  fill: #f2a9a9;
}

#svg-spain g.ls-province.active path.st0 {
  fill: #c8102e !important;
}

/* Tenerife / Canary Islands – uses outline (st1) instead of fill */
#svg-spain #tenerife path.st1 {
  fill: rgba(255, 255, 255, 0);
  /* transparent fill so the click area covers the shapes */
  stroke: #1d1d1b;
  stroke-width: 0.75;
  transition: fill 0.2s, stroke 0.2s;
  pointer-events: all;
}

#svg-spain #tenerife:hover path.st1 {
  fill: #f2a9a9;
}

#svg-spain #tenerife.active path.st1 {
  fill: #c8102e !important;
  stroke: #c8102e;
}

/* The marker/indicator group is not interactive */
#svg-spain #marcador,
#svg-spain #marcador * {
  pointer-events: none;
}

#svg-spain #marcador circle.st3 {
  fill: #dddddd;
}

.ls-form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

#province-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.ls-results-panel {
  margin-top: 30px;
  padding: 20px;
  background: var(--beige);
  border-top-right-radius: 150px;
  border-bottom-right-radius: 150px;
  border-left: 6px solid var(--red);
}

#display-province {
  margin-top: 0;
  color: #c8102e;
  text-transform: uppercase;
  font-size: 1.2rem;
}

#store-list {
  padding-left: 20px;
  font-weight: 600;
  line-height: 1.8;
}

/* Full provincial directory */
.ls-directory {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 40px;
}

.ls-directory-item {
  break-inside: avoid;
}

.ls-directory-item h3 {
  font-weight: 600;
  font-size: 1.35rem;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1d1d1b;
  color: #1d1d1b;
}

.ls-directory-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ls-directory-item li {
  position: relative;
  padding-left: 14px;
  margin: 4px 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1d1d1b;
}

.ls-directory-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: var(--red);
}

@media (max-width: 1000px) {
  .ls-directory {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .ls-main-layout {
    flex-direction: column;
  }

  .ls-directory {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

.entusuper .entry-title {
  display: none;
}