/* ================= VARIABLES ================= */
:root {
    --bg-color: #0a0a0a;
    --bg-secondary: #141414;
    --text-main: #f9f9f9;
    --text-secondary: #bbb;
    --primary-red: #d32f2f;
    --primary-red-dark: #b71c1c;
    --accent-yellow: #fbc02d;
    --accent-yellow-light: #ffeb3b;
    --accent-orange: #f57c00;
    --accent-green: #25D366;
    --font-titles: 'Anton', sans-serif;
    --font-text: 'Roboto', sans-serif;
    --shadow-red: 0 0 20px rgba(211, 47, 47, 0.5);
    --shadow-yellow: 0 0 20px rgba(251, 192, 45, 0.4);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --border-radius: 15px;
}

/* ================= RESET Y BASES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-text);
    overflow-x: hidden;
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    min-height: 100vh;
}

/* Decorative background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30M15 15L45 45M45 15L15 45' stroke='%23ffffff' stroke-width='0.3' fill='none' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

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

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

ul {
    list-style: none;
}

/* ================= NAVEGACIÓN ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

nav.scrolled {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    height: 50px;
    transition: transform var(--transition-fast);
    filter: drop-shadow(0 0 10px rgba(211, 47, 47, 0.3));
}

.nav-logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--accent-yellow);
    font-family: var(--font-titles);
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-red);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(211, 47, 47, 0.8);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 3px;
    transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= SECCIONES Y CONTENEDORES ================= */
#app {
    position: relative;
    z-index: 1;
}

section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 35px;
    position: relative;
}

.section-title {
    font-family: var(--font-titles);
    font-size: 3.5rem;
    color: var(--accent-yellow);
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 4px 4px 0px var(--primary-red), 
                 6px 6px 0px rgba(0,0,0,0.3);
    position: relative;
}

.section-title::before,
.section-title::after {
    content: '🌮';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.section-title::before {
    left: 10%;
}

.section-title::after {
    right: 10%;
    animation-delay: 0.5s;
}

/* ================= HERO (INICIO) ================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(251, 192, 45, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-logo {
    max-width: 450px;
    width: 85%;
    filter: drop-shadow(0 0 30px rgba(211, 47, 47, 0.6));
    position: relative;
    z-index: 2;
}

.hero-luchador {
    max-width: 280px;
    width: 70%;
    margin-top: -20px;
    z-index: 3;
    animation: punch 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.hero h1 {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-top: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

.hero h1 span {
    color: var(--accent-orange);
    display: inline-block;
    animation: shake 0.5s ease-in-out infinite;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    z-index: 2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    font-family: var(--font-titles);
    font-size: 1.3rem;
    padding: 15px 35px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    box-shadow: 0 5px 20px rgba(211, 47, 47, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.6);
    border-color: var(--accent-yellow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--accent-yellow);
    font-family: var(--font-titles);
    font-size: 1.2rem;
    padding: 15px 35px;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 3px solid var(--accent-yellow);
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: var(--accent-yellow);
    color: var(--bg-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

/* ================= MENÚ ================= */
.menu-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.95));
    border: 3px solid var(--accent-orange);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: inset 0 0 60px rgba(0,0,0,0.8),
                0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.menu-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(251, 192, 45, 0.02) 10px,
        rgba(251, 192, 45, 0.02) 20px
    );
    pointer-events: none;
}

.menu-column {
    position: relative;
    z-index: 1;
}

.menu-item {
    border-bottom: 2px dotted rgba(255,255,255,0.15);
    padding-bottom: 25px;
    margin-bottom: 25px;
    transition: all var(--transition-fast);
}

.menu-item:hover {
    transform: translateX(5px);
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item h3 {
    font-family: var(--font-titles);
    font-size: 1.8rem;
    color: var(--primary-red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 1px;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-item .price {
    color: var(--accent-yellow);
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(251, 192, 45, 0.3);
}

.menu-item p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.6;
}

.menu-tags {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-family: var(--font-titles);
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    cursor: default;
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
}

.tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.5);
}

