    /* ════════════════════════════════════════════════════════════
   Enzo cookie consent — branded glass card, bottom-right corner
   ════════════════════════════════════════════════════════════ */
    .enzo-cookie {
        position: fixed;
        z-index: 100000;
        right: 20px;
        bottom: 20px;
        width: min(360px, calc(100vw - 40px));
        max-height: min(640px, calc(100vh - 40px));
        overflow-y: auto;
        padding: 20px 20px 18px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px) saturate(140%);
        -webkit-backdrop-filter: blur(20px) saturate(140%);
        border: 1px solid rgba(205, 160, 127, 0.45);
        border-radius: 18px;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.7) inset,
            0 18px 44px -16px rgba(74, 50, 30, 0.28),
            0 8px 16px -10px rgba(74, 50, 30, 0.18);
        color: #2a2a2a;
        font-family: inherit;
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform, opacity;
    }

    .enzo-cookie[data-visible="true"] {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .enzo-cookie::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(135deg, rgba(224, 180, 150, 0.18), rgba(232, 52, 122, 0.05) 60%, transparent);
        pointer-events: none;
        z-index: -1;
    }

    .enzo-cookie__close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: rgba(42, 42, 42, 0.5);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.18s ease;
    }

    .enzo-cookie__close:hover {
        color: #2a2a2a;
        background: rgba(205, 160, 127, 0.18);
    }

    .enzo-cookie__icon {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #e0b496, #cea17f);
        color: #fff;
        margin-bottom: 10px;
        box-shadow: 0 6px 14px -4px rgba(205, 160, 127, 0.7);
    }
    .enzo-cookie__icon svg { width: 18px; height: 18px; }

    .enzo-cookie__title {
        font-size: 15.5px;
        font-weight: 700;
        line-height: 1.25;
        margin: 0 0 4px;
        color: #2a2a2a;
        letter-spacing: -0.01em;
    }

    .enzo-cookie__desc {
        font-size: 12.5px;
        line-height: 1.55;
        color: rgba(42, 42, 42, 0.72);
        margin: 0 0 14px;
    }

    .enzo-cookie__link {
        color: #e8347a;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid rgba(232, 52, 122, 0.3);
        transition: border-color 0.18s;
    }

    .enzo-cookie__link:hover {
        border-bottom-color: #e8347a;
    }

    /* ── Detail panel ─────────────────────────────────── */
    .enzo-cookie__details {
        margin: 0 0 16px;
        padding: 6px 0 4px;
        border-top: 1px solid rgba(205, 160, 127, 0.25);
        display: grid;
        gap: 4px;
        animation: enzoCookieFade 0.32s ease;
    }
    /* Respect the [hidden] attribute (Customize collapsed by default) */
    .enzo-cookie__details[hidden] { display: none !important; }

    @keyframes enzoCookieFade {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }

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

    .enzo-cookie__row {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 4px;
        border-bottom: 1px solid rgba(205, 160, 127, 0.18);
        cursor: pointer;
    }

    .enzo-cookie__row:last-child {
        border-bottom: 0;
    }

    .enzo-cookie__row-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .enzo-cookie__row-label {
        font-size: 13.5px;
        font-weight: 600;
        color: #2a2a2a;
    }

    .enzo-cookie__row-desc {
        font-size: 12px;
        line-height: 1.45;
        color: rgba(42, 42, 42, 0.6);
    }

    /* ── Toggle switch ────────────────────────────────── */
    .enzo-cookie__switch {
        position: relative;
        flex-shrink: 0;
    }

    .enzo-cookie__switch input {
        position: absolute;
        inset: 0;
        opacity: 0;
        margin: 0;
        cursor: pointer;
    }

    .enzo-cookie__switch input:disabled {
        cursor: not-allowed;
    }

    .enzo-cookie__switch-track {
        display: inline-block;
        width: 38px;
        height: 22px;
        border-radius: 999px;
        background: rgba(42, 42, 42, 0.18);
        position: relative;
        transition: background 0.22s ease;
    }

    .enzo-cookie__switch-thumb {
        position: absolute;
        top: 2px;
        left: 2px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .enzo-cookie__switch input:checked+.enzo-cookie__switch-track {
        background: linear-gradient(135deg, #e8347a, #cf2169);
    }

    .enzo-cookie__switch input:checked+.enzo-cookie__switch-track .enzo-cookie__switch-thumb {
        transform: translateX(16px);
    }

    .enzo-cookie__switch[data-required="true"] .enzo-cookie__switch-track {
        background: linear-gradient(135deg, #cea17f, #b88a64);
        opacity: 0.85;
    }

    .enzo-cookie__switch input:focus-visible+.enzo-cookie__switch-track {
        outline: 2px solid rgba(232, 52, 122, 0.5);
        outline-offset: 2px;
    }

    /* ── Action buttons ───────────────────────────────── */
    .enzo-cookie__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .enzo-cookie__btn {
        flex: 1;
        min-width: 0;
        padding: 11px 14px;
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1;
        border-radius: 12px;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.18s ease;
        font-family: inherit;
        white-space: nowrap;
        letter-spacing: 0.005em;
    }

    .enzo-cookie__btn:focus-visible {
        outline: 2px solid rgba(232, 52, 122, 0.45);
        outline-offset: 2px;
    }

    .enzo-cookie__btn--ghost {
        background: transparent;
        color: rgba(42, 42, 42, 0.7);
        flex: 0 0 auto;
        padding: 11px 12px;
    }

    .enzo-cookie__btn--ghost:hover {
        color: #2a2a2a;
        background: rgba(205, 160, 127, 0.15);
    }

    .enzo-cookie__btn--outline {
        background: transparent;
        border-color: rgba(205, 160, 127, 0.6);
        color: #2a2a2a;
    }

    .enzo-cookie__btn--outline:hover {
        background: rgba(205, 160, 127, 0.12);
        border-color: rgba(205, 160, 127, 0.9);
    }

    .enzo-cookie__btn--primary {
        background: linear-gradient(135deg, #e8347a 0%, #cf2169 100%);
        color: #fff;
        box-shadow: 0 6px 14px -4px rgba(232, 52, 122, 0.5);
    }

    .enzo-cookie__btn--primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 22px -6px rgba(232, 52, 122, 0.6);
    }

    .enzo-cookie__btn--primary:active {
        transform: translateY(0);
    }

    /* Floating preferences bubble — kept in DOM but never shown.
       The "Cookies" footer link replaces it. */
    .enzo-cookie-fab { display: none !important; }

    /* ── Mobile ───────────────────────────────────────── */
    @media (max-width: 768px) {
        .enzo-cookie {
            right: 16px;
            bottom: 16px;
            max-height: none;       /* auto-fit to content, no internal scroll */
            overflow: visible;
        }
    }

    @media (max-width: 520px) {
        .enzo-cookie {
            left: 10px;
            right: 10px;
            bottom: 10px;
            top: auto;
            width: auto;
            max-height: none;
            overflow: visible;
            padding: 12px 14px 12px;
            border-radius: 14px;
        }
        /* Hide cookie SVG icon AND description on phone */
        .enzo-cookie__icon { display: none; }
        .enzo-cookie__title { font-size: 16px; margin-bottom: 4px; line-height: 1.2; }
        .enzo-cookie__desc  { display: none; }
        .enzo-cookie__close { top: 8px; right: 8px; width: 26px; height: 26px; }
        /* Always show the toggle options directly — no Customize step */
        .enzo-cookie__details[hidden] { display: grid !important; }
        .enzo-cookie__btn--ghost { display: none !important; }   /* hide Customize button */
        /* Compact category toggles — only label + switch on mobile */
        .enzo-cookie__details { gap: 4px; padding: 4px 0 2px; }
        .enzo-cookie__row { padding: 5px 0; }
        .enzo-cookie__row-label { font-size: 13px; }
        .enzo-cookie__row-desc  { display: none; }

        /* Side-by-side Reject + Accept on mobile (saves vertical space).
           Customize sits centered above as a small text link. */
        .enzo-cookie__actions {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 8px;
        }

        .enzo-cookie__btn {
            flex: 1 1 calc(50% - 3px);
            min-width: 0;
            min-height: 38px;
            font-size: 13.5px;
            padding: 8px 12px;
        }

        .enzo-cookie__btn--ghost {
            flex: 1 1 100%;
            order: -1;       /* show Customize on top, full width, small */
            padding: 2px;
            font-size: 12px;
            min-height: 22px;
            background: transparent;
        }
        .enzo-cookie__btn--outline { order: 1; }
        .enzo-cookie__btn--primary { order: 2; }
    }

    @media (prefers-reduced-motion: reduce) {

        .enzo-cookie,
        .enzo-cookie__switch-thumb,
        .enzo-cookie__btn,
        .enzo-cookie-fab {
            transition: none !important;
            animation: none !important;
        }
    }
