/*
Theme Name: Torneo Master Fishers 2026
Theme URI: https://masterfishers.mx
Author: Club de Pesca Master Fishers A.C.
Author URI: https://masterfishers.mx
Description: Tema de WordPress para el 5to Torneo Primaveral de Pesca Master Fishers 2026 en Bahía San Agustín, Huatulco. Integrado con WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: torneo-masterfishers
Tags: woocommerce, fishing, tournament, dark-mode, custom-fonts

WooCommerce tested up to: 8.5
*/

/* ═══════════════ RESET & BASE ═══════════════ */
@font-face {
    font-family: 'Docktrin';
    src: url('assets/fonts/docktrin.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Destruction';
    src: url('assets/fonts/Destruction Manual.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SuperBlue';
    src: url('assets/fonts/SuperBlue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --navy: #0f2349;
    --navy-mid: #1a3a6b;
    --navy-light: #234d8a;
    --sepia: #c49a3c;
    --sepia-light: #e8c46a;
    --parchment: #f5e6c8;
    --parchment-dark: #d4a97a;
    --cream: #fdf6e8;
    --font-title: 'Docktrin', sans-serif;
    --font-subtitle: 'Destruction', sans-serif;
    --font-body: 'SuperBlue', sans-serif;
}

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

body {
    background-color: var(--navy);
    color: #f0e8d8;
    font-family: var(--font-body);
    font-weight: 100;
    overflow-x: hidden;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* 🔤 TYPOGRAPHY ────────────────────────────── */
/* SuperBlue - para UI: botones, menús, tarjetas, textos secundarios */
.title-font {
    font-family: var(--font-body);
    text-transform: lowercase !important;
}

/* Docktrin - SOLO para títulos grandes de sección (h1, h2 principales) */
.display-font {
    font-family: var(--font-title);
    text-transform: lowercase !important;
}

.subtitle-font {
    font-family: var(--font-subtitle);
}

.text-gradient {
    background: linear-gradient(135deg, var(--parchment) 0%, var(--sepia) 50%, var(--parchment-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 🪟 GLASSMORPHISM ──────────────────────────── */
.glass {
    background: rgba(15, 35, 73, 0.6);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(196, 154, 60, 0.25);
}

.glass-light {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 154, 60, 0.2);
}

/* 🧭 NAVBAR ──────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1rem 1.5rem;
    transition: padding 0.4s ease, background 0.4s ease, border 0.4s ease;
}

.navbar-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#nav-logo {
    height: 160px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(196, 154, 60, 0.35));
}

.nav-scrolled {
    background: rgba(10, 28, 60, 0.95) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(196, 154, 60, 0.3);
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
}

.nav-scrolled #nav-logo {
    height: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-link {
    font-family: var(--font-subtitle);
    font-size: 23px;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0e8d8;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.nav-link:hover {
    color: #e8c46a;
}

/* Cart icon in navbar */
.nav-cart-btn {
    position: relative;
    padding: 0.625rem;
    color: #f0e8d8;
    background: rgba(15, 35, 73, 0.85);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-cart-btn:hover {
    color: #e8c46a;
    background: rgba(15, 35, 73, 1);
}

.cart-count-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    background: var(--sepia);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 100;
    border-radius: 9999px;
    width: 1.25rem;
    height: 1.25rem;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-count-badge.show {
    display: flex;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle button {
    background: none;
    border: none;
    color: #f0e8d8;
    cursor: pointer;
    padding: 0.5rem;
}

#mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy);
    border-bottom: 1px solid rgba(196, 154, 60, 0.3);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

#mobile-menu.open {
    display: flex;
}

#mobile-menu a {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0;
    display: block;
    transition: color 0.3s;
}

#mobile-menu a:hover {
    color: #e8c46a;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 28, 60, 0.55) 0%,
            rgba(10, 28, 60, 0.15) 45%,
            rgba(10, 28, 60, 0.85) 100%);
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.3);
}

.hero-overlay-animated {
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.82; }
}

@keyframes kenBurns {
    0% { transform: scale(1.05) translate(0%, 0%); }
    50% { transform: scale(1.12) translate(-1.5%, -1%); }
    100% { transform: scale(1.05) translate(0%, 0%); }
}

.hero-bg-img {
    animation: kenBurns 18s ease-in-out infinite;
    transform-origin: center center;
}

/* Hero text animations */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(38px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroGlow {
    0%, 100% { text-shadow: 0 0 18px rgba(232, 196, 106, 0.0); }
    50% { text-shadow: 0 0 32px rgba(232, 196, 106, 0.45), 0 0 60px rgba(232, 196, 106, 0.15); }
}

@keyframes shimmerLine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-label {
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    margin-bottom: -0.5rem !important;
}

.hero-title-line1 {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

.hero-title-line2 {
    opacity: 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards,
        heroGlow 4s ease-in-out 1.8s infinite,
        shimmerLine 4s linear 1.8s infinite;
}

.hero-desc {
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}

.hero-cta {
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.hero-bottom-row {
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}

.hero-date-line {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

.hero-chips {
    opacity: 0;
    animation: heroFadeUp 0.7s ease 1.7s forwards;
}

/* Hero outlined button */
.hero-btn-outline:hover {
    background: #f5d89a !important;
    border-color: #f5d89a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Hero navy filled button */
.hero-btn-navy:hover {
    background: #243f6b !important;
    border-color: #243f6b !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.hero-title-shimmer {
    background: linear-gradient(90deg,
            #f5e6c8 0%,
            #e8c46a 30%,
            #fff8e1 50%,
            #e8c46a 70%,
            #f5e6c8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

/* 📊 STAT SCROLL ANIMATIONS ──────────────── */
.stat-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-underline {
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(to right, var(--sepia), var(--sepia-light));
    margin: 8px auto 0;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
    border-radius: 2px;
}

.stat-reveal.visible .stat-underline {
    width: 48px;
}

@keyframes countPop {
    0% { transform: scale(0.7); opacity: 0; }
    70% { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}

.stat-reveal.visible .stat-number {
    animation: countPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Premios clickable stat */
.stat-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.2s ease;
}

.stat-btn:hover {
    transform: scale(1.04);
}

.stat-btn .stat-hint {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sepia);
    margin-top: 6px;
    opacity: 0.8;
}

/* 🏷️ VINTAGE BANNER ──────────────────────── */
.vintage-banner {
    background: var(--navy-mid);
    border-top: 3px solid var(--sepia);
    border-bottom: 3px solid var(--sepia);
    position: relative;
    padding: 3rem 1.5rem;
}

.vintage-banner::before,
.vintage-banner::after {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(196, 154, 60, 0.35);
    border-bottom: 1px solid rgba(196, 154, 60, 0.35);
    pointer-events: none;
}

/* 🎫 TICKET CARD ──────────────────────────── */
.ticket-card {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid rgba(196, 154, 60, 0.4);
    border-top: 4px solid var(--sepia);
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    padding: 2.5rem 3.5rem;
}

.ticket-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c49a3c' fill-opacity='0.03'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* 🛍️ PRODUCT CARD ─────────────────────────── */
.product-card {
    background: rgba(26, 58, 107, 0.3);
    border: 1px solid rgba(196, 154, 60, 0.2);
    transition: all 0.35s ease;
    border-radius: 1rem;
    overflow: hidden;
}

.product-card:hover {
    border-color: rgba(196, 154, 60, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(196, 154, 60, 0.1);
}

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

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

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

.product-card .add-to-cart-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--sepia);
    color: var(--navy);
    padding: 0.75rem;
    border-radius: 0.75rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-card:hover .add-to-cart-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-card .product-info {
    padding: 1.25rem;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--sepia-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 100;
    margin-bottom: 0.25rem;
}

.product-card .product-name {
    font-family: var(--font-body);
    font-weight: 100;
    font-size: 1.125rem;
    color: #f5e6c8;
    margin-bottom: 0.25rem;
}

.product-card .product-price {
    color: #b8a888;
}

/* 🔘 BUTTONS ──────────────────────────────── */
.btn-gold {
    background: linear-gradient(135deg, var(--sepia) 0%, var(--sepia-light) 50%, var(--sepia) 100%);
    color: var(--navy);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    font-weight: 100;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--sepia-light) 0%, #fff 50%, var(--sepia-light) 100%);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(196, 154, 60, 0.4);
}

.btn-outline {
    border: 2px solid var(--sepia);
    color: var(--sepia);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-outline:hover {
    background: var(--sepia);
    color: var(--navy);
}

/* 📊 STAT CARD ────────────────────────────── */
.stat-card {
    background: linear-gradient(135deg, rgba(26, 58, 107, 0.7), rgba(15, 35, 73, 0.8));
    border: 1px solid rgba(196, 154, 60, 0.3);
    border-left: 3px solid var(--sepia);
}

/* 📜 SCROLL ANIMATIONS ───────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* 🛒 CART DRAWER ──────────────────────────── */
#cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 28rem;
    z-index: 70;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--navy-mid);
    border-left: 1px solid rgba(196, 154, 60, 0.3);
}

#cart-drawer.open {
    transform: translateX(0);
}

#cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 60;
}

#cart-overlay.open {
    display: block;
}

/* 📱 MOBILE MENU ──────────────────────────── */
#mobile-menu {
    display: none;
}

#mobile-menu.open {
    display: flex;
}

/* 📜 SCROLLBAR ────────────────────────────── */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sepia);
}

