/* =================================================================
   Desktop premium visual redesign
   Loads after app.css  •  Targets @media (min-width: 1200px)
   ================================================================= */

/* ---- New design tokens (global) ---- */
:root {
    --primary-darkest: #091624;
    --primary-mid:     #143858;
    --display-font:    'Playfair Display', Georgia, serif;
    --success:         #34c759;
}

/* ================================================================
   ALL RULES BELOW ARE DESKTOP-ONLY (≥ 1200px)
   ================================================================ */
@media (min-width: 1200px) {

    /* ============================================================
       GLOBAL TYPOGRAPHY: Apply display font to key headings
       ============================================================ */
    .desktop-home-hero__title,
    .desktop-home-section__header h2,
    .desktop-home-step h3,
    .desktop-home-info-card h2,
    .desktop-home-hero__panel-card h2,
    .desktop-site-footer__title {
        font-family: var(--display-font);
    }


    /* ============================================================
       HERO: Seamless split with food photography
       ============================================================ */

    /* Container — zero gap, overflow-hidden rounds both panels */
    .desktop-home-hero {
        gap: 0;
        grid-template-columns: minmax(0, 1.15fr) 460px;
        border-radius: 32px;
        overflow: hidden;
        box-shadow: 0 40px 100px rgba(7, 25, 16, 0.28);
        min-height: 78vh;
        align-items: stretch;
    }

    /* Left content panel — rich, atmospheric dark green */
    .desktop-home-hero__content {
        border-radius: 0;
        padding: 64px 60px;
        min-height: 78vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background:
            radial-gradient(ellipse at top right,  rgba(212,175,55,0.22) 0%, transparent 44%),
            radial-gradient(ellipse at bottom left, rgba(212,175,55,0.10) 0%, transparent 44%),
            linear-gradient(155deg, #091624 0%, #143858 42%, #153a63 100%);
    }

    /* Larger, bolder hero headline */
    .desktop-home-hero__title {
        font-family: var(--display-font);
        font-size: clamp(58px, 5vw, 80px);
        line-height: 0.97;
        letter-spacing: -0.04em;
        margin-bottom: 24px;
        font-weight: 900;
    }

    .desktop-home-hero__lead {
        font-size: 18px;
        color: rgba(255,255,255,0.80);
        max-width: 480px;
        margin-bottom: 36px;
        line-height: 1.62;
    }

    .desktop-home-hero__actions {
        margin-bottom: 40px;
        gap: 12px;
        display: flex;
    }

    /* Gold primary CTA — higher contrast on green */
    .desktop-home-hero__button--primary {
        background: var(--accent);
        color: var(--primary);
        box-shadow: 0 12px 32px rgba(212,175,55,0.40);
        font-weight: 900;
        font-size: 16px;
    }
    .desktop-home-hero__button--primary:hover {
        background: #e8c83f;
        transform: translateY(-2px);
        box-shadow: 0 18px 42px rgba(212,175,55,0.52);
    }

    /* Ghost secondary CTA */
    .desktop-home-hero__button--secondary {
        background: rgba(255,255,255,0.10);
        color: white;
        border: 1.5px solid rgba(255,255,255,0.24);
        backdrop-filter: blur(8px);
        font-size: 16px;
    }
    .desktop-home-hero__button--secondary:hover {
        background: rgba(255,255,255,0.18);
        transform: translateY(-2px);
    }

    /* Feature pills */
    .desktop-home-hero__features {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .desktop-home-hero__feature {
        padding: 12px 16px;
        border-radius: 18px;
        background: rgba(255,255,255,0.09);
        border: 1px solid rgba(255,255,255,0.13);
        min-width: auto;
    }
    .desktop-home-hero__feature-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(212,175,55,0.16);
        color: var(--accent);
    }
    .desktop-home-hero__feature strong {
        font-size: 13px;
    }
    .desktop-home-hero__feature-label {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    /* ── Right panel: Food photography ── */
    .desktop-home-hero__panel {
        position: relative;
        overflow: hidden;
        display: block;
        border-radius: 0;
    }

    /* Full-bleed image */
    .dh-food-panel__img {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    .dh-food-panel__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

    /* Subtle dark vignette */
    .dh-food-panel__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(7,25,16,0.15) 0%,
            transparent 35%,
            transparent 55%,
            rgba(7,25,16,0.60) 100%
        );
        z-index: 1;
    }

    /* Bottom badge — open status + quick order CTA */
    .dh-food-panel__badge {
        position: absolute;
        bottom: 28px;
        left: 28px;
        right: 28px;
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 22px;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        box-shadow: 0 12px 40px rgba(7,25,16,0.20);
        z-index: 2;
    }
    .dh-food-panel__badge-status {
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .dh-food-panel__badge-dot {
        width: 10px;
        height: 10px;
        background: var(--success);
        border-radius: 50%;
        flex-shrink: 0;
        box-shadow: 0 0 0 3px rgba(52,199,89,0.22);
        animation: pulse 2s infinite;
    }
    .dh-food-panel__badge-label {
        font-size: 15px;
        font-weight: 800;
        color: var(--text);
        line-height: 1.2;
    }
    .dh-food-panel__badge-sublabel {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-secondary);
        margin-top: 2px;
    }
    .dh-food-panel__badge-order {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--primary);
        color: white;
        padding: 12px 18px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
        flex-shrink: 0;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .dh-food-panel__badge-order:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(26,71,42,0.30);
        color: white;
    }


    /* ============================================================
       HEADER: Accent-coloured "Order Online" CTA
       ============================================================ */
    .desktop-site-header__cta {
        background: var(--accent);
        color: var(--primary);
        font-weight: 900;
        box-shadow: 0 8px 24px rgba(212,175,55,0.30);
    }
    .desktop-site-header__cta:hover {
        background: #e8c83f;
        box-shadow: 0 14px 36px rgba(212,175,55,0.42);
        transform: translateY(-2px);
        color: var(--primary);
    }


    /* ============================================================
       TRUST BAR: Lift on hover, bolder typography
       ============================================================ */
    .desktop-home-trust-bar {
        margin-top: 20px;
        gap: 14px;
    }
    .desktop-home-trust-item {
        padding: 24px 22px;
        border-radius: 24px;
        background: var(--card);
        border: 1px solid rgba(17,24,39,0.06);
        box-shadow: 0 6px 20px rgba(26,71,42,0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        cursor: default;
    }
    .desktop-home-trust-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(26,71,42,0.12);
    }
    .desktop-home-trust-item__icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        background: linear-gradient(135deg, rgba(26,71,42,0.12), rgba(26,71,42,0.06));
        color: var(--primary);
        font-size: 20px;
    }
    .desktop-home-trust-item__label {
        font-size: 10px;
        letter-spacing: 0.13em;
        color: var(--text-secondary);
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 6px;
        display: block;
    }
    .desktop-home-trust-item strong {
        display: block;
        font-size: 16px;
        font-weight: 800;
        letter-spacing: -0.01em;
        color: var(--text);
        line-height: 1.4;
    }


    /* ============================================================
       SECTION HEADERS: Editorial treatment
       ============================================================ */
    .desktop-home-section {
        margin-top: 42px;
    }
    .desktop-home-section__header {
        margin-bottom: 26px;
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(26,71,42,0.09);
        align-items: flex-end;
    }
    .desktop-home-section__eyebrow {
        color: var(--accent);
        font-weight: 900;
        letter-spacing: 0.14em;
        font-size: 11px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .desktop-home-section__eyebrow::before {
        content: '';
        display: inline-block;
        width: 22px;
        height: 3px;
        border-radius: 999px;
        background: var(--accent);
        flex-shrink: 0;
    }
    .desktop-home-section__header h2 {
        font-family: var(--display-font);
        font-size: 40px;
        line-height: 1.06;
        letter-spacing: -0.04em;
    }
    .desktop-home-section__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary);
        font-weight: 800;
        font-size: 14px;
        text-decoration: none;
        padding: 10px 18px;
        border: 1.5px solid rgba(26,71,42,0.18);
        border-radius: 999px;
        white-space: nowrap;
        transition: all 0.2s ease;
    }
    .desktop-home-section__link:hover {
        background: rgba(26,71,42,0.07);
        border-color: rgba(26,71,42,0.26);
    }
    .desktop-home-section__link::after {
        content: '→';
        font-family: system-ui, sans-serif;
    }

    /* ── Info card eyebrow ── */
    .desktop-home-info-card .desktop-home-section__eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }


    /* ============================================================
       POPULAR ITEMS: Vertical cards (image on top)
       ============================================================ */
    .desktop-popular-card {
        display: flex;
        flex-direction: column;
        gap: 0;
        grid-template-columns: unset;
        padding: 0;
        border-radius: 16px;
        border: 1px solid rgba(17,24,39,0.07);
        background: var(--card);
        box-shadow: 0 12px 26px rgba(26,71,42,0.07);
        overflow: hidden;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .desktop-popular-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 42px rgba(26,71,42,0.12);
    }

    /* Image area — 16:10 aspect */
    .desktop-popular-card__media {
        width: 100%;
        height: 128px;
        border-radius: 0;
        flex-shrink: 0;
        background: linear-gradient(135deg, rgba(26,71,42,0.09) 0%, rgba(212,175,55,0.12) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    .desktop-popular-card__icon {
        font-size: 46px;
        filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    }
    .desktop-popular-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Card body */
    .desktop-popular-card__body {
        padding: 10px 10px 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .desktop-popular-card__topline {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 8px;
    }
    .desktop-popular-card__topline h3 {
        font-size: 15px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.02em;
    }
    .desktop-popular-card__topline span {
        font-size: 16px;
        font-weight: 900;
        color: var(--primary);
        white-space: nowrap;
        letter-spacing: -0.02em;
    }
    .desktop-popular-card__body p {
        font-size: 11px;
        color: var(--text-secondary);
        line-height: 1.4;
        flex: 1;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        min-height: calc(1.4em * 2);
    }
    .desktop-popular-card__meta {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 8px;
        border-top: 1px solid rgba(26,71,42,0.07);
        font-size: 10px;
        font-weight: 700;
        color: var(--text-secondary);
        margin-bottom: 0;
    }
    .desktop-popular-card__meta i {
        color: var(--primary);
    }

    /* Quick-add button inside the card footer */
    .desktop-popular-card__cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-left: auto;
        background: var(--primary);
        color: white;
        padding: 6px 10px;
        border-radius: 10px;
        font-size: 10px;
        font-weight: 800;
        cursor: pointer;
        border: none;
        flex-shrink: 0;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        font-family: inherit;
    }
    .desktop-popular-card__cta:hover {
        transform: scale(1.06);
        box-shadow: 0 8px 20px rgba(26,71,42,0.24);
    }


    /* ============================================================
       OFFERS GRID: Bigger, editorial promo cards
       ============================================================ */
    .home-promo-card {
        border-radius: 26px;
        padding: 30px 28px;
        min-height: 230px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .home-promo-title {
        font-family: var(--display-font);
        font-size: 28px;
        line-height: 1.1;
        font-weight: 700;
    }
    .home-promo-btn {
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 14px;
    }


    /* ============================================================
       HOW IT WORKS: Steps with connecting decorative line
       ============================================================ */
    .desktop-home-steps {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        position: relative;
    }
    /* Connecting line between step number circles */
    .desktop-home-steps::before {
        content: '';
        position: absolute;
        top: 42px;
        left: calc(100% / 6 + 4px);
        right: calc(100% / 6 + 4px);
        height: 2px;
        background: linear-gradient(
            90deg,
            rgba(26,71,42,0.10),
            rgba(212,175,55,0.55) 50%,
            rgba(26,71,42,0.10)
        );
        z-index: 0;
        pointer-events: none;
    }
    .desktop-home-step {
        padding: 32px 28px 28px;
        border-radius: 28px;
        background: var(--card);
        border: 1px solid rgba(17,24,39,0.06);
        box-shadow: 0 8px 24px rgba(26,71,42,0.06);
        margin: 0 7px;
        position: relative;
        z-index: 1;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .desktop-home-step:first-child { margin-left: 0; }
    .desktop-home-step:last-child  { margin-right: 0; }
    .desktop-home-step:hover {
        transform: translateY(-5px);
        box-shadow: 0 24px 54px rgba(26,71,42,0.14);
    }
    .desktop-home-step__number {
        width: 52px;
        height: 52px;
        border-radius: 999px;
        background: var(--primary);
        color: var(--accent);
        font-size: 22px;
        font-weight: 900;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 22px;
        box-shadow: 0 10px 28px rgba(26,71,42,0.24);
        position: relative;
        z-index: 2;
    }
    .desktop-home-step h3 {
        font-family: var(--display-font);
        font-size: 24px;
        line-height: 1.1;
        margin-bottom: 10px;
        letter-spacing: -0.02em;
    }
    .desktop-home-step p {
        color: var(--text-secondary);
        line-height: 1.65;
        font-size: 15px;
    }


    /* ============================================================
       INFO CARDS: Hover lift, editorial headings
       ============================================================ */
    .desktop-home-grid {
        margin-top: 36px;
        gap: 18px;
    }
    .desktop-home-info-card {
        padding: 30px 28px;
        border-radius: 28px;
        border: 1px solid rgba(17,24,39,0.06);
        box-shadow: 0 8px 24px rgba(26,71,42,0.06);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .desktop-home-info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 54px rgba(26,71,42,0.13);
    }
    .desktop-home-info-card h2 {
        font-family: var(--display-font);
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 14px;
        letter-spacing: -0.02em;
    }

    /* Category pills: interactive hover fill */
    .desktop-home-category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }
    .desktop-home-category-pill {
        padding: 10px 16px;
        border-radius: 14px;
        border: 1px solid rgba(26,71,42,0.12);
        font-weight: 700;
        font-size: 14px;
        transition: all 0.2s ease;
    }
    .desktop-home-category-pill:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(26,71,42,0.22);
        border-color: var(--primary);
    }

    /* Contact links: styled pill rows */
    .desktop-home-contact-list {
        display: grid;
        gap: 10px;
        margin-bottom: 18px;
    }
    .desktop-home-contact-list span,
    .desktop-home-contact-list a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        padding: 10px 14px;
        border-radius: 12px;
        background: rgba(26,71,42,0.04);
        border: 1px solid rgba(26,71,42,0.07);
        transition: background 0.2s ease, color 0.2s ease;
    }
    .desktop-home-contact-list a:hover {
        background: rgba(26,71,42,0.09);
        color: var(--primary);
    }
    .desktop-home-contact-list i {
        color: var(--primary);
        width: 16px;
        text-align: center;
        flex-shrink: 0;
    }

    /* Inline see-more links */
    .desktop-home-section__link--inline {
        color: var(--primary);
        font-weight: 800;
        font-size: 14px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        border: none;
        background: none;
        transition: gap 0.2s ease;
        margin-top: 18px;
    }
    .desktop-home-section__link--inline::after {
        content: '→';
        font-family: system-ui, sans-serif;
        transition: transform 0.2s ease;
    }
    .desktop-home-section__link--inline:hover {
        gap: 10px;
    }


    /* ============================================================
       FOOTER CTA: Dramatic dark-green banner with gold accents
       ============================================================ */
    .desktop-site-footer__cta-inner {
        padding: 54px 56px;
        border-radius: 36px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        background:
            radial-gradient(ellipse at top right,   rgba(212,175,55,0.24) 0%, transparent 46%),
            radial-gradient(ellipse at bottom left,  rgba(212,175,55,0.12) 0%, transparent 46%),
            linear-gradient(150deg, #091624 0%, #143858 45%, #153a63 100%);
    }
    .desktop-site-footer__eyebrow {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }
    .desktop-site-footer__eyebrow::before {
        content: '';
        display: inline-block;
        width: 22px;
        height: 3px;
        background: var(--accent);
        border-radius: 999px;
        flex-shrink: 0;
    }
    .desktop-site-footer__title {
        font-family: var(--display-font);
        font-size: 44px;
        line-height: 1.05;
        letter-spacing: -0.03em;
        font-weight: 800;
        color: white;
        margin-bottom: 14px;
    }
    .desktop-site-footer__text {
        font-size: 17px;
        color: rgba(255,255,255,0.76);
        line-height: 1.6;
        max-width: 540px;
    }
    .desktop-site-footer__cta-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        flex-shrink: 0;
        min-width: 200px;
    }
    .desktop-site-footer__button--primary {
        background: var(--accent);
        color: var(--primary);
        font-weight: 900;
        box-shadow: 0 12px 30px rgba(212,175,55,0.34);
        justify-content: center;
        text-align: center;
    }
    .desktop-site-footer__button--primary:hover {
        background: #e8c83f;
        box-shadow: 0 18px 42px rgba(212,175,55,0.48);
        transform: translateY(-2px);
        color: var(--primary);
    }
    .desktop-site-footer__button--secondary {
        background: rgba(255,255,255,0.10);
        color: white;
        border: 1.5px solid rgba(255,255,255,0.22);
        backdrop-filter: blur(8px);
        justify-content: center;
        text-align: center;
    }
    .desktop-site-footer__button--secondary:hover {
        background: rgba(255,255,255,0.18);
        transform: translateY(-2px);
        color: white;
    }

    /* Footer brand logo */
    .desktop-site-footer__logo {
        font-family: var(--display-font);
        font-size: 26px;
        font-weight: 800;
    }

    /* Footer column headings */
    .desktop-site-footer__column h3 {
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.45);
        margin-bottom: 18px;
    }

    /* Footer column links */
    .desktop-site-footer__column a {
        font-size: 14px;
        color: rgba(255,255,255,0.72);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    .desktop-site-footer__column a:hover {
        color: white;
    }

    /* Footer brand contact */
    .desktop-site-footer__contact span,
    .desktop-site-footer__contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        transition: color 0.2s ease;
    }
    .desktop-site-footer__contact a:hover {
        color: rgba(255,255,255,0.90);
    }

    /* Payment icons row */
    .desktop-site-footer__payments {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 8px;
    }
    .desktop-site-footer__payments span {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background: rgba(255,255,255,0.08);
        border-radius: 8px;
        font-size: 12px;
        color: rgba(255,255,255,0.70);
        font-weight: 600;
    }
    .desktop-site-footer__payments span::before {
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }
    .desktop-site-footer__payments span:nth-child(1)::before { content: '\f1f0'; } /* Visa */
    .desktop-site-footer__payments span:nth-child(2)::before { content: '\f1f1'; } /* Mastercard */
    .desktop-site-footer__payments span:nth-child(3)::before { content: '\f179'; } /* Apple Pay */
    .desktop-site-footer__payments span:nth-child(4)::before { content: '\f17a'; } /* Google Pay */


    /* ============================================================
       DESKTOP CHECKOUT PAGE
       ============================================================ */
    .desktop-checkout-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 24px;
        align-items: start;
    }

    .desktop-checkout-summary {
        position: sticky;
        top: 24px;
    }

    .desktop-checkout-summary__prep {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        color: var(--text-secondary);
        margin-top: 8px;
    }

    .desktop-checkout-items {
        list-style: none;
        margin: 20px 0;
        display: grid;
        gap: 16px;
    }

    .desktop-checkout-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(26,71,42,0.07);
    }
    .desktop-checkout-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .desktop-checkout-item__media {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        background: var(--card-elevated);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
    }
    .desktop-checkout-item__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .desktop-checkout-item__icon {
        font-size: 32px;
    }

    .desktop-checkout-item__body {
        flex: 1;
    }
    .desktop-checkout-item__topline {
        display: flex;
        gap: 6px;
        margin-bottom: 4px;
    }
    .desktop-checkout-item__qty {
        color: var(--text-secondary);
    }
    .desktop-checkout-item__customizations {
        font-size: 12px;
        color: var(--text-secondary);
    }
    .desktop-checkout-item__note {
        font-size: 12px;
        color: var(--text-muted);
        font-style: italic;
        margin-top: 2px;
    }
    .desktop-checkout-item__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-top: 12px;
    }
    .desktop-checkout-item__controls {
        flex-shrink: 0;
    }
    .desktop-checkout-item__actions {
        display: inline-flex;
        align-items: center;
        gap: 16px;
    }
    .desktop-checkout-item__edit {
        font-weight: 700;
    }
    .desktop-checkout-item__remove {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 0;
        color: var(--text-secondary);
        font-weight: 700;
    }
    .desktop-checkout-item__price {
        font-weight: 800;
        color: var(--primary);
        white-space: nowrap;
    }

    .desktop-checkout-totals {
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(26,71,42,0.07);
        display: grid;
        gap: 8px;
    }
    .desktop-checkout-total-line {
        display: flex;
        justify-content: space-between;
        font-size: 14px;
        color: var(--text-secondary);
    }
    .desktop-checkout-total-line span:last-child {
        color: var(--text);
        font-weight: 600;
    }
    .desktop-checkout-total-line--discount {
        color: var(--success);
    }
    .desktop-checkout-total-line--discount span:last-child {
        color: var(--success);
    }
    .desktop-checkout-total-line--total {
        padding-top: 12px;
        border-top: 2px solid rgba(26,71,42,0.10);
        margin-top: 4px;
        font-size: 17px;
        color: var(--text);
    }
    .desktop-checkout-total-value {
        font-weight: 900;
        color: var(--primary);
        font-size: 22px;
    }
    .desktop-checkout-free {
        color: var(--success);
        font-weight: 700;
    }

    /* Checkout Form Stack */
    .desktop-checkout-form-stack {
        display: grid;
        gap: 20px;
    }

    .desktop-form-field {
        margin-bottom: 18px;
    }
    .desktop-form-field:last-child {
        margin-bottom: 0;
    }
    .desktop-form-field label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: var(--text-secondary);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .desktop-form-input {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid var(--border);
        border-radius: 14px;
        font-size: 16px;
        font-family: inherit;
        transition: border-color 0.2s, box-shadow 0.2s;
        background: var(--card);
    }
    .desktop-form-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(26,71,42,0.08);
    }
    .desktop-form-textarea {
        resize: vertical;
        min-height: 100px;
    }
    .desktop-form-error {
        margin-top: 6px;
        font-size: 12px;
        color: var(--danger);
    }
    .desktop-form-required {
        color: var(--danger);
    }
    .desktop-form-optional {
        color: var(--text-muted);
        text-transform: none;
        letter-spacing: normal;
        font-weight: 400;
    }

    /* Payment Options Desktop */
    .desktop-payment-options {
        display: grid;
        gap: 12px;
    }
    .desktop-payment-notice {
        margin-bottom: 14px;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(212,175,55,0.12);
        border: 1px solid rgba(212,175,55,0.24);
        color: var(--text);
        font-size: 14px;
        line-height: 1.5;
    }
    .desktop-payment-notice strong {
        display: block;
        margin-bottom: 4px;
    }
    .desktop-payment-option {
        display: flex;
        align-items: center;
        padding: 18px;
        border: 2px solid var(--border);
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.2s ease;
        background: var(--card);
    }
    .desktop-payment-option:hover {
        border-color: var(--primary-light);
    }
    .desktop-payment-option.is-selected {
        border-color: var(--primary);
        background: rgba(26,71,42,0.04);
    }
    .desktop-payment-radio {
        width: 20px;
        height: 20px;
        margin-right: 14px;
        accent-color: var(--primary);
        flex-shrink: 0;
    }
    .desktop-payment-option__content {
        flex: 1;
    }
    .desktop-payment-option__name {
        font-weight: 700;
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .desktop-payment-option__name i {
        color: var(--primary);
    }
    .desktop-payment-option__desc {
        font-size: 13px;
        color: var(--text-secondary);
    }

    /* Checkout Actions */
    .desktop-checkout-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .desktop-checkout-back-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--text-secondary);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        padding: 10px 0;
        transition: color 0.2s ease;
    }
    .desktop-checkout-back-link:hover {
        color: var(--primary);
    }
    .desktop-checkout-submit {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 28px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 16px;
        font-size: 17px;
        font-weight: 800;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: inherit;
        box-shadow: 0 10px 28px rgba(26,71,42,0.28);
    }
    .desktop-checkout-submit:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(26,71,42,0.36);
    }
    .desktop-checkout-submit__total {
        font-size: 22px;
        font-weight: 900;
    }
    .desktop-checkout-submit:disabled,
    .desktop-checkout-submit:disabled:hover {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
        background: var(--primary);
    }


    /* ============================================================
       DESKTOP MENU PAGE
       ============================================================ */
    .desktop-menu-page {
        padding-bottom: 60px;
    }

    .desktop-menu-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        position: sticky;
        top: var(--desktop-menu-categories-top, 182px);
        z-index: 40;
        background: linear-gradient(180deg, rgba(247,247,242,0.99) 0%, rgba(247,247,242,0.95) 82%, rgba(247,247,242,0) 100%);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 18px 0 24px;
        margin: 12px 0 18px;
        border-bottom: 0;
        box-shadow: none;
        transition: box-shadow 0.2s ease;
    }

    .desktop-menu-categories.is-scrolled {
        box-shadow: none;
        border-bottom-color: transparent;
    }

    .desktop-menu-category-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 11px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        border: 1px solid rgba(21, 58, 99, 0.08);
        box-shadow: 0 10px 24px rgba(21, 58, 99, 0.06);
        transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }
    .desktop-menu-category-chip:hover {
        background: white;
        border-color: rgba(21, 58, 99, 0.16);
        color: var(--primary);
        box-shadow: 0 12px 28px rgba(21, 58, 99, 0.10);
    }
    .desktop-menu-category-chip.is-active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        box-shadow: 0 14px 32px rgba(21, 58, 99, 0.18);
    }
    .desktop-menu-category-chip.is-active:hover {
        background: var(--primary-light);
        color: white;
        box-shadow: 0 14px 32px rgba(21, 58, 99, 0.20);
    }
    .desktop-menu-category-chip:active {
        transform: translateY(1px);
    }

    .desktop-menu-items-grid .menu-items-real,
    .desktop-menu-items-grid .skeleton-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, 190px);
        justify-content: center;
        gap: 14px;
        margin-top: 8px;
    }

    .desktop-popular-card__best {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 700;
        color: var(--accent);
        background: rgba(212,175,55,0.12);
        padding: 3px 8px;
        border-radius: 6px;
    }

    /* =================================================================
       Bluefish light homepage
       ================================================================= */
    .desktop-homepage {
        padding-top: 20px;
    }

    .desktop-home-topline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 14px 20px;
        border-radius: 20px;
        border: 1px solid rgba(11,59,92,0.08);
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(17,24,39,0.04);
    }

    .desktop-home-topline__meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: 500;
    }

    .desktop-home-topline__meta a {
        color: inherit;
        text-decoration: none;
    }

    .desktop-home-topline__meta i {
        color: var(--primary);
        margin-right: 8px;
    }

    .desktop-home-topline__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        background: #2ecc71;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(46,204,113,0.2);
    }

    .desktop-home-topline__badge i {
        font-size: 9px;
    }

    .desktop-home-collection-bar {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin: 16px 0 28px;
        padding: 12px 18px;
        border-radius: 999px;
        background: #eef3f7;
        color: #233445;
        font-size: 14px;
        font-weight: 500;
    }

    .desktop-home-collection-bar i {
        margin-right: 8px;
        color: #f5a623;
    }

    .desktop-home-hero-alt {
        margin-bottom: 28px;
    }

    .desktop-home-hero-alt__eyebrow {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-secondary);
        margin-bottom: 10px;
    }

    .desktop-home-hero-alt__title {
        max-width: 780px;
        margin: 0;
        color: var(--primary);
        font-family: "Oswald", var(--display-font), sans-serif;
        font-size: clamp(52px, 5vw, 76px);
        font-weight: 600;
        line-height: 1.02;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .desktop-home-hero-alt__lead {
        max-width: 760px;
        margin: 12px 0 0;
        color: var(--text-secondary);
        font-size: 18px;
        line-height: 1.6;
    }

    .desktop-home-hero-alt__actions {
        display: flex;
        gap: 12px;
        margin-top: 22px;
    }

    .desktop-home-hero-alt__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 0 22px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .desktop-home-hero-alt__button--primary {
        background: var(--primary);
        color: #ffffff;
        box-shadow: 0 14px 28px rgba(21,58,99,0.18);
    }

    .desktop-home-hero-alt__button--primary:hover {
        transform: translateY(-2px);
        color: #ffffff;
    }

    .desktop-home-hero-alt__button--secondary {
        background: #ffffff;
        color: var(--primary);
        border: 1px solid rgba(11,59,92,0.14);
        box-shadow: 0 8px 18px rgba(17,24,39,0.05);
    }

    .desktop-home-hero-alt__button--secondary:hover {
        transform: translateY(-2px);
        color: var(--primary);
    }

    .desktop-home-category-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px;
    }

    .desktop-home-category-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 48px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(11,59,92,0.1);
        background: #ffffff;
        color: #233445;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 8px 18px rgba(17,24,39,0.03);
    }

    .desktop-home-category-chip.is-active {
        background: var(--primary);
        border-color: var(--primary);
        color: #ffffff;
    }

    .desktop-home-steps-band {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 34px;
        padding: 22px 28px;
        border-radius: 32px;
        background: #f8f9fa;
        border: 1px solid rgba(11,59,92,0.08);
    }

    .desktop-home-steps-band__item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .desktop-home-steps-band__number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 999px;
        background: #ffffff;
        color: var(--primary);
        font-size: 16px;
        font-weight: 800;
        box-shadow: 0 6px 14px rgba(17,24,39,0.05);
    }

    .desktop-home-steps-band__item strong {
        display: block;
        color: #1b2734;
        font-size: 15px;
        font-weight: 700;
    }

    .desktop-home-steps-band__item span {
        display: block;
        margin-top: 2px;
        color: var(--text-secondary);
        font-size: 13px;
        line-height: 1.5;
    }

    .desktop-home-section__header h2 {
        font-family: "Oswald", var(--display-font), sans-serif;
        font-size: 34px;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .desktop-home-favourites-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, 190px);
        justify-content: center;
        gap: 14px;
    }

    .desktop-home-favourite-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 16px;
        border: 1px solid rgba(11,59,92,0.08);
        background: #ffffff;
        box-shadow: 0 12px 26px rgba(17,24,39,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .desktop-home-favourite-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 42px rgba(17,24,39,0.08);
    }

    .desktop-home-favourite-card__media {
        position: relative;
        height: 128px;
        overflow: hidden;
        background: linear-gradient(145deg, #e9eef2 0%, #f7f9fb 100%);
    }

    .desktop-home-favourite-card__image,
    .desktop-home-favourite-card__media picture,
    .desktop-home-favourite-card__media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .desktop-home-favourite-card__placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #f8d66d 0%, #e6b422 100%);
        color: #ffffff;
        font-size: 42px;
    }

    .desktop-home-favourite-card__badge {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(11,59,92,0.88);
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
    }

    .desktop-home-favourite-card__body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 10px 10px 12px;
    }

    .desktop-home-favourite-card__topline {
        display: block;
        margin-bottom: 8px;
    }

    .desktop-home-favourite-card__topline h3 {
        color: #102234;
        font-size: 15px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .desktop-home-favourite-card__topline span {
        display: none;
    }

    .desktop-home-favourite-card__body p {
        color: var(--text-secondary);
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        min-height: calc(1.4em * 2);
    }

    .desktop-home-favourite-card__meta {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        color: var(--text-secondary);
        font-size: 10px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .desktop-home-favourite-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: auto;
    }

    .desktop-home-favourite-card__price {
        color: var(--primary);
        font-size: 16px;
        font-weight: 800;
    }

    .desktop-home-favourite-card__button {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 34px;
        padding: 0 10px;
        border: none;
        border-radius: 10px;
        background: #f5a623;
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        box-shadow: 0 10px 20px rgba(245,166,35,0.22);
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .desktop-home-favourite-card__button:hover {
        background: #e09214;
        transform: translateY(-1px);
    }

    .desktop-home-contact-strip {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 34px;
        padding: 16px 20px;
        border-radius: 999px;
        background: #fafbfc;
        border: 1px solid rgba(11,59,92,0.08);
    }

    .desktop-home-contact-strip__item {
        color: #233445;
        font-size: 15px;
        font-weight: 600;
    }

    .desktop-home-contact-strip__item i {
        margin-right: 8px;
        color: var(--primary);
    }

    .desktop-home-contact-strip__cta {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(11,59,92,0.12);
        background: #ffffff;
        color: var(--primary);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }


    /* ============================================================
       MENU ORDERING PAGE: Footer is always visible
       ─────────────────────────────────────────────────────────────
       The footer should always be visible on desktop. The sticky
       cart panel sits above the footer content and does not
       obstruct the main page flow.
       ============================================================ */

    /* Bottom nav is hidden on desktop */
    .bottom-nav {
        display: none !important;
    }

} /* end @media (min-width: 1200px) */

/* =================================================================
   Dark Mode Support for Desktop (prefers-color-scheme: dark)
   ================================================================= */
@media (min-width: 1200px) and (prefers-color-scheme: dark) {
    /* Hero section dark mode */
    .desktop-home-hero__content {
        background:
            radial-gradient(ellipse at top right, rgba(212,175,55,0.18) 0%, transparent 44%),
            radial-gradient(ellipse at bottom left, rgba(212,175,55,0.08) 0%, transparent 44%),
            linear-gradient(155deg, #07111b 0%, #10283f 42%, #143858 100%);
    }

    .desktop-home-hero__lead {
        color: rgba(255,255,255,0.70);
    }

    .desktop-home-hero__features {
        gap: 10px;
    }

    .desktop-home-hero__feature {
        background: rgba(255,255,255,0.06);
        border-color: rgba(255,255,255,0.10);
    }

    .desktop-home-hero__feature-label {
        color: rgba(255,255,255,0.50);
    }

    .desktop-home-hero__feature strong {
        color: rgba(255,255,255,0.90);
    }

    /* Trust bar dark mode */
    .desktop-home-trust-item {
        background: var(--card);
        border-color: rgba(255,255,255,0.06);
    }

    .desktop-home-trust-item:hover {
        box-shadow: 0 20px 48px rgba(0,0,0,0.30);
    }

    /* Section headers dark mode */
    .desktop-home-section__header {
        border-bottom-color: rgba(255,255,255,0.08);
    }

    .desktop-home-section__link {
        border-color: rgba(255,255,255,0.15);
        color: var(--text);
    }
    .desktop-home-section__link:hover {
        background: rgba(255,255,255,0.05);
        border-color: rgba(255,255,255,0.22);
    }

    /* Popular cards dark mode */
    .desktop-popular-card {
        background: var(--card);
        border-color: rgba(255,255,255,0.06);
    }
    .desktop-popular-card:hover {
        box-shadow: 0 26px 60px rgba(0,0,0,0.35);
    }

    .desktop-popular-card__body p {
        color: var(--text-secondary);
    }

    .desktop-popular-card__meta {
        border-top-color: rgba(255,255,255,0.06);
        color: var(--text-secondary);
    }

    /* Steps dark mode */
    .desktop-home-step {
        background: var(--card);
        border-color: rgba(255,255,255,0.06);
    }
    .desktop-home-step:hover {
        box-shadow: 0 24px 54px rgba(0,0,0,0.30);
    }

    .desktop-home-step p {
        color: var(--text-secondary);
    }

    /* Info cards dark mode */
    .desktop-home-info-card {
        background: var(--card);
        border-color: rgba(255,255,255,0.06);
    }
    .desktop-home-info-card:hover {
        box-shadow: 0 22px 54px rgba(0,0,0,0.28);
    }

    .desktop-home-info-card p {
        color: var(--text-secondary);
    }

    /* Category pills dark mode */
    .desktop-home-category-pill {
        border-color: rgba(255,255,255,0.10);
    }

    /* Contact links dark mode */
    .desktop-home-contact-list span,
    .desktop-home-contact-list a {
        background: rgba(255,255,255,0.04);
        border-color: rgba(255,255,255,0.06);
        color: var(--text-secondary);
    }
    .desktop-home-contact-list a:hover {
        background: rgba(255,255,255,0.08);
        color: var(--text);
    }

    /* Desktop page cards dark mode */
    .desktop-page-card {
        background: var(--card);
        border-color: rgba(255,255,255,0.06);
    }

    .desktop-page-card p {
        color: var(--text-secondary);
    }

    /* Desktop checkout dark mode */
    .desktop-checkout-item {
        border-bottom-color: rgba(255,255,255,0.06);
    }

    .desktop-checkout-item__customizations {
        color: var(--text-secondary);
    }

    .desktop-checkout-totals {
        border-top-color: rgba(255,255,255,0.06);
    }

    .desktop-checkout-total-line {
        color: var(--text-secondary);
    }
    .desktop-checkout-total-line span:last-child {
        color: var(--text);
    }
    .desktop-checkout-total-line--total {
        border-top-color: rgba(255,255,255,0.08);
        color: var(--text);
    }

    .desktop-form-input {
        background: var(--card-elevated);
        border-color: var(--border);
        color: var(--text);
    }
    .desktop-form-input:focus {
        box-shadow: 0 0 0 4px rgba(45,106,62,0.20);
    }

    .desktop-payment-option {
        background: var(--card);
        border-color: var(--border);
    }
    .desktop-payment-option.is-selected {
        background: rgba(45,106,62,0.12);
    }

    /* Footer dark mode refinements */
    .desktop-site-footer__column a {
        color: rgba(255,255,255,0.65);
    }
    .desktop-site-footer__column a:hover {
        color: white;
    }

    .desktop-site-footer__contact span,
    .desktop-site-footer__contact a {
        color: rgba(255,255,255,0.60);
    }

    .desktop-site-footer__payments span {
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.65);
    }

    /* =================================================================
       Bluefish light homepage
       ================================================================= */
    .desktop-homepage {
        padding-top: 20px;
    }

    .desktop-home-topline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 14px 20px;
        border-radius: 20px;
        border: 1px solid rgba(11,59,92,0.08);
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(17,24,39,0.04);
    }

    .desktop-home-topline__meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        color: var(--text-secondary);
        font-size: 15px;
        font-weight: 500;
    }

    .desktop-home-topline__meta a {
        color: inherit;
        text-decoration: none;
    }

    .desktop-home-topline__meta i {
        color: var(--primary);
        margin-right: 8px;
    }

    .desktop-home-topline__badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 999px;
        background: #2ecc71;
        color: #ffffff;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(46,204,113,0.2);
    }

    .desktop-home-topline__badge i {
        font-size: 9px;
    }

    .desktop-home-collection-bar {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin: 16px 0 28px;
        padding: 12px 18px;
        border-radius: 999px;
        background: #eef3f7;
        color: #233445;
        font-size: 14px;
        font-weight: 500;
    }

    .desktop-home-collection-bar i {
        margin-right: 8px;
        color: #f5a623;
    }

    .desktop-home-hero-alt {
        margin-bottom: 28px;
    }

    .desktop-home-hero-alt__eyebrow {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--text-secondary);
        margin-bottom: 10px;
    }

    .desktop-home-hero-alt__title {
        max-width: 780px;
        margin: 0;
        color: var(--primary);
        font-family: "Oswald", var(--display-font), sans-serif;
        font-size: clamp(52px, 5vw, 76px);
        font-weight: 600;
        line-height: 1.02;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .desktop-home-hero-alt__lead {
        max-width: 760px;
        margin: 12px 0 0;
        color: var(--text-secondary);
        font-size: 18px;
        line-height: 1.6;
    }

    .desktop-home-hero-alt__actions {
        display: flex;
        gap: 12px;
        margin-top: 22px;
    }

    .desktop-home-hero-alt__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 0 22px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .desktop-home-hero-alt__button--primary {
        background: var(--primary);
        color: #ffffff;
        box-shadow: 0 14px 28px rgba(21,58,99,0.18);
    }

    .desktop-home-hero-alt__button--primary:hover {
        transform: translateY(-2px);
        color: #ffffff;
    }

    .desktop-home-hero-alt__button--secondary {
        background: #ffffff;
        color: var(--primary);
        border: 1px solid rgba(11,59,92,0.14);
        box-shadow: 0 8px 18px rgba(17,24,39,0.05);
    }

    .desktop-home-hero-alt__button--secondary:hover {
        transform: translateY(-2px);
        color: var(--primary);
    }

    .desktop-home-category-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 28px;
    }

    .desktop-home-category-chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 48px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(11,59,92,0.1);
        background: #ffffff;
        color: #233445;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 8px 18px rgba(17,24,39,0.03);
    }

    .desktop-home-category-chip.is-active {
        background: var(--primary);
        border-color: var(--primary);
        color: #ffffff;
    }

    .desktop-home-steps-band {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 34px;
        padding: 22px 28px;
        border-radius: 32px;
        background: #f8f9fa;
        border: 1px solid rgba(11,59,92,0.08);
    }

    .desktop-home-steps-band__item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .desktop-home-steps-band__number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        border-radius: 999px;
        background: #ffffff;
        color: var(--primary);
        font-size: 16px;
        font-weight: 800;
        box-shadow: 0 6px 14px rgba(17,24,39,0.05);
    }

    .desktop-home-steps-band__item strong {
        display: block;
        color: #1b2734;
        font-size: 15px;
        font-weight: 700;
    }

    .desktop-home-steps-band__item span {
        display: block;
        margin-top: 2px;
        color: var(--text-secondary);
        font-size: 13px;
        line-height: 1.5;
    }

    .desktop-home-section__header h2 {
        font-family: "Oswald", var(--display-font), sans-serif;
        font-size: 34px;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .desktop-home-favourites-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, 190px);
        justify-content: center;
        gap: 14px;
    }

    .desktop-home-favourite-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 16px;
        border: 1px solid rgba(11,59,92,0.08);
        background: #ffffff;
        box-shadow: 0 12px 26px rgba(17,24,39,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .desktop-home-favourite-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 42px rgba(17,24,39,0.08);
    }

    .desktop-home-favourite-card__media {
        position: relative;
        height: 128px;
        overflow: hidden;
        background: linear-gradient(145deg, #e9eef2 0%, #f7f9fb 100%);
    }

    .desktop-home-favourite-card__image,
    .desktop-home-favourite-card__media picture,
    .desktop-home-favourite-card__media img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .desktop-home-favourite-card__placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #f8d66d 0%, #e6b422 100%);
        color: #ffffff;
        font-size: 42px;
    }

    .desktop-home-favourite-card__badge {
        position: absolute;
        top: 14px;
        left: 14px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 12px;
        border-radius: 999px;
        background: rgba(11,59,92,0.88);
        color: #ffffff;
        font-size: 12px;
        font-weight: 700;
    }

    .desktop-home-favourite-card__body {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 10px 10px 12px;
    }

    .desktop-home-favourite-card__topline {
        display: block;
        margin-bottom: 8px;
    }

    .desktop-home-favourite-card__topline h3 {
        color: #102234;
        font-size: 15px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .desktop-home-favourite-card__topline span {
        display: none;
    }

    .desktop-home-favourite-card__body p {
        color: var(--text-secondary);
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        min-height: calc(1.4em * 2);
    }

    .desktop-home-favourite-card__meta {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        color: var(--text-secondary);
        font-size: 10px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .desktop-home-favourite-card__footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: auto;
    }

    .desktop-home-favourite-card__price {
        color: var(--primary);
        font-size: 16px;
        font-weight: 800;
    }

    .desktop-home-favourite-card__button {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 34px;
        padding: 0 10px;
        border: none;
        border-radius: 10px;
        background: #f5a623;
        color: #ffffff;
        font-size: 11px;
        font-weight: 700;
        box-shadow: 0 10px 20px rgba(245,166,35,0.22);
        cursor: pointer;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .desktop-home-favourite-card__button:hover {
        background: #e09214;
        transform: translateY(-1px);
    }

    .desktop-home-contact-strip {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
        margin-top: 34px;
        padding: 16px 20px;
        border-radius: 999px;
        background: #fafbfc;
        border: 1px solid rgba(11,59,92,0.08);
    }

    .desktop-home-contact-strip__item {
        color: #233445;
        font-size: 15px;
        font-weight: 600;
    }

    .desktop-home-contact-strip__item i {
        margin-right: 8px;
        color: var(--primary);
    }

    .desktop-home-contact-strip__cta {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(11,59,92,0.12);
        background: #ffffff;
        color: var(--primary);
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
    }
}

/* Manual dark mode toggle class for desktop */
html.theme-dark {
    /* Already inherits from app.css :root overrides */
}

@media (min-width: 1200px) {
    .desktop-site-logo__copy {
        gap: 2px;
    }

    .desktop-site-logo__wordmark {
        font-family: var(--display-font);
        font-size: 40px;
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 0.88;
    }

    .desktop-site-logo__tagline {
        font-family: var(--display-font);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #4e5b69;
    }

    .desktop-home-hero-alt__brand {
        margin-bottom: 18px;
    }

    .desktop-home-hero-alt__brand-wordmark {
        color: #102234;
        font-family: var(--display-font);
        font-size: clamp(44px, 3.8vw, 60px);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 0.9;
        text-wrap: balance;
    }

    .desktop-home-hero-alt__brand-subtitle {
        margin-top: 6px;
        color: #24374d;
        font-family: var(--display-font);
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.22em;
        line-height: 1;
        text-transform: uppercase;
    }
}


/* ============================================
   PRODUCTION POLISH — Desktop Overrides
   ============================================ */

/* Desktop hygiene badge in header */
.desktop-hygiene-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-right: 10px;
    box-shadow: 0 1px 4px rgba(198, 162, 79, 0.3);
}

