:root {
    --bg-color: #0a0a0a;
    --surface-color: #141414;
    --text-primary: #f0f0f0;
    --text-secondary: #888;
    --accent-color: #ff3300;
    /* Industrial Orange */

    --font-heading: 'Anton', sans-serif;
    --font-body: 'Space Mono', monospace;

    --spacing-xs: 10px;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 80px;
    --spacing-xl: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
    user-select: none;
    /* Global text selection disable */
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 400;
    line-height: 0.9;
}

p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    mix-blend-mode: exclusion;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (min-width: 769px) {

    .mobile-menu-btn,
    .hamburger {
        display: none !important;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Add gap between buttons */
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
}

.dot {
    color: var(--accent-color);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-order {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-order:hover {
    background: var(--accent-color);
    color: var(--text-primary);
}

.btn-lang {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 10px 15px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 15px;
    /* Changed from margin-right to margin-left */
}

.btn-lang:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero-burger.png');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    /* Darken for text readability */
    z-index: 1;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(10, 10, 10, 1) 90%);
}

.hero-text {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ... existing styles ... */

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: contrast(1.1) saturate(0.9);
    /* Slight filter for raw feel */
}

.menu-item:hover .product-img {
    transform: scale(1.05);
    /* Subtler zoom */
}

.hero-text h1 {
    font-size: 12vw;
    /* Massive responsive text */
    letter-spacing: -2px;
}

.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
}

/* Marquee */
.marquee-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--accent-color);
    color: #000;
    overflow: hidden;
    padding: 10px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.marquee {
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.label {
    display: block;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.footer {
    background-color: #050505;
    padding: 80px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand h2 {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-color);
    margin-bottom: 0;
    letter-spacing: -2px;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-info p {
    color: #888;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #111;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    color: #000;
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-brand h2 {
        font-size: 3rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.footer-brand h2 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-icon {
    color: #aeaeae;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    padding: 10px;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-attribution {
    font-size: 0.75rem !important;
    opacity: 0.5;
    margin-top: 8px;
}

.specs-list {
    margin-top: 30px;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}

.specs-list li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.specs-list span {
    color: #fff;
    font-weight: 700;
}

/* Placeholders */
/* Placeholders -> Converted to Visual Block */
.placeholder-block {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Removed dashed border and background */
}

/* Removed ::after pseudo-element with stripes */

.placeholder-content {
    width: 80%;
    /* Adjust width to fit */
    height: 80%;
    /* Adjust height */
    z-index: 2;
    transform: rotate(-5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    /* Add nice shadow */
    transition: transform 0.5s ease;
}

.placeholder-content:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s;
}

.cursor.active {
    width: 60px;
    height: 60px;
    opacity: 0.5;
}

/* Reviews Section */
/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-item {
    border: 1px solid #333;
    background: #111;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.menu-image {
    width: 100%;
    height: 300px;
    /* Increased height for better visibility */
    background: #111;
    border-bottom: 1px solid #333;
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Remove padding */
}

.menu-image::after {
    content: 'NO IMAGE SIGNAL';
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 2px;
}

.menu-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    border-bottom: none;
    /* Removed border */
    padding-bottom: 0;
}

.item-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 0.8;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 0;
}

.item-header h3 {
    font-size: 1.8rem;
    z-index: 1;
    position: relative;
}

.item-specs {
    margin-bottom: 30px;
    min-height: 60px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-add {
    background: transparent;
    color: #fff;
    border: 1px solid #444;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.btn-add:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}


/* Reviews Section (Swiper Override) */
.reviews-swiper {
    width: 100%;
    overflow: hidden;
    /* Swiper needs this */
    padding-bottom: 50px;
    /* Space for pagination */
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #666 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
    opacity: 1;
}

.review-card {
    /* Styles inherited but removing defaults that contest with swiper */
    height: 100%;
    /* Make slides equal heigth */
}

/* Bunker Section */
.bunker-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    /* Image takes 60% */
    gap: 0;
    border: 1px solid #333;
}

.bunker-image {
    background-color: #1a1a1a;
    min-height: 500px;
    /* Taller */
    background-image: url('assets/bunker-interior.png');
    background-size: cover;
    background-position: center;
    position: relative;
    filter: saturate(0.8) contrast(1.1);
    /* Realism filter */
}

/* Overlay for bunker image to keep it dark */
.bunker-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.bunker-info {
    padding: 60px;
    background: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
    /* Right align text */
    align-items: flex-end;
    /* Align items to right */
}

.bunker-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.bunker-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #bbb;
}

.bunker-details .btn-order {
    margin-top: 20px;
}

.bunker-details span {
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .bunker-container {
        grid-template-columns: 1fr;
    }
}

.reviews-grid {
    display: none;
    /* Hide old grid */
}

.review-card {
    background: #111;
    border: 1px solid #333;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    background: #151515;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px dashed #444;
    padding-bottom: 15px;
}

.stars {
    color: var(--accent-color);
    letter-spacing: 5px;
}

.date {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #666;
}

.review-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 25px;
}

.reviewer {
    display: flex;
    flex-direction: column;
}

.reviewer .name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
}

.reviewer .platform {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #555;
    margin-top: 5px;
}

.lang-toggle {
    background: transparent;
    border: 1px solid #333;
    /* Subtle border */
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    cursor: pointer;
    padding: 10px 15px;
    /* Better padding */
    transition: 0.3s;
    height: 45px;
    /* Match button height if needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 30px 0;
    overflow: hidden;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    transform: translateY(100%);
    transition: 0.5s;
}

.mobile-menu-overlay.active .mobile-link {
    transform: translateY(0);
}

/* ─── WhatsApp Flotante ──────────────────────────────────────────────────── */
.wa-float {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 998;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 20px 14px 16px;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    min-height: 52px;
}

/* CTA extra en el overlay móvil */
.mobile-order-cta {
    display: block;
    margin-top: 20px;
    padding: 18px 32px;
    background: var(--accent-color);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: 0.5s;
}

.mobile-menu-overlay.active .mobile-order-cta {
    transform: translateY(0);
    transition-delay: 0.15s;
}

.mobile-wa-cta {
    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #25D366;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.25s;
}

.mobile-menu-overlay.active .mobile-wa-cta {
    opacity: 1;
}

/* ─── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        /* Touch target mínimo 44px */
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .logo {
        position: relative;
        z-index: 1001;
    }

    .hamburger {
        display: none;
    }

    /* Botones — mínimo 44px */
    .btn-order {
        min-height: 52px;
        padding: 14px 24px;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-add {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }

    /* Layout */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hero */
    .hero-text h1 {
        font-size: 17vw;
    }

    /* Menu grid: 1 columna en móvil */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Inputs — evitar zoom automático en iOS */
    input,
    select,
    textarea {
        font-size: 16px;
    }

    /* WhatsApp flotante visible en móvil */
    .wa-float {
        display: flex;
    }

    /* Espacio para botón flotante */
    .footer {
        padding-bottom: 88px;
    }

    /* Cursor */
    .cursor { display: none; }
    * { cursor: auto; }

    /* prefers-reduced-motion */
    @media (prefers-reduced-motion: reduce) {
        .mobile-menu-overlay { transition: none; }
        .mobile-link,
        .mobile-order-cta,
        .mobile-wa-cta { transition: none; transform: none; opacity: 1; }
        * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
}