/*
Theme Name: FOMO Club Experimental
Theme URI: https://elementor.com/hello-theme/
Description: Versión de desarrollo para pruebas de diseño de FOMO Club (Copia Segura).
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 3.2.0-dev
*/

/* --- VARIABLES GLOBALES (Light FOMO Palette) --- */
:root {
    /* Base Colors - Clear & Bright */
    --color-bg-light: #F0F4F8;
    /* Gris azulado muy suave */
    --color-bg-gradient-start: #ffffff;
    --color-bg-gradient-end: #dfe6e9;
    /* Silver */

    /* Brand Colors (From Logo) */
    --color-brand-navy: #1D2B4A;
    /* FOMO Navy - Primary Text/Dark BG */
    --color-brand-slate: #5C7CA9;
    /* FOMO Slate - Accents/Buttons */
    --color-brand-light-blue: #B4C7E7;
    /* Soft Blue highlights */

    --color-white: #ffffff;

    /* Glassmorphism Light (White Frost) */
    --color-glass: rgba(255, 255, 255, 0.6);
    --color-glass-imp: rgba(255, 255, 255, 0.9);
    --color-glass-header: rgba(255, 255, 255, 0.95);

    /* Text */
    --color-text-main: #1D2B4A;
    /* Dark Navy for readability */
    --color-text-muted: #5C7CA9;

    --font-primary: 'Outfit', sans-serif;
    /* MODERNA */
    --font-secondary: 'Poppins', sans-serif;

    --border-radius-pill: 50px;
    --border-radius-card: 40px;

    --shadow-soft: 0 10px 40px rgba(29, 43, 74, 0.08);
    /* Navy shadow very soft */
    --shadow-float: 0 20px 50px rgba(29, 43, 74, 0.12);
}

/* --- BASE & FONDO CLARO --- */
body {
    background: linear-gradient(180deg, var(--color-bg-gradient-start) 0%, var(--color-bg-light) 100%);
    background-attachment: fixed;
    font-family: var(--font-primary);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Tipografía Global */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    /* Asegurar Outfit */
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
    color: var(--color-brand-navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER INTEGRADO (V4: Split Layout) --- */
.fomo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    /* Más aire arriba */
    pointer-events: none;
    /* Dejar pasar clic en zonas vacías */
}

/* Contenedor principal del header que separa los lados */
.fomo-header .header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: none;
}

/* Logo Izquierda (Standalone) */
.header-logo-standalone {
    pointer-events: auto;
    filter: drop-shadow(0 10px 20px rgba(29, 43, 74, 0.15));
    transition: transform 0.3s;
    margin-right: 60px;
    /* Safety gap */
}

.header-logo-standalone:hover {
    transform: scale(1.05);
}