.tag.picante {
    background: linear-gradient(135deg, var(--accent-orange), #e65100);
}

.bebida-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
}

.bebida-item:hover {
    padding-left: 10px;
    background: rgba(251, 192, 45, 0.05);
}

.bebida-item .price {
    font-family: var(--font-titles);
    font-size: 1.4rem;
    color: var(--accent-yellow);
}

.menu-image-container {
    text-align: center;
    margin-top: 30px;
}

.menu-image {
    width: 100%;
    max-width: 280px;
    border-radius: var(--border-radius);
    transform: rotate(-3deg);
    border: 4px solid var(--accent-yellow);
    transition: all var(--transition-medium);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: var(--shadow-yellow);
}

/* ================= ESPECIALIDADES (GALERÍA) ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    background: var(--bg-secondary);
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(251, 192, 45, 0.4);
    transform: translateY(-10px);
}

.gallery-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-card:hover img {
    transform: scale(1.15);
}

.gallery-card .card-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: var(--font-titles);
    font-size: 1.5rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--transition-fast);
}

.gallery-card:hover .card-title {
    transform: translateY(0);
    opacity: 1;
}

/* Ambiente Grid */
.ambiente-section {
    margin-top: 80px;
}

.ambiente-section h3 {
    font-family: var(--font-titles);
    font-size: 2.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.ambiente-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ambiente-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: all var(--transition-fast);
    border: 3px solid transparent;
}

.ambiente-grid img:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-red);
}

/* ================= RESEÑAS ================= */
.reviews-section {
    margin-top: 100px;
    padding: 60px 0;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header .stars {
    font-size: 3rem;
    margin-bottom: 15px;
}

.reviews-header p {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    color: var(--accent-yellow);
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.95));
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid rgba(251, 192, 45, 0.2);
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 6rem;
    color: rgba(211, 47, 47, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.review-card .review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-titles);
    font-size: 1.5rem;
    color: white;
}

.review-card .author-info h4 {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.review-card .author-info .rating {
    color: var(--accent-yellow);
    font-size: 1rem;
    margin-top: 5px;
}

/* Mini reviews */
.mini-reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.mini-review {
    background: rgba(20, 20, 20, 0.8);
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 350px;
    transition: all var(--transition-fast);
}

.mini-review:hover {
    border-color: var(--accent-yellow);
    transform: scale(1.02);
}

.mini-review strong {
    color: var(--accent-yellow);
    font-family: var(--font-titles);
}

/* ================= FOOTER / CONTACTO ================= */
footer {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    padding: 80px 20px 40px;
    text-align: center;
    border-top: 5px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23d32f2f' opacity='0.1'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(211, 47, 47, 0.4));
    animation: float 5s ease-in-out infinite;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-family: var(--font-titles);
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 10px;
    display: block;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--accent-yellow);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-red);
    border-color: var(--accent-yellow);
    transform: translateY(-3px) rotate(10deg);
}

.footer-cta {
    margin: 40px 0;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-family: var(--font-titles);
    font-size: 1.4rem;
    padding: 18px 45px;
    border-radius: 50px;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-large svg {
    width: 28px;
    height: 28px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
}

/* ================= WHATSAPP FLOATING BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-family: var(--font-titles);
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: all var(--transition-fast);
    text-decoration: none;
    animation: pulse-green 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-float span {
    white-space: nowrap;
}

/* ================= MAP EMBED ================= */
.map-container {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .ambiente-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transform: translateX(-100%);
        transition: transform var(--transition-fast);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1.8rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-logo {
        max-width: 320px;
    }
    
    .hero-luchador {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .menu-grid {
        padding: 25px;
        gap: 30px;
    }
    
    .menu-item h3 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ambiente-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* WhatsApp button - mobile version (icon only) */
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    section {
        padding: 60px 15px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        max-width: 260px;
    }
    
    .hero-luchador {
        max-width: 180px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-card img {
        height: 280px;
    }
    
    .review-card {
        padding: 20px;
    }
}

/* Loading state */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.loading::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-secondary);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
