/* ============================================================
           DESIGN SYSTEM · BOUTIQUE MEDITERRÁNEA PREMIUM 2026
           Inspiración: Apple · Soho House · hospitality internacional
           ============================================================ */
        :root {
            /* Paleta nueva — boutique mediterránea premium */
            --deep-blue: #0A2540;
            --deep-blue-soft: #14375E;
            --gold: #C9A961;
            --gold-soft: #D4B876;
            --gold-deep: #A8893E;
            --sand: #E8DCC4;
            --sand-light: #F4ECD8;
            --mineral: #FAF8F3;
            --mineral-pure: #FFFFFF;
            --olive: #6B7B4F;
            --olive-deep: #4A5536;
            --wood: #8B6F47;
            --ink: #1A1A1A;
            --ink-soft: #3A3A3A;
            --line: rgba(10, 37, 64, 0.08);
            --line-strong: rgba(10, 37, 64, 0.16);
            --shadow-soft: 0 1px 2px rgba(10,37,64,.04), 0 8px 32px rgba(10,37,64,.06);
            --shadow-lift: 0 2px 4px rgba(10,37,64,.06), 0 24px 60px rgba(10,37,64,.12);
            --radius: 4px;
            --radius-lg: 16px;
            --radius-pill: 999px;

            /* Compatibilidad con CSS original (chat IA, recetas) */
            --deep-ocean: var(--deep-blue);
            --mediterranean: var(--deep-blue-soft);
            --turquoise: var(--gold);
            --foam: var(--mineral);
            --coral: var(--gold-deep);

            --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
            --sans: 'Manrope', 'Montserrat', -apple-system, sans-serif;
            --ease: cubic-bezier(.2,.7,.2,1);
        }

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

        ::selection { background: var(--gold); color: var(--deep-blue); }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--sans);
            background: var(--mineral);
            color: var(--ink);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-feature-settings: "ss01","ss02","kern","liga";
            line-height: 1.55;
        }

        img { display: block; max-width: 100%; height: auto; }
        a { color: inherit; text-decoration: none; }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed; inset: 0;
            background: var(--deep-blue);
            display: flex; justify-content: center; align-items: center;
            z-index: 9999;
            transition: opacity .8s ease;
        }
        .preloader.hidden { opacity: 0; pointer-events: none; }
        .wave-loader {
            width: 64px; height: 64px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--gold);
            animation: spin 1s linear infinite;
            position: relative;
        }
        .wave-loader::before {
            content: ''; position: absolute;
            top: 4px; left: 4px; right: 4px; bottom: 4px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: var(--sand);
            animation: spin 2s linear infinite reverse;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ===== NAV ===== */
        nav {
            position: fixed; top: 0; left: 0; right: 0;
            padding: 18px 48px;
            display: flex; justify-content: space-between; align-items: center;
            z-index: 1000;
            background: rgba(10, 37, 64, 0);
            backdrop-filter: blur(0px);
            transition: background .5s var(--ease), padding .4s var(--ease), backdrop-filter .5s var(--ease);
        }
        nav.scrolled {
            background: rgba(250, 248, 243, 0.85);
            backdrop-filter: blur(20px) saturate(140%);
            -webkit-backdrop-filter: blur(20px) saturate(140%);
            padding: 12px 48px;
            border-bottom: 1px solid var(--line);
        }
        nav.scrolled .nav-links a,
        nav.scrolled .logo,
        nav.scrolled .lang-btn { color: var(--deep-blue); }
        nav.scrolled .lang-btn { background: rgba(10,37,64,.06); border-color: var(--line); }

        .logo {
            font-family: var(--serif);
            font-weight: 500;
            font-size: 1.15rem;
            color: var(--mineral);
            display: flex; align-items: center; gap: 14px;
            letter-spacing: -0.01em;
            white-space: nowrap;
            transition: color .4s;
        }
        .logo .logo-mark {
            width: 36px; height: 36px;
            display: inline-flex; align-items: center; justify-content: center;
            background: var(--gold);
            border-radius: 50%;
            color: var(--deep-blue);
            font-weight: 700;
            font-family: var(--serif);
            font-size: .95rem;
            letter-spacing: .02em;
        }
        .logo small {
            display: block;
            font-family: var(--sans);
            font-size: .68rem;
            font-weight: 500;
            letter-spacing: .22em;
            text-transform: uppercase;
            opacity: .7;
            margin-top: 2px;
        }
        .logo-text { display: flex; flex-direction: column; line-height: 1.1; }

        .nav-links {
            display: flex; gap: 36px; list-style: none; align-items: center;
        }
        .nav-links a {
            color: var(--mineral);
            font-size: .78rem; font-weight: 500;
            letter-spacing: .14em; text-transform: uppercase;
            position: relative; transition: color .3s;
        }
        .nav-links a::after {
            content: ''; position: absolute;
            bottom: -6px; left: 0; width: 0; height: 1px;
            background: var(--gold);
            transition: width .35s var(--ease);
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--mineral); }
        nav.scrolled .nav-toggle { color: var(--deep-blue); }

        /* ===== LANGUAGE SELECTOR (PRESERVADO + restyled) ===== */
        .language-selector { position: relative; }
        .lang-btn {
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.22);
            color: var(--mineral);
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            cursor: pointer;
            font-family: var(--sans); font-weight: 600; font-size: .72rem;
            letter-spacing: .16em;
            display: inline-flex; align-items: center; gap: 8px;
            transition: all .3s;
        }
        .lang-btn:hover { background: var(--gold); color: var(--deep-blue); border-color: var(--gold); }
        .lang-dropdown {
            position: absolute; top: calc(100% + 10px); right: 0;
            background: var(--mineral-pure);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lift);
            overflow: hidden;
            opacity: 0; visibility: hidden;
            transform: translateY(-8px);
            transition: all .3s var(--ease);
            min-width: 200px; max-height: 360px; overflow-y: auto;
            z-index: 1001;
        }
        .lang-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
        .lang-option {
            padding: 11px 18px; cursor: pointer; transition: background .2s;
            color: var(--deep-blue); font-weight: 500; font-size: .85rem;
            display: flex; align-items: center; gap: 10px;
        }
        .lang-option:hover { background: var(--sand-light); }
        .lang-option.active { background: var(--deep-blue); color: var(--mineral); }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex; align-items: center;
            background: var(--deep-blue);
            overflow: hidden;
            padding: 140px 48px 80px;
        }
        .hero-bg {
            position: absolute; inset: 0; z-index: 1;
            overflow: hidden;
        }
        .hero-bg img {
            width: 100%; height: 100%; object-fit: cover;
            transform: scale(1.05);
            animation: heroZoom 18s var(--ease) forwards;
            opacity: .55;
        }
        @keyframes heroZoom { to { transform: scale(1); } }
        .hero-bg::after {
            content: ''; position: absolute; inset: 0;
            background:
              radial-gradient(ellipse at 30% 40%, rgba(10,37,64,.35), transparent 70%),
              linear-gradient(180deg, rgba(10,37,64,.55) 0%, rgba(10,37,64,.85) 100%);
        }
        .hero-grain {
            position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .35;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            mix-blend-mode: overlay;
        }

        .hero-content {
            position: relative; z-index: 3;
            max-width: 980px; margin: 0 auto;
            text-align: left;
            color: var(--mineral);
        }
        .hero-eyebrow {
            display: inline-flex; align-items: center; gap: 14px;
            font-size: .72rem; font-weight: 600;
            letter-spacing: .32em; text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 36px;
            opacity: 0;
            animation: fadeUp 1.2s .4s var(--ease) forwards;
        }
        .hero-eyebrow::before {
            content: ''; width: 48px; height: 1px; background: var(--gold);
        }
        .hero-title {
            font-family: var(--serif);
            font-size: clamp(2.6rem, 6.4vw, 5.6rem);
            font-weight: 300;
            line-height: 1.02;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
            opacity: 0;
            animation: fadeUp 1.2s .6s var(--ease) forwards;
        }
        .hero-title em {
            font-style: italic; font-weight: 400; color: var(--gold-soft);
            font-feature-settings: "ss01";
        }
        .hero-sub {
            font-family: var(--serif);
            font-style: italic; font-weight: 300;
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: var(--sand);
            margin-bottom: 32px;
            max-width: 720px;
            opacity: 0;
            animation: fadeUp 1.2s .8s var(--ease) forwards;
        }
        .hero-desc {
            font-size: 1rem; line-height: 1.7;
            color: rgba(250,248,243,.78);
            max-width: 580px;
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeUp 1.2s 1s var(--ease) forwards;
        }
        .hero-desc strong { color: var(--mineral); font-weight: 500; }
        .hero-ctas {
            display: flex; flex-wrap: wrap; gap: 14px;
            opacity: 0;
            animation: fadeUp 1.2s 1.2s var(--ease) forwards;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 14px 28px;
            border-radius: var(--radius-pill);
            font-family: var(--sans);
            font-size: .82rem; font-weight: 600;
            letter-spacing: .12em; text-transform: uppercase;
            cursor: pointer; border: 1px solid transparent;
            transition: all .35s var(--ease);
            position: relative; overflow: hidden;
        }
        .btn-primary { background: var(--gold); color: var(--deep-blue); border-color: var(--gold); }
        .btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,97,.4); }
        .btn-ghost { background: transparent; color: var(--mineral); border-color: rgba(250,248,243,.4); }
        .btn-ghost:hover { background: var(--mineral); color: var(--deep-blue); border-color: var(--mineral); }
        .btn-outline-dark { background: transparent; color: var(--deep-blue); border-color: var(--deep-blue); }
        .btn-outline-dark:hover { background: var(--deep-blue); color: var(--mineral); }
        .btn-dark { background: var(--deep-blue); color: var(--mineral); border-color: var(--deep-blue); }
        .btn-dark:hover { background: var(--deep-blue-soft); transform: translateY(-2px); }
        .btn-arrow::after {
            content: '→'; transition: transform .35s var(--ease);
            font-family: var(--sans); letter-spacing: 0;
        }
        .btn-arrow:hover::after { transform: translateX(4px); }

        .scroll-cue {
            position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
            color: var(--gold);
            font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
            display: flex; flex-direction: column; align-items: center; gap: 12px;
            z-index: 3;
            animation: bounce 2.6s ease infinite;
        }
        .scroll-cue::after { content: ''; width: 1px; height: 36px; background: var(--gold); }
        @keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

        /* ===== SECTION FRAMEWORK ===== */
        section { padding: 120px 48px; position: relative; }
        .container { max-width: 1280px; margin: 0 auto; }
        .container-tight { max-width: 980px; margin: 0 auto; }

        .eyebrow {
            display: inline-flex; align-items: center; gap: 12px;
            font-size: .72rem; font-weight: 600;
            letter-spacing: .3em; text-transform: uppercase;
            color: var(--gold-deep);
            margin-bottom: 24px;
        }
        .eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold-deep); }

        .h-display {
            font-family: var(--serif);
            font-size: clamp(2.2rem, 4.6vw, 4rem);
            font-weight: 300;
            line-height: 1.05;
            letter-spacing: -0.02em;
            color: var(--deep-blue);
            margin-bottom: 24px;
        }
        .h-display em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
        .lede {
            font-size: 1.08rem; line-height: 1.7;
            color: var(--ink-soft);
            max-width: 620px;
            margin-bottom: 48px;
        }

        /* ===== BLOQUE 1: SELECCIÓN PREMIUM ===== */
        .seleccion {
            background: linear-gradient(180deg, var(--mineral) 0%, var(--sand-light) 100%);
            position: relative;
        }
        .sel-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px; align-items: center;
        }
        .sel-text { padding-right: 40px; }
        .sel-visual {
            aspect-ratio: 4/5;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-lift);
        }
        .sel-visual img {
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 1.4s var(--ease);
        }
        .sel-visual:hover img { transform: scale(1.04); }
        .sel-visual::after {
            content: 'MALLORCA · MEDITERRÁNEO · INTERNACIONAL';
            position: absolute; bottom: 24px; left: 24px; right: 24px;
            color: var(--mineral);
            font-size: .68rem; letter-spacing: .26em; font-weight: 600;
            text-shadow: 0 2px 12px rgba(0,0,0,.5);
        }

        .sel-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

        /* ===== BLOQUE 2: CESTAS BOUTIQUE ===== */
        .cestas { background: var(--mineral); }
        .cestas-header {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 80px; align-items: end;
            margin-bottom: 72px;
        }
        .cestas-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-auto-rows: minmax(420px, auto);
            gap: 24px;
        }
        .cesta {
            position: relative; overflow: hidden;
            border-radius: var(--radius-lg);
            background: var(--deep-blue);
            cursor: pointer;
            transition: transform .5s var(--ease), box-shadow .5s var(--ease);
        }
        .cesta:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
        .cesta img {
            position: absolute; inset: 0;
            width: 100%; height: 100%; object-fit: cover;
            transition: transform 1.6s var(--ease), filter .6s ease;
            filter: brightness(.78) saturate(1.05);
        }
        .cesta:hover img { transform: scale(1.06); filter: brightness(.85) saturate(1.1); }
        .cesta::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(180deg, transparent 35%, rgba(10,37,64,.72) 100%);
            z-index: 1;
        }
        .cesta-body {
            position: absolute; inset: auto 0 0 0; z-index: 2;
            padding: 32px;
            color: var(--mineral);
        }
        .cesta-eyebrow {
            font-size: .66rem; letter-spacing: .28em; text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
        }
        .cesta-title {
            font-family: var(--serif);
            font-size: 1.7rem; font-weight: 400;
            line-height: 1.1; letter-spacing: -0.015em;
            margin-bottom: 12px;
        }
        .cesta-desc {
            font-size: .92rem; line-height: 1.55;
            color: rgba(250,248,243,.85);
            margin-bottom: 20px;
            max-width: 380px;
        }
        .cesta-cta {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--gold);
            font-size: .76rem; font-weight: 600;
            letter-spacing: .14em; text-transform: uppercase;
        }
        .cesta-cta::after { content: '→'; transition: transform .3s; }
        .cesta:hover .cesta-cta::after { transform: translateX(4px); }

        /* Asymmetric grid */
        .cesta-1 { grid-column: span 7; grid-row: span 2; }
        .cesta-2 { grid-column: span 5; }
        .cesta-3 { grid-column: span 5; }
        .cesta-4 { grid-column: span 6; }
        .cesta-5 { grid-column: span 6; }

        /* ===== BLOQUE 3: HISTORIA ===== */
        .historia {
            background: var(--deep-blue);
            color: var(--mineral);
            position: relative;
            overflow: hidden;
        }
        .historia::before {
            content: ''; position: absolute;
            top: -200px; right: -200px;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201,169,97,.12), transparent 70%);
            pointer-events: none;
        }
        .historia-grid {
            display: grid; grid-template-columns: 1fr 1.2fr;
            gap: 80px; align-items: center;
            position: relative; z-index: 1;
        }
        .historia-portrait {
            aspect-ratio: 4/5;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
            box-shadow: 0 40px 80px rgba(0,0,0,.4);
        }
        .historia-portrait img { width: 100%; height: 100%; object-fit: cover; }
        .historia-portrait::after {
            content: '— Z. K.';
            position: absolute; bottom: 20px; right: 24px;
            font-family: var(--serif); font-style: italic;
            font-size: 1.4rem; color: var(--gold);
            text-shadow: 0 2px 12px rgba(0,0,0,.6);
        }
        .historia .eyebrow { color: var(--gold); }
        .historia .eyebrow::before { background: var(--gold); }
        .historia .h-display { color: var(--mineral); }
        .historia .h-display em { color: var(--gold-soft); }
        .historia-text p {
            font-size: 1.04rem; line-height: 1.85;
            color: rgba(250,248,243,.82);
            margin-bottom: 22px;
            max-width: 580px;
        }
        .historia-text p strong { color: var(--mineral); font-weight: 500; }
        .historia-quote {
            font-family: var(--serif); font-style: italic; font-weight: 300;
            font-size: 1.4rem; line-height: 1.4;
            color: var(--gold-soft);
            border-left: 2px solid var(--gold);
            padding-left: 24px;
            margin: 32px 0;
            max-width: 540px;
        }

        /* ===== BLOQUE 4: GASTRONOMÍA MINERAL (con recetas WP integradas) ===== */
        .gastronomia {
            background: var(--mineral);
            position: relative;
        }
        .gastronomia-intro {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 80px; align-items: end;
            margin-bottom: 72px;
        }
        .gastronomia-cta-row {
            display: flex; flex-wrap: wrap; gap: 12px;
            margin-top: 32px;
        }

        .recipe-filters {
            display: flex; flex-wrap: wrap; gap: 10px;
            justify-content: center; margin: 56px 0 48px;
        }
        .filter-btn {
            background: transparent;
            border: 1px solid var(--line-strong);
            color: var(--deep-blue);
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            font-family: var(--sans);
            font-size: .76rem; font-weight: 600;
            letter-spacing: .12em; text-transform: uppercase;
            cursor: pointer;
            transition: all .3s;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--deep-blue); color: var(--mineral); border-color: var(--deep-blue);
        }

        .recipes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
        }
        .recipe-card {
            background: var(--mineral-pure);
            border-radius: var(--radius-lg);
            overflow: hidden;
            cursor: pointer;
            transition: transform .5s var(--ease), box-shadow .5s var(--ease);
            border: 1px solid var(--line);
        }
        .recipe-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lift);
        }
        .recipe-image {
            width: 100%; height: 240px; object-fit: cover;
            transition: transform 1s var(--ease);
        }
        .recipe-card:hover .recipe-image { transform: scale(1.05); }
        .recipe-badge {
            position: absolute; top: 16px; right: 16px;
            background: var(--gold);
            color: var(--deep-blue);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            font-size: .68rem; font-weight: 700;
            letter-spacing: .14em; text-transform: uppercase;
        }
        .recipe-content { padding: 24px 28px 28px; }
        .recipe-category {
            font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
            color: var(--gold-deep); font-weight: 700;
            margin-bottom: 10px;
        }
        .recipe-title {
            font-family: var(--serif);
            font-size: 1.3rem; font-weight: 500;
            line-height: 1.2; color: var(--deep-blue);
            margin-bottom: 12px;
        }
        .recipe-meta {
            display: flex; gap: 16px;
            font-size: .82rem; color: var(--ink-soft);
            margin-bottom: 14px;
        }
        .recipe-description {
            font-size: .9rem; line-height: 1.6;
            color: var(--ink-soft);
            margin-bottom: 16px;
            display: -webkit-box; -webkit-line-clamp: 3;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        .recipe-btn {
            display: inline-flex; align-items: center; gap: 8px;
            color: var(--deep-blue); font-weight: 600;
            font-size: .82rem; letter-spacing: .08em;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 2px;
            transition: gap .3s;
        }
        .recipe-btn:hover { gap: 14px; }

        /* ===== BLOQUE 5: EMPRESAS ===== */
        .empresas {
            background: linear-gradient(180deg, var(--sand-light) 0%, var(--sand) 100%);
            position: relative;
        }
        .empresas-grid {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 80px; align-items: center;
        }
        .empresas-list {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 32px 0 40px;
        }
        .empresa-item {
            background: var(--mineral-pure);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            display: flex; flex-direction: column; gap: 6px;
            transition: all .3s;
        }
        .empresa-item:hover { border-color: var(--gold); transform: translateY(-3px); }
        .empresa-item .num {
            font-family: var(--serif); font-style: italic;
            font-size: 1.4rem; color: var(--gold-deep);
        }
        .empresa-item .lbl {
            font-size: .82rem; font-weight: 600;
            color: var(--deep-blue);
            letter-spacing: .04em;
        }
        .empresas-visual {
            aspect-ratio: 5/6;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lift);
        }
        .empresas-visual img { width: 100%; height: 100%; object-fit: cover; }

        /* ===== AI SECTION (PRESERVADA, restyled minimal) ===== */
        .ai-section {
            background: var(--deep-blue);
            color: var(--mineral);
            position: relative;
            overflow: hidden;
        }
        .ai-section::before {
            content: ''; position: absolute;
            top: 50%; left: 50%; transform: translate(-50%,-50%);
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(201,169,97,.08), transparent 60%);
            pointer-events: none;
        }
        .ai-section .eyebrow { color: var(--gold); }
        .ai-section .eyebrow::before { background: var(--gold); }
        .ai-section .h-display { color: var(--mineral); }
        .ai-section .lede { color: rgba(250,248,243,.78); }

        .ai-container {
            max-width: 880px; margin: 48px auto 0;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.1);
            border-radius: var(--radius-lg);
            padding: 32px;
            backdrop-filter: blur(20px);
            position: relative; z-index: 1;
        }
        .ai-header {
            display: flex; justify-content: space-between; align-items: center;
            padding-bottom: 20px; margin-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,.1);
        }
        .ai-title {
            font-family: var(--serif);
            font-size: 1.3rem; font-weight: 500;
            display: flex; align-items: center; gap: 12px;
        }
        .ai-status { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(250,248,243,.7); }
        .status-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--gold); animation: pulse 2s infinite;
        }
        @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

        .ai-actions { display: flex; gap: 8px; margin-bottom: 16px; }
        .ai-clear-btn {
            background: rgba(255,255,255,.05); color: rgba(250,248,243,.7);
            border: 1px solid rgba(255,255,255,.1);
            padding: 8px 16px; border-radius: var(--radius-pill);
            font-size: .72rem; cursor: pointer;
            font-family: var(--sans); letter-spacing: .1em; text-transform: uppercase;
            transition: all .3s;
        }
        .ai-clear-btn:hover { background: var(--gold); color: var(--deep-blue); border-color: var(--gold); }

        .ai-chat {
            min-height: 320px; max-height: 520px; overflow-y: auto;
            padding: 20px 0;
            display: flex; flex-direction: column; gap: 14px;
        }
        .ai-message {
            padding: 14px 20px; border-radius: var(--radius-lg);
            max-width: 85%;
            animation: fadeIn .4s var(--ease);
            font-size: .92rem; line-height: 1.6;
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .ai-message.user {
            background: var(--gold); color: var(--deep-blue);
            align-self: flex-end; font-weight: 500;
        }
        .ai-message.bot {
            background: rgba(255,255,255,.05);
            color: var(--mineral);
            border: 1px solid rgba(255,255,255,.08);
            align-self: flex-start;
        }
        .ai-message.bot strong, .ai-message.bot b { color: var(--gold-soft); }
        .ai-message.bot em, .ai-message.bot i { color: var(--sand); }

        .ai-input-area {
            display: flex; gap: 10px; margin-top: 16px;
            padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
        }
        .ai-input {
            flex: 1; background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            color: var(--mineral);
            padding: 14px 20px; border-radius: var(--radius-pill);
            font-family: var(--sans); font-size: .92rem;
            outline: none; transition: all .3s;
        }
        .ai-input::placeholder { color: rgba(250,248,243,.4); }
        .ai-input:focus { border-color: var(--gold); background: rgba(255,255,255,.08); }
        .ai-send {
            background: var(--gold); color: var(--deep-blue); border: none;
            width: 48px; height: 48px; border-radius: 50%;
            cursor: pointer; font-size: 1.2rem;
            transition: all .3s;
            display: inline-flex; align-items: center; justify-content: center;
        }
        .ai-send:hover { background: var(--gold-soft); transform: scale(1.05); }
        .ai-send:disabled { opacity: .5; cursor: not-allowed; }

        .ai-lang-hint {
            font-size: .78rem; color: rgba(250,248,243,.6);
            text-align: center; margin-top: 14px;
        }
        .ai-typing {
            display: none; align-items: center; gap: 12px;
            color: rgba(250,248,243,.6); font-size: .85rem;
            margin-top: 8px;
        }
        .ai-typing.active { display: flex; }
        .ai-typing-dots { display: inline-flex; gap: 4px; }
        .ai-typing-dots span {
            width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
            animation: aiBounce 1.2s ease infinite;
        }
        .ai-typing-dots span:nth-child(2) { animation-delay: .15s; }
        .ai-typing-dots span:nth-child(3) { animation-delay: .3s; }
        @keyframes aiBounce { 0%,80%,100% { transform: scale(.6); opacity: .4; } 40% { transform: scale(1); opacity: 1; } }
        .ai-error {
            display: none; padding: 12px 16px;
            background: rgba(255,107,107,.1);
            border: 1px solid rgba(255,107,107,.3);
            border-radius: var(--radius);
            color: #ff8b8b;
            font-size: .85rem; margin-top: 12px;
        }
        .ai-error.active { display: block; }

        /* ===== FOOTER ===== */
        footer {
            background: var(--ink);
            color: var(--sand-light);
            padding: 96px 48px 32px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 56px;
            max-width: 1280px; margin: 0 auto 56px;
        }
        .footer-section h4 {
            font-family: var(--serif);
            font-size: 1.05rem; font-weight: 500;
            color: var(--gold); margin-bottom: 22px;
            letter-spacing: .02em;
        }
        .footer-section p, .footer-section a, .footer-section li {
            font-size: .88rem; line-height: 1.85;
            color: rgba(232,220,196,.65);
            list-style: none;
        }
        .footer-section a { transition: color .3s; cursor: pointer; }
        .footer-section a:hover { color: var(--gold); }
        .footer-brand p { max-width: 320px; }
        .social-links { display: flex; gap: 10px; margin-top: 20px; }
        .social-links a {
            width: 38px; height: 38px;
            border: 1px solid rgba(232,220,196,.2);
            border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: .78rem; font-weight: 700;
            transition: all .3s;
        }
        .social-links a:hover { background: var(--gold); color: var(--deep-blue); border-color: var(--gold); }
        .footer-bottom {
            border-top: 1px solid rgba(232,220,196,.1);
            padding-top: 28px;
            max-width: 1280px; margin: 0 auto;
            display: flex; flex-wrap: wrap; gap: 24px;
            justify-content: space-between;
            font-size: .78rem;
            color: rgba(232,220,196,.5);
        }
        .footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
        .footer-legal a { color: rgba(232,220,196,.7); }
        .footer-legal a:hover { color: var(--gold); }

        /* ===== FLOATING CHAT (PRESERVADO) ===== */
        .chat-float {
            position: fixed; bottom: 28px; right: 28px;
            width: 64px; height: 64px;
            background: var(--gold);
            border: none; border-radius: 50%;
            cursor: pointer; z-index: 998;
            box-shadow: 0 12px 32px rgba(201,169,97,.45);
            transition: all .35s var(--ease);
            display: flex; align-items: center; justify-content: center;
            color: var(--deep-blue);
        }
        .chat-float:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(201,169,97,.55); }
        .chat-float.hidden { opacity: 0; pointer-events: none; transform: scale(.8); }
        .chat-float::before {
            content: ''; position: absolute; inset: -4px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            opacity: .4; animation: ringPulse 2.4s ease infinite;
        }
        @keyframes ringPulse { 0% { transform: scale(.9); opacity: .6; } 100% { transform: scale(1.4); opacity: 0; } }

        .floating-chat-panel {
            position: fixed; bottom: 28px; right: 28px;
            width: 380px; max-width: calc(100vw - 32px);
            height: 580px; max-height: calc(100vh - 56px);
            background: var(--mineral-pure);
            border-radius: var(--radius-lg);
            box-shadow: 0 30px 80px rgba(10,37,64,.3);
            z-index: 999;
            display: flex; flex-direction: column;
            opacity: 0; visibility: hidden;
            transform: translateY(20px) scale(.95);
            transition: all .35s var(--ease);
            overflow: hidden;
        }
        .floating-chat-panel.active { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
        .floating-chat-header {
            background: var(--deep-blue);
            color: var(--mineral);
            padding: 18px 22px;
            display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
        }
        .floating-chat-title {
            font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
        }
        .floating-chat-subtitle {
            font-size: .78rem; color: rgba(250,248,243,.7);
            margin-top: 4px; line-height: 1.4;
        }
        .lead-badge {
            display: inline-block; margin-top: 8px;
            background: var(--gold); color: var(--deep-blue);
            padding: 4px 10px; border-radius: var(--radius-pill);
            font-size: .66rem; font-weight: 700; letter-spacing: .06em;
        }
        .floating-chat-close {
            background: rgba(255,255,255,.1); border: none;
            color: var(--mineral);
            width: 30px; height: 30px; border-radius: 50%;
            cursor: pointer; font-size: 1.2rem;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; transition: all .2s;
        }
        .floating-chat-close:hover { background: rgba(255,255,255,.2); }
        .floating-chat-body {
            flex: 1; overflow-y: auto; padding: 18px;
            display: flex; flex-direction: column; gap: 12px;
            background: var(--mineral);
        }
        .floating-msg {
            padding: 12px 16px; border-radius: 14px;
            font-size: .88rem; line-height: 1.5; max-width: 85%;
            animation: fadeIn .3s ease;
        }
        .floating-msg.bot { background: var(--mineral-pure); border: 1px solid var(--line); color: var(--ink); align-self: flex-start; }
        .floating-msg.user { background: var(--deep-blue); color: var(--mineral); align-self: flex-end; }

        .floating-chat-footer { padding: 14px 16px; border-top: 1px solid var(--line); background: var(--mineral-pure); }
        .floating-input-row { display: flex; gap: 8px; }
        .floating-input {
            flex: 1; padding: 10px 14px;
            border: 1px solid var(--line-strong);
            border-radius: var(--radius-pill);
            font-family: var(--sans); font-size: .88rem;
            outline: none; transition: border-color .2s;
        }
        .floating-input:focus { border-color: var(--gold); }
        .floating-input::placeholder { color: rgba(26,26,26,.4); }
        .floating-send {
            background: var(--gold); color: var(--deep-blue); border: none;
            width: 38px; height: 38px; border-radius: 50%;
            cursor: pointer; font-size: 1rem;
            display: inline-flex; align-items: center; justify-content: center;
            transition: all .2s;
        }
        .floating-send:hover { background: var(--gold-soft); }
        .floating-send:disabled { opacity: .5; cursor: not-allowed; }
        .floating-helper { font-size: .72rem; color: rgba(26,26,26,.5); margin-top: 8px; }
        .lead-step-box {
            background: var(--sand-light); border-radius: var(--radius-lg);
            padding: 14px; margin-top: 8px; display: flex; flex-direction: column; gap: 8px;
        }
        .lead-step-label { font-size: .82rem; color: var(--deep-blue); font-weight: 600; }
        .lead-step-input {
            padding: 10px 12px; border: 1px solid var(--line-strong);
            border-radius: var(--radius); font-family: var(--sans); font-size: .88rem; outline: none;
        }
        .lead-step-input:focus { border-color: var(--gold); }
        .lead-step-input::placeholder { color: rgba(26,26,26,.4); }
        .lead-step-btn {
            background: var(--deep-blue); color: var(--mineral); border: none;
            padding: 10px 16px; border-radius: var(--radius-pill);
            cursor: pointer; font-family: var(--sans); font-size: .82rem;
            font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
        }
        .lead-step-btn:hover { background: var(--gold); color: var(--deep-blue); }
        .floating-error {
            display: none; padding: 8px 12px;
            background: #ffe6e6; color: #b00020;
            border-radius: var(--radius); font-size: .8rem; margin-top: 8px;
        }
        .floating-error.active { display: block; }
        .floating-typing { display: none; align-items: center; gap: 10px; padding: 8px 18px; color: rgba(26,26,26,.6); font-size: .82rem; }
        .floating-typing.active { display: flex; }
        .floating-typing-dots { display: inline-flex; gap: 3px; }
        .floating-typing-dots span { width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; animation: aiBounce 1.2s ease infinite; }
        .floating-typing-dots span:nth-child(2) { animation-delay: .15s; }
        .floating-typing-dots span:nth-child(3) { animation-delay: .3s; }

        /* ===== RECIPE MODAL (PRESERVADO) ===== */
        .modal {
            display: none; position: fixed; inset: 0;
            background: rgba(10,37,64,.85); backdrop-filter: blur(6px);
            z-index: 9998;
            align-items: center; justify-content: center;
            padding: 20px;
        }
        .modal.active { display: flex; animation: fadeIn .3s ease; }
        .modal-content {
            background: var(--mineral-pure);
            border-radius: var(--radius-lg);
            max-width: 800px; width: 100%; max-height: 92vh; overflow-y: auto;
            position: relative; animation: modalIn .35s var(--ease);
        }
        @keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
        .modal-close {
            position: absolute; top: 16px; right: 16px;
            background: var(--deep-blue); color: var(--mineral);
            border: none; width: 38px; height: 38px;
            border-radius: 50%; cursor: pointer; font-size: 1.4rem;
            display: flex; align-items: center; justify-content: center;
            z-index: 10;
        }
        .modal-close:hover { background: var(--gold); color: var(--deep-blue); }
        .modal-image { width: 100%; max-height: 380px; object-fit: cover; }
        .modal-body { padding: 32px 40px 40px; }
        .modal-title { font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--deep-blue); margin: 8px 0 16px; line-height: 1.15; }
        .recipe-details h1, .recipe-details h2, .recipe-details h3 { font-family: var(--serif); color: var(--deep-blue); margin: 22px 0 10px; line-height: 1.2; }
        .recipe-details p { line-height: 1.7; margin-bottom: 14px; color: var(--ink-soft); }
        .recipe-details ul, .recipe-details ol { margin: 12px 0 14px 24px; }
        .recipe-details li { margin-bottom: 6px; line-height: 1.6; color: var(--ink-soft); }
        .recipe-details img { max-width: 100%; border-radius: var(--radius); margin: 14px 0; }
        .recipe-details a { color: var(--deep-blue); border-bottom: 1px solid var(--gold); }

        /* ===== LEGAL PAGES (hash-driven) ===== */
        .legal-page {
            display: none;
            padding: 140px 48px 96px;
            background: var(--mineral);
            min-height: 100vh;
        }
        .legal-page.active { display: block; }
        .legal-container {
            max-width: 880px; margin: 0 auto;
            background: var(--mineral-pure);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 56px 64px;
        }
        .legal-container .eyebrow { color: var(--gold-deep); }
        .legal-container h1 {
            font-family: var(--serif); font-size: clamp(1.8rem, 3.6vw, 2.8rem);
            font-weight: 400; color: var(--deep-blue);
            margin-bottom: 12px; line-height: 1.1;
        }
        .legal-container .updated {
            font-size: .82rem; color: var(--ink-soft);
            margin-bottom: 32px; padding-bottom: 24px;
            border-bottom: 1px solid var(--line);
        }
        .legal-container h2 {
            font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
            color: var(--deep-blue); margin: 32px 0 12px;
        }
        .legal-container h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--deep-blue); margin: 24px 0 8px; }
        .legal-container p, .legal-container li { font-size: .94rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 12px; }
        .legal-container ul, .legal-container ol { margin: 8px 0 16px 24px; }
        .legal-container strong { color: var(--deep-blue); }
        .legal-container a { color: var(--deep-blue); border-bottom: 1px solid var(--gold); }
        .legal-back {
            display: inline-flex; align-items: center; gap: 8px;
            margin-bottom: 24px;
            color: var(--gold-deep); font-weight: 600;
            font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
            cursor: pointer;
        }
        .legal-back:hover { color: var(--deep-blue); }

        body.legal-open .nav-links a:not(.lang-btn) { pointer-events: none; opacity: .4; }

        /* ===== COOKIES BANNER ===== */
        .cookie-banner {
            position: fixed; bottom: 24px; left: 24px;
            max-width: 460px;
            background: var(--mineral-pure);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-lift);
            z-index: 9000;
            transform: translateY(120%);
            transition: transform .5s var(--ease);
        }
        .cookie-banner.show { transform: translateY(0); }
        .cookie-banner h4 { font-family: var(--serif); font-size: 1.1rem; color: var(--deep-blue); margin-bottom: 8px; font-weight: 500; }
        .cookie-banner p { font-size: .84rem; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
        .cookie-banner p a { color: var(--deep-blue); border-bottom: 1px solid var(--gold); cursor: pointer; }
        .cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
        .cookie-actions .btn { padding: 9px 18px; font-size: .72rem; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .sel-grid, .cestas-header, .historia-grid, .gastronomia-intro, .empresas-grid {
                grid-template-columns: 1fr; gap: 48px;
            }
            .sel-text { padding-right: 0; }
            .cestas-grid { grid-template-columns: 1fr 1fr; }
            .cesta-1, .cesta-2, .cesta-3, .cesta-4, .cesta-5 { grid-column: span 1; grid-row: span 1; min-height: 420px; }
            .footer-content { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            nav { padding: 14px 20px; }
            nav.scrolled { padding: 10px 20px; }
            .nav-links { display: none; gap: 24px; }
            .nav-links.mobile-open {
                display: flex; flex-direction: column;
                position: absolute; top: 100%; left: 0; right: 0;
                background: var(--mineral-pure);
                padding: 24px;
                border-top: 1px solid var(--line);
            }
            .nav-links.mobile-open a { color: var(--deep-blue); }
            .nav-toggle { display: block; }
            section { padding: 80px 24px; }
            .hero { padding: 120px 24px 60px; }
            .cestas-grid { grid-template-columns: 1fr; }
            .empresas-list { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 36px; }
            .footer-bottom { flex-direction: column; }
            .floating-chat-panel { width: calc(100vw - 24px); right: 12px; bottom: 12px; }
            .chat-float { right: 16px; bottom: 16px; }
            .legal-container { padding: 32px 24px; }
            .legal-page { padding: 100px 16px 64px; }
            .modal-body { padding: 24px; }
            .cookie-banner { left: 12px; right: 12px; max-width: none; }
        }

        /* Reveal-on-scroll */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
        .reveal.in { opacity: 1; transform: translateY(0); }

        /* Google Translate · ocultar TODOS los elementos del traductor (banner, tooltip, balloon, valoración) */
        .goog-te-banner-frame,
        .goog-te-banner-frame.skiptranslate,
        .goog-te-gadget,
        .goog-te-gadget-icon,
        .goog-te-gadget-simple,
        .goog-tooltip,
        .goog-tooltip:hover,
        .goog-tooltip-popup,
        .goog-te-balloon-frame,
        .goog-te-ftab,
        .goog-te-ftab-link,
        .goog-te-spinner-pos,
        .goog-logo-link,
        #goog-gt-tt,
        #goog-gt-tt:hover,
        .goog-te-menu-value,
        .goog-te-menu-frame,
        iframe.goog-te-menu-frame,
        iframe.goog-te-banner-frame,
        iframe.skiptranslate,
        .VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
        .VIpgJd-ZVi9od-l4eHX-hSRGPd,
        .VIpgJd-ZVi9od-ORHb-OEVmcd,
        .VIpgJd-ZVi9od-ORHb-KE6vqe,
        .VIpgJd-yAWNEb-L7lbkb {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
            height: 0 !important;
            width: 0 !important;
            top: -10000px !important;
            position: absolute !important;
        }
        /* Quitar el resaltado al pasar el ratón sobre texto traducido */
        .goog-text-highlighted,
        font[style*="background-color"] {
            background-color: transparent !important;
            box-shadow: none !important;
            border: none !important;
        }
        /* Forzar la tipografía propia (Google Translate a veces inyecta inline styles) */
        font, font font {
            font-family: inherit !important;
            font-size: inherit !important;
            font-weight: inherit !important;
            color: inherit !important;
            background: transparent !important;
        }
        body { top: 0 !important; position: static !important; }
        .skiptranslate iframe, .skiptranslate { display: none !important; }/* =====================================================
   CESTAS · Rediseño tipo PRODUCTO BOUTIQUE (Ronda 3)
   Diseño packshot · cada cesta es un objeto físico a la venta
   ===================================================== */

.cestas-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 24px;
}

.cesta-product {
    background: var(--mineral-pure);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .35s ease;
    position: relative;
}
.cesta-product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--gold-soft); }