/* ✂️ DIVIDER ──────────────────────────────── */
.gold-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--sepia), transparent);
}

/* 🎨 SECTION BG VARIANTS ──────────────────── */
.bg-navy {
    background-color: var(--navy);
}

.bg-navy-mid {
    background-color: var(--navy-mid);
}

.bg-navy-pattern {
    background-color: var(--navy);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a3a6b' fill-opacity='0.5'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* 🖼️ LOGO ──────────────────────────────────── */
.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(196, 154, 60, 0.4));
    transition: filter 0.3s;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 14px rgba(196, 154, 60, 0.7));
}

/* ⏱️ COUNTDOWN ────────────────────────────── */
.countdown-wrap {
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
    margin-top: 2rem;
}

.countdown-band {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    opacity: 0;
    animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
}

.countdown-grid {
    display: inline-flex;
    gap: 0;
    justify-content: center;
    align-items: stretch;
    background: rgba(15, 25, 50, 0.85);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 197, 166, 0.2);
    margin-bottom: 0;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 0.75rem 1.25rem;
    border-right: 1px solid rgba(212, 197, 166, 0.25);
}

.cd-unit:last-child {
    border-right: none;
}

.cd-num {
    font-family: var(--font-subtitle);
    font-size: 2.2rem;
    font-weight: normal;
    color: #f0e4cc;
    line-height: 1;
    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
    will-change: transform;
}