/* Pill Derecha (Menú Compacto) */
.header-pill.compact {
    pointer-events: auto;
    background: var(--color-glass-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 30px;
    /* --- WOOCOMMERCE STYLES (Glassmorphism & FOMO) --- */
    /* GLOBAL DESKTOP & MOBILE */

    /* Cart Icon in Header */
    .cart-icon-pill {
        background: transparent;
        padding: 8px 12px;
        border-radius: 50%;
        color: var(--color-brand-navy);
        font-size: 1.2rem;
        position: relative;
        border: 1px solid transparent;
        transition: all 0.3s;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cart-icon-pill:hover {
        background: rgba(255, 255, 255, 0.5);
        border-color: var(--color-brand-slate);
        transform: scale(1.1);
    }

    .cart-count {
        position: absolute;
        top: -5px;
        right: -5px;
        background: var(--color-brand-navy);
        color: white;
        font-size: 0.7rem;
        font-weight: 800;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid white;
    }

    /* Shop Loop (Products Grid) */
    .woocommerce ul.products {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* DARK GLASS CARD DESIGN */
    .woocommerce ul.products li.product {
        background: rgba(30, 45, 75, 0.7);
        /* Dark Navy Glass */
        backdrop-filter: blur(15px);
        border-radius: 40px;
        padding: 25px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
        text-align: center;
        list-style: none;
        margin: 0 !important;
        width: 100% !important;
        position: relative;
        overflow: hidden;
    }

    .woocommerce ul.products li.product:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        border-color: rgba(92, 124, 169, 0.5);
        /* Slate border on hover */
        background: rgba(30, 45, 75, 0.85);
    }

    .woocommerce ul.products li.product img {
        border-radius: 30px;
        margin-bottom: 25px;
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 1/1;
        background: #E8ECF2;
        /* Light bg for product visibility */
        mix-blend-mode: normal;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
        font-size: 1.4rem;
        color: #ffffff;
        font-weight: 800;
        padding: 0;
        margin: 0 0 20px;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    /* Hides default price output if generated by WC hook directly */
    .woocommerce ul.products li.product .price {
        display: flex !important;
        justify-content: center;
        margin-bottom: 20px;
        color: transparent;
    }

    /* EXPLICIT PRICE LABELS STYLING */
    .fomo-price-container {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 20px;
        background: rgba(0, 0, 0, 0.2);
        padding: 15px;
        border-radius: 20px;
    }

    .fomo-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 5px;
    }

    /* Row 1: General (Standard) */
    .fomo-price-row.standard .price-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #8A9BB8;
        /* Muted slate */
        font-weight: 600;
        letter-spacing: 1px;
    }

    .fomo-price-row.standard .price-amount {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
    }

    /* Row 2: Club (Coins) */
    .fomo-price-row.club {
        margin-top: 5px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .fomo-price-row.club .price-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #B4C7E7;
        /* Light Blue */
        font-weight: 700;
        letter-spacing: 1px;
    }

    .fomo-price-row.club .price-amount {
        font-size: 1.1rem;
        font-weight: 800;
        color: #5C7CA9;
        /* Slate Blue */
        display: flex;
        align-items: center;
        gap: 6px;
        text-shadow: 0 0 10px rgba(92, 124, 169, 0.4);
    }

    .fomo-coin-symbol {
        width: 18px;
        height: 18px;
        display: inline-block;
        background-image: url('assets/fomo_logo_white.svg');
        background-color: #556aa5;
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(85, 106, 165, 0.6);
    }

    /* Button override */
    .woocommerce ul.products li.product .button {
        background: #ffffff;
        color: var(--color-brand-navy) !important;
        padding: 16px 30px;
        border-radius: 50px;
        font-weight: 800;
        font-size: 0.9rem;
        text-transform: uppercase;
        display: inline-block;
        margin-top: 5px;
        border: none;
        transition: all 0.3s;
        letter-spacing: 1px;
        width: 100%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .woocommerce ul.products li.product .button:hover {
        background: var(--color-brand-light-blue);
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .woocommerce ul.products li.product .added_to_cart {
        display: block;
        margin-top: 15px;
        font-size: 0.85rem;
        color: #ffffff;
        font-weight: 600;
    }

    /* Shop Stickers Locations (Enhanced) */
    .sticker-Shop-1 {
        top: -50px;
        left: -20px;
        transform: rotate(15deg);
        width: 250px;
        opacity: 0.9;
        filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
    }

    .sticker-Shop-2 {
        bottom: -40px;
        right: -30px;
        transform: rotate(-10deg);
        width: 250px;
    }

    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.9);
    width: auto;
    /* Auto width para ser pastilla, no barra completa */
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav .nav-link {
    margin: 0;
    font-weight: 600;
    /* Outfit es más bold visualmente */
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-brand-navy);
    opacity: 0.7;
    position: relative;
    letter-spacing: 0.5px;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    opacity: 1;
    color: var(--color-brand-slate);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 25px;
    border-left: none;
}

/* Botón Header VIP */
.btn-pill {
    background: var(--color-brand-slate);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(92, 124, 169, 0.3);
    white-space: nowrap;
}

.btn-pill:hover {
    transform: scale(1.05);
    background: var(--color-brand-navy);
}

/* Login Button */
.btn-login {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-brand-navy);
    border: 2px solid var(--color-brand-navy);
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: var(--color-brand-navy);
    color: white;
}

/* Fidelity Badge (FOMO COIN) */
.user-badge {
    background: rgba(29, 43, 74, 0.95);
    padding: 5px 12px 5px 8px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(29, 43, 74, 0.4);
    /* Sombra azul suave */
    border: 1px solid rgba(85, 106, 165, 0.3);
    transition: transform 0.3s;
}

.user-badge:hover {
    transform: scale(1.05);
    border-color: #556aa5;
}

.points-label {
    font-size: 10px;
    font-weight: 800;
    color: #aebce6;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.points-value {
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

/* Icono Moneda (Blue Minimal v2 - Vector) */
.coin-icon {
    width: 28px;
    height: 28px;
    background-color: #556aa5;
    background-image: url('assets/fomo_logo_white.svg');
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    flex-shrink: 0;
    /* IMPEDIR DISTORSIÓN EN MÓVIL */
    border: none;
    box-shadow: 0 2px 8px rgba(85, 106, 165, 0.4);
}

/* Eliminamos el símbolo $ porque la imagen ya tiene texto */
.coin-icon::after {
    display: none;
}

/* --- HERO SECTION (Light) --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    color: var(--color-brand-navy);
    /* Dark Text */
    z-index: 2;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    /* Soft shadow for depth */
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.8), 0 5px 15px rgba(29, 43, 74, 0.1);
}

/* Sticker Integrado en Hero */
/* Sticker Integrado en Hero (Título Gráfico) */
/* Sticker Integrado en Hero (Título Gráfico) */
.hero-branding-sticker {
    margin: 0 auto 80px;
    /* Espacio generoso inferior */
    max-width: 750px;
    transform: rotate(-2deg);
    filter: drop-shadow(0 20px 40px rgba(29, 43, 74, 0.3));
    transition: all 0.5s ease;
    animation: brandingFloat 10s ease-in-out infinite;
    /* Más lento */
}

@keyframes brandingFloat {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(-2.5deg) translateY(-8px);
    }

    /* Sutil */
}

.hero-branding-sticker.main-title {
    display: block;
    width: 100%;
}

.hero-branding-sticker img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-branding-sticker:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-brand-slate);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
    background: var(--color-brand-navy);
    color: var(--color-white);
}

.btn-transparent {
    padding: 18px 40px;
    font-size: 1rem;
    border: 2px solid var(--color-brand-slate);
    border-radius: 30px;
    color: var(--color-brand-slate);
    font-weight: 700;
}

