﻿:root {
    --primary-color: #333;
    --accent-color: #e31837; /* Rojo vibrante para el ambiente de vino */
    --text-color: #555;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-color: #eaeaea;
    --radius: 12px;
}

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

html {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-spacing {
    margin-top: 80px;
    margin-bottom: 80px;
}

/* Mejoras TipogrÃ¡ficas */
h1, h2, h3, h4, .playfair {
    font-family: 'Playfair Display', serif;
    color: #111;
}

/* Barra Superior (Topbar) */
.topbar {
    background-color: #444;
    color: var(--white);
    font-size: 11px;
    padding: 2px 0;
    text-align: center;
    letter-spacing: 1px;
    text-transform: none;
}

/* Header */
.main-header {
    background: var(--white);
    padding: 10px 0 0;
    border-bottom: 1px solid var(--border-color);
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 33%;
}
.customer-icon {
    font-size: 32px;
    color: var(--accent-color);
}
.customer-text {
    display: flex;
    flex-direction: column;
}
.customer-text .title {
    color: #666;
    font-size: 12px;
    text-transform: none;
    letter-spacing: normal;
}
.customer-text .phone {
    font-weight: bold;
    color: #000;
    font-size: 13px;
}

.header-center {
    width: 33%;
    text-align: center;
}

.header-right {
    width: 33%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}
.header-right a {
    font-size: 20px;
    color: #000;
    position: relative;
}
.wishlist-icon .badge {
    position: absolute;
    top: -5px; right: -8px;
    background: var(--accent-color);
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    padding: 2px 5px;
    font-weight: normal;
}

/* Nav */
.main-nav {
    border-top: 1px solid var(--border-color);
}
.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.nav-links li a {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 13px;
    color: #000;
    text-transform: none;
    letter-spacing: normal;
}
.nav-links li a:hover {
    color: var(--accent-color);
}

/* Slider Principal */
.hero-banner {
    width: 100%;
    padding: 0;
    position: relative;
}
.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-text {
    color: white;
    transform: translateY(20px);
    transition: transform 0.8s ease;
}
.slide.active .hero-text {
    transform: translateY(0);
}
.hero-text h2 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Controles del Slider */
.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.slider-prev:hover, .slider-next:hover {
    background: rgba(0,0,0,0.8);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active {
    background: white;
}

/* Botones */
.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 24, 55, 0.4);
    color: white;
}
.btn-outline {
    background: transparent;
    color: #111;
    border: 2px solid #111;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
}
.product-card:hover .btn-outline {
    opacity: 1;
    transform: translateY(0);
}
.btn-outline:hover {
    background: #111;
    color: white;
}

/* Promociones */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.promo-card {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.hover-zoom {
    transition: transform 0.4s;
}
.hover-zoom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.light-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: #111;
    flex-direction: column;
}
.promo-logo {
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}
.promo-content h3 {
    font-size: 28px;
    letter-spacing: 2px;
    color: white;
}
.promo-content p {
    font-size: 16px;
    font-style: italic;
    opacity: 0.9;
}
.light-card h3 {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    padding: 0 20px;
}

/* Productos */
.main-title h2 {
    font-size: 32px;
}
.subtitle {
    color: #777;
    margin-top: 10px;
    font-size: 16px;
}

.tabs {
    margin-bottom: 40px;
}
.tab {
    font-size: 20px;
    color: #999;
    margin: 0 20px;
    cursor: pointer;
    padding-bottom: 5px;
    transition: all 0.3s;
}
.tab.active {
    color: #111;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
}
.tab:hover {
    color: #111;
}

.product-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s;
}
.product-card:hover {
    border-color: var(--border-color);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.badge-sale {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--accent-color);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
}
.prod-img {
    height: 300px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.prod-name {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
    min-height: 45px;
}
.prod-price {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-bottom: 15px;
}
.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: normal;
    margin-right: 5px;
}

