/* ══════════════════════════════════════
   PLAZA INDEX — SPECIFIC STYLESHEET
   (Imports shared styles from plaza.common.css)
══════════════════════════════════════ */

@import url('plaza.common.css');

/* Override container max-width for index page */
.container { max-width: 1280px; }

/* ══════════════════════════════════════
   PLAZA INDEX — KEYFRAMES (Index-specific animations)
══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes floatA {
    0%,100% { transform: translateY(-50%) translate(0,0) rotate(0deg); }
    33%      { transform: translateY(-50%) translate(-10px,-20px) rotate(1.5deg); }
    66%      { transform: translateY(-50%) translate(6px,-10px) rotate(-1deg); }
}
@keyframes floatB {
    0%,100% { transform: translate(0,0) rotate(0deg); }
    40%      { transform: translate(-12px,-24px) rotate(-2deg); }
    70%      { transform: translate(8px,-12px) rotate(1.5deg); }
}
@keyframes floatC {
    0%,100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(6px,-16px) scale(1.04); }
}
@keyframes orbReveal {
    from { opacity: 0; transform: translateY(-50%) scale(0.75); }
    to   { opacity: 1; transform: translateY(-50%) scale(1); }
}
@keyframes orbReveal2 {
    from { opacity: 0; transform: scale(0.7) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
@keyframes glowPulse {
    0%,100% { box-shadow: 0 0 40px rgba(212,119,58,0.2); }
    50%      { box-shadow: 0 0 70px rgba(212,119,58,0.45), 0 0 120px rgba(212,119,58,0.15); }
}
@keyframes scanline {
    0%   { transform: translateY(-100%); }
    100% { transform: translateY(200vh); }
}
@keyframes particleDrift {
    0%,100% { transform: translate(0,0) scale(1); opacity: var(--op); }
    50%      { transform: translate(var(--dx),var(--dy)) scale(1.5); opacity: calc(var(--op) * 1.8); }
}
@keyframes scrollBounce {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.plaza-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(10,9,8,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    height: 58px;
    transition: background 0.3s;
}
@media (max-width: 480px) {
    .plaza-header { padding: 10px 0; height: 54px; }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
}

.header-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}

.header-auth { display: flex; align-items: center; gap: 8px; }

.btn-auth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.btn-login {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-login:hover { background: var(--primary-light); }

.user-menu-top { position: relative; }
.user-menu-btn {
    background: none;
    border: 1px solid var(--border-light);
    cursor: pointer;
    padding: 7px 12px;
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
}
.user-menu-btn:hover { border-color: var(--primary); }

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    min-width: 210px; z-index: 1000;
    display: none; overflow: hidden;
}
.user-menu-dropdown.open { display: block; }
.dropdown-header { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.dropdown-name { font-weight: 600; font-size: 0.82rem; color: var(--text); }
.dropdown-email { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.dropdown-item {
    display: flex; align-items: center; gap: 9px;
    padding: 10px 14px; font-size: 0.78rem; color: var(--text);
    border-bottom: 1px solid var(--border);
    cursor: pointer; background: none;
    border-left: none; border-right: none;
    width: 100%; font-family: 'DM Sans', sans-serif;
    transition: background 0.15s;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--card-hover); }
.dropdown-item.danger { color: #e05c5c; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0 70px;
    margin-top: 58px;
    overflow: hidden;
    isolation: isolate;
}
@media (max-width: 768px) {
    .hero { 
        padding: 60px 0 50px; 
        margin-top: 58px;
        min-height: auto;
    }
}
@media (max-width: 480px) {
    .hero { 
        padding: 50px 0 40px; 
        margin-top: 54px;
        min-height: auto;
    }
}

/* Bokeh bg */
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.65) saturate(1.15);
    transform: scale(1.06);
    transition: transform 14s ease;
    will-change: transform;
}
.hero:hover .hero-bg img { transform: scale(1.02); }