.cd-num.bump {
    transform: scale(1.25);
}

.cd-label {
    font-family: var(--font-subtitle);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 197, 166, 0.7);
    margin-top: 0.25rem;
}

.cd-sep {
    display: none;
}

.cd-label-main {
    font-family: var(--font-subtitle);
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(212, 197, 166, 0.95);
    margin-bottom: 0.5rem;
    text-align: center;
}

/* ═══════════════ MODALS ═══════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 35, 0.88);
    backdrop-filter: blur(10px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: linear-gradient(160deg, var(--navy-mid), var(--navy));
    border: 1px solid rgba(196, 154, 60, 0.4);
    border-top: 4px solid var(--sepia);
    border-radius: 1.5rem;
    max-width: 780px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.premio-categoria {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-left: 4px solid var(--sepia);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}

.premio-categoria h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sepia-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(196, 154, 60, 0.1);
    color: #d4c5a6;
    font-size: 0.92rem;
}

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

.premio-pos {
    font-family: var(--font-body);
    font-weight: 100;
    color: var(--sepia);
    min-width: 1.6rem;
    font-size: 1rem;
}

.premio-val {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 100;
    color: #f5e6c8;
}

/* ═══════════════ PRELOADER ═══════════════ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--navy);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(196, 154, 60, 0.2);
    border-top: 4px solid var(--sepia);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-shimmer {
    background: linear-gradient(90deg, var(--parchment) 0%, var(--sepia) 50%, var(--parchment) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmerText 2s linear infinite;
}

@keyframes shimmerText {
    to { background-position: 200% center; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════ CAROUSEL DOTS ═══════════════ */