/* CuadrÃ­cula de Bloques */
.blocks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.modern-block {
    border-radius: var(--radius);
    padding: 40px 20px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.modern-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.block-text {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.italic-serif {
    font-style: italic;
}
.block-icon {
    font-size: 60px;
    opacity: 0.8;
}
.block-divider {
    font-size: 40px;
    opacity: 0.3;
}

/* Recomendador */
.rec-card {
    background: linear-gradient(135deg, #e6f4fc 0%, #dcf0fa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
.rec-content {
    padding: 80px;
    width: 50%;
    z-index: 2;
}
.rec-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}
.rec-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}
.rec-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.rec-image img {
    width: 90%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* CuadrÃ­cula del Pie de pÃ¡gina */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
}

/* Adaptabilidad (Responsive) */
@media (max-width: 992px) {
    .promo-grid, .blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .rec-card {
        flex-direction: column;
    }
    .rec-content {
        width: 100%;
        padding: 40px;
        text-align: center;
    }
    .rec-image {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .header-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-left, .header-center, .header-right {
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    .nav-links li a {
        border-bottom: 1px solid #eee;
    }
    .promo-grid, .blocks-grid, .product-row {
        grid-template-columns: 1fr;
    }
    .footer-center {
        border: none;
        padding: 40px 0;
    }
}

/* Desplegable de Idiomas */
.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}
.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    padding: 5px;
    transition: color 0.3s;
}
.lang-btn:hover {
    color: var(--accent-color);
}
.lang-btn img {
    width: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.lang-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    min-width: 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}
.lang-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.lang-content a img {
    width: 18px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.lang-content a:hover {
    background-color: #f7f7f7;
    color: var(--accent-color);
}
.lang-dropdown:hover .lang-content {
    display: block;
}

/* Cuatro Bloques de CategorÃ­as (Original) */
.four-blocks-original {
    width: 100%;
}
.blocks-grid-original {
    display: flex;
    width: 100%;
    height: 380px;
}
.block-orig {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s;
}
.block-orig:hover {
    opacity: 0.9;
}
.block-orig-text {
    padding: 0 40px;
    z-index: 2;
}
.block-orig-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}
.curly-divider {
    font-family: serif;
    font-size: 30px;
    margin-top: 15px;
    color: #555;
}

/* Recomendador (Original) */
.recommender-original {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.rec-content-orig {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}
.rec-content-orig h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 600;
}
.rec-content-orig p {
    font-size: 19px;
    color: #444;
    margin-bottom: 35px;
    line-height: 1.5;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.btn-rec-black {
    background: #222;
    color: #fff;
    padding: 15px 30px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    transition: background 0.3s;
}
.btn-rec-black:hover {
    background: #000;
    color: #fff;
}

/* Dropdown Menus */
.nav-links li {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    z-index: 100;
    padding: 20px;
    min-width: 220px;
}
.nav-links li.has-dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dropdown-menu ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #f5f5f5;
}
.dropdown-menu ul li:last-child {
    border-bottom: none;
}
.dropdown-menu ul li a {
    display: block !important;
    padding: 12px 0 !important;
    font-size: 14px !important;
    color: #555 !important;
    font-weight: normal !important;
    text-transform: none !important;
    border: none !important;
}
.dropdown-menu ul li a:hover {
    color: var(--accent-color) !important;
}

/* Wide Dropdown for Destilados */
.dropdown-menu.wide {
    min-width: 450px;
}
.nav-links li.has-dropdown:hover .dropdown-menu.wide {
    display: flex;
    gap: 40px;
}
.dropdown-menu.wide ul {
    flex: 1;
}

/* Mega Dropdown for Vinos */
.dropdown-menu.mega {
    min-width: 650px;
}
.nav-links li.has-dropdown:hover .dropdown-menu.mega {
    display: flex;
    gap: 40px;
    align-items: center;
}
.dropdown-menu.mega ul {
    flex: 1;
}
.mega-image {
    flex: 1.5;
    text-align: center;
}
.mega-image img {
    max-width: 150px;
    opacity: 0.9;
}

/* Footer Styles */
.main-footer {
    margin-top: auto;
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    padding-top: 60px;
    padding-bottom: 20px;
}
.footer-left h3 {
    margin-bottom: 15px;
}
.footer-center {
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    padding: 0 40px;
}
.footer-right {
    text-align: right;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}
.footer-links ul li a:hover {
    color: var(--accent-color);
}
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #eaeaea;
    padding-top: 20px;
    font-size: 12px;
    color: #999;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.whatsapp-float:hover {
    transform: translateY(-5px);
}
.whatsapp-float i {
    background-color: #25d366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    margin: 0;
}
.whatsapp-float .wa-text {
    color: #25d366;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    margin-top: 5px;
}

/* Policy Pages */
.policy-page {
    background-color: #f9f9f9;
    padding: 60px 0;
}
.policy-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 60px 80px;
    margin: 0 auto;
    max-width: 900px;
}
.policy-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #222;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}
.policy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}
.policy-content {
    font-family: 'Lato', sans-serif;
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}
.policy-content h2, .policy-content h3, .policy-content h4 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}
.policy-content h2 { font-size: 24px; }
.policy-content h3 { font-size: 20px; }
.policy-content p {
    margin-bottom: 20px;
}
.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.policy-content li {
    margin-bottom: 10px;
}
/* =========================================================================
   Mobile Responsiveness Overrides
   ========================================================================= */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 992px) {
    .header-grid {
        flex-wrap: wrap;
        padding-top: 10px;
    }
    .header-left {
        display: none !important; /* Hide customer service phone on mobile to save space */
    }
    .header-center {
        order: -1;
        flex: 1;
        text-align: left;
    width: auto !important;
    }
    .header-right {
        flex: 1;
        justify-content: flex-end;
    width: auto !important;
    }
    .topbar {
        font-size: 10px; /* Make topbar text smaller */
        padding: 5px 0;
    }
    .mobile-menu-btn {
        display: block !important;
    }
    .nav-links {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        width: 100%;
        gap: 0;
        background: #fff;
    }
    .nav-links.active {
        display: flex; /* Shown when toggled */
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links li a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        display: block;
    }
    .has-dropdown:hover .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        display: flex; flex-direction: column; opacity: 1; visibility: visible; /* Show submenus inline */
    }
    .slide-content h2 {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
    .slide-content p {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    .hero-banner {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .dropdown-menu {
        position: static !important;
        display: flex !important;
        flex-direction: column;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .mega-image {
        display: none !important;
    }
    .dropdown-menu ul {
        margin-bottom: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }
    .dropdown-menu ul li a {
        padding: 10px 30px !important;
        font-size: 14px;
        background: #fafafa;
        text-align: left;
    }
    .nav-links li.has-dropdown > a {
        font-weight: bold;
    }
}

@media (max-width: 992px) {
    .header-center {
        text-align: left !important;
        display: block !important;
    }
}

@media (max-width: 768px) {
    .blocks-grid-original {
        flex-direction: column;
        height: auto;
    }
    .block-orig {
        width: 100%;
        height: 250px;
        flex: none;
        background-position: center center;
    }
}

@media (max-width: 768px) {
    .rec-content-orig {
        width: 100%;
        padding: 40px 20px;
        background: rgba(255, 255, 255, 0.6); /* Slight overlay so text is readable over image */
    }
    .rec-content-orig h2 {
        font-size: 32px;
    }
    .recommender-original {
        height: auto;
        background-position: right center;
    }
}

@media (max-width: 992px) {
    .slider-container {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .section-spacing {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }
}

/* =========================================================================
   Cookie Banner
   ========================================================================= */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.cookie-banner.show {
    opacity: 1;
    visibility: visible;
}
.cookie-banner-content {
    background-color: #fff;
    color: #333;
    max-width: 600px;
    width: 90%;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
}
.cookie-banner p {
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #555;
}
.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.cookie-btn-accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 35px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 14px;
}
.cookie-btn-accept:hover {
    background-color: #d1567a;
}
.cookie-btn-info {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}
.cookie-btn-info:hover {
    background-color: #e5e5e5;
}
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
}
/* Contact Page */
.contact-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-block {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.contact-info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}
.contact-info-block p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #f3779e;
    color: #f3779e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.contact-method-text strong {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 3px;
}
.contact-method-text span {
    color: #666;
    font-size: 15px;
}
.contact-form-block {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.contact-form-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}
.contact-form-block p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}
.form-control:focus {
    border-color: #f3779e;
    outline: none;
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-weight: bold;
}
.btn-submit:hover {
    background: #f3779e;
}
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: left;
}
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