/* Overlays */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        radial-gradient(ellipse 80% 55% at 50% 115%, rgba(212,119,58,0.2) 0%, transparent 65%),
        radial-gradient(ellipse 120% 90% at 50% -10%, rgba(10,9,8,0.95) 0%, transparent 55%),
        linear-gradient(180deg, rgba(10,9,8,0.82) 0%, rgba(10,9,8,0.15) 38%, rgba(10,9,8,0.88) 100%);
}
.hero-scanline {
    position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none;
}
.hero-scanline::after {
    content: '';
    position: absolute; left: 0; right: 0; height: 140px;
    background: linear-gradient(to bottom, transparent, rgba(212,119,58,0.035), transparent);
    animation: scanline 10s linear infinite;
}
.hero-grain {
    position: absolute; inset: 0; z-index: 3; pointer-events: none;
    opacity: 0.032;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* ── Floating logo orbs ── */
.hero-orbs {
    position: absolute; inset: 0; z-index: 4; pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
}

/* Orb grande — logo redondo con fondo negro */
.orb-1 {
    width: 360px; height: 360px;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(212,119,58,0.22);
    box-shadow:
        0 0 60px rgba(212,119,58,0.22),
        0 0 140px rgba(212,119,58,0.08),
        inset 0 0 40px rgba(0,0,0,0.4);
    animation:
        orbReveal 1.3s cubic-bezier(.22,.68,0,1.25) 0.5s forwards,
        floatA 10s ease-in-out 1.8s infinite,
        glowPulse 5s ease-in-out 2s infinite;
}
@media (max-width: 1024px) {
    .orb-1 { width: 280px; height: 280px; right: -100px; }
}
@media (max-width: 768px) {
    .orb-1 { width: 200px; height: 200px; right: -80px; display: none; }
}
@media (max-width: 640px) {
    .orb-1 { 
        width: 140px; 
        height: 140px; 
        right: -30px; 
        bottom: 20%; 
        top: auto;
        transform: none;
        border: 1px solid rgba(212,119,58,0.15);
        box-shadow: 0 0 30px rgba(212,119,58,0.1);
        opacity: 0.3;
        animation: none;
        display: block;
    }
}
@media (max-width: 480px) {
    .orb-1 { width: 100px; height: 100px; right: -20px; opacity: 0.25; }
}

/* Orb mediano — logo blanco */
.orb-2 {
    width: 130px; height: 130px;
    right: 310px; top: 10%;
    border: 1px solid rgba(212,119,58,0.18);
    box-shadow: 0 0 30px rgba(212,119,58,0.18);
    background: rgba(10,9,8,0.7);
    animation:
        orbReveal2 1s cubic-bezier(.22,.68,0,1.25) 1s forwards,
        floatB 12s ease-in-out 2s infinite;
}
.orb-2 img { object-fit: contain; padding: 10px; width: 100%; height: 100%; }
@media (max-width: 1024px) {
    .orb-2 { width: 100px; height: 100px; right: 250px; }
}
@media (max-width: 768px) {
    .orb-2 { width: 80px; height: 80px; right: 80px; display: none; }
}
@media (max-width: 480px) {
    .orb-2 { display: none; }
}

/* Orb pequeño */
.orb-3 {
    width: 68px; height: 68px;
    right: 140px; bottom: 20%;
    border: 1px solid rgba(212,119,58,0.28);
    box-shadow: 0 0 20px rgba(212,119,58,0.22);
    filter: brightness(0.65);
    animation:
        orbReveal2 1s cubic-bezier(.22,.68,0,1.25) 1.4s forwards,
        floatC 8s ease-in-out 2.4s infinite;
}
@media (max-width: 768px) {
    .orb-3 { width: 50px; height: 50px; right: 60px; }
}
@media (max-width: 480px) {
    .orb-3 { display: none; }
}

/* Arc decorativo */
.orb-arc {
    position: absolute;
    right: 115px; top: 15%;
    width: 290px; height: 370px;
    border: 1px dashed rgba(212,119,58,0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: fadeIn 2.5s ease 2.5s both;
}
@media (max-width: 768px) {
    .orb-arc { display: none; }
}

/* ── Particles ── */
.hero-particles {
    position: absolute; inset: 0; z-index: 4; pointer-events: none;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    animation: particleDrift var(--dur) ease-in-out var(--delay) infinite;
}

/* ── Hero content ── */
.hero-content {
    position: relative; z-index: 10;
    max-width: 620px;
    margin: 0 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (max-width: 1024px) {
    .hero-content { margin: 0 0 0 100px; max-width: 550px; }
}
@media (max-width: 768px) {
    .hero-content { margin: 0; max-width: 100%; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .hero-content { margin: 0; max-width: 100%; }
}

.hero-badge {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: rgba(212,119,58,0.1);
    border: 1px solid rgba(212,119,58,0.32);
    color: var(--primary);
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 7px 14px; border-radius: 999px;
    margin-bottom: 24px; width: fit-content;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(.22,.68,0,1.2) 0.2s forwards;
}
@media (max-width: 480px) {
    .hero-badge { font-size: 0.6rem; padding: 6px 12px; margin-bottom: 16px; }
}
.hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary);
    animation: glowPulse 2s ease infinite;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.95s cubic-bezier(.22,.68,0,1.2) 0.42s forwards;
}
@media (max-width: 480px) {
    .hero-title { margin-bottom: 12px; }
}
.hero-title strong { font-weight: 700; display: block; }
.hero-title em {
    font-style: italic; font-weight: 300;
    background: linear-gradient(90deg, #D4773A, #F0A060, #E08840, #D4773A);
    background-size: 220% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4.5s linear 1.5s infinite;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.5);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 460px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.95s cubic-bezier(.22,.68,0,1.2) 0.62s forwards;
}
@media (max-width: 768px) {
    .hero-subtitle { font-size: 0.85rem; max-width: 100%; }
}
@media (max-width: 480px) {
    .hero-subtitle { font-size: 0.75rem; margin-bottom: 24px; }
}

.hero-divider {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.78s forwards;
}
@media (max-width: 480px) {
    .hero-divider { margin-bottom: 20px; gap: 10px; }
}
.hero-divider-line {
    flex: 1; max-width: 56px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(212,119,58,0.45));
}
.hero-divider-line.r { background: linear-gradient(to left, transparent, rgba(212,119,58,0.45)); }
.hero-divider-icon { color: var(--primary); font-size: 0.78rem; opacity: 0.65; }
@media (max-width: 480px) {
    .hero-divider-line { max-width: 40px; }
    .hero-divider-icon { font-size: 0.65rem; }
}

/* Search */
.search-wrap {
    position: relative; margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(.22,.68,0,1.2) 0.88s forwards;
    width: 100%;
}
@media (max-width: 768px) {
    .search-wrap { margin-bottom: 28px; }
}
@media (max-width: 480px) {
    .search-wrap { margin-bottom: 20px; }
}
.search-icon {
    position: absolute; left: 18px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted); pointer-events: none; font-size: 0.9rem;
}
.search-input {
    width: 100%; height: 52px;
    background: rgba(20,17,13,0.9);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0 20px 0 48px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem; font-weight: 300;
    color: var(--text);
    outline: none; -webkit-appearance: none; appearance: none;
    backdrop-filter: blur(10px);
    transition: border-color 0.25s, box-shadow 0.25s;
}
@media (max-width: 480px) {
    .search-input { height: 44px; font-size: 0.8rem; padding: 0 16px 0 40px; }
}
.search-input::placeholder { color: rgba(122,112,96,0.55); }
.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,119,58,0.14), 0 8px 32px rgba(0,0,0,0.35);
}

