/* --- 1. ESTILOS BASE & FONDO --- */
:root {
    --brand-color: #A1488E;
    --brand-dark: #7a356b;
    --brand-light: #d29ec7;
    --rating-color: #fbbf24; /* Amarillo para estrellas */
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --text-main: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    padding-bottom: 0;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

.premium-bg {
    position: fixed; inset: 0; z-index: -1;
    /* Fondo claro con destellos sutiles de la marca */
    background: radial-gradient(circle at 60% 20%, rgba(161, 72, 142, 0.08), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(161, 72, 142, 0.05), transparent 50%),
    #ffffff;
}



.nav-title { font-family: 'Playfair Display', serif; font-weight: 700; letter-spacing: 1px; color: var(--brand-color); }


/* --- 3. HERO SECTION & BOTELLA --- */
.hero-section { position: relative; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; text-align: center; }

.bottle-stage {
    position: relative; width: 100%; height: 380px; max-height: 380px; display: flex; justify-content: center;
    margin-bottom: 30px; z-index: 1;
}
.bottle-img-wrapper {
    position: relative; height: 100%; width: auto;
    animation: floatGentle 6s ease-in-out infinite;
}
@keyframes floatGentle { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.bottle-img-wrapper img { height: 100%; width: auto; max-height: 380px; object-fit: contain; }

/* BOTÓN VER GALERÍA SOBRE LA IMAGEN */
.gallery-overlay-btn {
    position: absolute; bottom: 20px; right: 10px; z-index: 10;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    color: var(--brand-color); padding: 8px 16px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
    border: 1px solid rgba(161, 72, 142, 0.2); cursor: pointer; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.gallery-overlay-btn:hover { background: var(--brand-color); color: #fff; border-color: var(--brand-color); }

/* INFO VINO */
.winery-label {
    color: var(--brand-color); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: inline-block;
}
.wine-title {
    font-family: 'Playfair Display', serif; font-size: 2.8rem;
    line-height: 1.1; margin-bottom: 15px; color: var(--text-main);
}
.wine-tags { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }

.tag-pill {
    background: #ffffff; border: 1px solid var(--border-color);
    padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* --- 4. ACCIONES (Favorito y Precio) --- */
.actions-wrapper { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; align-items: center; margin-bottom: 40px; }

.fav-btn-large {
    width: 60px; height: 60px; border-radius: 50%;
    background: #ffffff; border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; cursor: pointer; transition: 0.3s; color: var(--brand-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.fav-btn-large.active {
    color: #ef4444; border-color: rgba(239, 68, 68, 0.3);
    background: #fef2f2; box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}
.fav-btn-large:active { transform: scale(0.95); }

.price-display {
    background: linear-gradient(135deg, var(--brand-color) 0%, var(--brand-dark) 100%);
    color: #ffffff; font-weight: 800; font-size: 1.3rem;
    padding: 16px 36px; border-radius: 50px;
    box-shadow: 0 10px 25px rgba(161, 72, 142, 0.3);
    display: flex; align-items: center; gap: 10px;
}

/* --- 5. PESTAÑAS (TABS) --- */
.tabs-nav {
    display: flex; justify-content: center;
    border-bottom: 1px solid var(--border-color); margin-bottom: 35px;
}
.tab-link {
    padding: 15px 30px; color: var(--text-secondary); font-weight: 600;
    cursor: pointer; position: relative; transition: 0.3s;
}
.tab-link.active { color: var(--brand-color); }
.tab-link.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 3px;
    background: var(--brand-color); box-shadow: 0 -2px 10px rgba(161, 72, 142, 0.3);
}
.tab-pane { display: none; animation: slideUp 0.4s ease; padding: 0 20px; max-width: 900px; margin: 0 auto; }
.tab-pane.active { display: block; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- VARIEDADES DE UVA --- */
.uvas-section {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 22px 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.uvas-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.uvas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.uva-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--uva-color) 12%, white);
    border: 1.5px solid color-mix(in srgb, var(--uva-color) 40%, transparent);
    border-radius: 50px;
    padding: 6px 14px 6px 10px;
}

.uva-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--uva-color);
    flex-shrink: 0;
}

.uva-nombre {
    font-size: 0.9rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--uva-color) 70%, #1e293b);
}

.uva-pct {
    font-size: 0.78rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--uva-color) 60%, #64748b);
    background: color-mix(in srgb, var(--uva-color) 18%, white);
    padding: 1px 7px;
    border-radius: 20px;
}