/* Sobre Nosotros */
.about-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}
.about-header {
    text-align: center;
    margin-bottom: 60px;
}
.about-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #111;
    margin-bottom: 15px;
}
.about-header p {
    color: #666;
    font-size: 18px;
}
.about-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}
.about-block:nth-child(even) {
    flex-direction: row-reverse;
}
.about-text {
    flex: 1;
}
.about-image {
    flex: 1;
    position: relative;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    object-fit: cover;
    max-height: 500px;
}
.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f3779e;
}
.about-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
}
@media (max-width: 768px) {
    .about-block, .about-block:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-text {
        text-align: center;
    }
}

.about-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #111;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}
.about-text h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f3779e;
}

/* Sub Dropdown Menu for level 3 */
.has-sub-dropdown {
    position: relative;
}
.sub-dropdown-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    z-index: 105;
    padding: 0 !important;
    min-width: 200px;
    margin: 0;
    list-style: none;
}
.has-sub-dropdown:hover > .sub-dropdown-menu {
    display: block;
}
.sub-dropdown-menu li {
    border-bottom: 1px solid #f5f5f5;
    margin-bottom: 0;
}
.sub-dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-menu .sub-dropdown-menu li a {
    padding: 12px 20px !important;
}

@media (max-width: 992px) {
    .sub-dropdown-menu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        background: #f2f2f2 !important;
    }
    .dropdown-menu .sub-dropdown-menu li a {
        padding-left: 50px !important;
        border-bottom: 1px solid #e0e0e0 !important;
    }
}

.has-sub-dropdown:hover > a {
    color: var(--accent-color) !important;
}