.cesta-product-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(160deg, var(--sand-light) 0%, var(--sand) 100%);
}
.cesta-product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s var(--ease);
}
.cesta-product:hover .cesta-product-img img { transform: scale(1.05); }

.cesta-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--deep-blue);
    color: var(--gold);
    font-family: var(--sans);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .26em;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    z-index: 2;
}
.cesta-tag.gold {
    background: var(--gold);
    color: var(--deep-blue);
}

.cesta-stamp {
    position: absolute;
    bottom: 16px; right: 16px;
    width: 92px; height: 92px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--deep-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-8deg);
    z-index: 2;
    box-shadow: 0 8px 22px rgba(201,169,97,.4);
    font-family: var(--serif);
    font-style: italic;
    line-height: 1;
}
.cesta-stamp .stamp-from {
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-style: normal;
    margin-bottom: 4px;
    font-family: var(--sans);
    font-weight: 700;
}
.cesta-stamp .stamp-price {
    font-size: 1.4rem;
    font-weight: 600;
}

.cesta-product-body {
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cesta-product-eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 10px;
}
.cesta-product-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-blue);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 8px;
}
.cesta-product-subtitle {
    font-family: var(--serif);
    font-style: italic;
    font-size: .98rem;
    color: var(--gold-deep);
    margin-bottom: 16px;
}
.cesta-product-desc {
    font-size: .92rem;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 18px;
    flex: 1;
}
.cesta-product-includes {
    border-top: 1px dashed var(--line-strong);
    padding-top: 16px;
    margin-bottom: 20px;
}
.cesta-product-includes-label {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 10px;
}
.cesta-product-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
    font-size: .82rem;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
    padding: 0;
}
.cesta-product-includes li {
    position: relative;
    padding-left: 14px;
}
.cesta-product-includes li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold-deep);
    font-weight: 700;
}

