/* ==========================================================================
   🎨 LA MANUELA MEZCAL - MODERN DESIGN SYSTEM (DARK & NEON PURPLE THEME)
   ========================================================================== */

/* --- 1. Font Definitions --- */
@font-face {
    font-family: 'MADE Tommy';
    src: url('../tipografias/11zon_MADE-TOMMY-Regular_PERSONAL-USE.eot');
    src: url('../tipografias/11zon_MADE-TOMMY-Regular_PERSONAL-USE.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MADE Tommy';
    src: url('../tipografias/11zon_MADE-TOMMY-Bold_PERSONAL-USE.eot');
    src: url('../tipografias/11zon_MADE-TOMMY-Bold_PERSONAL-USE.eot?#iefix') format('embedded-opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* --- 2. CSS Custom Properties --- */
:root {
    /* Color Palette */
    --bg-dark: #070311;
    --bg-darker: #030107;
    --bg-card: rgba(15, 8, 30, 0.65);
    
    --purple-neon: #9d4edd;
    --purple-neon-bright: #c77dff;
    --purple-deep: #5a189a;
    --purple-dark: #240046;
    
    --accent-gold: #d4af37;
    --text-primary: #ffffff;
    --text-secondary: #c5b9df;
    --text-muted: #7e709b;
    
    /* Glimmer Colors for Flavors */
    --glow-espadin: rgba(0, 180, 216, 0.4);
    --glow-mango: rgba(255, 159, 28, 0.4);
    --glow-sandia: rgba(255, 0, 127, 0.4);
    --glow-tamarindo: rgba(212, 175, 55, 0.4);
    --glow-maracuya: rgba(255, 193, 7, 0.4);

    /* Fonts */
    --font-heading: 'MADE Tommy', 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'MADE Tommy', 'Poppins', sans-serif;
    
    /* Layout */
    --header-height: 160px;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- 3. Base Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- 4. Utilities --- */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 100px 20px;
}

.text-center {
    text-align: center;
}

.purple-neon-text {
    color: var(--purple-neon-bright);
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.6), 0 0 20px rgba(157, 78, 221, 0.4);
}

/* --- 5. Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-neon) 0%, var(--purple-deep) 100%);
    color: var(--text-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(157, 78, 221, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.btn-secondary:hover {
    background: rgba(157, 78, 221, 0.15);
    border-color: var(--purple-neon);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--purple-neon);
}

.btn-outline:hover {
    background: var(--purple-neon);
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--purple-neon);
    transform: translateY(-3px);
}

.btn-glow-purple:hover {
    box-shadow: 0 0 20px var(--purple-neon), 0 0 40px rgba(157, 78, 221, 0.5);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ==========================================
   🔞 AGE VERIFICATION POPUP (TRANSLUCID)
   ========================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 3, 17, 0.55);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.popup-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 78, 221, 0.25);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(157, 78, 221, 0.1);
}

.popup-logo-container {
    width: 120px;
    margin: 0 auto 24px;
}

.popup-logo {
    width: 100%;
    height: auto;
}

.popup-card h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.popup-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 24px;
}

.popup-disclaimer {
    font-size: 0.75rem !important;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0 !important;
}

/* ==========================================
   🧭 NAVIGATION HEADER
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: #030107;
    border-bottom: 1px solid rgba(157, 78, 221, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.header-solid {
    background-color: #030107 !important;
    border-bottom: 1px solid rgba(157, 78, 221, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: block;
    width: 190px;
    transition: width 0.3s ease;
}

.header-logo {
    width: 100%;
    height: auto;
    max-height: 145px;
    object-fit: contain;
    transition: max-height 0.3s ease;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--purple-neon);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.4);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    padding: 4px;
    text-decoration: none;
}

.lang-btn.active, .lang-btn:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: rgba(157, 78, 221, 0.3);
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* Burger menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
    padding: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Slidein Mobile Navigation Menu */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-darker);
    border-left: 1px solid rgba(157, 78, 221, 0.2);
    z-index: 999;
    padding: 120px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    display: block;
}

.mobile-link.active, .mobile-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px var(--purple-neon);
}