/* --- 6. CONTENIDO FICHA TÉCNICA --- */
.tasting-note-box {
    background: #ffffff; padding: 24px 30px; border-radius: 24px;
    border: 1px solid var(--border-color); margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.note-text { line-height: 1.8; color: var(--text-secondary); font-style: italic; text-align: center; font-size: 1.05rem; margin: 0; }

.specs-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 14px; margin-bottom: 40px; }
.spec-box {
    background: #f8fafc; padding: 20px; border-radius: 16px;
    border: 1px solid var(--border-color); text-align: center;
}
.spec-title { color: var(--text-secondary); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
.spec-data { color: var(--text-main); font-weight: 700; font-size: 1.1rem; }

/* PEQUEÑA GALERÍA EN FICHA */
.mini-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-top: 30px; }
.mini-gallery .image-protected-wrapper { display: block; width: 100%; height: 100px; line-height: 0; overflow: hidden; border-radius: 12px; border: 1px solid transparent; transition: border-color 0.3s; }
.mini-gallery .image-protected-wrapper:hover { border-color: var(--brand-color); }
.mini-gallery .image-protected-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
/* Mantiene el hover de escala solo en el wrapper para que el shield no lo bloquee */
.mini-gallery .image-protected-wrapper:hover img { transform: scale(1.05); transition: transform 0.3s; }

/* --- 6b. FICHA TÉCNICA PREMIUM --- */

/* Card genérica para cada sección */
.ficha-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.ficha-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ficha-card__title i {
    color: var(--brand-color);
    font-size: 1rem;
}

/* Composición visual de uvas */
.uvas-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.uvas-bar {
    display: flex;
    height: 14px;
    border-radius: 10px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}
.uvas-bar__segment {
    height: 100%;
    transition: width 0.6s ease;
    position: relative;
}
.uvas-bar__segment:first-child { border-radius: 10px 0 0 10px; }
.uvas-bar__segment:last-child  { border-radius: 0 10px 10px 0; }
.uvas-bar__segment:only-child  { border-radius: 10px; }

/* Spec boxes con icono circular */
.spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(161, 72, 142, 0.1), rgba(161, 72, 142, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--brand-color);
    font-size: 1rem;
    flex-shrink: 0;
}
.spec-box .spec-icon + .spec-title {
    margin-top: 0;
}
.spec-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin-top: 2px;
    font-weight: 500;
}

/* Badge de certificación */
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.02));
    border: 1.5px solid rgba(34, 197, 94, 0.25);
    border-radius: 16px;
    padding: 12px 20px;
    margin-top: 16px;
}
.cert-badge i {
    color: #16a34a;
    font-size: 1.1rem;
}
.cert-badge__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #64748b;
    font-weight: 700;
    line-height: 1;
}
.cert-badge__value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #15803d;
    line-height: 1.2;
}

/* Maridaje */
.ficha-card--maridaje {
    background: linear-gradient(135deg, rgba(161, 72, 142, 0.04), rgba(161, 72, 142, 0.01));
    border-color: rgba(161, 72, 142, 0.12);
}
.maridaje-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.maridaje-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(161, 72, 142, 0.25);
}
.maridaje-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border-left: 3px solid var(--brand-light);
}

/* Empty state dentro de ficha */
.ficha-empty {
    text-align: center;
    padding: 30px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}
.ficha-empty i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.25;
    color: var(--brand-color);
}

/* Comillas tipográficas */
.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1;
    color: var(--brand-light);
    opacity: 0.6;
    user-select: none;
}
.quote-mark--open {
    text-align: left;
    margin-bottom: -8px;
}
.quote-mark--close {
    text-align: right;
    margin-top: -8px;
}

/* --- 7. ESTILOS DE RESEÑAS (PREMIUM) --- */
.reviews-summary-card {
    display: flex; align-items: center; justify-content: center; gap: 25px;
    background: rgba(161, 72, 142, 0.05); padding: 30px; border-radius: 24px; margin-bottom: 40px;
    border: 1px solid rgba(161, 72, 142, 0.1);
}
.summary-score { font-size: 4rem; font-weight: 900; color: var(--brand-color); line-height: 1; }
.summary-stars { color: var(--rating-color); font-size: 1.3rem; margin-bottom: 5px; }