.cesta-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.cesta-product-cta {
    flex: 1;
    min-width: 140px;
}

/* Cesta horizontal (Private Gourmet) */
.cesta-product-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
    background: var(--deep-blue);
    color: var(--mineral);
    border-color: var(--deep-blue);
}
.cesta-product-wide .cesta-product-img { flex: 1; aspect-ratio: auto; min-height: 320px; }
.cesta-product-wide .cesta-product-body { flex: 1; padding: 40px 48px; }
.cesta-product-wide .cesta-product-eyebrow { color: var(--gold); }
.cesta-product-wide .cesta-product-title { color: var(--mineral); font-size: 2rem; }
.cesta-product-wide .cesta-product-subtitle { color: var(--gold-soft); }
.cesta-product-wide .cesta-product-desc { color: rgba(250,248,243,.78); }
.cesta-product-wide .cesta-product-includes { border-color: rgba(255,255,255,.12); }
.cesta-product-wide .cesta-product-includes-label { color: rgba(250,248,243,.55); }
.cesta-product-wide .cesta-product-includes li { color: rgba(250,248,243,.85); }

@media (max-width: 900px) {
    .cestas-products { grid-template-columns: 1fr; gap: 20px; }
    .cesta-product-img { aspect-ratio: 5/4; }
    .cesta-product-body { padding: 22px 22px 24px; }
    .cesta-product-title { font-size: 1.35rem; }
    .cesta-product-includes ul { grid-template-columns: 1fr; }
    .cesta-stamp { width: 76px; height: 76px; }
    .cesta-stamp .stamp-price { font-size: 1.1rem; }
    .cesta-product-wide { flex-direction: column; }
    .cesta-product-wide .cesta-product-img { min-height: 220px; }
    .cesta-product-wide .cesta-product-body { padding: 24px 22px; }
    .cesta-product-wide .cesta-product-title { font-size: 1.5rem; }
}

