:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #cc0000;
    --accent-yellow: #ffd700;
    --grey-dark: #1a1a1a;
    --grey-light: #333333;
    --font-heading: 'Impact', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --grain-opacity: 0.05;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 9998;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--grey-light);
    border: 2px solid var(--bg-color);
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Anton', var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

.btn:hover {
    background-color: #ff0000;
    transform: scale(1.05);
    letter-spacing: 6px;
}

.btn.outline {
    background-color: transparent;
    border: 2px solid var(--text-color);
}

.btn.outline:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Header Styles */
#main-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background 0.3s;
}

#main-header.sticky {
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-light);
}

.announcement-bar {
    background: var(--accent-color);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-left {
    display: flex;
    align-items: center;
    flex: 1;
}

#menu-toggle {
    background: transparent;
    border: 1px solid var(--grey-light);
    color: var(--text-color);
    padding: 8px 15px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    /* Hidden by default on desktop */
    display: none;
    text-transform: uppercase;
}

#menu-toggle:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.nav-logo-img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(204, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-right a {
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 0;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s;
}

.nav-right a:hover::after {
    width: 100%;
}

.nav-right a:hover {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.hero-logo {
    max-width: 350px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 1.5s ease-out;
}

.hero-content h1 {
    font-size: 8rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 10px 10px 0px var(--accent-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 5px;
    font-family: var(--font-mono);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Arsenal Grid */
#arsenal {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--grey-dark);
    padding: 20px;
    border: 1px solid var(--grey-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.product-card::before {
    content: "WL&SKLL";
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    opacity: 0.05;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #000;
    margin-bottom: 20px;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: grayscale;
    transition: mix-blend-mode 0.3s;
}

.product-card:hover img {
    mix-blend-mode: normal;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--accent-color);
    border-top: 1px solid var(--grey-dark);
}

.newsletter-box {
    background: rgba(10, 10, 10, 0.8);
    padding: 60px 40px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.newsletter-box h2 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.newsletter-box p {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

.newsletter-box form {
    display: flex;
    gap: 15px;
    max-width: 600px;
}

.newsletter-box input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--grey-light);
    color: white;
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-box input:focus {
    border-color: var(--accent-color);
}

.newsletter-box .btn {
    border-radius: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--grey-light);
}

.footer-col a {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-family: 'Anton', sans-serif;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.8rem;
    color: var(--grey-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--grey-dark);
    margin-top: 40px;
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    background: #e0e0e0;
    /* Light Grey as requested */
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.powered-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    /* Dark text for contrast on light background */
    font-weight: bold;
}

.credit-link {
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.credit-link:hover {
    opacity: 0.8;
}

.credit-logo {
    height: 25px;
    width: auto;
    filter: none;
    /* Show logo as is, since background is light */
    transition: transform 0.3s;
}

.credit-link:hover .credit-logo {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box form {
        flex-direction: column;
    }

    /* Mobile Typography */
    .hero-content h1 {
        font-size: 3.5rem;
        text-shadow: 5px 5px 0px var(--accent-color);
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .page-header {
        padding: 110px 20px 40px;
    }

    .hero-logo {
        max-width: 120px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card::before {
        font-size: 2rem;
        /* Reduce the background text size */
    }

    /* Header Mobile Adjustments */
    nav {
        padding: 10px 0;
    }

    .nav-logo-img {
        height: 50px;
    }

    .nav-right {
        gap: 15px;
    }

    #menu-toggle {
        display: block;
        margin-right: 15px;
    }

    .nav-right a {
        font-size: 0.75rem;
    }

    /* Section Mobile Adjustments */
    .events-featured {
        padding: 30px;
    }

    .featured-info h2 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .nav-right a:not(:last-child) {
        display: none;
        /* Hide Tienda/Eventos text, leave only Carrito or keep icon-based approach if desired */
    }

    .nav-right a {
        font-size: 0.7rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .nav-logo-img {
        height: 40px;
    }
}

/* New Page Styles */
.page-header {
    padding: 150px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-family: var(--font-mono);
    color: var(--accent-color);
    letter-spacing: 3px;
}

.product-filters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* --- INSTAGRAM FEED ULTRA-PREMIUM --- */
.ig-profile-header {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ig-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--grey-light);
    padding: 5px;
    background: #000;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Efecto de borde degradado estilo Instagram pero con colores de marca */
.ig-avatar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0.5;
}

.ig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ig-username-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ig-username {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0;
    font-family: var(--font-primary);
}

.btn-ig-follow {
    background: #0095f6;
    color: white;
    padding: 8px 25px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: var(--font-mono);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-ig-follow:hover {
    background: #1877f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 149, 246, 0.3);
}

.ig-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: var(--font-mono);
}

.ig-stats strong {
    color: white;
}

.ig-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    white-space: pre-wrap;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ig-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s;
    filter: grayscale(100%);
}

.ig-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ig-post:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.ig-post:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post-overlay span {
    color: white;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.4);
}

.loader-circle {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .ig-profile-header {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .ig-username-row {
        flex-direction: column;
        gap: 15px;
    }

    .ig-stats {
        justify-content: center;
        gap: 20px;
        font-size: 0.8rem;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ig-username {
        font-size: 1.5rem;
    }

    .ig-avatar {
        width: 120px;
        height: 120px;
    }
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--grey-light);
    color: var(--text-color);
    font-family: var(--font-mono);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.nav-right a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Fight Fest Enhanced Styles */
.events-featured {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('hero_background_grit_1767490085531.png');
    background-size: cover;
    padding: 60px;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.featured-info .tag {
    background: var(--accent-yellow);
    color: black;
    padding: 2px 10px;
    font-weight: bold;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.featured-info h2 {
    font-size: 3rem;
    margin: 20px 0;
}

.featured-info .date,
.featured-info .location {
    font-family: var(--font-mono);
    font-weight: bold;
    color: var(--accent-color);
    margin: 5px 0;
}

.featured-info .description {
    max-width: 600px;
    margin: 20px 0 30px;
}

.event-card.incomplete {
    opacity: 0.6;
    border-style: dashed;
}

.event-card .status {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    background: var(--grey-light);
    padding: 2px 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid var(--grey-light);
}

.info-card h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

/* Modern & Compact Shop Layout */
.design-section {
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    transition: all 0.4s ease;
}

.design-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(204, 0, 0, 0.2);
}

.design-title-box {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.design-name {
    font-size: 2.2rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1;
}

.design-description {
    font-family: var(--font-mono);
    color: var(--accent-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

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

.product-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.product-type-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: white;
    padding: 1px 8px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: bold;
    z-index: 10;
    text-transform: uppercase;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--accent-yellow);
    font-family: var(--font-mono);
    border: none;
}

/* Mobile Adjustments for Compact Layout */
@media (max-width: 900px) {
    .variant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .design-section {
        padding: 20px;
        margin-bottom: 40px;
    }

    .variant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .design-title-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .design-name {
        font-size: 1.8rem;
    }

    .product-info h3 {
        font-size: 0.85rem;
    }
}

/* --- SHOPPING CART STYLES --- */

/* Cart Count Badge */
.cart-count {
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 5px;
    font-family: var(--font-mono);
    font-weight: bold;
}

/* Cart Modal Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Side Drawer */
.cart-modal {
    width: 100%;
    max-width: 450px;
    background: var(--bg-color);
    border-left: 1px solid var(--grey-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-overlay.active .cart-modal {
    transform: translateX(0);
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--grey-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

#close-cart {
    background: transparent;
    border: 1px solid var(--grey-light);
    color: var(--text-color);
    padding: 5px 15px;
    cursor: pointer;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--grey-light);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cart-item-price {
    color: var(--accent-yellow);
    font-family: var(--font-mono);
    font-size: 0.85rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--grey-light);
    color: white;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.remove-item {
    background: transparent;
    border: none;
    color: var(--grey-light);
    font-size: 0.7rem;
    text-decoration: underline;
    cursor: pointer;
    margin-left: auto;
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--grey-light);
    background: rgba(255, 255, 255, 0.02);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cart-total span:last-child {
    color: var(--accent-color);
}

.btn-checkout {
    width: 100%;
    margin-bottom: 10px;
}

.empty-cart-msg {
    text-align: center;
    margin-top: 50px;
    font-family: var(--font-mono);
    color: var(--grey-light);
}

/* --- SIDE MENU STYLES --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    max-width: 400px;
    background: var(--bg-color);
    border-right: 1px solid var(--grey-light);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.menu-overlay.active .menu-drawer {
    transform: translateX(0);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.menu-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

#close-menu {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-mono);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

#close-menu:hover {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-link {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
    width: fit-content;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    opacity: 0;
    transition: all 0.3s;
}

.menu-link:hover {
    padding-left: 20px;
    color: var(--accent-color);
}

.menu-link:hover::before {
    opacity: 1;
    left: 0;
}

.menu-footer {
    margin-top: auto;
    border-top: 1px solid var(--grey-light);
    padding-top: 30px;
}

.menu-social a {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--grey-light);
    margin-right: 20px;
}

.menu-social a:hover {
    color: white;
}

@media (max-width: 480px) {
    .menu-drawer {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .menu-link {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cart-modal {
        max-width: 100%;
    }
}

/* Event Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--grey-light);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* --- SHOWCASE GRID (INDEX) --- */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--grey-light);
    cursor: pointer;
    background: #000;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s;
    filter: grayscale(100%);
}

.showcase-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 2px;
}

.showcase-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .showcase-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 15px;
    }

    .showcase-name {
        font-size: 1rem;
    }
}


/* --- CHECKOUT PAGE STYLES --- */
.checkout-container {
    padding: 150px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.checkout-form-section h2,
.checkout-summary-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--grey-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--grey-light);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.checkout-summary-box {
    background: var(--grey-dark);
    padding: 30px;
    border: 1px solid var(--grey-light);
    position: sticky;
    top: 120px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.summary-item .item-qty {
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.summary-total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-color);
    display: flex;
    justify-content: space-between;
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
}

.btn-whatsapp {
    width: 100%;
    margin-top: 30px;
    background-color: #25d366;
    /* WhatsApp Color */
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

@media (max-width: 850px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .checkout-summary-box {
        position: static;
    }
}


/* --- INDEX EVENT BANNER --- */
.index-event-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('imagenes Eventos/evento dirtyboxing.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    margin: 80px 0;
    border-top: 1px solid rgba(204, 0, 0, 0.5);
    border-bottom: 1px solid rgba(204, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.index-event-banner .container {
    position: relative;
    z-index: 2;
}

.next-event-badge {
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 25px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

.banner-event-title {
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 20px;
}

.banner-event-info {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.banner-event-desc {
    max-width: 600px;
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

.underground-border {
    border: 1px solid var(--grey-light);
    position: relative;
}

.underground-border::before,
.underground-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
}

.underground-border::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.underground-border::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

@media (max-width: 768px) {
    .banner-event-title {
        font-size: 2.5rem;
    }

    .index-event-banner {
        padding: 60px 0;
    }
}

/* --- WHATSAPP FLOATING BUBBLE --- */
.wa-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.wa-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #ff0000;
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.6);
}

.wa-bubble svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: var(--grey-dark);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 1px solid var(--grey-light);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wa-bubble:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

@media (max-width: 768px) {
    .wa-bubble {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .wa-tooltip {
        display: none;
    }
}

/* --- INSTAGRAM FEED --- */
.ig-profile-header {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ig-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--grey-light);
    padding: 5px;
    background: #000;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ig-username-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ig-username {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0;
    font-family: var(--font-primary);
}

.btn-ig-follow {
    background: #0095f6;
    color: white;
    padding: 8px 25px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    font-family: var(--font-mono);
    transition: all 0.3s;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-ig-follow:hover {
    background: #1877f2;
    transform: translateY(-2px);
}

.ig-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 1rem;
    font-family: var(--font-mono);
}

.ig-stats strong {
    color: white;
}

.ig-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    white-space: pre-wrap;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ig-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
    filter: grayscale(100%);
}

.ig-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.ig-post:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.ig-post:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post-overlay span {
    color: white;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.loader-circle {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .ig-profile-header {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .ig-username-row {
        flex-direction: column;
        gap: 15px;
    }

    .ig-stats {
        justify-content: center;
        gap: 20px;
        font-size: 0.8rem;
    }

    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ig-username {
        font-size: 1.5rem;
    }
}