/* Stats */
.hero-stats {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s cubic-bezier(.22,.68,0,1.2) 1.06s forwards;
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .hero-stats { justify-content: center; gap: 16px; }
}
@media (max-width: 480px) {
    .hero-stats { gap: 12px; }
}
.stat-divider { width: 1px; height: 30px; background: rgba(38,32,24,0.9); }
@media (max-width: 480px) {
    .stat-divider { height: 20px; }
}
.stat { display: flex; align-items: center; gap: 11px; }
@media (max-width: 480px) {
    .stat { gap: 8px; }
}
.stat-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(212,119,58,0.1);
    border: 1px solid rgba(212,119,58,0.18);
    color: var(--primary); font-size: 0.88rem; flex-shrink: 0;
}
@media (max-width: 480px) {
    .stat-icon { width: 32px; height: 32px; font-size: 0.75rem; }
}
.stat strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--text); line-height: 1;
}
@media (max-width: 480px) {
    .stat strong { font-size: 1rem; }
}
.stat small {
    font-size: 0.66rem; color: var(--muted);
    margin-top: 2px; display: block;
    text-transform: uppercase; letter-spacing: 0.07em;
}
@media (max-width: 480px) {
    .stat small { font-size: 0.55rem; }
}

/* Scroll hint */
.scroll-hint {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(122,112,96,0.45); font-size: 0.62rem;
    letter-spacing: 0.11em; text-transform: uppercase;
    opacity: 0; animation: fadeIn 1s ease 2.2s forwards;
}
.scroll-mouse {
    width: 22px; height: 34px;
    border: 1px solid rgba(122,112,96,0.28);
    border-radius: 999px;
    display: flex; justify-content: center; padding-top: 7px;
}
.scroll-wheel {
    width: 3px; height: 7px;
    background: rgba(212,119,58,0.55);
    border-radius: 999px;
    animation: scrollBounce 1.9s ease infinite;
}