.mobile-lang-switcher {
    margin-top: auto;
    display: flex;
    gap: 15px;
    font-size: 1rem;
    font-weight: bold;
}

/* ==========================================
   🚀 HERO SECTION (VIDEO BACKGROUND)
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 3, 17, 0.2) 0%, rgba(7, 3, 17, 0.85) 100%),
                linear-gradient(0deg, rgba(7, 3, 17, 1) 0%, rgba(7, 3, 17, 0) 25%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    z-index: 3;
}

.hero-right-content {
    padding-left: 40px;
    text-align: right;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.hero-audio-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(15, 8, 30, 0.7);
    border: 1px solid var(--purple-neon);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
    transition: var(--transition);
}

.hero-audio-btn:hover {
    background: var(--purple-neon);
    box-shadow: 0 0 15px var(--purple-neon);
    transform: scale(1.1);
}

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-down span {
    display: block;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid var(--text-secondary);
    border-right: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    margin: -5px;
    animation: animate-arrows 2s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: -0.2s;
}
.scroll-down span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate-arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

/* ==========================================
   👁️ DISCOVER SECTION (3 PILLARS)
   ========================================== */
.discover-section {
    background-color: var(--bg-darker);
    padding: 100px 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}

.discover-title-main {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.discover-subtitle-main {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 1.6;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.discover-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 78, 221, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.discover-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-neon);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.15), inset 0 0 15px rgba(157, 78, 221, 0.05);
}

.discover-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.08em;
}

.discover-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================
   🎬 INTERSTITIAL VIDEO SECTION
   ========================================== */
.interstitial-section {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.interstitial-section .bg-video {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    z-index: 1;
}

.interstitial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 3, 17, 0.65);
    z-index: 2;
}

.interstitial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    padding: 20px;
    width: 100%;
}

.interstitial-heading {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    color: white;
    text-shadow: 0 0 15px var(--purple-neon), 0 0 30px rgba(157, 78, 221, 0.5);
    transition: opacity 1.5s ease;
}

.interstitial-heading.is-fading {
    opacity: 0;
}

/* ==========================================
   🛍️ PRODUCT GRID / SPLIT SECTION (HOME)
   ========================================== */
.products-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.product-row-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    display: none;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img-wrap {
    height: 320px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    z-index: 2;
    transition: var(--transition);
    background: radial-gradient(circle, var(--flavor-glow) 0%, rgba(7, 3, 17, 0) 70%);
}

.product-card:hover .product-img-wrap {
    transform: scale(1.08) rotate(2deg);
    background: radial-gradient(circle, var(--flavor-glow) 0%, rgba(7, 3, 17, 0) 80%);
}

.product-bottle-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.product-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: white;
    z-index: 2;
}

.product-card .btn {
    z-index: 2;
    width: 100%;
}

/* ==========================================
   🏆 AWARDS SECTION (RECONOCIDOS POR BUENOS)
   ========================================== */
.awards-section {
    background-color: var(--bg-darker);
    padding: 100px 0;
    border-top: 1px solid rgba(157, 78, 221, 0.1);
    border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    overflow: hidden;
}

.awards-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
}

.awards-carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.awards-carousel-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gradient overlays on left and right for seamless look */
.awards-carousel-container::before,
.awards-carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.awards-carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darker) 0%, rgba(3, 1, 7, 0) 100%);
}

.awards-carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darker) 0%, rgba(3, 1, 7, 0) 100%);
}

.awards-carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.awards-carousel-container:hover .awards-carousel-track {
    animation-play-state: paused;
}

.awards-set {
    display: flex;
    gap: 80px;
    padding-right: 80px; /* Seamless gap between sets */
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    width: 220px; /* Fixed width for uniform ticker */
}

.award-medal {
    width: 180px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.3s ease;
}

.award-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    white-space: nowrap;
}

/* Hover effects */
.award-item:hover .award-medal {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 10px 20px rgba(157, 78, 221, 0.4));
}