.carousel-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background: rgba(196, 154, 60, 0.25);
    border: 1px solid rgba(196, 154, 60, 0.4);
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
}

.carousel-dot.active {
    background: #e8c46a;
    border-color: #e8c46a;
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(232, 196, 106, 0.5);
}

.carousel-dot:hover:not(.active) {
    background: rgba(196, 154, 60, 0.5);
}

#premios-carousel {
    overflow: hidden;
}

/* ═══════════════ UTILITY LAYOUT ═══════════════ */
.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 1.5rem;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center {
    text-align: center;
}

/* ═══════════════ WOOCOMMERCE OVERRIDES ═══════════════ */

/* WooCommerce general */
.woocommerce {
    color: #f0e8d8;
}

.woocommerce .woocommerce-breadcrumb {
    color: #b8a888;
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 1.5rem 0;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--sepia-light);
}

/* WooCommerce product listing */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.woocommerce ul.products li.product {
    background: rgba(26, 58, 107, 0.3);
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.35s ease;
    padding: 0;
    margin: 0 !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce ul.products li.product:hover {
    border-color: rgba(196, 154, 60, 0.6);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(196, 154, 60, 0.1);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 100;
    color: #f5e6c8;
    padding: 0.75rem 1.25rem 0.25rem;
}

.woocommerce ul.products li.product .price {
    color: var(--sepia-light) !important;
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 0 1.25rem;
}

.woocommerce ul.products li.product .price del {
    color: #7a6a50;
}

.woocommerce ul.products li.product .price ins {
    color: var(--sepia-light);
    text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .added_to_cart {
    background: linear-gradient(135deg, var(--sepia) 0%, var(--sepia-light) 50%, var(--sepia) 100%) !important;
    color: var(--navy) !important;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    font-weight: 100;
    border: none !important;
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    margin: 0.75rem 1.25rem 1.25rem;
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--sepia-light) 0%, #fff 50%, var(--sepia-light) 100%) !important;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(196, 154, 60, 0.4);
}

/* WooCommerce single product */
.woocommerce div.product {
    color: #f0e8d8;
}

.woocommerce div.product .product_title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 100;
    color: #f5e6c8;
}

.woocommerce div.product .price {
    color: var(--sepia-light) !important;
    font-family: var(--font-body);
    font-size: 1.8rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: #b8a888;
}

.woocommerce div.product form.cart {
    margin: 2rem 0;
}

.woocommerce div.product form.cart .qty {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 154, 60, 0.3);
    color: #f0e8d8;
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-family: var(--font-body);
    width: 4rem;
}

.woocommerce div.product form.cart .button,
.woocommerce .single_add_to_cart_button {
    background: linear-gradient(135deg, var(--sepia) 0%, var(--sepia-light) 50%, var(--sepia) 100%) !important;
    color: var(--navy) !important;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    font-weight: 100;
    border: none !important;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, var(--sepia-light) 0%, #fff 50%, var(--sepia-light) 100%) !important;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(196, 154, 60, 0.4);
}

/* WooCommerce tabs */
.woocommerce div.product .woocommerce-tabs {
    margin-top: 2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(196, 154, 60, 0.2);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: #b8a888;
    padding: 1rem 1.5rem;
    display: block;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--sepia-light);
    border-bottom-color: var(--sepia);
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: rgba(26, 58, 107, 0.3);
    border: 1px solid rgba(196, 154, 60, 0.15);
    border-radius: 0 0 1rem 1rem;
    padding: 2rem;
    color: #b8a888;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-family: var(--font-body);
    color: #f5e6c8;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* WooCommerce Cart Page */