.btn-transparent:hover {
    background: var(--color-brand-slate);
    color: white;
}

/* --- SECCIÓN AGENDA (Clean Cards) --- */
.events-section {
    padding: 50px 0 100px;
    position: relative;
    z-index: 10;
}

.section-title,
.section-title-dark {
    text-align: center;
    color: var(--color-brand-navy);
    font-size: 3rem;
    /* Más grande e impactante */
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -2px;
    /* Apretado estilo Club */
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Decoración sutil para integrar el título */
.section-title::after,
.section-title-dark::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-brand-slate);
    margin: 20px auto 0;
    border-radius: 2px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    display: flex;
    align-items: center;
    background: var(--color-glass-imp);
    padding: 20px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-float);
    background: #ffffff;
}

.event-date {
    background: var(--color-brand-light-blue);
    /* Soft Blue */
    color: var(--color-brand-navy);
    padding: 15px 20px;
    border-radius: 25px;
    text-align: center;
    min-width: 80px;
    margin-right: 25px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.event-info h3 {
    font-size: 1.3rem;
    color: var(--color-brand-navy);
    margin-bottom: 4px;
}

.event-info p {
    color: var(--color-brand-slate);
    font-size: 0.9rem;
    margin: 0;
}

.event-action a.btn-pill {
    background: var(--color-brand-navy);
    color: white;
}

/* --- SECCIÓN GALERÍA --- */
.gallery-preview-section {
    padding: 50px 0 100px;
    position: relative;
    /* Para anclar stickers */
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-cover {
    aspect-ratio: 4/5;
    /* Formato Poster Uniforme */
    border-radius: 40px;
    /* Un poco menos redondeado para ser más moderno */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Borde sutil Glass */
    box-shadow: 0 15px 40px rgba(29, 43, 74, 0.15);
    /* Sombra difusa */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-cover:hover {
    transform: translateY(-5px) scale(1.02);
    /* Efecto elevación suave */
    box-shadow: 0 25px 50px rgba(29, 43, 74, 0.25);
    border-color: rgba(255, 255, 255, 0.9);
}

.gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(29, 43, 74, 0.9), transparent);
    color: white;
}

/* --- FOOTER (Dark Anchoring) --- */
.fomo-footer {
    background: var(--color-brand-navy);
    color: white;
    padding: 80px 0 40px;
    border-radius: 60px 60px 0 0;
    position: relative;
    z-index: 20;
}

.footer-content {
    text-align: center;
}

.footer-columns h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--color-brand-light-blue);
}

.footer-columns ul {
    list-style: none;
    padding: 0;
}

.footer-columns ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    margin-top: 50px;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* --- STICKERS DECORATIVOS --- */
@keyframes brandingFloat {

    0%,
    100% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(-2.5deg) translateY(-8px);
    }
}

/* --- STICKERS DECORATIVOS --- */
/* --- STICKERS DECORATIVOS --- */
/* --- STICKERS DECORATIVOS --- */
.floating-sticker {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}

.floating-sticker img {
    width: 180px;
    /* Tamaño medio (180px) */
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(29, 43, 74, 0.2));
    opacity: 1;
    /* Opacidad total */
}

/* Sticker 1: Hero Arriba Izquierda (Se mantiene) */
.sticker-1 {
    top: 23%;
    /* Rebajado para no tocar logo */
    left: 2%;
    animation-delay: 0s;
    transform: rotate(-10deg);
}

/* Sticker 2: Hero Abajo Derecha (Junto a botón Ver Fotos) */
.sticker-2 {
    bottom: 10%;
    /* Más arriba para liberar botones */
    right: 5%;
    /* Más pegado al borde */
    top: auto;
    /* Reset */
    animation-delay: 2s;
    transform: rotate(15deg);
}

/* Sticker 4: Eventos Izquierda (Junto a Título Próximos Eventos) */
.sticker-4 {
    top: 0;
    /* Alineado arriba total */
    left: 2%;
    /* Pegado al borde */
    right: auto;
    /* Reset */
    bottom: auto;
    /* Reset */
    animation-delay: 5s;
    transform: rotate(-8deg);
    /* Inclinación opuesta */
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* --- PAGE HEADER (GALERÍA SINGULAR) --- */
.page-header {
    margin-top: 100px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-brand-navy);
    /* Dark text for page header */
}

.photo-grid {
    column-count: 3;
    column-gap: 20px;
}

.photo-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.photo-item img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.photo-item img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    /* 1. Ajustes Header Mobile */
    .fomo-header {
        padding: 15px 0;
        /* Menos aire arriba/abajo */
    }

    .fomo-header .header-container {
        padding: 0 20px;
        /* Menos padding lateral */
    }

    .header-logo-standalone img {
        height: 55px !important;
        /* Logo más visible (Antes 40px) */
    }

    .header-pill.compact {
        padding: 8px 15px;
        gap: 15px;
    }

    /* Ocultar enlaces de texto en móvil, dejar solo acciones clave */
    .main-nav {
        display: none;
    }

    .btn-pill {
        padding: 8px 16px;
        font-size: 11px;
    }

    /* 2. Ajustes Hero Mobile */
    .hero-section {
        padding-top: 80px;
        /* Menos espacio superior */
    }

    .hero-branding-sticker {
        max-width: 90%;
        /* Que no se salga */
        margin-bottom: 40px;
    }


}