.award-item:hover .award-name {
    color: var(--purple-neon-bright);
    text-shadow: 0 0 8px rgba(199, 125, 255, 0.6);
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 100px;
    }
    .logo-link {
        width: 120px;
    }
    .header-logo {
        max-height: 90px;
    }
    .awards-section {
        padding: 60px 0;
    }
    .awards-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .awards-carousel-container::before,
    .awards-carousel-container::after {
        width: 80px;
    }
    .awards-set {
        gap: 50px;
        padding-right: 50px;
    }
    .award-item {
        width: 160px;
    }
    .award-medal {
        width: 130px;
    }
    .award-name {
        font-size: 0.75rem;
    }
}

/* ==========================================
   ✉️ CONTACT FORM SECTION
   ========================================== */
.contact-section {
    background-color: var(--bg-darker);
    padding: 100px 0;
    border-top: 1px solid rgba(157, 78, 221, 0.15);
}

.contact-wrap {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-badge {
    color: var(--purple-neon-bright);
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 45px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.form-group-full {
    grid-column: span 2;
}

.form-control-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--purple-neon);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 12px rgba(157, 78, 221, 0.25);
}

.contact-form .btn {
    grid-column: span 2;
    margin-top: 15px;
    justify-self: center;
}

/* ==========================================
   🧭 FOOTER
   ========================================== */
.footer-section {
    background-color: #030106;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(157, 78, 221, 0.08);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo-wrap {
    width: 120px;
    margin-bottom: 50px;
}

.footer-products-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 800px;
    margin-bottom: 50px;
}