.woocommerce-cart .woocommerce {
    padding: 2rem 0;
}

.woocommerce table.shop_table {
    border: 1px solid rgba(196, 154, 60, 0.2) !important;
    border-radius: 1rem;
    overflow: hidden;
    background: rgba(26, 58, 107, 0.3);
}

.woocommerce table.shop_table th {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--sepia-light);
    background: rgba(15, 35, 73, 0.8);
    border-bottom: 1px solid rgba(196, 154, 60, 0.2) !important;
    padding: 1rem 1.5rem;
}

.woocommerce table.shop_table td {
    border-bottom: 1px solid rgba(196, 154, 60, 0.1) !important;
    padding: 1rem 1.5rem;
    color: #d4c5a6;
    background: transparent;
}

.woocommerce table.shop_table td.product-name a {
    color: #f5e6c8;
    font-family: var(--font-body);
    font-weight: 100;
}

.woocommerce table.shop_table td.product-name a:hover {
    color: var(--sepia-light);
}

.woocommerce table.shop_table td.product-price .amount,
.woocommerce table.shop_table td.product-subtotal .amount {
    color: var(--sepia-light);
    font-family: var(--font-body);
    font-weight: 100;
}

.woocommerce table.shop_table td.product-quantity input.qty {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 154, 60, 0.3);
    color: #f0e8d8;
    border-radius: 0.5rem;
    padding: 0.5rem;
    width: 4rem;
}

.woocommerce table.shop_table td.product-remove a {
    color: #e05050 !important;
    font-size: 1.5rem;
}

.woocommerce table.shop_table td.product-remove a:hover {
    color: #ff6b6b !important;
}

.woocommerce .cart-collaterals .cart_totals {
    background: rgba(26, 58, 107, 0.3);
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.woocommerce .cart-collaterals .cart_totals h2 {
    font-family: var(--font-body);
    color: #f5e6c8;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.woocommerce .cart-collaterals .cart_totals table th {
    background: transparent;
    color: #b8a888;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.woocommerce .cart-collaterals .cart_totals table td {
    background: transparent;
    color: #f5e6c8;
}

.woocommerce .cart-collaterals .cart_totals .order-total .amount {
    color: var(--sepia-light);
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 100;
}

/* WooCommerce checkout */
.woocommerce-checkout #customer_details {
    color: #f0e8d8;
}

.woocommerce form .form-row label {
    color: #b8a888;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(196, 154, 60, 0.3) !important;
    color: #f0e8d8 !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    font-family: var(--font-body);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--sepia) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.15);
}

.woocommerce #order_review {
    background: rgba(26, 58, 107, 0.3);
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.woocommerce #order_review h3 {
    font-family: var(--font-body);
    color: #f5e6c8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.woocommerce #place_order,