.desktop-hygiene-badge i {
    font-size: 13px;
}

/* Footer hygiene badge */
.desktop-site-footer__hygiene {
    margin: 12px 0 16px;
}

.desktop-site-footer__hygiene-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.desktop-site-footer__hygiene-badge i {
    font-size: 15px;
}

/* Script font on desktop category chips */
.desktop-menu-category-chip {
    font-family: "Dancing Script", "Playfair Display", Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.desktop-menu-category-chip.is-active {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
}

/* Desktop section eyebrow with script font */
.desktop-home-section__eyebrow,
.desktop-menu-intro__eyebrow {
    font-family: "Dancing Script", "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.03em;
}

/* Announcement bar gold text on navy */
.desktop-site-header__announcement {
    background: var(--primary);
}

.desktop-site-header__announcement-copy {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.desktop-site-header__announcement-link {
    color: #fff;
    opacity: 0.85;
}

.desktop-site-header__announcement-link:hover {
    opacity: 1;
    color: var(--accent);
}

/* Smoother card hover transitions */
.desktop-popular-card,
.desktop-home-favourite-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.desktop-popular-card:hover,
.desktop-home-favourite-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(21, 58, 99, 0.1);
}

/* Better BEST badge on desktop cards */
.desktop-popular-card__best {
    background: var(--accent);
    color: var(--primary);
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    letter-spacing: 0.04em;
}

/* Staff dashboard link in desktop nav */
.desktop-site-nav__link--staff {
    color: #c0392b;
    font-weight: 600;
}

.desktop-site-nav__link--staff:hover {
    color: #a93226;
}

.desktop-site-nav__link--staff.is-active {
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08);
}


/* ============================================================
   DESKTOP HOMEPAGE HERO SLIDESHOW
   ============================================================ */
@media (min-width: 1200px) {
    .desktop-home-hero-alt {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 40px;
        align-items: center;
        margin-bottom: 28px;
    }

    .desktop-home-hero-alt__slideshow {
        position: relative;
        width: 300px;
        height: 220px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 32px rgba(21, 58, 99, 0.14);
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        animation: hero-slide-fade 15s linear infinite;
    }

    .hero-slide:nth-child(1) { animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: -5s; }
    .hero-slide:nth-child(3) { animation-delay: -10s; }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Pause on hover for accessibility */
    .desktop-home-hero-alt__slideshow:hover .hero-slide {
        animation-play-state: paused;
    }
}

@keyframes hero-slide-fade {
    0%   { opacity: 1; }
    26%  { opacity: 1; }
    33%  { opacity: 0; }
    93%  { opacity: 0; }
    100% { opacity: 1; }
}