.footer-prod-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-prod-img {
    height: 150px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-prod-item:hover .footer-prod-img {
    transform: translateY(-5px) scale(1.05);
}

.footer-prod-name {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.footer-menu {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu-link {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--text-secondary);
}

.footer-menu-link:hover {
    color: white;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social-icon {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social-icon:hover {
    color: var(--purple-neon-bright);
    text-shadow: 0 0 10px var(--purple-neon);
}

.footer-info-list {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-info-item i {
    color: var(--purple-neon);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    padding-top: 24px;
}

/* ==========================================
   📄 NUESTRA HISTORIA PAGE
   ========================================== */
.history-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(180deg, rgba(7, 3, 17, 0.4) 0%, rgba(7, 3, 17, 0.95) 100%),
                url('../imagenes/banners/banner-historia.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
}

.history-hero h1 {
    font-size: 3rem;
}

.history-intro {
    padding: 80px 0;
}

.history-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.history-intro-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.history-intro-subtitle {
    color: var(--purple-neon-bright);
    font-weight: bold;
    margin-bottom: 20px;
}

.history-intro-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.process-section {
    background-color: var(--bg-darker);
    padding: 100px 0;
}

.process-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 60px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    align-items: start;
}

.process-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 2px solid var(--purple-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--purple-neon-bright);
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.process-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.process-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ==========================================
   🛍️ DÓNDE COMPRAR PAGE
   ========================================== */
.shop-hero {
    min-height: 850px;
    height: auto;
    background: linear-gradient(180deg, rgba(7, 3, 17, 0.45) 0%, rgba(7, 3, 17, 0.95) 100%),
                url('../imagenes/banners/banner-tienda.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    padding-bottom: 60px;
}

.shop-hero .section-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.shop-hero h1 {
    font-size: 3rem;
}

.shop-catalog {
    padding: 80px 0;
}

/* ==========================================
   🍸 MIXOLOGÍA PAGE
   ========================================== */
.mixology-hero {
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(180deg, rgba(7, 3, 17, 0.4) 0%, rgba(7, 3, 17, 0.95) 100%),
                url('../imagenes/banners/banner-mixologia.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
}

.mixology-hero h1 {
    font-size: 3rem;
}

.recipes-section {
    padding: 80px 0;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.recipe-card {
    background: var(--bg-card);
    border: 1px solid rgba(157, 78, 221, 0.15);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-6px);
    border-color: var(--purple-neon);
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.1);
}

.recipe-img-wrap {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.recipe-ingredients {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.recipe-ingredients strong {
    color: var(--purple-neon-bright);
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

/* ==========================================
   📱 RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-right-content {
        padding-left: 0;
        text-align: center;
        margin-top: 40px;
    }
    
    .slider-dots-new {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .history-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form .btn {
        grid-column: span 1;
    }
    
    .recipe-card {
        grid-template-columns: 1fr;
    }
    
    .recipe-img-wrap {
        height: 250px;
        min-height: auto;
    }
    
    .footer-products-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ==========================================================================
   🛍️ DÓNDE COMPRAR - VITRINA DE COLUMNAS INTERACTIVAS Y LOGOS
   ========================================================================== */

/* Logos en el Banner de Tienda */
.available-on {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.available-label {
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    text-align: center;
    width: 100%;
    display: block;
}

.available-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.available-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.available-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Estilos para el logo de Liverpool y Go Mart en fondo blanco */
.liverpool-logo,
.gomart-logo {
    background-color: #ffffff;
    padding: 10px 22px;
    border-radius: 10px;
    height: 80px;
    box-sizing: border-box;
}

.shop-banner-buttons {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.secondary-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.square-logo-card {
    background-color: #ffffff;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative; /* to allow z-index on hover */
}

.square-logo-card:hover {
    transform: scale(3);
    z-index: 999;
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.6);
}

.square-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.invert-logo {
    filter: invert(1);
}

@media (max-width: 768px) {
    .available-logos {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .available-logo {
        height: 65px;
    }
    .liverpool-logo,
    .gomart-logo {
        height: 65px;
        padding: 8px 16px;
    }
    .shop-banner-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        align-items: center;
    }
    .shop-banner-buttons .btn {
        width: 100%;
    }
    .secondary-logos-container {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 25px;
    }
    .square-logo-card {
        width: 75px;
        height: 75px;
        padding: 8px;
        border-radius: 6px;
    }
}

/* Vitrina de Sabor (Showcase) */
.shop-showcase {
    width: 100%;
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.showcase-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 75vh;
    min-height: 650px;
    max-height: 800px;
    overflow: hidden;
}

.showcase-column {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-column.visible {
    opacity: 1;
    transform: translateY(0);
}

.showcase-column:last-child {
    border-right: none;
}

/* Oscurecimiento de fondo del banner */
.column-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 3, 17, 0.5) 0%, rgba(7, 3, 17, 0.85) 100%);
    z-index: 1;
    transition: var(--transition);
}

.showcase-column:hover .column-overlay {
    background: linear-gradient(180deg, rgba(7, 3, 17, 0.35) 0%, rgba(7, 3, 17, 0.75) 100%);
}

/* Contenido dentro de cada columna */
.column-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    text-align: center;
}

.bottle-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 380px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.showcase-bottle {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-title-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: var(--transition);
}

/* Efectos de Hover por Columna */
.showcase-column:hover {
    flex: 1.4;
}

.showcase-column:hover .showcase-bottle {
    transform: scale(1.08) translateY(-10px);
    filter: drop-shadow(0 10px 25px var(--flavor-glow));
}

.showcase-column:hover .product-title-text {
    color: white;
    text-shadow: 0 0 10px var(--flavor-glow), 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Ajustes de responsive */
@media (max-width: 992px) {
    .showcase-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
    }
    
    .showcase-column {
        width: 100%;
        height: 400px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px 20px;
    }
    
    .showcase-column:hover {
        flex: 1; /* Desactivar ensanchamiento en móvil */
    }
    
    .column-content {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        text-align: left;
    }
    
    .bottle-wrapper {
        flex-grow: 0;
        height: 280px;
        margin-bottom: 0;
    }
    
    .product-title-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .column-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .bottle-wrapper {
        height: 240px;
        margin-bottom: 15px;
    }
    
    .product-title-text {
        font-size: 1.4rem;
    }
}

/* ==========================================
   🛍️ PRODUCT DETAIL PAGE (INTERIORES)
   ========================================== */
.product-detail-section {
    background: url('../imagenes/elementos-pagina/ELEMENTOD-NUEVA-PAGINA-01.png') center/cover no-repeat;
    padding: 160px 20px 100px;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.detail-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 80px;
    align-items: center;
}

.detail-left {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.detail-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.detail-product-img {
    max-height: 700px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.45));
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.detail-product-img:hover {
    transform: scale(1.04) translateY(-5px);
}

.detail-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.detail-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.detail-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.6);
}

.detail-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 25px;
}

.spec-item {
    display: flex;
    gap: 10px;
    font-size: 1rem;
}

.spec-label {
    font-weight: bold;
    color: #1a0b36;
    min-width: 180px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.spec-val {
    color: #3d3454;
}

.desc-heading {
    font-size: 1rem;
    font-weight: bold;
    color: #1a0b36;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.detail-description {
    color: #4a4066;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* ==========================================
   🛍️ NUESTROS PRODUCTOS STRIP (INTERIORES)
   ========================================== */
.related-products-section {
    background-color: var(--bg-darker);
    padding: 80px 0;
    border-top: 1px solid rgba(157, 78, 221, 0.15);
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.related-products-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 0.08em;
}

.related-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.related-product-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    transition: var(--transition);
}

.related-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.related-product-card:hover {
    transform: translateY(-10px);
}

.related-product-card:hover .related-product-img {
    filter: drop-shadow(0 15px 30px var(--flavor-glow, rgba(157, 78, 221, 0.4)));
}

.related-product-card.active .related-product-img {
    border-bottom: 3px solid var(--purple-neon);
    padding-bottom: 10px;
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .detail-container {
        gap: 40px;
        grid-template-columns: 1.1fr 1fr;
    }
    .detail-right {
        padding: 35px;
    }
    .detail-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding-top: 120px;
    }
    .detail-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .detail-product-img {
        max-height: 480px;
    }
    .detail-right {
        text-align: left;
        padding: 30px 20px;
    }
    .detail-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .spec-item {
        flex-direction: column;
        gap: 4px;
    }
    .spec-label {
        min-width: auto;
    }
    .related-product-card {
        width: 150px;
    }
}

/* ==========================================
   🍸 MIXOLOGY RECIPE DETAIL PAGE (PREMIUM ASYMMETRIC MESH)
   ========================================== */
.recipe-detail-section {
    background: radial-gradient(circle at 10% 20%, rgba(157, 78, 221, 0.07) 0%, rgba(7, 3, 17, 0) 50%),
                radial-gradient(circle at 90% 80%, rgba(199, 125, 255, 0.05) 0%, rgba(7, 3, 17, 0) 50%),
                #070311;
    padding: 180px 0 120px 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.recipe-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.recipe-detail-left {
    position: sticky;
    top: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: none;
    width: 100%;
    z-index: 5;
}

.recipe-detail-left.visible {
    opacity: 1;
    transform: none;
}

.recipe-detail-img {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 
                0 0 30px rgba(157, 78, 221, 0.25),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 125, 255, 0.25);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.recipe-detail-img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 
                0 0 45px rgba(199, 125, 255, 0.45);
}

.recipe-detail-right {
    opacity: 1;
    transform: none;
    padding: 0;
    box-sizing: border-box;
    z-index: 6;
}

.recipe-detail-right.visible {
    opacity: 1;
    transform: none;
}

.recipe-detail-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 50%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    filter: drop-shadow(0 4px 12px rgba(157, 78, 221, 0.15));
}

.recipe-detail-section-title {
    font-family: var(--font-heading);
    color: var(--purple-neon-bright);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.25);
    border-bottom: 1px solid rgba(199, 125, 255, 0.15);
    padding-bottom: 8px;
    display: inline-block;
}

.recipe-ingredients-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.recipe-ingredients-list li {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1.02rem;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    padding-left: 35px;
    line-height: 1.4;
}

.recipe-ingredients-list li:hover {
    background: rgba(199, 125, 255, 0.05);
    border-color: rgba(199, 125, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 78, 221, 0.15);
}

.recipe-ingredients-list li::before {
    content: "✦";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple-neon-bright);
    font-size: 0.85rem;
    text-shadow: 0 0 8px rgba(199, 125, 255, 0.8);
}

