/* --- SISTEMA DE DISEÑO --- */
        :root {
            --primary: #D4AF37;
            --primary-dark: #b59022;
            --dark: #1a1a1a;
            --cream-bg: #FFFBF2;
            --white: #ffffff;
            --gray: #666666;
            --card-bg: #ffffff;
            --item-bg: #f9f9f9;
            --radius-lg: 24px;
            --radius-md: 16px;
            --nav-height: 70px;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        /* --- MODO OSCURO --- */
        body.dark-mode {
            --dark: #f0f0f0;
            --cream-bg: #121212;
            --white: #1e1e1e;
            --card-bg: #1e1e1e;
            --item-bg: #2c2c2c;
            --gray: #a0a0a0;
            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        body.dark-mode .app-header {
            background: rgba(18, 18, 18, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .bottom-nav {
            background: #1e1e1e;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.dark-mode .info-item {
            background: #252525;
            color: #eee;
            border-color: #333;
        }

        body.dark-mode .cat-chip {
            color: #eee;
            border-color: #444;
        }

        body.dark-mode .cat-chip.active {
            background: var(--primary);
            color: #000;
            border-color: var(--primary);
        }

        body.dark-mode .nav-item {
            color: #666;
        }

        body.dark-mode .nav-item.active {
            color: var(--primary);
        }

        body.dark-mode .qty-box {
            background: #333;
            color: white;
        }

        body.dark-mode .qty-box button {
            color: white;
        }

        body.dark-mode .cart-sheet,
        body.dark-mode .product-modal-content {
            background: #1e1e1e;
        }

        body.dark-mode .cart-row {
            background: var(--item-bg);
        }

        body.dark-mode .allergen-tag {
            background: #333;
            color: #eee;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background-color: var(--cream-bg);
            color: var(--dark);
            padding-bottom: calc(var(--nav-height) + 40px);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* --- PRELOADER --- */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cream-bg);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-logo {
            width: 80px;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        .loader-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }

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

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* --- HEADER --- */
        .app-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 251, 242, 0.95);
            backdrop-filter: blur(10px);
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background 0.3s;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand img {
            height: 38px;
        }

        .brand-text {
            line-height: 1;
        }

        .brand-text h1 {
            font-size: 1.1rem;
            margin: 0;
            color: var(--dark);
        }

        .brand-text small {
            font-size: 0.7rem;
            color: var(--primary-dark);
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-icon-top {
            position: relative;
            background: none;
            border: none;
            font-size: 1.3rem;
            padding: 5px;
            cursor: pointer;
            color: var(--dark);
            transition: color 0.3s;
        }

        .badge-dot {
            position: absolute;
            top: 5px;
            right: 2px;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            opacity: 0;
            transition: 0.3s;
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }

        .badge-dot.show {
            opacity: 1;
        }

        /* --- HERO --- */
        .hero-section {
            position: relative;
            height: 55vh;
            min-height: 400px;
            background: url('https://images.unsplash.com/photo-1517433670267-08bbd4be890f?auto=format&fit=crop&q=80') center/cover no-repeat;
            display: flex;
            align-items: flex-end;
            margin-bottom: 0;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 30px 20px 50px 20px;
            color: white;
            width: 100%;
            animation: fadeInUp 1s ease;
        }

        .location-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 15px;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-content h2 {
            font-size: 2.2rem;
            line-height: 1.1;
            margin-bottom: 10px;
        }

        .hero-content p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 20px;
            font-weight: 300;
            max-width: 300px;
        }

        .cta-hero {
            background: var(--primary);
            color: #1a1a1a;
            text-decoration: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: bold;
            display: inline-block;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        /* --- INFO BAR --- */
        .info-bar {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 25px 20px;
            scrollbar-width: none;
        }

        .info-bar::-webkit-scrollbar {
            display: none;
        }

        .info-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            gap: 8px;
            background: white;
            padding: 8px 15px;
            border-radius: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.03);
            font-size: 0.8rem;
            font-weight: 500;
            transition: background 0.3s, color 0.3s;
        }

        .info-item i {
            color: var(--primary-dark);
        }

        /* --- SOBRE NOSOTROS --- */
        .about-box {
            margin: 0 20px 30px 20px;
            background: var(--card-bg);
            padding: 30px 25px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            text-align: left;
            position: relative;
            transition: background 0.3s;
        }

        .about-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .about-header h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .divider {
            width: 50px;
            height: 3px;
            background: var(--primary);
            margin: 0 auto;
            border-radius: 2px;
        }

        .about-text p {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .about-icon-float {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.1;
        }

        /* --- CATALOGO --- */
        .cat-header {
            padding: 0 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cat-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 0 20px 20px 20px;
            scrollbar-width: none;
        }

        .cat-scroll::-webkit-scrollbar {
            display: none;
        }

        .cat-chip {
            background: transparent;
            border: 1px solid #ddd;
            padding: 8px 18px;
            border-radius: 50px;
            white-space: nowrap;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray);
            transition: all 0.3s;
            cursor: pointer;
        }

        .cat-chip.active {
            background: var(--dark);
            color: var(--white);
            border-color: var(--dark);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
            padding: 0 20px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: background 0.3s;
            position: relative;
        }

        .img-wrapper {
            position: relative;
            height: 160px;
            background: #f0f0f0;
            cursor: pointer;
            overflow: hidden;
        }

        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .img-wrapper:active img {
            transform: scale(1.05);
        }

        /* FAVORITOS BTN */
        .btn-fav {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: none;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
        }

        .btn-fav:active {
            transform: scale(0.9);
        }

        .btn-fav i {
            color: #ccc;
            font-size: 1rem;
            transition: color 0.3s;
        }

        .btn-fav.active i {
            color: #ff4757;
            font-weight: 900;
        }

        .btn-add-mini {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 36px;
            height: 36px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            color: #1a1a1a;
            transition: 0.3s;
            z-index: 10;
        }

        .btn-add-mini:active,
        .btn-add-mini.active {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .info-wrapper {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .cat-tag-small {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: #aaa;
            font-weight: bold;
            letter-spacing: 0.5px;
            margin-top: auto;
        }

        .product-card h4 {
            color: var(--dark);
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .product-card p {
            color: var(--gray);
            font-size: 0.85rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* --- MODAL VISTA RAPIDA (PRODUCTO) --- */
        .product-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1500;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
            opacity: 0;
            transition: opacity 0.3s;
            padding: 20px;
        }

        .product-modal.active {
            display: flex;
            opacity: 1;
        }

        .product-modal-content {
            background: var(--card-bg);
            width: 100%;
            max-width: 400px;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
            transform: translateY(50px);
            transition: transform 0.3s;
            max-height: 90vh;
            display: flex;
            flex-direction: column;
        }

        .product-modal.active .product-modal-content {
            transform: translateY(0);
        }

        .pm-img-box {
            height: 250px;
            width: 100%;
            position: relative;
        }

        .pm-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pm-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pm-body {
            padding: 25px;
            overflow-y: auto;
        }

        .pm-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--dark);
            line-height: 1.1;
        }

        .pm-desc {
            color: var(--gray);
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 1rem;
        }

        .pm-meta {
            margin-bottom: 25px;
        }

        .pm-label {
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--primary-dark);
            margin-bottom: 8px;
            display: block;
        }

        .allergen-list {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .allergen-tag {
            font-size: 0.8rem;
            padding: 6px 12px;
            border-radius: 20px;
            background: #f0f0f0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .pm-btn-add {
            width: 100%;
            background: var(--primary);
            color: #1a1a1a;
            border: none;
            padding: 15px;
            border-radius: 15px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        /* --- MODAL RULETA --- */
        .float-wheel-btn {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #FFD700, #FF8C00);
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.2rem;
            box-shadow: 0 5px 25px rgba(255, 140, 0, 0.6);
            cursor: pointer;
            z-index: 800;
            animation: wiggle 3s infinite;
        }

        .float-wheel-btn.hidden {
            display: none;
        }

        @keyframes wiggle {

            0%,
            7% {
                transform: rotateZ(0);
            }

            15% {
                transform: rotateZ(-15deg);
            }

            20% {
                transform: rotateZ(10deg);
            }

            25% {
                transform: rotateZ(-10deg);
            }

            30% {
                transform: rotateZ(6deg);
            }

            35%,
            100% {
                transform: rotateZ(0);
            }
        }

        .wheel-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(8px);
        }

        .wheel-outer-ring {
            background: #cc3333;
            padding: 15px;
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
            border: 4px solid #fff;
        }

        .wheel-outer-ring::before {
            content: '';
            position: absolute;
            top: 5px;
            left: 5px;
            right: 5px;
            bottom: 5px;
            border-radius: 50%;
            border: 4px dashed #FFD700;
            pointer-events: none;
        }

        .wheel-wrapper {
            width: 300px;
            height: 300px;
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid #2c2c2c;
            background: white;
        }

        .the-wheel {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(#FFD700 0deg 45deg, #ff4757 45deg 90deg, #2ed573 90deg 135deg, #1e90ff 135deg 180deg, #FFD700 180deg 225deg, #ff4757 225deg 270deg, #2ed573 270deg 315deg, #1e90ff 315deg 360deg);
            transition: transform 5s cubic-bezier(0.25, 0.1, 0.25, 1);
            position: relative;
        }

        .wheel-segment {
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 50%;
            margin-left: -1px;
            transform-origin: bottom center;
            padding: 0;
            pointer-events: none;
        }

        .segment-text {
            position: absolute;
            top: 25px;
            left: 50%;
            transform: translateX(-50%) rotate(90deg);
            font-weight: 800;
            font-size: 0.95rem;
            white-space: nowrap;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .seg-1 {
            transform: rotate(22.5deg);
        }

        .seg-2 {
            transform: rotate(67.5deg);
        }

        .seg-3 {
            transform: rotate(112.5deg);
        }

        .seg-4 {
            transform: rotate(157.5deg);
        }

        .seg-5 {
            transform: rotate(202.5deg);
        }

        .seg-6 {
            transform: rotate(247.5deg);
        }

        .seg-7 {
            transform: rotate(292.5deg);
        }

        .seg-8 {
            transform: rotate(337.5deg);
        }

        .wheel-pointer {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 50px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232c2c2c"><path d="M12 2L2 12h3v8h6v-6h2v6h6v-8h3L12 2z"/></svg>');
            z-index: 10;
            filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.3));
        }

        .wheel-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            border: 4px solid #2c2c2c;
            z-index: 5;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
        }

        .modal-content {
            position: relative;
            text-align: center;
            color: white;
        }

        .btn-spin {
            margin-top: 30px;
            background: #FFD700;
            color: #333;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 800;
            cursor: pointer;
            box-shadow: 0 0 20px #FFD700;
            transition: transform 0.2s;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .btn-spin:active {
            transform: scale(0.95);
        }

        .btn-spin:disabled {
            background: #ccc;
            box-shadow: none;
            color: #666;
        }

        .close-wheel {
            position: absolute;
            top: -40px;
            right: 0;
            font-size: 2rem;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
        }

        /* --- CART & UI --- */
        .cart-promo-banner {
            background: linear-gradient(45deg, #2ecc71, #27ae60);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: white;
            font-weight: bold;
            font-size: 0.95rem;
            box-shadow: 0 4px 10px rgba(39, 174, 96, 0.4);
            animation: slideDown 0.5s ease;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            height: var(--nav-height);
            display: flex;
            justify-content: space-around;
            align-items: center;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
            z-index: 500;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
            transition: background 0.3s;
        }

        .nav-item {
            text-decoration: none;
            color: #bbb;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            gap: 4px;
            transition: color 0.3s;
        }

        .nav-item.active {
            color: var(--dark);
        }

        .nav-cart-cont {
            position: relative;
        }

        .nav-badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background: var(--primary);
            color: var(--dark);
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 10px;
            font-weight: bold;
            opacity: 0;
            transition: 0.3s;
            transform: scale(0);
        }

        .nav-badge.show {
            opacity: 1;
            transform: scale(1);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            backdrop-filter: blur(3px);
        }

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

        .cart-sheet {
            position: fixed;
            bottom: -100%;
            left: 0;
            width: 100%;
            background: var(--card-bg);
            z-index: 1000;
            border-top-left-radius: 25px;
            border-top-right-radius: 25px;
            padding: 20px;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            transition: bottom 0.4s cubic-bezier(0.19, 1, 0.22, 1), background 0.3s;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
        }

        .cart-sheet.active {
            bottom: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
            color: var(--dark);
        }

        .cart-items {
            overflow-y: auto;
            flex-grow: 1;
            padding-bottom: 20px;
            padding-right: 5px;
        }

        .cart-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            align-items: center;
            background: var(--item-bg);
            padding: 10px;
            border-radius: 12px;
            transition: background 0.3s;
        }

        .cart-row img {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            object-fit: cover;
        }

        .qty-box {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 8px;
            padding: 2px 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: background 0.3s;
        }

        .qty-box button {
            background: none;
            border: none;
            padding: 5px 10px;
            font-weight: bold;
            cursor: pointer;
            color: var(--dark);
        }

        .btn-whatsapp {
            width: 100%;
            padding: 16px;
            background: #25D366;
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .toast {
            position: fixed;
            top: 90px;
            left: 50%;
            transform: translateX(-50%) translateY(-20px);
            background: var(--dark);
            color: var(--cream-bg);
            padding: 12px 25px;
            border-radius: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            z-index: 1200;
            opacity: 0;
            transition: 0.4s;
            pointer-events: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

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

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

        /* --- PRECIOS PRO --- */
        .price-tag-grid {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 8px;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .price-tag-grid small {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--gray);
            opacity: 0.8;
        }

        .price-box-modal {
            background: linear-gradient(135deg, #fffbf2 0%, #fff 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 16px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
            position: relative;
            overflow: hidden;
        }

        .price-box-modal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
        }

        .price-main {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--primary-dark);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
            display: flex;
            align-items: baseline;
            gap: 5px;
        }

        .price-main span {
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        .pack-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark);
            font-weight: 700;
            margin-top: 15px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .pack-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .pack-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 10px 15px;
            border-radius: 10px;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            transition: transform 0.2s, border-color 0.2s;
            cursor: default;
        }

        .pack-item:hover {
            transform: translateX(5px);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .pack-name {
            font-weight: 600;
            color: var(--dark);
            font-size: 0.95rem;
        }

        .pack-price {
            font-weight: 700;
            color: var(--primary-dark);
            background: rgba(212, 175, 55, 0.1);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        /* --- PÁGINAS LEGALES --- */
        .legal-content {
            max-width: 800px;
            margin: 80px auto 40px auto;
            padding: 0 20px;
        }

        .legal-content h1 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
            text-align: center;
        }

        .last-update {
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 40px;
            font-style: italic;
        }

        .legal-content section {
            margin-bottom: 30px;
        }

        .legal-content h2 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 15px;
            border-bottom: 2px solid rgba(212, 175, 55, 0.2);
            padding-bottom: 8px;
            display: inline-block;
        }

        .legal-content p {
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .legal-content ul {
            margin-left: 20px;
            margin-bottom: 20px;
            color: var(--gray);
        }

        .legal-content li {
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .legal-content a {
            color: var(--primary-dark);
            text-decoration: underline;
        }