/* Refuerzo responsive global · móvil */
@media (max-width: 700px) {
    nav { padding: 12px 16px; }
    nav.scrolled { padding: 10px 16px; }
    .logo { font-size: .98rem; }
    .logo .logo-mark { width: 32px; height: 32px; font-size: .85rem; }
    .logo small { font-size: .58rem; }

    section { padding: 64px 18px; }
    .hero { padding: 110px 18px 50px; min-height: 92vh; }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem) !important; }
    .hero-sub { font-size: 1rem; }
    .hero-desc { font-size: .92rem; }
    .hero-ctas { gap: 10px; }
    .btn { padding: 12px 20px; font-size: .72rem; }

    .h-display { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .lede { font-size: .96rem; }
    .eyebrow { font-size: .66rem; }

    .recipe-filters { gap: 6px; margin: 32px 0 24px; }
    .filter-btn { padding: 8px 14px; font-size: .68rem; letter-spacing: .08em; }

    .recipes-grid { grid-template-columns: 1fr; gap: 18px; }
    .recipe-image { height: 200px; }
    .recipe-content { padding: 18px 20px 22px; }
    .recipe-title { font-size: 1.1rem; }

    .historia-quote { font-size: 1.15rem; padding-left: 18px; }
    .historia-text p { font-size: .96rem; }

    .modal-body { padding: 22px 20px 28px; }
    .modal-title { font-size: 1.35rem; }
    .modal-image { max-height: 240px; }

    .footer-section h4 { font-size: .96rem; margin-bottom: 14px; }
    .footer-section p, .footer-section li, .footer-section a { font-size: .82rem; }

    .legal-container { padding: 28px 20px; }

    .cookie-banner { padding: 18px 20px; }
    .cookie-banner h4 { font-size: .98rem; }
    .cookie-banner p { font-size: .8rem; }

    .floating-chat-panel { width: calc(100vw - 16px); right: 8px; bottom: 8px; height: calc(100vh - 100px); }
    .chat-float { width: 56px; height: 56px; right: 14px; bottom: 14px; }
}

/* Tablet refuerzo */
@media (min-width: 701px) and (max-width: 1024px) {
    .recipes-grid { grid-template-columns: repeat(2, 1fr); }
    .cestas-products { grid-template-columns: 1fr; }
}