/* ══════════════════════════════════════
   CATEGORY BAR — UPGRADED
══════════════════════════════════════ */
.category-bar {
    position: sticky; top: 58px; z-index: 150;
    padding: 0;
    background: rgba(10,9,8,0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
@media (max-width: 480px) {
    .category-bar { top: 54px; }
}
.category-bar-inner {
    display: flex; align-items: center;
    gap: 0; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
    padding: 0 4px;
}
.category-bar-inner::-webkit-scrollbar { display: none; }

.cat-pill {
    display: inline-flex; align-items: center; gap: 7px;
    white-space: nowrap;
    padding: 13px 20px;
    font-size: 0.77rem; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.03em;
    border: none; cursor: pointer;
    background: transparent; color: var(--muted);
    flex-shrink: 0;
    position: relative;
    transition: color 0.22s;
}
.cat-pill::after {
    content: '';
    position: absolute; bottom: 0; left: 20px; right: 20px;
    height: 2px; border-radius: 2px 2px 0 0;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(.22,.68,0,1.2);
}
.cat-pill:hover { color: var(--text); }
.cat-pill.active { color: var(--primary); }
.cat-pill.active::after { transform: scaleX(1); }
.cat-pill i { font-size: 0.85rem; transition: transform 0.2s; }
.cat-pill:hover i { transform: scale(1.2); }
.cat-pill .cat-count {
    font-size: 0.62rem; background: var(--primary-light);
    color: var(--primary); padding: 1px 6px; border-radius: 99px;
    font-weight: 700; display: none;
}
.cat-pill.active .cat-count { display: inline-block; }

/* ══════════════════════════════════════
   FILTERED PRODUCTS — UPGRADED
══════════════════════════════════════ */
.filtered-section {
    padding: 60px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.filtered-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-glow), transparent);
}
.filtered-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.filtered-label {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--primary);
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.filtered-label::before {
    content: ''; width: 20px; height: 1px;
    background: var(--primary); opacity: 0.6;
}
.filtered-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--text);
    line-height: 1.1;
}
.filtered-count-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; border-radius: 99px;
    background: var(--card); border: 1px solid var(--border-light);
    font-size: 0.75rem; color: var(--muted); font-weight: 500;
}
.filtered-count-badge strong { color: var(--primary); }

.grid-products-filtered {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
@media (min-width: 640px) {
    .grid-products-filtered { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .grid-products-filtered { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* Transition for filtered grid */
.fade-slide-enter-active { transition: all 0.42s cubic-bezier(.22,.68,0,1.2); }
.fade-slide-leave-active { transition: all 0.22s ease; position: absolute; }
.fade-slide-enter-from { opacity: 0; transform: translateY(20px); }
.fade-slide-leave-to   { opacity: 0; transform: translateY(-8px); }

.product-card-v2 {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.32s cubic-bezier(.22,.68,0,1.2), box-shadow 0.32s;
    cursor: pointer;
    position: relative;
}
.product-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px var(--primary-glow);
}
.product-card-v2 .product-img {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
    background: rgba(0,0,0,0.2);
}
.product-card-v2 .product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s cubic-bezier(.22,.68,0,1.2);
}
.product-card-v2:hover .product-img img { transform: scale(1.1); }
.product-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,9,8,0.8) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
}
.product-card-v2:hover .product-img-overlay { opacity: 1; }
.product-cat-chip {
    position: absolute; top: 10px; left: 10px;
    background: rgba(10,9,8,0.75); backdrop-filter: blur(8px);
    color: var(--primary); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 9px; border-radius: 99px;
    border: 1px solid rgba(212,119,58,0.3);
}
.product-card-v2 .product-body { padding: 14px; }
.product-card-v2 .product-local {
    font-size: 0.62rem; font-weight: 700;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: 0.07em; margin-bottom: 5px;
}
.product-card-v2 .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 10px;
}
.product-card-v2 .product-footer {
    display: flex; align-items: center; justify-content: space-between;
}
.product-card-v2 .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 700; color: var(--primary);
}