.hero-buttons {
    flex-direction: column;
    /* Botones uno debajo de otro */
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 10px;
}

.btn-large,
.btn-transparent {
    width: 100%;
    /* Botones full width en móvil */
    padding: 15px 20px;
    display: block;
    box-sizing: border-box;
}

/* 3. Ajustes Stickers (Reducción Drástica) */
.floating-sticker img {
    width: 80px;
    /* Reducido de 180px a 80px */
    filter: drop-shadow(0 5px 15px rgba(29, 43, 74, 0.15));
    /* Sombra más sutil */
}

/* Reubicación "Safe Zones" Mobile (Dentro de pantalla) */
.sticker-1 {
    top: 15%;
    left: 2%;
    /* Completamente visible */
}

.sticker-2 {
    bottom: 0%;
    /* Alineado al footer */
    right: 2%;
    /* Visible */
}

.sticker-4 {
    top: 10px;
    left: 2%;
    /* Visible */
    width: 60px !important;
}

/* 4. Títulos y Textos */
.section-title,
.section-title-dark {
    font-size: 2rem;
    /* Reducir títulos gigantes */
}

.event-card {
    padding: 20px;
    flex-direction: column;
    /* Cards verticales */
    text-align: center;
    gap: 15px;
}

.event-date {
    margin-right: 0;
    margin-bottom: 10px;
}

.event-action {
    width: 100%;
}

.event-action a {
    display: block;
    width: 100%;
}

.photo-grid {
    column-count: 1;
    /* Una columna para fotos */
}
}


/* --- FIX: OCULTAR ELEMENTOS DEFAULT WORDPRESS --- */
.site-header,
.site-branding,
.site-navigation,
.site-footer {
    display: none !important;
}

/* --- ESTILOS MIGRADOS DE DELEITO-EXPERIENCE.PHP --- */

/* Navigation Links - Cache Buster Styles */
.main-nav .nav-link {
    margin: 0 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    color: #1D2B4A !important;
    /* Navy */
    padding: 8px 18px !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.8px !important;
    opacity: 1 !important;
    background: transparent;
    text-decoration: none !important;
}

.main-nav .nav-link:hover {
    background: rgba(92, 124, 169, 0.1) !important;
    color: #1D2B4A !important;
}

.main-nav .nav-link.active {
    background: #1D2B4A !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(29, 43, 74, 0.2) !important;
}

.header-actions {
    border-left: none !important;
}

/* Visually Hidden Class for SEO (H1) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* MOBILE OVERRIDES */
@media (max-width: 768px) {
    .main-nav {
        display: none !important;
    }

    .coin-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .points-value {
        font-size: 13px !important;
    }

    .header-logo-standalone img {
        height: 40px !important;
    }

    /* Caja Menú transparente en móvil */
    .header-pill.compact {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        backdrop-filter: none !important;
    }

    /* Espaciado Móvil */
    .events-section {
        padding-bottom: 20px !important;
    }

    .gallery-preview-section {
        padding-top: 20px !important;
    }

    .section-title,
    .section-title-dark {
        margin-bottom: 25px !important;
        /* Menos margen títulos */
    }

    /* Overrides de Compresión Móvil */
    .event-card {
        padding: 15px !important;
        margin: 0 20px !important;
    }

    .gallery-grid {
        padding: 0 20px !important;
        /* FIXED: 20px */
        gap: 15px !important;
        grid-template-columns: 1fr !important;
    }
}

.site-title,
.page-header.theme-default {
    display: none !important;
}


/* --- WOOCOMMERCE CART PAGE DESIGN (Deleito Dark Premium) --- */

/* 1. Page Layout & Container */
.woocommerce-cart .entry-content,
.woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
}

/* Page Title (Dark Theme) */
.woocommerce-cart h1.entry-title {
    text-align: center;
    font-size: 3.5rem;
    margin: 40px 0 60px;
    color: var(--color-brand-navy);
    /* Keep Navy on Light BG if body is light, or White if body is dark. Assuming Body is Light Gradient */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    text-shadow: 0 5px 15px rgba(29, 43, 74, 0.1);
}

/* 2. Cart Table Structure */
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
    /* Vertical Gap */
    border: none;
    margin-bottom: 50px;
}

.woocommerce-cart table.shop_table thead th {
    font-family: var(--font-primary);
    color: var(--color-brand-slate);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border: none;
    font-weight: 700;
    text-align: center;
}

/* 3. Dark Navy Glass Rows (Shop Card Style) */
.woocommerce-cart table.shop_table tbody tr.cart_item {
    background: rgba(30, 45, 75, 0.85);
    /* Dark Navy Glass */
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(29, 43, 74, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle rim light */
}

.woocommerce-cart table.shop_table tbody tr.cart_item:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(30, 45, 75, 0.95);
    box-shadow: 0 25px 60px rgba(29, 43, 74, 0.3);
    border-color: rgba(92, 124, 169, 0.5);
    /* Slate Highlight */
}