.woocommerce .checkout-button,
.woocommerce button.button.alt {
    background: linear-gradient(135deg, var(--sepia) 0%, var(--sepia-light) 50%, var(--sepia) 100%) !important;
    color: var(--navy) !important;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
    font-weight: 100;
    border: none !important;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce #place_order:hover,
.woocommerce .checkout-button:hover,
.woocommerce button.button.alt:hover {
    background: linear-gradient(135deg, var(--sepia-light) 0%, #fff 50%, var(--sepia-light) 100%) !important;
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(196, 154, 60, 0.4);
}

/* WooCommerce notices / messages */
.woocommerce-message,
.woocommerce-info {
    background: rgba(196, 154, 60, 0.1) !important;
    border-top-color: var(--sepia) !important;
    color: #f5e6c8 !important;
    border-radius: 0.75rem;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--sepia) !important;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
    background: var(--sepia) !important;
    color: var(--navy) !important;
    border-radius: 0.5rem;
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}

.woocommerce-error {
    background: rgba(224, 80, 80, 0.1) !important;
    border-top-color: #e05050 !important;
    color: #f5e6c8 !important;
    border-radius: 0.75rem;
}

/* WooCommerce Mini-Cart Widget */
.widget_shopping_cart .total {
    color: #f5e6c8;
    border-top: 1px solid rgba(196, 154, 60, 0.2);
}

.widget_shopping_cart .total .amount {
    color: var(--sepia-light);
    font-family: var(--font-body);
    font-weight: 100;
}

.widget_shopping_cart_content .mini_cart_item {
    border-bottom: 1px solid rgba(196, 154, 60, 0.1) !important;
    padding: 0.75rem 0;
}

.widget_shopping_cart_content .mini_cart_item a {
    color: #f5e6c8;
}

.widget_shopping_cart_content .mini_cart_item .quantity {
    color: #b8a888;
}

.widget_shopping_cart_content .mini_cart_item .amount {
    color: var(--sepia-light);
}

/* WooCommerce My Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
    background: rgba(26, 58, 107, 0.3);
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #b8a888;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(196, 154, 60, 0.1);
    color: var(--sepia-light);
}

/* WooCommerce Onsale badge */
.woocommerce span.onsale {
    background: var(--sepia) !important;
    color: var(--navy) !important;
    font-family: var(--font-body);
    font-weight: 100;
    border-radius: 0.5rem;
}

/* WooCommerce star rating */
.woocommerce .star-rating span::before {
    color: var(--sepia-light);
}

.woocommerce .star-rating::before {
    color: rgba(196, 154, 60, 0.3);
}

/* WooCommerce pagination */
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background: rgba(26, 58, 107, 0.5) !important;
    color: #b8a888 !important;
    border: 1px solid rgba(196, 154, 60, 0.2);
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    font-family: var(--font-body);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--sepia) !important;
    color: var(--navy) !important;
}

/* ═══════════════ MOBILE RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

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

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

@media (max-width: 767px) {
    #nav-logo {
        height: 64px !important;
    }

    .nav-scrolled #nav-logo {
        height: 44px !important;
    }

    #navbar {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .hero-section {
        min-height: 100svh;
    }

    .hero-label {
        margin-top: 70px !important;
        font-size: 14px !important;
        letter-spacing: 0.2em !important;
        margin-bottom: 10px !important;
        line-height: 1.4 !important;
    }

    .hero-title-img {
        margin-top: 0 !important;
        max-height: 35vh !important;
    }

    .hero-section h1 {
        font-size: 2.4rem !important;
        line-height: 1.15 !important;
        margin-bottom: 0.75rem;
    }

    .hero-desc {
        font-size: 0.875rem !important;
        margin-top: 10px !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .hero-cta a {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 1.5rem !important;
        font-size: 28px !important;
        min-width: auto !important;
    }

    .countdown-wrap {
        margin-top: 1.25rem;
    }

    .countdown-band {
        padding: 0.75rem 1rem 1rem;
    }

    .countdown-grid {
        gap: 0;
    }

    .cd-unit {
        min-width: 50px;
        padding: 0.3rem 0.6rem;
    }

    .cd-num {
        font-size: 1.4rem;
    }

    .cd-sep {
        font-size: 1.2rem;
        padding: 0.15rem 0.15rem 0;
    }

    .cd-label-main {
        font-size: 12px !important;
    }

    .hero-chips {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
        max-width: 300px;
        margin: 0.75rem auto 0;
        padding: 0;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .vintage-banner .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }

    .section-padding {
        padding: 3.5rem 1.5rem;
    }

    .ticket-card {
        padding: 1.75rem 1.25rem !important;
    }

    /* WooCommerce mobile */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    .woocommerce table.shop_table {
        font-size: 0.85rem;
    }

    section,
    .vintage-banner {
        overflow-x: hidden;
    }

    /* Full width on mobile */
    html, body {
        width: 100% !important;
        overflow-x: hidden !important;
    }

    section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .container,
    .recompensas-inner,
    .gastro-grid,
    .hospedaje-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 380px) {
    .hero-section h1 {
        font-size: 1.9rem !important;
    }

    .cd-unit {
        min-width: 48px;
        padding: 0.4rem 0.5rem;
    }

    .cd-num {
        font-size: 1.15rem;
    }

    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}