/* Loading skeleton */
.skeleton-grid {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
@media (min-width: 640px) { .skeleton-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .skeleton-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.skeleton-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.skeleton-img {
    aspect-ratio: 4/3;
    background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s infinite;
}
.skeleton-body { padding: 14px; }
.skeleton-line {
    height: 10px; border-radius: 5px;
    background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.4s infinite;
    margin-bottom: 8px;
}
.skeleton-line.w-60 { width: 60%; }
.skeleton-line.w-80 { width: 80%; }
.skeleton-line.w-40 { width: 40%; }
@keyframes skeletonShimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ══════════════════════════════════════
   LOCALES SECTION — UPGRADED
══════════════════════════════════════ */
.locales-section {
    padding: 72px 0;
    border-bottom: 1px solid var(--border);
}
.locales-header-row {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.locales-eyebrow {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary); margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
}
.locales-eyebrow::before {
    content: ''; width: 20px; height: 1px;
    background: var(--primary); opacity: 0.6;
}
.locales-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--text);
    line-height: 1.05; margin-bottom: 8px;
}
.locales-sub {
    font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.6;
}
.locales-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--border-light);
    line-height: 1; letter-spacing: -0.03em;
}
.locales-count span { color: var(--primary); }

.grid-locals-v2 {
    display: grid; gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .grid-locals-v2 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
    .grid-locals-v2 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.local-card-v2 {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
    cursor: pointer;
    position: relative;
    display: flex; flex-direction: column;
}
.local-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--primary-glow);
}

.local-img-wrap-v2 {
    position: relative;
    aspect-ratio: 3/2; overflow: hidden;
}
.local-img-v2 {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(.22,.68,0,1.2);
}
.local-card-v2:hover .local-img-v2 { transform: scale(1.09); }

.local-img-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(10,9,8,0.85) 100%);
}
.local-floating-status {
    position: absolute; top: 12px; right: 12px;
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(10,9,8,0.75); backdrop-filter: blur(8px);
    padding: 4px 10px; border-radius: 99px;
    font-size: 0.66rem; font-weight: 700;
    border: 1px solid rgba(74,222,128,0.25);
}
.local-floating-status.open { color: #4ade80; }
.local-floating-status.closed { color: var(--muted); border-color: var(--border); }
.local-floating-status .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}
.local-floating-status.closed .dot {
    background: var(--muted); animation: none;
}

.local-body-v2 {
    padding: 18px; flex: 1;
    display: flex; flex-direction: column;
}
.local-name-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--text); margin-bottom: 6px;
    line-height: 1.2;
}
.local-desc-v2 {
    font-size: 0.76rem; color: var(--muted);
    line-height: 1.6; font-weight: 300;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: 14px; flex: 1;
}
.local-meta-v2 {
    display: flex; align-items: center;
    gap: 12px; margin-bottom: 14px;
    flex-wrap: wrap;
}
.meta-chip {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.72rem; color: var(--muted); font-weight: 500;
}
.meta-chip i { color: var(--primary); font-size: 0.8rem; }

.local-status {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.72rem; font-weight: 600; color: #4ade80;
}
.local-status::before {
    content: ''; display: inline-block;
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}
.local-status.closed { color: var(--muted); }
.local-status.closed::before { background: var(--muted); animation: none; }

.btn-ver-menu-v2 {
    width: 100%; padding: 11px 0;
    background: transparent;
    color: var(--primary);
    font-size: 0.82rem; font-weight: 700;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em;
    text-decoration: none;
}
.btn-ver-menu-v2:hover {
    background: var(--primary); color: #fff;
    box-shadow: 0 6px 20px var(--primary-glow);
}
.btn-ver-menu-v2:active { transform: scale(0.97); }
.btn-ver-menu-v2 i { transition: transform 0.22s; }
.btn-ver-menu-v2:hover i { transform: translateX(4px); }