/* Formulario */
.review-form-wrapper {
    background: #ffffff; border: 1px solid var(--border-color);
    border-radius: 24px; padding: 30px; margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.form-heading { text-align: center; font-family: 'Playfair Display', serif; margin-bottom: 20px; font-size: 1.5rem; color: var(--text-main); }
.star-rating-input { display: flex; justify-content: center; gap: 12px; margin-bottom: 25px; }
.star-rating-input i { font-size: 36px; color: #e2e8f0; cursor: pointer; transition: 0.2s; }
.star-rating-input i.active, .star-rating-input i:hover { color: var(--rating-color); transform: scale(1.15); filter: drop-shadow(0 0 10px rgba(251,191,36,0.3)); }

.review-textarea {
    width: 100%; background: #f8fafc; border: 2px solid var(--border-color);
    border-radius: 16px; padding: 18px; color: var(--text-main); font-family: 'Inter', sans-serif;
    resize: none; font-size: 1rem; outline: none; transition: 0.3s;
}
.review-textarea:focus { border-color: var(--brand-color); background: #ffffff; }

.submit-review-btn {
    width: 100%; margin-top: 20px;
    background: linear-gradient(135deg, var(--brand-color), var(--brand-dark));
    color: #ffffff; border: none; padding: 18px; border-radius: 16px;
    font-weight: 800; text-transform: uppercase; letter-spacing: 1px; font-size: 1rem;
    cursor: pointer; transition: 0.3s; box-shadow: 0 10px 30px rgba(161, 72, 142, 0.2);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.submit-review-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(161, 72, 142, 0.4); }

/* Lista de Reseñas */
.review-item {
    background: #ffffff; padding: 25px; border-radius: 20px;
    border: 1px solid var(--border-color); margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.review-meta { display: flex; justify-content: space-between; margin-bottom: 10px; }
.review-author { font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.review-time { color: var(--text-secondary); font-size: 0.85rem; }
.review-rating-stars { color: var(--rating-color); font-size: 0.9rem; margin-bottom: 10px; }
.review-text { color: var(--text-secondary); line-height: 1.6; font-style: italic; }

/* --- 7b. PROTECCIÓN DE IMÁGENES --- */
.protected-image {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: none;
}
/* Base neutral — no impone dimensiones; cada contexto las redefine abajo */
.image-protected-wrapper {
    position: relative;
    display: block;
    line-height: 0;
    -webkit-touch-callout: none;
    user-select: none;
}
.image-protected-wrapper::after {
    content: '© Vinitácora';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-25deg);
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
    white-space: nowrap;
    letter-spacing: 4px;
}
.image-shield {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    background: transparent;
    cursor: default;
    -webkit-touch-callout: none;
    user-select: none;
}

/* Bottle hero — preserva las dimensiones originales de .bottle-img-wrapper */
.bottle-img-wrapper .image-protected-wrapper {
    display: block;
    width: auto;
    height: 100%;
    max-height: 380px;
}
.bottle-img-wrapper .image-protected-wrapper img {
    height: 100%;
    width: auto;
    max-height: 380px;
    object-fit: contain;
}

/* --- 8. LIGHTBOX (VISOR GALERÍA) --- */
.lightbox {
    position: fixed; inset: 0; z-index: 5000; background: rgba(0,0,0,0.95);
    display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px);
}
.lightbox.active { display: flex; animation: fadeIn 0.3s; }
.lb-close { position: absolute; top: 30px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; z-index: 5001; }
.lb-nav-btn {
    position: absolute; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5);
    font-size: 50px; padding: 20px; cursor: pointer; transition: 0.3s; z-index: 5001;
}
.lb-nav-btn:hover { color: var(--brand-color); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; border-radius: 12px; box-shadow: 0 0 50px rgba(0,0,0,0.5); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- 9. RESPONSIVE --- */
/* Mobile first — evita empalmes en pantallas pequeñas */
/* ── Span del sub-texto de notas en el formulario ── */
.form-heading-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    font-family: inherit;
    margin-top: 4px;
}

@media(max-width: 480px) {
    .wine-title { font-size: 2rem; }
    .price-display { font-size: 1.1rem; padding: 13px 24px; }
    .fav-btn-large { width: 52px; height: 52px; font-size: 22px; }
    .actions-wrapper { gap: 10px; }
    .tab-link { padding: 12px 18px; font-size: 0.85rem; }
    .specs-container { grid-template-columns: 1fr 1fr; gap: 10px; }
    .spec-box { padding: 14px 10px; }
    .ficha-card { padding: 20px 16px; }
    .uvas-list { gap: 6px; }
    /* Formulario de notas más compacto en móvil */
    .form-heading { font-size: 1.15rem; }
    .submit-review-btn { padding: 13px; font-size: 0.875rem; }
    .review-form-wrapper { padding: 20px 16px; }
}

@media(min-width: 768px) {
    .hero-section { flex-direction: row; text-align: left; max-width: 1000px; margin: 40px auto; justify-content: center; gap: 80px; }
    .bottle-stage { height: 500px; width: auto; margin-bottom: 0; }
    .wine-tags, .actions-wrapper { justify-content: flex-start; }
    .tasting-note-box { padding: 40px; } .note-text { font-size: 1.2rem; }
    .specs-container { grid-template-columns: repeat(4, 1fr); }
    .gallery-overlay-btn { right: auto; left: 50%; transform: translateX(-50%); bottom: 30px; }
}

/* --- NAVBAR MEJORADO --- */
.navbar {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center; /* Centra verticalmente los elementos en el eje Y */
    justify-content: center;
    padding: 0 20px;     /* Solo padding lateral, el vertical lo da el height y align-items */
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 70px;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-icon-btn {
    width: 38px;         /* Bajamos de 42px a 38px para dar más aire */
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Evita que el botón se estire */
    align-self: center;
}
.nav-icon-btn i {
    font-size: 18px;
    color: #ffffff;
}

.nav-icon-btn:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    transform: scale(1.1);
}

/* Alineación de los botones */
.nav-icon-btn:first-child { justify-self: start; }
.nav-icon-btn:last-child { justify-self: end; }

/* --- LOGO RESPONSIVE --- */
.logo { display: flex; justify-content: center; align-items: center; justify-self: center; }
.logo-img { height: 35px; width: auto; object-fit: contain; transition: all 0.3s ease; }
@media (min-width: 768px) {
    .navbar {
        padding: 20px 40px;
    }
    .logo-img { height: 50px; }
}

/* ══════════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════════ */

.site-footer {
    background: #000000;
    color: rgba(255, 255, 255, 0.8);
    padding: 52px 24px 44px;
    margin-top: 40px;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

/* ── Bloque genérico ── */
.footer-block {
    display: flex;
    flex-direction: column;
}

/* ── Identidad ── */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-home-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--brand-light);
    text-decoration: none;
    border-bottom: 1px solid rgba(209, 158, 199, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    width: fit-content;
}

.footer-home-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* ── Títulos de bloque ── */
.footer-block-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

/* ── Redes sociales ── */
.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.footer-social-btn:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Soporte ── */
.footer-support-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.83rem;
    line-height: 1.5;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.footer-support-btn:hover {
    background: rgba(161, 72, 142, 0.22);
    border-color: rgba(161, 72, 142, 0.5);
    color: #fff;
}

.footer-support-btn > i {
    font-size: 1.15rem;
    color: var(--brand-light);
    flex-shrink: 0;
    transition: color 0.25s;
}

.footer-support-btn:hover > i {
    color: #fff;
}

.footer-support-btn strong {
    color: #fff;
    font-weight: 700;
}

/* ── Copyright ── */
.footer-copyright {
    max-width: 1100px;
    margin: 36px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    letter-spacing: 0.4px;
}

/* ── Responsivo: apilado centrado en móvil ── */
@media (max-width: 768px) {
    .site-footer {
        display: none;
    }

    .site-footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-home-link {
        margin: 0 auto;
    }

    .footer-support-btn {
        text-align: left;
    }
}

body.vino-detalle-page .premium-bg {
    background: #ffffff;
}