.recipe-garnish-box {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-top: 10px;
    margin-bottom: 35px;
    padding: 20px 24px;
    background: rgba(199, 125, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(157, 78, 221, 0.2);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.recipe-garnish-box::before {
    content: "🍸";
    font-size: 1.3rem;
}

.recipe-garnish-box strong {
    color: var(--purple-neon-bright);
}

.recipe-prep-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    counter-reset: prep-step;
}

.recipe-prep-list li {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px 24px;
    border-radius: 16px;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.8;
    position: relative;
    padding-left: 65px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.recipe-prep-list li:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(157, 78, 221, 0.2);
    transform: translateX(6px);
}

.recipe-prep-list li::before {
    counter-increment: prep-step;
    content: counter(prep-step, decimal-leading-zero);
    position: absolute;
    left: 18px;
    top: 20px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #c77dff 0%, #9d4edd 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #070311;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 12px rgba(157, 78, 221, 0.5);
    font-family: var(--font-heading);
}

/* ==========================================
   🍸 "OTROS COCTELES" SECTION
   ========================================== */
.other-recipes-section {
    background-color: #030107;
    padding: 80px 20px;
    border-top: 1px solid rgba(157, 78, 221, 0.15);
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.other-recipes-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.other-recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.other-recipe-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.other-recipe-card:hover {
    transform: translateY(-8px);
    border-color: var(--purple-neon);
    box-shadow: 0 10px 25px rgba(157, 78, 221, 0.2);
}

.other-recipe-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.other-recipe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.other-recipe-card:hover .other-recipe-img {
    transform: scale(1.06);
}

.other-recipe-body {
    background-color: white;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.other-recipe-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a0b36;
    margin-bottom: 10px;
}

.other-recipe-desc {
    font-size: 0.85rem;
    color: #554a6b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-view-recipe {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: bold;
    color: #1a0b36;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #1a0b36;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.other-recipe-card:hover .btn-view-recipe {
    color: var(--purple-neon);
    border-color: var(--purple-neon);
}

/* ==========================================
   🛍️ "NUESTROS PRODUCTOS" FOR RECIPES
   ========================================== */
.related-products-section-recipes {
    background-color: #f7f5fb;
    padding: 80px 20px;
    width: 100%;
}

.related-products-title-recipes {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a0b36;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a0b36 0%, #390099 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.related-products-grid-recipes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.related-product-card-recipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.4s ease;
}

.related-product-card-recipe:hover {
    transform: translateY(-8px);
}

.related-product-img-recipe {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: filter 0.4s ease;
}

.related-product-card-recipe:hover .related-product-img-recipe {
    filter: drop-shadow(0 15px 25px rgba(157, 78, 221, 0.3));
}

.product-label-recipe {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Flavor-specific label colors */
.label-espadin {
    background-color: #00b4d8;
}
.label-tamarindo {
    background-color: #e07a5f;
}
.label-sandia {
    background-color: #d62828;
}
.label-mango {
    background-color: #f77f00;
}
.label-maracuya {
    background-color: #7209b7;
}

/* ==========================================
   📱 RESPONSIVE ADJUSTMENTS FOR RECIPES
   ========================================== */
@media (max-width: 1024px) {
    .recipe-detail-section {
        padding: 140px 0 80px 0;
    }

    .recipe-detail-container {
        grid-template-columns: 1fr;
        gap: 50px;
        width: 90%;
    }
    
    .recipe-detail-left {
        position: relative;
        height: auto;
        width: 100%;
        transform: none;
        top: auto;
    }
    
    .recipe-detail-img {
        width: 100%;
        max-width: 380px;
        height: auto;
        aspect-ratio: 4/5;
        border-radius: 20px;
    }
    
    .recipe-detail-right {
        transform: none;
        padding: 0;
        min-height: auto;
        border-left: none;
    }
    
    .other-recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-products-grid-recipes {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recipe-detail-section {
        padding-top: 120px;
    }
    
    .recipe-detail-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .recipe-detail-img {
        max-width: 340px;
    }
    
    .recipe-ingredients-list {
        grid-template-columns: 1fr;
    }
    
    .recipe-ingredients-list li {
        text-align: left;
    }
    
    .recipe-prep-list li {
        text-align: left;
    }
    
    .other-recipes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .related-products-grid-recipes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related-products-grid-recipes {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
}

/* ==========================================
   💬 FLOATING WHATSAPP BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* ==========================================================================
   🏡 NEW HOME PAGE REDESIGN STYLES (HERO, ABOUT, VIDEO, PRODUCTS)
   ========================================================================== */

/* 🚀 Hero Section (New) */
.hero-section-new {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-content-container-new {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    z-index: 3;
}

.hero-left-bottles-new {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-bottles-img-new {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(157, 78, 221, 0.3));
}

.hero-right-text-new {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: white;
    text-align: right;
    padding-left: 20px;
    animation: fadeInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-title-new {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
}

.hero-title-new .text-bold {
    font-weight: 900;
}

.hero-title-new .text-light {
    font-weight: 300;
    opacity: 0.95;
    background: linear-gradient(135deg, #ffffff 0%, #c77dff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-dots-new {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    justify-content: flex-end;
}

.dot-new {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-new.active {
    background: white;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* 👥 About Section (New) */
.about-section-new {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.15);
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.about-container-new {
    max-width: var(--container-width);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.about-title-new {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 950;
    color: white;
    margin-bottom: 30px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.about-text-new {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: white;
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.about-bottle-wrap-new {
    width: 100%;
    max-width: 680px;
    display: flex;
    justify-content: center;
    margin-top: 10px;
    transition: transform 0.4s ease;
}

.about-bottle-wrap-new:hover {
    transform: scale(1.03) rotate(-1deg);
}

.about-bottle-img-new {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.7));
}

/* 🎬 Video Section (New) */
.video-section-new {
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.video-wrapper-new {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.youtube-iframe-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-click-blocker-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 10;
    cursor: default;
}

/* 🛍️ Products Section (New) */
.products-section-new {
    padding: 120px 20px;
    width: 100%;
    border-bottom: 1px solid rgba(157, 78, 221, 0.15);
}

.products-title-new {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 950;
    color: #1a0b36;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.product-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card-link-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
    transition: transform 0.4s ease;
}

.product-card-link-new:hover {
    transform: translateY(-10px);
}

.product-img-new {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: filter 0.4s ease;
}

.product-card-link-new:hover .product-img-new {
    filter: drop-shadow(0 15px 30px rgba(157, 78, 221, 0.45));
}

.product-label-new {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    padding: 11px 15px;
    border-radius: 6px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 15px;
}

.btn-comprar-new {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: bold;
    color: white;
    background-color: #7209b7;
    padding: 11px 16px;
    border-radius: 24px;
    text-align: center;
    letter-spacing: 0.05em;
    display: inline-block;
    width: auto;
    min-width: 85%;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(114, 9, 183, 0.35);
}

.product-card-link-new:hover .btn-comprar-new {
    background-color: #9d4edd;
    box-shadow: 0 6px 20px rgba(157, 78, 221, 0.6);
    transform: scale(1.05);
}

/* ==========================================================================
   📱 NEW HOME PAGE RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content-container-new {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-left-bottles-new {
        order: 1;
    }
    
    .hero-right-text-new {
        order: 2;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    
    .hero-title-new {
        font-size: 3.2rem;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .about-section-new {
        padding: 80px 20px;
    }
    
    .about-title-new {
        font-size: 2.8rem;
    }
    
    .about-text-new {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .about-bottle-wrap-new {
        max-width: 480px;
    }
    
    .products-section-new {
        padding: 80px 20px;
    }
    
    .products-title-new {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
    
    .products-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .about-title-new {
        font-size: 2.2rem;
    }
    
    .about-bottle-wrap-new {
        max-width: 320px;
    }
    
    .products-grid-new {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}


/* ==========================================
   🍸 NUEVOS ESTILOS PARA DETALLES DE RECETA
   ========================================== */
.recipe-detail-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.recipe-detail-taste {
    background: rgba(199, 125, 255, 0.05);
    border-left: 3px solid var(--purple-neon-bright);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.recipe-detail-taste h3 {
    font-family: var(--font-heading);
    color: var(--purple-neon-bright);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.25);
}

.recipe-detail-taste p {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}


/* ==========================================
   👥 SOCIAL ROW FOOTER ICONS
   ========================================== */
.social-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
}

.social-link {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--purple-neon-bright);
    filter: drop-shadow(0 0 8px var(--purple-neon-bright));
}