/* ══════════════════════════════════════
   PRODUCTOS DESTACADOS — UPGRADED
══════════════════════════════════════ */
.destacados-section {
    padding: 72px 0;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.destacados-section::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(10,9,8,0.80);
    pointer-events: none; z-index: 0;
}
.destacados-section > .container { position: relative; z-index: 1; }

.destacados-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.destacados-fire-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(212,119,58,0.12);
    border: 1px solid rgba(212,119,58,0.35);
    color: var(--primary);
    font-size: 0.68rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 99px;
    margin-bottom: 12px; width: fit-content;
}
.destacados-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700; color: var(--text);
    line-height: 1.05; margin-bottom: 8px;
}
.destacados-sub {
    font-size: 0.88rem; color: rgba(245,240,232,0.45);
    font-weight: 300; line-height: 1.6;
}

.grid-destacados {
    display: grid; gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
}
@media (min-width: 640px) {
    .grid-destacados { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
    .grid-destacados { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.destacado-card {
    background: rgba(23,20,16,0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(48,40,32,0.8);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2), box-shadow 0.35s;
    cursor: pointer;
}
.destacado-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px var(--primary-glow);
}
.destacado-img {
    position: relative; aspect-ratio: 1; overflow: hidden;
    background: rgba(0,0,0,0.25);
}
.destacado-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.55s cubic-bezier(.22,.68,0,1.2);
}
.destacado-card:hover .destacado-img img { transform: scale(1.1); }
.destacado-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,9,8,0.7) 0%, transparent 55%);
}
.destacado-popular-tag {
    position: absolute; top: 9px; right: 9px;
    background: var(--primary); color: #fff;
    font-size: 0.58rem; font-weight: 800; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 3px 9px; border-radius: 99px;
}
.destacado-body { padding: 13px 14px; }
.destacado-local {
    font-size: 0.6rem; font-weight: 700; color: var(--primary);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px;
}
.destacado-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 700; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    margin-bottom: 10px;
}
.destacado-footer {
    display: flex; align-items: center; justify-content: space-between;
}
.destacado-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--primary);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
    .orb-1 { width: 260px; height: 260px; right: -70px; }
    .orb-2 { width: 100px; height: 100px; right: 205px; }
    .orb-3 { display: none; }
    .orb-arc { display: none; }
}
@media (max-width: 640px) {
    .hero-title { font-size: 2.4rem; }
    .orb-1 { 
        width: 120px; 
        height: 120px; 
        right: -20px; 
        top: 10%;
        bottom: auto;
        transform: none;
        opacity: 0.25 !important;
        border: 1px solid rgba(212,119,58,0.12);
        box-shadow: 0 0 25px rgba(212,119,58,0.1);
        animation: orbFloatMobile 4s ease-in-out infinite;
    }
    .orb-2 { display: none; }
    .hero-stats { gap: 14px; }
    .stat-divider { display: none; }
    .grid-locals-v2 { grid-template-columns: 1fr; }
    .locales-count { display: none; }
    .filtered-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
    .plaza-header { padding: 10px 0; }
    .orb-1 { 
        width: 90px; 
        height: 90px;
        right: -15px;
        top: 8%;
        opacity: 0.2 !important;
        animation: orbFloatMobile 5s ease-in-out infinite;
    }
    .grid-locals-v2 { grid-template-columns: 1fr; }
    .destacados-header { flex-direction: column; }
}

/* ── SMALL CONFIRMATION MODAL ──*/
.swal-small-popup {
    max-width: 320px !important;
    width: 90% !important;
    padding: 24px 20px !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 119, 58, 0.2) !important;
    animation: scaleIn 0.3s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.swal-small-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    font-family: 'DM Sans', sans-serif !important;
}

.swal-small-html {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
}

.swal2-confirm, .swal2-cancel {
    font-size: 0.85rem !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    min-width: 120px !important;
}

.swal2-confirm {
    background: #D4773A !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(212, 119, 58, 0.3) !important;
}

.swal2-confirm:hover {
    background: #c06830 !important;
    box-shadow: 0 6px 16px rgba(212, 119, 58, 0.4) !important;
}

.swal2-cancel {
    background: #3a3531 !important;
    border: 1px solid #4d4540 !important;
    color: #b0a099 !important;
}

