/* Patagonien — estilos compartidos de las homes (ES/DE/EN) y base de los artículos.
   Extraído del CSS inline de index.html el 2026-09-04. Un cambio acá aplica a las tres homes. */
:root {
    --color-cream: #F5F0EB;
    --color-dark: #1A1A2E;
    --color-accent: #C4A265;
    --color-accent-light: #D4B87A;
    --color-warm: #E8DDD3;
    --color-blue: #2E4057;
    --color-text: #3A3A3A;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream);
    overflow-x: hidden;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: var(--color-dark);
    padding: 0.6rem 2rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-logo img {
    height: 50px;
    transition: height 0.4s ease;
    filter: brightness(0) invert(1);
}

.nav.scrolled .nav-logo img {
    height: 38px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-right .nav-lang-mobile {
    display: none;
}

.nav-lang a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.6;
    transition: opacity 0.3s;
    border: 2px solid transparent;
    padding-bottom: 0;
}

.nav-lang a:hover, .nav-lang a.active {
    opacity: 1;
    border-color: var(--color-accent);
}

.nav-lang a::after {
    display: none !important;
}

.nav-lang img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/local.webp') center/cover no-repeat;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(26, 26, 46, 0.4) 0%,
        rgba(26, 26, 46, 0.6) 50%,
        rgba(26, 26, 46, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(196, 162, 101, 0.5);
    border-radius: 50px;
    color: var(--color-accent-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    background: rgba(196, 162, 101, 0.08);
}

.hero-badges {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.hero-badges .hero-badge { margin-bottom: 0; }
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}
.hero-status .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero-status.open { color: #a7f3c4; border-color: rgba(74,222,128,0.55); background: rgba(74,222,128,0.14); animation: glowGreen 2.4s ease-in-out infinite; }
.hero-status.open .dot { background: #4ade80; box-shadow: 0 0 6px #4ade80; }
.hero-status.closed { color: #f7b4b4; border-color: rgba(239,68,68,0.55); background: rgba(239,68,68,0.14); animation: glowRed 2.4s ease-in-out infinite; }
.hero-status.closed .dot { background: #ef4444; box-shadow: 0 0 6px #ef4444; }
@keyframes glowGreen {
    0%, 100% { box-shadow: 0 0 5px rgba(74,222,128,0.22); }
    50% { box-shadow: 0 0 17px rgba(74,222,128,0.65); }
}
@keyframes glowRed {
    0%, 100% { box-shadow: 0 0 5px rgba(239,68,68,0.22); }
    50% { box-shadow: 0 0 17px rgba(239,68,68,0.65); }
}

/* Brillo que cruza cada unos segundos */
.shine { position: relative; overflow: hidden; }
.shine::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: -160%;
    width: 55%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: skewX(-18deg);
    pointer-events: none;
    animation: shineSweep 6s ease-in-out infinite;
}
@keyframes shineSweep {
    0% { left: -160%; }
    16% { left: 160%; }
    100% { left: 160%; }
}
@media (prefers-reduced-motion: reduce) {
    .shine::after, .hero-status.open, .hero-status.closed { animation: none; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 em {
    color: var(--color-accent-light);
    font-style: italic;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 162, 101, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.hero-scroll .arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ── DETALLES DE DISEÑO ── */
section[id] {
    scroll-margin-top: 80px;
}

.mini-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0.3rem auto 1rem;
}

.mini-divider::before,
.mini-divider::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--color-accent);
    opacity: 0.5;
}

.mini-divider span {
    width: 7px;
    height: 7px;
    background: var(--color-accent);
    transform: rotate(45deg);
}

.product-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(26, 26, 46, 0.82);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: var(--color-white);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
}

.review-stars {
    color: var(--color-accent);
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.visit-hours {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.4rem 0.7rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.hours-row.closed-row {
    opacity: 0.5;
}

.hours-row.today {
    background: rgba(196, 162, 101, 0.14);
    border-color: rgba(196, 162, 101, 0.4);
    opacity: 1;
}

.hours-row.today span:first-child::after {
    content: ' · hoy';
}
html[lang="de"] .hours-row.today span:first-child::after { content: ' · heute'; }
html[lang="en"] .hours-row.today span:first-child::after { content: ' · today'; }
.hours-row.today span:first-child::after {
    color: var(--color-accent-light);
    font-size: 0.72em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── SECTION COMMON ── */
section {
    padding: 6rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 550px;
}

/* ── ABOUT ── */
.about {
    background: var(--color-white);
    position: relative;
}

.about-mts {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: clamp(110px, 17vw, 210px);
    object-fit: fill;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-image img.about-image-inset {
    position: absolute;
    right: -18px;
    bottom: -26px;
    width: 42%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 14px;
    border: 6px solid var(--color-white);
    box-shadow: 0 18px 40px rgba(26, 26, 46, 0.18);
    transform: rotate(4deg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-warm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ── PEDIDOS / EVENTOS ── */
.pedidos {
    background: var(--color-cream);
}

.pedidos-note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(196, 162, 101, 0.5);
    border-radius: 12px;
    background: rgba(196, 162, 101, 0.1);
    color: #8A6A33;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.pedidos-photo {
    position: relative;
    transform: rotate(-2deg);
    background: var(--color-white);
    padding: 12px 12px 16px;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(26, 26, 46, 0.14);
    transition: transform 0.4s ease;
}

.pedidos-photo:hover {
    transform: rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
    .pedidos-photo { transition: none; }
}

.pedidos-photo img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* mantel cuadriculado navy/celeste detras de la foto */
.pedidos-photo-col {
    position: relative;
}

.pedidos-photo-col::before {
    content: '';
    position: absolute;
    inset: 28px -26px -28px 26px;
    border-radius: 20px;
    z-index: -1;
    transform: rotate(3deg);
    background:
        repeating-linear-gradient(0deg, rgba(26, 26, 46, 0.10) 0 12px, transparent 12px 24px),
        repeating-linear-gradient(90deg, rgba(26, 26, 46, 0.10) 0 12px, transparent 12px 24px),
        rgba(150, 218, 248, 0.30);
}

.pedidos-badge {
    position: absolute;
    top: -14px;
    right: -8px;
    transform: rotate(6deg);
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.25);
}

.pedidos-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(26, 26, 46, 0.35);
}

.btn-outline-dark:hover {
    border-color: var(--color-dark);
    background: var(--color-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ── PRODUCTS ── */
.products {
    background: var(--color-cream);
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-header .section-desc {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.product-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ── INSTAGRAM CAROUSEL ── */
.gallery {
    padding: 4rem 0;
    background: var(--color-dark);
    overflow: hidden;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%) scale(1.3);
    width: 100%;
    height: 80%;
    background: url('/img/fondo-mont-white.webp') center bottom/contain no-repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.gallery > * {
    position: relative;
    z-index: 1;
}

.gallery-text {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.gallery-text .section-label {
    color: var(--color-accent-light);
}

.gallery-text .section-title {
    color: var(--color-white);
}

.ig-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ig-track-wrapper {
    overflow: hidden;
    border-radius: 12px;
    cursor: grab;
}

.ig-track-wrapper:active {
    cursor: grabbing;
}

.ig-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.ig-track.dragging {
    transition: none;
}

.ig-slide {
    flex: 0 0 calc(25% - 0.75rem);
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.ig-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ig-slide:hover img {
    transform: scale(1.05);
}

.ig-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.ig-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.ig-slide:hover::after {
    opacity: 1;
}

.ig-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ig-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ig-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}

.ig-dot.active {
    background: var(--color-accent);
}

@media (max-width: 1024px) {
    .ig-slide {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

@media (max-width: 768px) {
    .ig-slide {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .ig-slide {
        flex: 0 0 85%;
    }
    .ig-carousel {
        padding: 0 1rem;
    }
}

/* ── REVIEWS ── */
.reviews {
    background: var(--color-white);
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-header .section-desc {
    margin: 0.5rem auto 0;
}

.stars {
    color: var(--color-accent);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 16px;
    background: var(--color-cream);
    border: 1px solid var(--color-warm);
    transition: all 0.3s;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -1.4rem;
    right: 0.5rem;
    font-family: var(--font-display);
    font-size: 7.5rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.14;
    pointer-events: none;
}

.review-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 40px rgba(196, 162, 101, 0.1);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.review-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-dark);
}

.review-via {
    font-size: 0.7rem;
    color: var(--color-text-light);
}

/* ── VISIT / CONTACT ── */
.visit {
    background: var(--color-dark);
    color: var(--color-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit .section-label {
    color: var(--color-accent-light);
}

.visit .section-title {
    color: var(--color-white);
}

.visit .section-desc {
    color: rgba(255,255,255,0.6);
}

.visit-info {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(196, 162, 101, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.visit-info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-light);
    margin-bottom: 0.25rem;
}

.visit-info-value {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.visit-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

/* ── FOOTER ── */
.footer {
    background: #111122;
    padding: 4rem 2rem 5.5rem;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 46px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-tagline {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 30ch;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-info,
.footer-info a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-links a,
.footer-info a {
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-info a:hover {
    color: var(--color-accent-light);
}

.footer-info {
    line-height: 1.9;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--color-accent);
}


/* ── MATE ACCORDION ── */
.mate-accordion {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
}

.mate-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mate-accordion-toggle:hover {
    background: var(--color-accent);
}

.mate-accordion-toggle .arrow {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.mate-accordion-toggle.open .arrow {
    transform: rotate(180deg);
}

.mate-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border-radius: 0 0 12px 12px;
}

.mate-accordion-content img {
    width: 100%;
    display: block;
    border-radius: 12px;
    margin-top: 1rem;
}

/* ── INSTAGRAM BANNER ── */
.ig-banner {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 150;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.ig-banner.visible {
    bottom: 20px;
}

.ig-banner:hover {
    background: var(--color-accent);
    transform: translateX(-50%) scale(1.05);
}

.ig-banner svg {
    flex-shrink: 0;
}

.ig-banner-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 0 0 0.3rem;
    line-height: 1;
}

.ig-banner-close:hover {
    color: white;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-dark);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 200;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: flex;
        z-index: 201;
    }

    .nav-lang-desktop {
        display: none !important;
    }

    .nav-right .nav-lang-mobile {
        display: flex !important;
    }

    .nav {
        padding: 0.8rem 1rem;
    }

    .nav.scrolled {
        padding: 0.5rem 1rem;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav.scrolled .nav-logo img {
        height: 32px;
    }

    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image {
        order: -1;
        aspect-ratio: 16/10;
    }

    .about-image img.about-image-inset {
        width: 38%;
        right: 6px;
        bottom: -18px;
    }

    .pedidos-photo-col {
        order: -1;
    }

    .pedidos-photo-col::before {
        inset: 18px -12px -18px 12px;
    }

    .pedidos-badge {
        right: 6px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    section {
        padding: 4rem 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

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

/* ── Link a artículo dentro del acordeón del mate ── */
.mate-accordion-link {
    text-align: center;
    padding: 0.75rem 1rem 1.25rem;
}
.mate-accordion-link a {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}
.mate-accordion-link a:hover { color: var(--color-accent-light); }


/* ── Imágenes: nunca más anchas que su caja, alto proporcional (los width/height del HTML evitan saltos) ── */
img { max-width: 100%; height: auto; }
/* Logos: el CSS fija solo la altura, el ancho debe seguir la proporción (si no, el width="560" del HTML los estira) */
.nav-logo img, .footer-logo img { width: auto; }

/* ── Mapa con consentimiento (2 clicks, DSGVO) ── */
.map-consent {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-dark) url('/img/og-terraza.jpg') center/cover no-repeat;
}
.map-consent::before { content: ''; position: absolute; inset: 0; background: rgba(26, 26, 46, 0.8); }
.map-consent-inner { position: relative; padding: 2rem 1.5rem; color: var(--color-white); max-width: 360px; }
.map-consent-pin { font-size: 2rem; margin-bottom: 0.75rem; }
.map-consent-inner p { margin-bottom: 0.75rem; line-height: 1.6; }
.map-consent-note { font-size: 0.8rem; opacity: 0.75; margin-bottom: 1.25rem !important; }
.map-consent-note a { color: var(--color-accent-light); }
.map-consent-link { display: block; margin-top: 1rem; color: var(--color-accent-light); font-size: 0.85rem; text-decoration: none; }
.map-consent-link:hover { color: var(--color-white); }

/* ── Botón de chat con consentimiento (Zipchat se carga al hacer click) ── */
.chat-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 140;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.1rem;
    border: none;
    border-radius: 50px;
    background: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.chat-consent:hover { background: var(--color-blue); transform: translateY(-2px); }
.chat-consent.hidden { display: none; }

/* ── Barra fija móvil (Cómo llegar / Carta) ── */
.mobile-bar {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 145;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: var(--color-dark);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(110%);
    transition: transform 0.35s ease;
}
.mobile-bar.visible { transform: none; }
.mobile-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}
.mobile-bar a.accent { background: var(--color-accent); border-color: var(--color-accent); }
@media (max-width: 768px) {
    .mobile-bar { display: flex; }
    .ig-banner.visible { bottom: 84px; }
    .chat-consent { right: 14px; bottom: 84px; padding: 0.9rem; }
    .chat-consent span { display: none; }
}

/* ── FAQ ── */
.faq { background: var(--color-cream); padding: 6rem 2rem; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-desc { margin: 0 auto; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--color-white); border: 1px solid var(--color-warm); border-radius: 14px; overflow: hidden; }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 1.1rem 3rem 1.1rem 1.4rem;
    font-weight: 600;
    color: var(--color-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.25rem; color: var(--color-text-light); line-height: 1.7; font-size: 0.95rem; }
.faq-answer a { color: var(--color-blue); text-decoration: underline; text-decoration-color: var(--color-accent); text-underline-offset: 2px; }
@media (max-width: 768px) { .faq { padding: 4rem 1.25rem; } }

/* ── Nav en anchos intermedios (tablet horizontal / ventana chica): que entre el ítem "Artículos" sin achicar el logo ── */
.nav-logo { flex-shrink: 0; }
@media (min-width: 769px) and (max-width: 1080px) {
    .nav-links { gap: 1.1rem; }
    .nav-links a { font-size: 0.74rem; letter-spacing: 0.03em; }
    .nav-lang { gap: 0.35rem; }
    .nav-lang a { width: 24px; height: 24px; }
}