/* Row Rounding */
.woocommerce-cart table.shop_table tbody tr.cart_item td:first-child {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.woocommerce-cart table.shop_table tbody tr.cart_item td:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.woocommerce-cart table.shop_table td {
    border: none;
    padding: 40px 30px;
    /* Much more spacious */
    vertical-align: middle;
    text-align: center;
    color: white;
}

/* ... existing code ... */

/* --- CART DECORATIONS (Stickers & Logo) --- */
.cart-decorations-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: -1;
    /* Behind everything */
    overflow: hidden;
}

.cart-sticker {
    position: absolute;
    opacity: 0.6;
    /* Reduced opacity */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

/* Sticker 1: Top Right (Floating off edge) */
.sticker-top-right {
    top: 10%;
    right: -12%;
    /* Very far out */
    width: 200px;
    transform: rotate(15deg);
    animation: floatSticker 12s ease-in-out infinite;
    /* Slower animation */
}

/* Sticker 2: Bottom Left (Floating off edge) */
.sticker-bottom-left {
    bottom: 5%;
    left: -12%;
    /* Very far out */
    width: 220px;
    transform: rotate(-10deg);
    animation: floatSticker 14s ease-in-out infinite reverse;
    /* Slower animation */
}

/* 4. Product Details */
.woocommerce-cart table.shop_table td.product-thumbnail {
    width: 120px;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-cart table.shop_table td.product-name {
    text-align: left !important;
    padding-left: 20px !important;
}

.woocommerce-cart table.shop_table td.product-name a {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    text-decoration: none;
    font-weight: 800 !important;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.woocommerce-cart table.shop_table td.product-name a:hover {
    color: var(--color-brand-light-blue) !important;
}

/* Product Meta Description (e.g. Variations) */
.woocommerce-cart table.shop_table td.product-name dl.variation,
.woocommerce-cart table.shop_table td.product-name .product-description {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
}

.woocommerce-cart table.shop_table td.product-price .amount,
.woocommerce-cart table.shop_table td.product-subtotal .amount {
    color: var(--color-brand-light-blue);
    /* Light Blue Price */
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(180, 199, 231, 0.3);
}

/* Quantity Input (Dark Mode) */
.woocommerce-cart .quantity {
    background: rgba(255, 255, 255, 0.1);
    /* Translucent */
    border-radius: 50px;
    padding: 5px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.woocommerce-cart .quantity input.qty {
    background: transparent;
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 800;
    color: white;
    padding: 8px;
    font-size: 1rem;
}

/* Remove Icon */
.woocommerce-cart table.shop_table td.product-remove a.remove {
    color: rgba(255, 255, 255, 0.5) !important;
    background: transparent !important;
    font-size: 24px !important;
    font-weight: 300;
    transition: all 0.3s;
    border: none !important;
}

.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
    color: #ff6b6b !important;
    /* Soft Red */
    background: transparent !important;
    transform: scale(1.2) rotate(90deg);
}

/* 5. Cart Actions */
.woocommerce-cart table.shop_table td.actions {
    padding-top: 40px;
    text-align: right;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.woocommerce-cart .coupon {
    float: left;
    display: flex;
    gap: 15px;
}

.woocommerce-cart .coupon input.input-text {
    border: 2px solid var(--color-brand-navy);
    border-radius: 50px;
    padding: 12px 25px;
    width: 220px;
    background: white;
    font-weight: 600;
    color: var(--color-brand-navy);
}

.woocommerce-cart .actions .button {
    background: transparent;
    color: var(--color-brand-navy);
    border: 2px solid var(--color-brand-navy);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
}

.woocommerce-cart .actions .button:hover {
    background: var(--color-brand-navy);
    color: white;
}

/* 6. Cart Totals (Glass Card - Navy on Navy) */
.cart-collaterals {
    margin-top: 60px;
}

.cart_totals {
    background: rgba(30, 45, 75, 0.95);
    /* Deepest Navy */
    padding: 50px;
    border-radius: 40px;
    color: white;
    width: 100%;
    max-width: 450px;
    margin-left: auto;
    box-shadow: 0 30px 80px rgba(29, 43, 74, 0.4);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart_totals h2 {
    color: white;
    border-bottom: 2px solid var(--color-brand-slate);
    padding-bottom: 20px;
    margin-bottom: 30px;
    font-size: 2rem;
    letter-spacing: -1px;
}

.cart_totals table.shop_table th {
    color: var(--color-brand-slate);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cart_totals table.shop_table td {
    color: white;
    font-size: 1.3rem;
    padding: 20px 0;
}

/* CHECKOUT BUTTON (Premium White Pill) */
.wc-proceed-to-checkout {
    margin-top: 40px;
}

.wc-proceed-to-checkout .checkout-button {
    background: #ffffff;
    /* White background */
    color: var(--color-brand-navy);
    /* Navy Text */
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 50px;
    /* Fully Rounded */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Lifted */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
    border: none;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: var(--color-brand-light-blue);
    transform: scale(1.03) translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* 7. Mobile Adjustments */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table tbody tr.cart_item {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-radius: 30px;
    }

    .woocommerce-cart table.shop_table td {
        display: block;
        padding: 10px 0;
        width: 100%;
        border-radius: 0 !important;
    }

    .woocommerce-cart table.shop_table td.product-thumbnail img {
        width: 120px;
        height: 120px;
    }

    .woocommerce-cart .coupon,
    .woocommerce-cart .coupon input.input-text,
    .woocommerce-cart .actions .button {
        width: 100%;
        float: none;
        margin-bottom: 10px;
    }

    .cart_totals {
        padding: 30px;
        margin: 40px auto 0;
    }
}

/* --- WOOCOMMERCE CHECKOUT PAGE DESIGN (Deleito Dark Premium) --- */

/* 1. Layout & Container */
.woocommerce-checkout .entry-content,
.woocommerce-checkout .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.woocommerce-checkout h1.entry-title {
    text-align: center;
    font-size: 3rem;
    color: var(--color-brand-navy);
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* 2. Customer Details (The Form) */
.woocommerce-checkout .col2-set {
    background: rgba(30, 45, 75, 0.95) !important;
    /* Dark Navy Glass Force */
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(29, 43, 74, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
    width: 100%;
    color: white !important;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
}

.woocommerce-checkout h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-brand-slate);
    padding-bottom: 10px;
    display: inline-block;
}

/* Form Fields */
.woocommerce-checkout form .form-row label {
    color: var(--color-brand-light-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row textarea {
    background: rgba(255, 255, 255, 0.9);
    /* White-ish base for readability */
    border: none;
    border-radius: 30px;
    /* Pill Shape */
    padding: 15px 25px;
    color: var(--color-brand-navy);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.woocommerce-checkout form .form-row input.input-text::placeholder {
    color: #8fa1b9;
}

.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row textarea:focus {
    background: white;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    outline: none;
    transform: translateY(-2px);
}

/* 3. Your Order Review */
.woocommerce-checkout #order_review_heading {
    text-align: center;
    color: var(--color-brand-navy);
    font-size: 2.2rem;
    margin: 50px 0 30px;
    text-transform: uppercase;
}

.woocommerce-checkout #order_review {
    background: rgba(255, 255, 255, 0.7) !important;
    /* Force Visibility */
    /* Lighter contrast for Review */
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout table.shop_table {
    border: none;
    margin-bottom: 40px;
}

.woocommerce-checkout table.shop_table thead th {
    color: var(--color-brand-navy);
    background: transparent;
    border-bottom: 2px solid var(--color-brand-navy);
}

.woocommerce-checkout table.shop_table tbody td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-brand-navy);
    font-weight: 600;
}

.woocommerce-checkout table.shop_table tfoot th {
    color: var(--color-brand-navy);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce-checkout table.shop_table tfoot td {
    color: var(--color-brand-navy);
    font-weight: 800;
    font-size: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 4. Payment Methods */
.woocommerce-checkout #payment {
    background: var(--color-brand-navy);
    border-radius: 30px;
    padding: 30px;
    color: white;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 15px;
    list-style: none;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.woocommerce-checkout #payment div.payment_box {
    background: rgba(0, 0, 0, 0.2) !important;
    color: #e0e6ed;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
}

/* Place Order Button */
.woocommerce-checkout #place_order {
    background: white;
    color: var(--color-brand-navy);
    width: 100%;
    padding: 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.woocommerce-checkout #place_order:hover {
    background: var(--color-brand-light-blue);
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Mobile Adjustments */
/* Mobile Adjustments */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set {
        padding: 20px;
        border-radius: 25px;
    }

    .woocommerce-checkout form .form-row input.input-text {
        padding: 12px 20px;
    }

    .woocommerce-checkout #order_review {
        padding: 20px;
    }
}

/* --- CART DECORATIONS (Stickers & Logo) --- */
/* --- CART DECORATIONS (Stickers & Logo) --- */
.cart-decorations-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: -1;
    /* Behind everything */
    overflow: hidden;
}

.cart-sticker {
    position: absolute;
    opacity: 0.6;
    /* Reduced opacity by request */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    transition: all 0.5s ease;
}

/* Sticker 1: Top Right (Floating off edge) */
.sticker-top-right {
    top: 10%;
    right: -12%;
    /* Further out */
    width: 220px;
    transform: rotate(15deg);
    animation: floatSticker 12s ease-in-out infinite;
}

/* Sticker 2: Bottom Left (Floating off edge) */
.sticker-bottom-left {
    bottom: 5%;
    left: -12%;
    /* Further out */
    width: 250px;
    transform: rotate(-10deg);
    animation: floatSticker 14s ease-in-out infinite reverse;
}

/* Watermark: Centered and Subtle */
.cart-logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    /* Responsive width */
    max-width: 600px;
    opacity: 0.04;
    /* Very subtle */
    z-index: -2;
}

@keyframes floatSticker {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-25px) rotate(20deg);
    }
}

/* Decor Mobile Adjustments */
@media (max-width: 768px) {
    .sticker-top-right {
        width: 120px;
        top: 5%;
        right: -10px;
    }

    .sticker-bottom-left {
        width: 150px;
        bottom: 5%;
        left: -20px;
    }

    .cart-logo-watermark {
        width: 300px;
    }
}

/* =========================================
   STYLES EXTRACTED FROM woocommerce.php
   ========================================= */

/* 1. Global Page Layout & Backgrounds */
.shop-page-v2 {
    background-color: #f0f4f8;
    /* Soft premium gray/blue white */
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    /* Hosted noise or local asset */
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* 2. Header Improvements (Floating Pill) */
.fomo-header {
    position: absolute !important;
    /* Fixed can sometimes leave gaps depending on body margin */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

/* 3. Hero Adjustments */
.shop-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
}

.hero-branding-sticker.main-title img {
    max-width: 550px;
    /* Enlarged from 450px */
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(29, 43, 74, 0.2));
}

@media (max-width: 768px) {
    .hero-branding-sticker.main-title img {
        max-width: 100%;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* 4. Products Container - "Clean Glass" (No blurry background stickers) */
.store-grid-wrapper {
    background: rgba(255, 255, 255, 0.5);
    /* Clearer background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 40px;
    padding: 60px 30px;
    margin-top: -40px;
    position: relative;
    z-index: 20;
    box-shadow: 0 20px 50px rgba(29, 43, 74, 0.08);
}

/* 5. Typography Refinements */
.woocommerce ul.products li.product {
    background: white !important;
    /* Clean white cards */
    border-radius: 30px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(29, 43, 74, 0.05) !important;
    border: 1px solid #f0f4f8 !important;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 43, 74, 0.1) !important;
}

.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    color: #1D2B4A !important;
    /* FOMO Navy */
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    margin: 15px 0 10px !important;
    min-height: 2.4em;
    /* Ensure uniform title height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product Image Uniformity */
.woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 250px !important;
    /* Fixed height for all */
    object-fit: contain !important;
    /* Show whole product without distortion */
    background: #fbfbfc;
    /* Subtle contrast for empty space */
    border-radius: 20px;
    margin-bottom: 0 !important;
}

/* Standardized Product Button (LO QUIERO) */
.woocommerce ul.products li.product .button {
    background: #1D2B4A !important;
    /* FOMO Navy */
    color: #ffffff !important;
    padding: 16px 30px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    margin-top: 15px !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(29, 43, 74, 0.2) !important;
    display: block !important;
    text-align: center !important;
}

.woocommerce ul.products li.product .button:hover {
    background: #00D1FF !important;
    /* Sky Blue - Matching Stickers/Coins */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 209, 255, 0.3) !important;
}

/* Price Labels System */
.fomo-price-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    margin-bottom: 20px;
}

.fomo-price-row.coins-price .price-amount {
    color: #00D1FF;
    /* Sky Blue - Matching Stickers */
    font-weight: 800;
    font-size: 1.4rem;
    /* Larger priority */
    letter-spacing: -0.5px;
}

.price-separator {
    font-size: 0.7rem;
    font-weight: 800;
    color: #5C7CA9;
    margin: -5px 0;
    opacity: 0.6;
}

.fomo-price-row.eur-price .price-amount {
    color: #5C7CA9;
    /* Slate Blue - secondary */
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* WooCommerce UI Cleanup */
.woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering select {
    color: #5C7CA9 !important;
}

/* Cart Points Balance */
.cart-points-balance {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #1D2B4A;
    color: #00D1FF;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border: 1px solid #00D1FF;
}

/* =========================================
   OTP MODAL & HEADER USER BADGE STYLES
   ========================================= */

/* 1. Header User Badge */
.btn-pill.user-badge {
    background: transparent;
    /* Or a specific color for logged in */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-pill.user-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: none;
    /* Less movement for name */
}

/* 2. Login Modal Overlay */
.fomo-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(29, 43, 74, 0.85);
    /* Navy backdrop */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modal Content Box */
.fomo-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: #1D2B4A;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Headers */
.fomo-modal-content h3 {
    color: #1D2B4A;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Adjustments for Plugin Form inside Modal */
#otp-login-container {
    text-align: left;
}

#otp-login-container label {
    color: #5C7CA9;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
}

#otp-login-container input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
    background: #f9fbfd;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

#otp-login-container button {
    width: 100%;
    background: #1D2B4A;
    color: white;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

#otp-login-container button:hover {
    background: #00D1FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3);
}