.swal2-cancel:hover {
    background: #4d4540 !important;
    color: #d4c5ba !important;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── SWAL2 Z-INDEX FIX ──*/
.swal2-container {
    z-index: 99999 !important;
}

.swal2-modal {
    z-index: 99999 !important;
}

/* ══════════════════════════════════════
   UTILITY CLASSES — Reutilizables
══════════════════════════════════════ */

/* Buttons */
.cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--primary);
    background: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.btn-link {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

/* Images & Avatars */
.avatar-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-lg {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* Icons */
.icon-lg { font-size: 18px; }
.icon-md { font-size: 17px; }
.icon-sm { font-size: 0.6rem; opacity: 0.5; }
.icon-xs { font-size: 0.5rem; }

/* Text Utilities */
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.text-sm { font-size: 0.75rem; }
.text-xs { font-size: 0.65rem; }
.text-label { color: var(--text); font-size: 0.75rem; }
.text-disabled { color: var(--muted); }

/* Status Indicators */
.status-open {
    color: #4ade80;
    font-size: 0.5rem;
}

.status-closed {
    color: #ff1100;
    font-size: 0.5rem;
}

.status-label {
    font-size: 0.65rem;
    margin-top: 2px;
    font-weight: 600;
}

/* Spacing */
.m-0 { margin: 0; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.gap-12 { gap: 12px; }

/* Flex Utilities */
.flex-row { display: flex; align-items: center; gap: 12px; }
.flex-row-space { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* Layout */
.preview-banner {
    background: linear-gradient(135deg, #c9690f 0%, #a85010 100%);
    color: white;
    padding: 13px 20px;
    border-bottom: 2px solid #f59e0b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.preview-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.preview-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Brand & User Info */
.user-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 2px solid rgba(212,119,58,0.4);
    min-width: fit-content;
}

/* ══════════════════════════════════════
   EVENTOS SECTION
══════════════════════════════════════ */
.eventos-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10,9,8,0.8) 0%, rgba(20,15,10,0.95) 100%);
    position: relative;
}

.eventos-header {
    margin-bottom: 3rem;
    animation: fadeUp 0.7s ease-out forwards;
}

.eventos-eyebrow {
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.eventos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
}

.eventos-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}

/* Tabs */
.eventos-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    background: rgba(212,119,58,0.15);
    border: 1.5px solid rgba(212,119,58,0.4);
    color: rgba(255,255,255,0.8);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.tab-btn:hover {
    background: rgba(212,119,58,0.25);
    border-color: rgba(212,119,58,0.7);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(212,119,58,0.3);
}

.tab-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tab-btn.active .tab-badge {
    background: rgba(255,255,255,0.3);
}

/* Grid */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    animation: fadeUp 0.6s ease-out 0.1s forwards;
}

/* Evento Card */
.evento-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,119,58,0.3);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.evento-card:hover {
    border-color: var(--primary);
    background: rgba(212,119,58,0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(212,119,58,0.2);
}

.evento-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212,119,58,0.2), rgba(100,50,30,0.2));
}

.evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.evento-card:hover .evento-img img {
    transform: scale(1.05);
}

.evento-time,
.evento-date {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(212,119,58,0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

.evento-btn-add {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.evento-btn-add:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.evento-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.evento-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.evento-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 12px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.evento-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(212,119,58,0.2);
}

.evento-location {
    font-size: 0.85rem;
    color: rgba(212,119,58,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-link-evento {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-link-evento:hover {
    gap: 10px;
    color: #ffb366;
}

/* Empty State */
.eventos-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255,255,255,0.6);
}

.eventos-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: rgba(212,119,58,0.5);
}

.eventos-empty p {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .eventos-section {
        padding: 4rem 0;
    }

    .eventos-title {
        font-size: 1.8rem;
    }

    .eventos-grid {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
    }
}

/* ══════════════════════════════════════
   EVENTOS DRAWER (Side Panel)
══════════════════════════════════════ */
.eventos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--primary);
    background: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    position: relative;
}

.eventos-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.events-btn i {
    color: var(--primary);
}

/* Body state when drawer is open */
body.events-drawer-open {
    overflow: hidden;
}

.events-badge {
    font-weight: 600;
    font-size: 0.8rem;
}

