
        :root {
            /* Paleta Luxury Refinada */
            --cream: #FDF8F5;
            --blush: #E8C4C8;
            --blush-light: #F7E8EA;
            --champagne: #C9A96E;
            --champagne-light: #E0D3B8;
            --champagne-dark: #A68A4A;
            --espresso: #1C1C1C;
            --charcoal: #3A3A3A;
            --soft-white: #FFFAF8;
            --border-subtle: #E8E0DB;
            --border-glow: rgba(201, 169, 110, 0.25);
            --shadow-sm: 0 2px 12px rgba(28, 28, 28, 0.04);
            --shadow-md: 0 8px 30px rgba(28, 28, 28, 0.06);
            --shadow-lg: 0 20px 50px rgba(28, 28, 28, 0.08);
            --shadow-gold: 0 8px 28px rgba(201, 169, 110, 0.2);
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 50px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            background-color: var(--soft-white);
            color: var(--espresso);
            font-family: 'Inter', system-ui, sans-serif;
            font-weight: 400;
            line-height: 1.7;
            overflow-x: hidden;
            min-height: 100vh;
            font-size: 16px;
            letter-spacing: -0.01em;
        }

        /* ========== TIPOGRAFÍA ========== */
        h1,
        h2,
        h3,
        h4,
        .logo,
        .section-title,
        .card h3,
        .modal-content h3,
        .checkout-content h2 {
            font-family: 'Cormorant Garamond', 'Georgia', serif;
            font-weight: 500;
            letter-spacing: -0.02em;
            line-height: 1.15;
        }

        h1 {
            font-size: clamp(2.6rem, 5vw, 4.2rem);
        }

        h2,
        .section-title {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
        }

        h3 {
            font-size: 1.35rem;
        }

        .gold-text {
            color: var(--champagne);
        }

        .text-center {
            text-align: center;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HEADER ========== */
        .main-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 250, 248, 0.82);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid var(--border-glow);
            transition: var(--transition-smooth);
        }

        .main-header.scrolled {
            box-shadow: 0 4px 24px rgba(28, 28, 28, 0.06);
            background: rgba(255, 250, 248, 0.92);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--champagne);
            cursor: pointer;
            letter-spacing: 0.01em;
            transition: var(--transition-fast);
            white-space: nowrap;
            user-select: none;
        }

        .logo span {
            color: var(--blush);
            font-style: italic;
            font-weight: 400;
            margin-left: 2px;
        }

        .logo:hover {
            transform: scale(1.02);
            color: var(--champagne-dark);
        }

        .desktop-menu {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-left: auto;
        }

        .nav-links {
            display: flex;
            gap: 6px;
            list-style: none;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: var(--charcoal);
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            cursor: pointer;
            padding: 9px 18px;
            border-radius: var(--radius-full);
            transition: var(--transition-smooth);
            position: relative;
            white-space: nowrap;
        }

        .nav-link:hover {
            background: var(--blush-light);
            color: var(--espresso);
            transform: translateY(-1px);
        }

        .nav-link.active {
            color: var(--champagne-dark);
            font-weight: 600;
            background: transparent;
        }

        .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 2px;
            background: var(--champagne);
            border-radius: 10px;
            transition: var(--transition-smooth);
        }

        .cart-wrapper {
            position: relative;
            display: inline-flex;
            align-items: center;
            margin-left: 8px;
        }

        .cart-count {
            background: var(--blush);
            color: var(--espresso);
            font-size: 0.7rem;
            font-weight: 700;
            min-width: 20px;
            height: 20px;
            padding: 0 6px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -6px;
            right: -10px;
            pointer-events: none;
            transition: var(--transition-spring);
        }

        /* ========== MOBILE NAV ========== */
        .mobile-nav {
            display: none;
        }

        @media (max-width: 768px) {
            .desktop-menu {
                display: none;
            }

            .mobile-nav {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 64px;
                justify-content: space-around;
                align-items: center;
                background: rgba(255, 250, 248, 0.94);
                backdrop-filter: blur(14px) saturate(140%);
                -webkit-backdrop-filter: blur(14px) saturate(140%);
                z-index: 9999;
                border-top: 1px solid var(--border-glow);
                box-shadow: 0 -6px 24px rgba(28, 28, 28, 0.04);
                padding-bottom: env(safe-area-inset-bottom, 0);
            }

            .nav-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-decoration: none;
                color: #999;
                font-size: 0.68rem;
                font-weight: 500;
                transition: var(--transition-fast);
                border: none;
                background: none;
                cursor: pointer;
                flex: 1;
                padding: 6px 0;
                letter-spacing: 0.2px;
            }

            .nav-item i {
                font-size: 1.25rem;
                margin-bottom: 3px;
                transition: var(--transition-fast);
            }

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

            .nav-item.active i {
                transform: translateY(-2px);
            }

            .nav-item:active {
                transform: scale(0.94);
            }

            body {
                padding-bottom: 80px;
            }
        }

        /* ========== VIEWS ========== */
        .view {
            display: none;
            animation: viewFadeIn 0.45s ease-out;
            min-height: 70vh;
            padding-bottom: 60px;
        }

        .view.active {
            display: block;
        }

        @keyframes viewFadeIn {
            from {
                opacity: 0;
                transform: translateY(16px);
            }

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

        /* ========== HERO ========== */
        .hero {
            min-height: 75vh;
            display: flex;
            align-items: center;
            position: relative;
            background: linear-gradient(135deg, rgba(253, 248, 245, 0.92) 0%, rgba(248, 200, 220, 0.35) 60%, rgba(232, 196, 200, 0.25) 100%),
                url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&q=80&w=1920') center/cover no-repeat;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: -40%;
            right: -15%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: floatGlow 8s ease-in-out infinite;
        }

        @keyframes floatGlow {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(-20px, -30px) scale(1.1);
            }
        }

        .hero .container {
            position: relative;
            z-index: 2;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .hero h1 {
            margin-bottom: 20px;
            color: var(--espresso);
            font-weight: 500;
        }

        .hero h1 .gold-text {
            display: inline-block;
            position: relative;
        }

        .hero p {
            font-size: 1.15rem;
            margin-bottom: 32px;
            max-width: 480px;
            color: var(--charcoal);
            font-weight: 300;
            line-height: 1.7;
        }

        /* ========== BOTONES ========== */
        .btn {
            display: inline-block;
            background: var(--champagne);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-smooth);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-family: 'Inter', sans-serif;
            box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .btn:hover::after {
            transform: translateX(100%);
        }

        .btn:hover {
            background: var(--champagne-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow-gold);
        }

        .btn:active {
            transform: translateY(-1px) scale(0.98);
            transition: var(--transition-fast);
        }

        .btn-outline {
            background: transparent;
            color: var(--espresso);
            border: 2px solid var(--champagne);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: var(--champagne);
            color: #fff;
            box-shadow: var(--shadow-gold);
        }

        .btn-luxury {
            padding: 13px 36px;
            border-radius: var(--radius-full);
            border: 2px solid var(--champagne);
            background: transparent;
            color: var(--champagne-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            cursor: pointer;
            transition: var(--transition-smooth);
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
        }

        .btn-luxury:hover {
            background: var(--champagne);
            color: #fff;
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 0.78rem;
            letter-spacing: 0.8px;
        }

        /* ========== SECCIONES ========== */
        .product-section {
            padding: 70px 0;
        }

        .section-title {
            margin-bottom: 16px;
            color: var(--espresso);
        }

        .section-subtitle {
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 48px;
            font-weight: 300;
            letter-spacing: 0.3px;
        }

        /* ========== GRID & CARDS ========== */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 40px 24px;
        }

        .card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 0;
            text-align: center;
            border: 1px solid transparent;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--border-glow);
        }

        .card-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            aspect-ratio: 4/5;
            background: var(--cream);
        }

        .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .card:hover img {
            transform: scale(1.06);
        }

        .card-badge {
            position: absolute;
            top: 14px;
            left: 14px;
            background: var(--blush);
            color: var(--espresso);
            font-size: 0.7rem;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: var(--radius-full);
            letter-spacing: 0.6px;
            z-index: 2;
            text-transform: uppercase;
        }

        .card-actions-overlay {
            position: absolute;
            bottom: 12px;
            right: 12px;
            display: flex;
            gap: 8px;
            opacity: 0;
            transform: translateY(8px);
            transition: var(--transition-smooth);
            z-index: 2;
        }

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

        .card-quick-add {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #fff;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            color: var(--champagne-dark);
            font-size: 1rem;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-quick-add:hover {
            background: var(--champagne);
            color: #fff;
            box-shadow: var(--shadow-gold);
            transform: scale(1.1);
        }

        .card-body {
            padding: 20px 20px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .card h3 {
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: var(--espresso);
            font-weight: 500;
        }

        .card .category-tag {
            font-size: 0.75rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .card .price {
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--champagne-dark);
            margin-top: auto;
            margin-bottom: 16px;
            font-family: 'Inter', sans-serif;
        }

        .card .btn {
            width: 100%;
            padding: 12px;
            font-size: 0.82rem;
            letter-spacing: 0.8px;
        }

        /* ========== BÚSQUEDA Y FILTROS ========== */
        .search-header {
            max-width: 680px;
            margin: 0 auto 36px;
            text-align: center;
        }

        .search-wrapper {
            position: relative;
            margin-bottom: 10px;
        }

        .search-wrapper input {
            width: 100%;
            padding: 16px 24px 16px 52px;
            border: 1.5px solid var(--border-subtle);
            border-radius: var(--radius-full);
            background: #fff;
            box-shadow: var(--shadow-sm);
            font-size: 1rem;
            color: var(--espresso);
            transition: var(--transition-smooth);
            font-family: 'Inter', sans-serif;
            outline: none;
        }

        .search-wrapper input:focus {
            border-color: var(--champagne);
            box-shadow: 0 6px 24px rgba(201, 169, 110, 0.12);
            transform: translateY(-1px);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1rem;
            color: #bbb;
            pointer-events: none;
            transition: var(--transition-fast);
        }

        .search-wrapper input:focus~.search-icon,
        .search-wrapper input:focus+.search-icon {
            color: var(--champagne);
        }

        .autocomplete-suggestions {
            position: absolute;
            top: calc(100% + 8px);
            left: 8px;
            right: 8px;
            background: #fff;
            border-radius: var(--radius-md);
            z-index: 100;
            box-shadow: var(--shadow-lg);
            max-height: 240px;
            overflow-y: auto;
            display: none;
            border: 1px solid var(--border-subtle);
        }

        .suggestion-item {
            padding: 13px 22px;
            text-align: left;
            cursor: pointer;
            border-bottom: 1px solid #f5f0ed;
            color: var(--espresso);
            font-size: 0.9rem;
            transition: var(--transition-fast);
        }

        .suggestion-item:last-child {
            border-bottom: none;
        }

        .suggestion-item:hover {
            background: var(--cream);
            color: var(--champagne-dark);
            font-weight: 500;
        }

        .results-counter {
            font-size: 0.8rem;
            color: #aaa;
            letter-spacing: 0.3px;
        }

        .filter-toolbar {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 44px;
        }

        .categories-wrapper {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-pill {
            padding: 9px 22px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-subtle);
            background: #fff;
            color: var(--charcoal);
            cursor: pointer;
            font-weight: 500;
            font-size: 0.85rem;
            transition: var(--transition-smooth);
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.2px;
        }

        .filter-pill.active,
        .filter-pill:hover {
            background: var(--champagne);
            color: #fff;
            border-color: var(--champagne);
            box-shadow: 0 4px 14px rgba(201, 169, 110, 0.2);
            transform: translateY(-1px);
        }

        .advanced-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .price-range {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 6px 16px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-subtle);
        }

        .price-range input {
            width: 70px;
            border: none;
            padding: 8px 4px;
            font-size: 0.85rem;
            text-align: center;
            color: var(--espresso);
            outline: none;
            font-family: 'Inter', sans-serif;
            background: transparent;
        }

        .price-range .divider {
            color: #ccc;
            font-weight: 300;
        }

        .sort-select {
            padding: 10px 18px;
            border-radius: var(--radius-full);
            border: 1.5px solid var(--border-subtle);
            background: #fff;
            color: var(--espresso);
            cursor: pointer;
            outline: none;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            transition: var(--transition-fast);
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 36px;
        }

        .sort-select:focus {
            border-color: var(--champagne);
        }

        .no-results {
            text-align: center;
            padding: 50px 20px;
            font-size: 1.1rem;
            color: #999;
        }

        .btn-reset {
            margin-top: 14px;
            background: transparent;
            border: 1.5px solid var(--champagne);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            cursor: pointer;
            color: var(--champagne-dark);
            font-weight: 500;
            transition: var(--transition-smooth);
            font-family: 'Inter', sans-serif;
        }

        .btn-reset:hover {
            background: var(--champagne);
            color: #fff;
        }

        .load-more-container {
            margin-top: 50px;
            text-align: center;
        }

        /* ========== CARRITO ========== */
        .cart-container {
            max-width: 800px;
            margin: 50px auto;
        }

        .cart-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border: 1px solid var(--border-subtle);
            background: #fff;
            margin-bottom: 12px;
            border-radius: var(--radius-md);
            transition: var(--transition-fast);
            gap: 16px;
            flex-wrap: wrap;
        }

        .cart-item:hover {
            box-shadow: var(--shadow-sm);
            border-color: var(--border-glow);
        }

        .cart-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: var(--radius-sm);
            flex-shrink: 0;
        }

        .cart-item-info {
            flex: 1;
            min-width: 140px;
        }

        .cart-item-info h4 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 2px;
        }

        .cart-item-info .gold-text {
            font-size: 0.9rem;
        }

        .qty-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .qty-btn {
            background: #fff;
            border: 1.5px solid var(--border-subtle);
            color: var(--espresso);
            width: 34px;
            height: 34px;
            border-radius: 50%;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            background: var(--champagne);
            color: #fff;
            border-color: var(--champagne);
        }

        .btn-remove {
            color: #c0392b;
            background: none;
            border: none;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.85rem;
            transition: var(--transition-fast);
            padding: 6px 12px;
            border-radius: var(--radius-full);
        }

        .btn-remove:hover {
            background: #fdeaea;
            color: #a93226;
        }

        .cart-summary {
            text-align: right;
            margin-top: 28px;
            padding: 24px 28px;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
        }

        .cart-summary h3 {
            font-size: 1.4rem;
            margin-bottom: 8px;
        }

        /* ========== AUTH ========== */
        .auth-container {
            max-width: 440px;
            margin: 60px auto;
            padding: 40px 36px;
            background: #fff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-md);
        }

        .form-group {
            margin-bottom: 18px;
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .form-group label {
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 0.8rem;
            color: var(--champagne-dark);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .form-group input {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid var(--border-subtle);
            border-radius: var(--radius-sm);
            color: var(--espresso);
            outline: none;
            font-size: 1rem;
            transition: var(--transition-fast);
            font-family: 'Inter', sans-serif;
            background: var(--cream);
        }

        .form-group input:focus {
            border-color: var(--champagne);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.08);
        }

        .auth-switch {
            text-align: center;
            margin-top: 18px;
            cursor: pointer;
            color: var(--champagne-dark);
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition-fast);
        }

        .auth-switch:hover {
            text-decoration: underline;
            color: var(--champagne);
        }

        /* ========== MODALES ========== */
        .modal,
        .checkout-modal,
        #checkout-modal {
            position: fixed;
            inset: 0;
            background: rgba(20, 20, 20, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 20px;
        }

        .modal.active,
        .checkout-modal.active,
        #checkout-modal.active {
            display: flex;
        }

        .modal-content,
        .checkout-content {
            background: #fff;
            width: 100%;
            max-width: 460px;
            max-height: 88vh;
            overflow-y: auto;
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            position: relative;
            text-align: center;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
            animation: modalPopIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            color: var(--espresso);
        }

        @keyframes modalPopIn {
            from {
                opacity: 0;
                transform: scale(0.88) translateY(24px);
            }

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

        .modal-content h3,
        .checkout-content h2 {
            font-size: 1.5rem;
            color: var(--espresso);
            margin-bottom: 14px;
            font-weight: 500;
        }

        .modal-content p {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 16px;
        }

        .checkout-item {
            display: flex;
            justify-content: space-between;
            margin: 8px 0;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 0.85rem;
        }

        .checkout-actions {
            margin-top: 20px;
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .modal-close {
            position: absolute;
            right: 18px;
            top: 14px;
            cursor: pointer;
            font-size: 1.6rem;
            color: #bbb;
            background: none;
            border: none;
            transition: var(--transition-fast);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            color: var(--espresso);
            background: #f5f5f5;
        }

        /* ========== TOAST ========== */
        #toast-container {
            position: fixed;
            bottom: 90px;
            right: 24px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .toast {
            background: var(--espresso);
            color: #fff;
            padding: 14px 24px;
            border-radius: var(--radius-full);
            box-shadow: var(--shadow-lg);
            animation: slideInToast 0.35s ease-out forwards;
            font-size: 0.88rem;
            font-weight: 500;
            pointer-events: auto;
        }

        @keyframes slideInToast {
            from {
                transform: translateX(120%);
                opacity: 0;
            }

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

        /* ========== FOOTER ========== */
        .site-footer {
            background: var(--cream);
            border-top: 1px solid var(--border-subtle);
            padding: 48px 0 32px;
            margin-top: 60px;
        }

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

        .footer-col h4 {
            font-size: 1rem;
            margin-bottom: 14px;
            color: var(--espresso);
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.5px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 6px;
        }

        .footer-col ul li a {
            color: #888;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition-fast);
        }

        .footer-col ul li a:hover {
            color: var(--champagne-dark);
        }

        .footer-bottom {
            text-align: center;
            color: #aaa;
            font-size: 0.8rem;
            padding-top: 20px;
            border-top: 1px solid var(--border-subtle);
        }

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

            #toast-container {
                bottom: 80px;
                right: 12px;
                left: 12px;
                align-items: center;
            }
        }

        @media (max-height: 500px) {

            .modal-content,
            .checkout-content {
                max-height: 94vh;
                padding: 20px 18px;
            }
        }

        /* ========== UTILIDADES ========== */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
   