/* =========================================
   OTP MODAL & HEADER USER BADGE STYLES
   ========================================= */

/* 1. Header Buttons & Badges */
.btn-pill {
    background: #00D1FF !important;
    /* Sky Blue solid */
    color: #1D2B4A !important;
    /* Navy text */
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s;
}

.btn-pill.user-badge {
    background: #1D2B4A !important;
    /* Navy for User Badge */
    color: #00D1FF !important;
    /* Sky Blue Text */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 209, 255, 0.4);
}

/* 2. Login Modal Overlay */
.fomo-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(29, 43, 74, 0.85);
    /* Navy backdrop */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modal Content Box */
.fomo-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    text-align: center;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover,
.close-modal:focus {
    color: #1D2B4A;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Headers */
.fomo-modal-content h3 {
    color: #1D2B4A;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Adjustments for Plugin Form inside Modal */
#otp-login-container {
    text-align: left;
}

#otp-login-container label {
    color: #5C7CA9;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
}

#otp-login-container input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
    background: #f9fbfd;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

#otp-login-container button {
    width: 100%;
    background: #1D2B4A;
    color: white;
    padding: 15px;
    border-radius: 50px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

#otp-login-container button:hover {
    background: #00D1FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.3);
}

/* =========================================
   FOMO COINS PREMIUM UI
   ========================================= */