/* Drawer Overlay */
.eventos-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

/* Drawer Panel */
.eventos-drawer {
    position: fixed;
    right: -420px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10,9,8,0.95) 0%, rgba(20,15,10,0.98) 100%);
    border-left: 1px solid rgba(212,119,58,0.3);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -4px 0 20px rgba(0,0,0,0.6);
}

.eventos-drawer.active {
    right: 0;
}

/* Drawer Header */
.eventos-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(212,119,58,0.2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.eventos-drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.eventos-drawer-subtitle {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 8px 0 0 0;
}

.drawer-close-btn {
    background: rgba(212,119,58,0.1);
    border: 1px solid rgba(212,119,58,0.3);
    color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.drawer-close-btn:hover {
    background: rgba(212,119,58,0.2);
    color: var(--primary);
}

/* Drawer Tabs */
.eventos-drawer-tabs {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(212,119,58,0.2);
}

.drawer-tab-btn {
    flex: 1;
    padding: 8px 12px;
    background: rgba(212,119,58,0.1);
    border: 1px solid rgba(212,119,58,0.3);
    color: rgba(255,255,255,0.7);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.drawer-tab-btn:hover {
    background: rgba(212,119,58,0.15);
    border-color: rgba(212,119,58,0.5);
}

.drawer-tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.drawer-tab-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.drawer-tab-btn.active .drawer-tab-badge {
    background: rgba(255,255,255,0.3);
}

/* Drawer Content */
.eventos-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.drawer-eventos-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Drawer Evento Item */
.drawer-evento-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(212,119,58,0.08);
    border: 1px solid rgba(212,119,58,0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.drawer-evento-item:hover {
    background: rgba(212,119,58,0.15);
    border-color: rgba(212,119,58,0.4);
}

.drawer-evento-img {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.drawer-evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-evento-info {
    flex: 1;
    min-width: 0;
}

.drawer-evento-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-evento-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-evento-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-item {
    font-size: 0.75rem;
    color: rgba(212,119,58,0.9);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.drawer-evento-view {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(212,119,58,0.2);
    border: 1px solid rgba(212,119,58,0.4);
    color: var(--primary);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    align-self: center;
}

.drawer-evento-view:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Drawer Empty */
.drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.5);
}

.drawer-empty i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: rgba(212,119,58,0.4);
}

.drawer-empty p {
    font-size: 0.95rem;
}

/* Scrollbar Styling */
.eventos-drawer-content::-webkit-scrollbar {
    width: 6px;
}

.eventos-drawer-content::-webkit-scrollbar-track {
    background: rgba(212,119,58,0.1);
}

.eventos-drawer-content::-webkit-scrollbar-thumb {
    background: rgba(212,119,58,0.5);
    border-radius: 3px;
}

.eventos-drawer-content::-webkit-scrollbar-thumb:hover {
    background: rgba(212,119,58,0.7);
}

/* Body States */
body.events-drawer-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .eventos-drawer {
        width: 100%;
        right: -100%;
    }

    .eventos-drawer.active {
        right: 0;
    }

    .drawer-evento-img {
        width: 70px;
        height: 70px;
    }
}

.time-display {
    text-align: right;
}

.time-label {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.6);
    margin-bottom: 4px;
    font-weight: 600;
}

.time-value {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
}

/* Static Content Classes */
.preview-text-main {
    font-weight: 600;
    font-size: 14px;
}

.preview-text-sub {
    font-size: 12px;
    opacity: 0.9;
}

.stars-container {
    display: flex;
    gap: 2px;
}

.stars-container-lg {
    display: flex;
    gap: 4px;
    margin: 10px 0;
}

.arrow-ml { margin-left: 4px; }

.status-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 4px;
    flex-shrink: 0;
}

.status-dot-open {
    background: #4ade80;
}

.status-dot-closed {
    background: #ef4444;
}

.description-text {
    font-size: 0.8rem;
    color: rgba(200, 220, 200, 0.4);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.error-text {
    font-size: 0.85rem;
    color: #ff1100;
    font-weight: 600;
}

.lock-icon {
    width: 16px;
    color: #D4773A;
    flex-shrink: 0;
}

.login-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.login-warning-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #F5F0E8;
    white-space: nowrap;
}

.nowrap {
    white-space: nowrap;
}