/* 1. Single Product Container */
.fomo-points-purchase.style-premium {
    background: linear-gradient(135deg, rgba(29, 43, 74, 0.95) 0%, rgba(20, 30, 55, 0.95) 100%);
    border: 2px solid #00D1FF;
    border-radius: 20px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.15);
    position: relative;
    overflow: hidden;
}

/* 2. Premium Button (Single Product) */
.btn-fomo-premium {
    background: linear-gradient(90deg, #00D1FF 0%, #007bff 100%) !important;
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    padding: 18px 40px !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(0, 209, 255, 0.4) !important;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    letter-spacing: 1px;
}

.btn-fomo-premium:hover {
    transform: scale(1.02) translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(0, 209, 255, 0.6) !important;
    filter: brightness(1.1);
}

/* 3. Insufficient Points Message */
.fomo-insufficient-points {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 10px;
}

/* 4. Loop Button (Shop Grid) */
.btn-fomo-loop {
    background: transparent !important;
    border: 2px solid #00D1FF !important;
    color: #00D1FF !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
    padding: 10px 20px !important;
    border-radius: 30px !important;
    margin-top: 10px !important;
    transition: all 0.3s !important;
    width: 100%;
}

.btn-fomo-loop:hover {
    background: #00D1FF !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 209, 255, 0.3) !important;
}

/* 5. Loop Insufficient Message */
.fomo-loop-msg {
    display: block;
    margin-top: 10px;
    color: #8fa1b9;
    font-size: 0.8rem;
    font-weight: 600;
}

/* =========================================
   FOMO COINS RESPONSIVE STYLES
   ========================================= */

@media (max-width: 768px) {

    /* 1. Header Badges & User Name */
    .header-pill {
        padding: 5px 10px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 5px !important;
    }

    .main-nav {
        display: none !important;
        /* Hide main links on mobile if menu is burger */
    }

    .header-logo-standalone img {
        height: 40px !important;
    }

    .user-badge {
        padding: 5px 10px !important;
        font-size: 0.8rem !important;
    }

    .user-badge .points-label {
        display: none !important;
        /* Hide "FOMO COINS" text, keep value */
    }

    /* 2. Global Points Bubble */
    .fomo-points-purchase.cart-points-balance {
        bottom: 15px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 20% auto !important;
        padding: 20px !important;
    }

    .fomo-modal-content h3 {
        font-size: 1.5rem !important;
    }

    /* 4. Cart Page specific */
    .cart-sticker,
    .cart-logo-watermark {
        display: none !important;
        /* Hide decorations on mobile */
    }

    /* 5. Product Page Box */
    .fomo-points-purchase.style-premium {
        padding: 15px !important;
        margin: 15px 0 !important;
    }

    .btn-fomo-premium {
        font-size: 0.9rem !important;
        padding: 12px 20px !important;
    }
}

/* 6. My Account Page Redesign */
.woocommerce-account .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

@media (min-width: 769px) {
    .woocommerce-account .woocommerce {
        flex-direction: row;
        align-items: flex-start;
    }

    .woocommerce-MyAccount-navigation {
        width: 30%;
        position: sticky;
        top: 100px;
    }

    .woocommerce-MyAccount-content {
        width: 65%;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(30, 45, 75, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 18px 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: rgba(0, 209, 255, 0.15) !important;
    color: #00D1FF !important;
    padding-left: 35px;
}

.woocommerce-MyAccount-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(29, 43, 74, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #1D2B4A;
}

.woocommerce-MyAccount-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.woocommerce-MyAccount-content a {
    color: #00D1FF;
    font-weight: 800;
}

/* Fomocoins Dashboard Card */
.fomo-dashboard-points {
    background: linear-gradient(135deg, #1D2B4A 0%, #304575 100%);
    border-radius: 30px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(29, 43, 74, 0.3);
    border: 1px solid rgba(0, 209, 255, 0.3);
}

.fomo-dashboard-points .points-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.fomo-dashboard-points .points-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00D1FF;
    line-height: 1;
}

.fomo-dashboard-points .points-action {
    background: #00D1FF;
    color: #1D2B4A;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.fomo-dashboard-points .points-action:hover {
    transform: scale(1.05);
}

/* MOBILE ALIGNMENT FIX FOR CHECKOUT PAGE - v1.2 */
@media (max-width: 768px) {

    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review,
    #otp-login-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    #otp-login-container {
        text-align: center !important;
    }
}

.fomo-dashboard-points .points-action:hover {
    transform: scale(1.05);
}

/* MOBILE ALIGNMENT FIX FOR CHECKOUT PAGE - v1.3 */
@media (max-width: 768px) {

    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review,
    #otp-login-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        padding: 20px !important;
        box-sizing: border-box !important;
    }

    #otp-login-container {
        text-align: center !important;
    }
}
/* MOBILE ALIGNMENT FIX FOR CHECKOUT PAGE - v1.4 (FINAL) */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review,
    #otp-login-container,
    .woocommerce-checkout form.checkout,
    .woocommerce-checkout {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 20px auto !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}
