:root {
    /* Aliased from IPHePOS.DesignTokens/tokens.css — teal premium store */
    --store-primary: var(--iph-consumer-primary);
    --store-primary-dark: var(--iph-consumer-primary-dark);
    --store-primary-darker: #115e59;
    --store-primary-light: var(--iph-consumer-primary-soft);
    --store-primary-lighter: #f8fffe;
    --store-accent: var(--iph-consumer-accent);

    /* SECONDARY PALETTE - Slate */
    --store-secondary: var(--iph-consumer-secondary);
    --store-secondary-dark: #334155;
    --store-secondary-light: #e2e8f0;

    /* SEMANTIC COLORS */
    --store-success: #10b981;
    --store-warning: #f59e0b;
    --store-error: #ef4444;
    --store-info: #3b82f6;
    --store-disabled: #d1d5db;

    /* NEUTRAL PALETTE - Text & Backgrounds */
    --store-bg: var(--iph-consumer-bg);
    --store-bg-secondary: #eef2f7;
    --store-surface: var(--iph-consumer-surface);
    --store-surface-alt: #f8fafc;
    --store-text: var(--iph-consumer-text);
    --store-text-secondary: #475569;
    --store-text-tertiary: #94a3b8;
    --store-text-muted: #64748b;
    --store-border: #e2e8f0;
    --store-border-light: #f1f5f9;
    --store-divider: #e2e8f0;

    /* SHADOW SYSTEM - Depth & Elevation */
    --store-shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --store-shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --store-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --store-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --store-shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --store-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* SPACING SCALE - 4px base unit */
    --store-space-0: 0;
    --store-space-1: 0.25rem;
    --store-space-2: 0.5rem;
    --store-space-3: 0.75rem;
    --store-space-4: 1rem;
    --store-space-5: 1.25rem;
    --store-space-6: 1.5rem;
    --store-space-8: 2rem;
    --store-space-10: 2.5rem;
    --store-space-12: 3rem;
    --store-space-16: 4rem;

    /* RADIUS SCALE */
    --store-radius-none: 0;
    --store-radius-xs: 4px;
    --store-radius-sm: 8px;
    --store-radius-md: 12px;
    --store-radius-lg: 16px;
    --store-radius: 20px;
    --store-radius-xl: 24px;
    --store-radius-full: 9999px;

    /* TYPOGRAPHY SCALE */
    --store-font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, sans-serif;
    --store-font-mono: "Fira Code", "Courier New", monospace;
    --store-font-size-xs: 0.75rem;
    --store-font-size-sm: 0.875rem;
    --store-font-size-base: 1rem;
    --store-font-size-lg: 1.125rem;
    --store-font-size-xl: 1.25rem;
    --store-font-size-2xl: 1.5rem;
    --store-font-size-3xl: 1.875rem;
    --store-font-size-4xl: 2.25rem;
    --store-font-size-5xl: 3rem;

    --store-line-height-tight: 1.25;
    --store-line-height-snug: 1.375;
    --store-line-height-normal: 1.5;
    --store-line-height-relaxed: 1.625;
    --store-line-height-loose: 2;

    /* FONT WEIGHTS */
    --store-font-weight-regular: 400;
    --store-font-weight-medium: 500;
    --store-font-weight-semibold: 600;
    --store-font-weight-bold: 700;
    --store-font-weight-extrabold: 800;

    /* SIZES */
    --store-touch: 48px;
    --store-touch-sm: 40px;
    --store-touch-lg: 56px;
    --store-bottom-nav-height: 56px;
    --store-sticky-bar-height: 64px;

    /* TRANSITIONS */
    --store-duration-fast: 150ms;
    --store-duration-base: 200ms;
    --store-duration-slow: 300ms;
    --store-duration-slower: 500ms;
    --store-easing-in: cubic-bezier(0.4, 0, 1, 1);
    --store-easing-out: cubic-bezier(0, 0, 0.2, 1);
    --store-easing-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --store-easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.store-body {
    font-family: var(--store-font-family);
    font-size: var(--store-font-size-base);
    line-height: var(--store-line-height-normal);
    font-weight: var(--store-font-weight-regular);
    margin: 0;
    color: var(--store-text);
    background: var(--store-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Secure customer authentication */
.store-account-stage {
    position: relative;
    display: grid;
    place-items: start center;
    min-height: min(720px, calc(100dvh - 10rem));
    padding: clamp(0.5rem, 3vw, 2.5rem) 0;
}

.store-account-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 15% 10%, rgba(13, 148, 136, 0.12), transparent 34%),
        radial-gradient(circle at 90% 85%, rgba(245, 158, 11, 0.1), transparent 30%);
    pointer-events: none;
}

.store-auth-card {
    width: min(100%, 35rem) !important;
    max-width: 35rem !important;
    padding: clamp(1.25rem, 4vw, 2rem) !important;
}

.store-auth-flow {
    display: grid;
    gap: 1.15rem;
}

.store-auth-flow__header {
    text-align: center;
}

.store-auth-flow__eyebrow {
    display: inline-flex;
    padding: 0.32rem 0.72rem;
    border: 1px solid color-mix(in srgb, var(--store-primary) 24%, var(--store-border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--store-primary-light) 72%, #fff);
    color: var(--store-primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.store-auth-flow__title {
    margin: 0.8rem 0 0;
    color: var(--store-text);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.store-auth-flow__lead {
    max-width: 31rem;
    margin: 0.65rem auto 0;
    color: var(--store-text-secondary);
    line-height: 1.55;
}

.store-auth-flow__identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-md);
    background: var(--store-surface-alt);
    color: var(--store-text);
    font-size: 0.9rem;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.store-auth-flow__form {
    display: grid;
    gap: 0.9rem;
}

.store-auth-flow__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.85rem;
}

.store-auth-flow__primary.mud-button-root {
    min-height: 3.15rem;
}

.store-auth-flow__link,
.store-auth-flow__retry {
    appearance: none;
    border: 0;
    padding: 0.3rem;
    background: transparent;
    color: var(--store-primary-dark);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    cursor: pointer;
}

.store-auth-flow__link--center {
    justify-self: center;
}

.store-auth-flow__link:hover,
.store-auth-flow__retry:hover {
    color: var(--store-primary);
}

.store-auth-flow__link:focus-visible,
.store-auth-flow__retry:focus-visible {
    border-radius: 0.35rem;
    outline: 2px solid var(--store-primary);
    outline-offset: 2px;
}

.store-auth-flow__link:disabled,
.store-auth-flow__retry:disabled {
    opacity: 0.52;
    cursor: wait;
}

.store-auth-flow__notice {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.8rem 0.9rem;
    border-radius: var(--store-radius-md);
    font-size: 0.88rem;
    line-height: 1.45;
}

.store-auth-flow__notice--info {
    border: 1px solid rgba(13, 148, 136, 0.2);
    background: rgba(13, 148, 136, 0.07);
    color: var(--store-primary-dark);
}

.store-auth-flow__notice--error {
    border: 1px solid rgba(239, 68, 68, 0.24);
    background: rgba(239, 68, 68, 0.07);
    color: #991b1b;
}

.store-auth-flow__retry {
    flex: 0 0 auto;
    color: inherit;
}

.store-auth-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--store-border-light);
    color: var(--store-text-muted);
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 599px) {
    .store-account-stage {
        display: block;
        min-height: auto;
        padding: 0;
    }

    .store-account-stage::before {
        display: none;
    }

    .store-auth-card {
        padding: 1.15rem !important;
    }

    .store-auth-flow__grid {
        grid-template-columns: 1fr;
    }

    .store-auth-flow__identity {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (forced-colors: active) {
    .store-auth-flow__eyebrow,
    .store-auth-flow__identity,
    .store-auth-flow__notice {
        border: 1px solid CanvasText;
    }
}

.store-main {
    width: min(96vw, 1400px);
    max-width: 1400px;
    min-height: calc(100vh - 64px);
    margin: 0 auto;
    padding: var(--store-space-4) clamp(var(--store-space-3), 2vw, var(--store-space-6));
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
}

@media (min-width: 960px) {
    .store-main {
        padding: var(--store-space-6) clamp(var(--store-space-4), 2.5vw, var(--store-space-8)) var(--store-space-10);
        padding-bottom: var(--store-space-10);
    }
}

.store-appbar {
    padding-top: env(safe-area-inset-top, 0px);
    box-shadow: var(--store-shadow-sm);
    border-bottom: 1px solid var(--store-border-light);
    transition: box-shadow var(--store-duration-base) var(--store-easing-out);
}

.store-appbar:focus-within {
    box-shadow: var(--store-shadow) !important;
}

.store-brand {
    font-weight: var(--store-font-weight-extrabold) !important;
    letter-spacing: -0.02em;
    color: #fff !important;
}

.store-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.store-brand-mark {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.store-brand-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    border-radius: var(--store-radius-xs);
}

.store-appbar .mud-button-root,
.store-appbar .mud-icon-button {
    min-width: var(--store-touch);
    min-height: var(--store-touch);
    transition: transform var(--store-duration-fast) var(--store-easing-out),
                background-color var(--store-duration-base) var(--store-easing-out);
}

.store-appbar-branch.mud-button-root {
    max-width: 140px;
    min-width: 0;
    padding-left: var(--store-space-2);
    padding-right: var(--store-space-2);
    font-size: var(--store-font-size-sm);
    font-weight: var(--store-font-weight-semibold);
    text-transform: none;
    opacity: 0.95;
}

@media (min-width: 960px) {
    .store-appbar-branch.mud-button-root {
        max-width: 180px;
    }
}

.store-appbar .mud-button-root:active,
.store-appbar .mud-icon-button:active {
    transform: scale(0.95);
}

.store-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: var(--store-surface);
    border-top: 1px solid var(--store-border);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: box-shadow var(--store-duration-base) var(--store-easing-out);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.98);
}

.store-bottom-nav:focus-within {
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
}

.store-bottom-nav .mud-button-root {
    min-height: var(--store-touch);
    flex: 1;
    border-radius: 0;
    text-transform: none;
    font-weight: var(--store-font-weight-semibold);
    font-size: var(--store-font-size-xs);
    letter-spacing: 0.02em;
    transition: background-color var(--store-duration-base) var(--store-easing-out),
                color var(--store-duration-base) var(--store-easing-out);
    border-bottom: 3px solid transparent;
}

.store-bottom-nav .mud-button-root:hover {
    background-color: var(--store-bg);
}

.store-bottom-nav .mud-button-root.mud-primary-text {
    color: var(--store-primary) !important;
    border-bottom-color: var(--store-primary);
    background-color: var(--store-primary-light);
}

.store-footer {
    margin-top: var(--store-space-10);
    padding: var(--store-space-6) 0 calc(var(--store-space-4) + env(safe-area-inset-bottom, 0px));
    text-align: center;
    border-top: 1px solid var(--store-border-light);
    color: var(--store-text-tertiary);
    font-size: var(--store-font-size-sm);
}

@media (max-width: 959px) {
    .store-footer {
        padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    }
}

.store-footer-brand {
    font-weight: var(--store-font-weight-bold);
    color: var(--store-text-secondary);
    margin-bottom: var(--store-space-1);
}

.store-tips {
    display: grid;
    gap: var(--store-space-3);
    margin-bottom: 0;
}

@media (min-width: 600px) {
    .store-tips {
        grid-template-columns: repeat(3, 1fr);
    }
}

.store-tip-card {
    background: var(--store-surface);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-md);
    padding: var(--store-space-4);
    text-align: center;
    box-shadow: var(--store-shadow-xs);
}

.store-tip-card .mud-icon-root {
    color: var(--store-primary);
    margin-bottom: var(--store-space-2);
}

.store-tip-card__title {
    font-weight: var(--store-font-weight-bold) !important;
    margin-bottom: var(--store-space-1) !important;
}

.store-menu-loading {
    padding: var(--store-space-4) 0;
}

.store-menu-skeleton {
    border-radius: var(--store-radius-lg);
    border: 1px solid var(--store-border);
    overflow: hidden;
    background: var(--store-surface);
}

.store-menu-skeleton__media {
    aspect-ratio: 1 / 1;
    background: linear-gradient(90deg, var(--store-bg-secondary) 25%, var(--store-border-light) 50%, var(--store-bg-secondary) 75%);
    background-size: 200% 100%;
    animation: storeShimmer 1.4s ease-in-out infinite;
}

.store-menu-skeleton__body {
    padding: var(--store-space-4);
}

.store-menu-skeleton__line {
    height: 0.75rem;
    border-radius: var(--store-radius-xs);
    background: linear-gradient(90deg, var(--store-bg-secondary) 25%, var(--store-border-light) 50%, var(--store-bg-secondary) 75%);
    background-size: 200% 100%;
    animation: storeShimmer 1.4s ease-in-out infinite;
    margin-bottom: var(--store-space-2);
}

.store-menu-skeleton__line--short {
    width: 55%;
}

.store-menu-skeleton__chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--store-space-2);
}

.store-menu-skeleton__chip {
    display: inline-block;
    width: 4.5rem;
    height: 1.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--store-bg-secondary) 25%, var(--store-border-light) 50%, var(--store-bg-secondary) 75%);
    background-size: 200% 100%;
    animation: storeShimmer 1.4s ease-in-out infinite;
}

.store-menu-sidebar__panel--skeleton {
    min-height: 16rem;
}

@keyframes storeShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Home page layout */
.store-home {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-6);
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
}

.store-home-results {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--store-space-4);
}

.store-home .store-hero {
    margin-bottom: 0;
}

.store-home .store-location-card {
    margin-bottom: 0;
}

/* Hero */
.store-hero {
    background: linear-gradient(135deg, var(--store-primary) 0%, #0f766e 55%, #0b1f33 100%);
    color: #fff;
    border-radius: var(--store-radius-lg);
    padding: clamp(var(--store-space-6), 4vw, var(--store-space-10)) clamp(var(--store-space-5), 3vw, var(--store-space-8));
    box-shadow: var(--store-shadow-lg);
    position: relative;
    overflow: hidden;
    background-size: 400% 400%;
}

.store-hero::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
    animation: floatBubble 6s ease-in-out infinite;
}

.store-hero::before {
    content: "";
    position: absolute;
    left: -1rem;
    bottom: -1rem;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    animation: floatBubble 8s ease-in-out infinite 1s;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

.store-hero-eyebrow {
    margin: 0 0 var(--store-space-3) 0;
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-extrabold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.9;
}

.store-hero-title,
.store-hero .mud-typography-h4 {
    color: #fff !important;
    margin: 0 0 var(--store-space-3) !important;
    font-weight: var(--store-font-weight-extrabold) !important;
    letter-spacing: -0.03em;
    line-height: var(--store-line-height-tight) !important;
    font-size: clamp(1.875rem, 5vw, 2.5rem);
}

.store-hero-sub,
.store-hero .mud-typography-body1 {
    color: rgba(255, 255, 255, 0.92) !important;
    margin: 0 !important;
    max-width: 32rem;
    font-size: var(--store-font-size-lg);
    line-height: var(--store-line-height-relaxed);
}

.store-skip-link {
    position: absolute;
    left: var(--store-space-4);
    top: -100%;
    z-index: 2000;
    padding: var(--store-space-3) var(--store-space-4);
    background: var(--store-surface);
    color: var(--store-primary);
    font-weight: var(--store-font-weight-bold);
    border-radius: var(--store-radius-sm);
    box-shadow: var(--store-shadow-md);
    text-decoration: none;
    transition: top var(--store-duration-fast) var(--store-easing-out);
}

.store-skip-link:focus {
    top: calc(env(safe-area-inset-top, 0px) + var(--store-space-3));
    outline: 2px solid var(--store-primary);
    outline-offset: 2px;
}

.store-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.store-focus-target:focus {
    outline: none;
}

.store-focus-target:focus-visible {
    outline: 2px solid var(--store-primary);
    outline-offset: 3px;
    border-radius: var(--store-radius-xs);
}

.store-section-label {
    font-weight: var(--store-font-weight-bold) !important;
    letter-spacing: -0.02em;
    color: var(--store-text) !important;
}

.store-location-card {
    background: var(--store-surface);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
    border: 1px solid var(--store-border);
    transition: box-shadow var(--store-duration-base) var(--store-easing-out),
                border-color var(--store-duration-base) var(--store-easing-out);
}

.store-location-card:focus-within {
    box-shadow: var(--store-shadow-md);
    border-color: var(--store-primary);
}

.store-btn-primary.mud-button-root {
    min-height: var(--store-touch);
    font-weight: var(--store-font-weight-bold);
    font-size: var(--store-font-size-base);
    border-radius: var(--store-radius-md);
    text-transform: none;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
    transition: background-color var(--store-duration-base) var(--store-easing-out),
                box-shadow var(--store-duration-base) var(--store-easing-out),
                transform var(--store-duration-fast) var(--store-easing-out);
    position: relative;
    overflow: hidden;
}

.store-btn-primary.mud-button-root:hover:not(:disabled) {
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
    transform: translateY(-2px);
}

.store-btn-primary.mud-button-root:active:not(:disabled) {
    transform: translateY(0);
}

.store-btn-secondary.mud-button-root {
    min-height: var(--store-touch-sm);
    font-weight: var(--store-font-weight-semibold);
    border-radius: var(--store-radius-md);
    text-transform: none;
    transition: background-color var(--store-duration-base) var(--store-easing-out),
                border-color var(--store-duration-base) var(--store-easing-out),
                transform var(--store-duration-fast) var(--store-easing-out);
}

.store-btn-secondary.mud-button-root.mud-button-text {
    padding-left: var(--store-space-3);
    padding-right: var(--store-space-3);
}

.store-btn-secondary.mud-button-root.mud-button-outlined {
    min-height: var(--store-touch);
}

.store-btn-secondary.mud-button-root:hover:not(:disabled) {
    transform: translateY(-1px);
}

.store-btn-secondary.mud-button-root:active:not(:disabled) {
    transform: translateY(0);
}

.store-location-actions {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-3);
    padding: var(--store-space-3);
    background: var(--store-surface-alt);
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-md);
}

@media (min-width: 600px) {
    .store-location-actions {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

.store-location-btn.mud-button-root {
    flex-shrink: 0;
    align-self: flex-start;
}

.store-location-chip {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--store-space-2);
    padding: var(--store-space-2) var(--store-space-3);
    background: var(--store-surface);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-full);
    font-size: var(--store-font-size-sm);
    color: var(--store-text-secondary);
    box-shadow: var(--store-shadow-xs);
}

.store-location-chip__icon {
    color: var(--store-secondary);
}

.store-location-chip__label {
    font-weight: var(--store-font-weight-semibold);
    color: var(--store-text);
}

.store-location-chip__coords {
    font-family: var(--store-font-mono);
    font-size: var(--store-font-size-xs);
    color: var(--store-text-muted);
}

.store-location-filters {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-3);
}

.store-location-filters .store-location-field .mud-input-label-outlined {
    background-color: var(--store-surface);
    padding: 0 var(--store-space-1);
}

.store-location-filters .store-location-field {
    margin-top: var(--store-space-1);
}

.store-city-select .mud-input-adornment-start {
    color: var(--store-secondary);
}

.store-city-select-popover {
    margin-top: 0.4rem;
    overflow: hidden;
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: var(--store-radius-md) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16), 0 4px 14px rgba(13, 148, 136, 0.08) !important;
    backdrop-filter: blur(16px);
}

.store-city-select-popover .mud-list {
    padding: 0.45rem;
}

.store-city-select-popover .mud-list-item {
    min-height: 46px;
    margin: 0.15rem 0;
    border-radius: var(--store-radius-sm);
    color: var(--store-text);
    font-size: var(--store-font-size-sm);
    font-weight: var(--store-font-weight-medium);
    transition: color var(--store-duration-fast) var(--store-easing-out),
                background var(--store-duration-fast) var(--store-easing-out),
                transform var(--store-duration-fast) var(--store-easing-out);
}

.store-city-select-popover .mud-list-item:hover {
    transform: translateX(2px);
    background: var(--store-primary-lighter);
    color: var(--store-primary-dark);
}

.store-city-select-popover .mud-list-item.mud-selected-item {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.16), rgba(20, 184, 166, 0.08));
    color: var(--store-primary-dark);
    font-weight: var(--store-font-weight-semibold);
}

.store-divider {
    opacity: 0.5;
    margin: var(--store-space-2) 0 !important;
}

.store-fallback-banner {
    border-radius: var(--store-radius-sm);
    margin-bottom: 0;
}

.store-results-loading {
    text-align: center;
    padding: var(--store-space-10) var(--store-space-4);
}

.store-results-loading[role="status"] {
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.store-results-header {
    margin-bottom: 0;
}

.store-results-header .store-page-title {
    margin-bottom: var(--store-space-1);
}

/* Branch cards */
.store-branch-grid {
    margin: 0 !important;
    width: 100%;
    gap: var(--store-space-4) !important;
}

@media (min-width: 600px) {
    .store-branch-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-branch-grid > .mud-grid-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }
}

@media (min-width: 960px) {
    .store-branch-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.store-branch-card {
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--store-shadow);
    border: 1px solid var(--store-border);
    background: var(--store-surface);
    transition: transform var(--store-duration-base) var(--store-easing-out),
                box-shadow var(--store-duration-base) var(--store-easing-out),
                border-color var(--store-duration-base) var(--store-easing-out);
}

.store-branch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--store-shadow-lg);
    border-color: rgba(13, 148, 136, 0.18);
}

.store-branch-card-top {
    display: flex;
    gap: var(--store-space-4);
    padding: var(--store-space-4) var(--store-space-4) 0;
    align-items: flex-start;
}

.store-branch-logo {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: var(--store-radius-md);
    background-size: cover;
    background-position: center;
    background-color: var(--store-primary-light);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow-xs);
}

.store-branch-logo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--store-primary);
    background: var(--store-primary-light);
}

.store-branch-meta {
    flex: 1;
    min-width: 0;
}

.store-branch-tenant {
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.store-branch-name {
    margin: 0.15rem 0 0 !important;
    color: var(--store-text-muted);
}

.store-branch-address {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 0.25rem !important;
}

.store-branch-card-body {
    padding-top: 0.5rem !important;
}

.store-branch-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.store-branch-card-actions {
    padding: 0 var(--store-space-4) var(--store-space-4) !important;
    margin-top: auto;
}

.store-branch-card-actions .mud-button-root {
    min-height: var(--store-touch-sm);
    font-weight: var(--store-font-weight-bold);
    text-transform: none;
    border-radius: var(--store-radius-md);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
    transition: box-shadow var(--store-duration-base) var(--store-easing-out),
                transform var(--store-duration-fast) var(--store-easing-out);
}

.store-branch-card-actions .mud-button-root:hover {
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.28);
    transform: translateY(-1px);
}

/* Product / menu */
.store-menu-grid {
    width: 100%;
    gap: var(--store-space-5) !important;
}

@media (min-width: 960px) {
    .store-menu-layout .store-menu-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-menu-layout .store-menu-grid > .mud-grid-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
}

.store-product-card {
    border-radius: var(--store-radius-lg) !important;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--store-shadow);
    border: 1px solid var(--store-border);
    background: var(--store-surface);
    transition: transform var(--store-duration-base) var(--store-easing-out),
                box-shadow var(--store-duration-base) var(--store-easing-out),
                border-color var(--store-duration-base) var(--store-easing-out);
    position: relative;
    overflow-y: visible;
}

.store-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--store-shadow-lg);
    border-color: rgba(13, 148, 136, 0.2);
}

.store-product-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--store-primary-light) 0%, rgba(13, 148, 136, 0.06) 100%);
}

.store-product-card__image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    opacity: 0;
    animation: fadeInImage var(--store-duration-slow) var(--store-easing-out) forwards;
}

@keyframes fadeInImage {
    to { opacity: 1; }
}

.store-product-card__media .mud-image,
.store-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--store-duration-base) var(--store-easing-out);
}

.store-product-card:hover .mud-image,
.store-product-card:hover img {
    transform: scale(1.04);
}

.store-product-card__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--store-primary-light) 0%, rgba(13, 148, 136, 0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.store-product-card__badge {
    position: absolute;
    top: var(--store-space-4);
    left: var(--store-space-4);
    z-index: 2;
    font-weight: var(--store-font-weight-extrabold);
    font-size: var(--store-font-size-xs);
    animation: slideInBadge var(--store-duration-base) var(--store-easing-bounce);
}

@keyframes slideInBadge {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.store-product-card__body {
    flex: 1;
    padding: var(--store-space-5) var(--store-space-5) var(--store-space-2) !important;
}

.store-product-card__category {
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-semibold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.store-product-card__title {
    font-weight: var(--store-font-weight-bold);
    font-size: var(--store-font-size-lg);
    line-height: var(--store-line-height-snug);
    letter-spacing: -0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: var(--store-space-3);
    color: var(--store-text);
}

.store-product-card__sku {
    display: block;
    margin-top: var(--store-space-2);
    font-size: var(--store-font-size-sm);
    color: var(--store-text-tertiary);
}

.store-product-card__price {
    margin-top: var(--store-space-4) !important;
    font-weight: var(--store-font-weight-extrabold) !important;
    font-size: var(--store-font-size-xl) !important;
    letter-spacing: -0.02em;
    color: var(--store-primary) !important;
}

.store-product-card__actions {
    padding: var(--store-space-4) var(--store-space-5) var(--store-space-5) !important;
}

.store-product-card__actions .mud-button-root {
    min-height: var(--store-touch);
    width: 100%;
    font-weight: var(--store-font-weight-bold);
    text-transform: none;
    border-radius: var(--store-radius-md);
    transition: all var(--store-duration-base) var(--store-easing-out);
    position: relative;
}

.store-product-card__actions .mud-button-root:not(:disabled):hover {
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
    transform: translateY(-2px);
}

.store-product-card__actions .mud-button-root:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.store-carousel {
    border-radius: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.store-carousel .mud-carousel-item,
.store-carousel .mud-carousel-item-content {
    height: 100%;
}

.store-carousel .mud-carousel-button-prev,
.store-carousel .mud-carousel-button-next {
    background: rgba(13, 148, 136, 0.8);
    border-radius: var(--store-radius-md);
    width: var(--store-touch);
    height: var(--store-touch);
    transition: background var(--store-duration-base) var(--store-easing-out);
}

.store-carousel .mud-carousel-button-prev:hover,
.store-carousel .mud-carousel-button-next:hover {
    background: var(--store-primary);
}

.store-carousel .mud-carousel-bullet {
    border-radius: var(--store-radius-full);
    width: 6px;
    height: 6px;
    margin: 0 var(--store-space-1);
}

.store-menu-pagination .mud-pagination-item {
    font-weight: 600;
}

.store-menu-toolbar {
    background: var(--store-surface);
    border-radius: var(--store-radius);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow-xs);
}

.store-menu-header {
    margin-bottom: var(--store-space-4);
}

.store-sticky-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--store-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    z-index: 1100;
    padding: 0.75rem 1rem;
    background: var(--store-surface);
    border-top: 1px solid var(--store-border);
    box-shadow: 0 -8px 24px rgba(27, 27, 31, 0.1);
}

.store-sticky-action {
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(var(--store-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
    z-index: 1100;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--store-border);
    box-shadow: 0 -8px 24px rgba(27, 27, 31, 0.1);
    backdrop-filter: blur(8px);
}

.store-sticky-action .mud-button-root {
    min-height: var(--store-touch);
    width: 100%;
    font-weight: var(--store-font-weight-bold);
    border-radius: var(--store-radius-sm);
}

@media (min-width: 960px) {
    .store-sticky-action {
        display: none !important;
    }
}

.store-page-with-sticky-footer {
    padding-bottom: calc(var(--store-sticky-bar-height) + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 960px) {
    .store-page-with-sticky-footer {
        padding-bottom: 0;
    }
}

.store-sticky-cart .mud-button-root {
    min-height: var(--store-touch);
    width: 100%;
    font-weight: 700;
    border-radius: var(--store-radius-sm);
}

@media (min-width: 960px) {
    .store-sticky-cart {
        display: none !important;
    }
}

.store-page-title {
    font-weight: 800;
    letter-spacing: -0.03em;
}

.store-checkout-card,
.store-cart-card,
.store-confirm-card {
    background: var(--store-surface);
    border-radius: var(--store-radius);
    border: 1px solid var(--store-border);
    box-shadow: var(--store-shadow);
}

.store-checkout-card .mud-button-root,
.store-cart-card .mud-button-root,
.store-confirm-card .mud-button-root {
    min-height: var(--store-touch);
}

.store-cart-line {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--store-border);
}

.store-cart-line:last-child {
    border-bottom: none;
}

.store-qty-btn.mud-icon-button {
    border-radius: 8px;
    min-width: var(--store-touch);
    min-height: var(--store-touch);
}

.store-add-to-cart-dialog .mud-dialog-content {
    padding-top: 0.5rem;
}

.store-add-to-cart-dialog__qty {
    max-width: 100%;
}

.store-empty {
    text-align: center;
    background: var(--store-surface);
    border-radius: var(--store-radius);
    border: 1px dashed var(--store-border);
    box-shadow: var(--store-shadow);
}

.store-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--store-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--store-primary);
}

.store-empty-actions .mud-button-root {
    min-height: var(--store-touch);
    font-weight: 600;
    text-transform: none;
}

.store-error-ref {
    font-family: var(--store-font-mono);
    font-size: var(--store-font-size-xs);
    word-break: break-all;
}

.store-checkout-card .mud-input-outlined .mud-input-outlined-border,
.store-location-card .mud-input-outlined .mud-input-outlined-border {
    border-radius: var(--store-radius-md);
}

.store-checkout-card .mud-input:focus-within .mud-input-outlined-border,
.store-location-card .mud-input:focus-within .mud-input-outlined-border {
    border-color: var(--store-primary);
}

@media (max-width: 599px) {
    .store-cart-line {
        flex-wrap: wrap;
        gap: var(--store-space-2);
    }

    .store-cart-line .flex-grow-1 {
        flex: 1 1 100%;
    }
}

.store-confirm-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(45, 106, 79, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.store-filter-fab {
    position: fixed;
    right: 1rem;
    bottom: calc(var(--store-bottom-nav-height) + var(--store-sticky-bar-height) + 1rem + env(safe-area-inset-bottom, 0px));
    z-index: 1050;
}

.store-filter-fab .mud-fab {
    min-height: var(--store-touch);
    min-width: var(--store-touch);
}

@media (min-width: 960px) {
    .store-filter-fab,
    .store-filter-drawer,
    .store-filter-drawer.mud-drawer {
        display: none !important;
    }
}

.store-menu-with-cart {
    padding-bottom: calc(8rem + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 960px) {
    .store-menu-with-cart {
        padding-bottom: 0;
    }
}

/* Menu layout — sidebar + grid.
   Sidebar visibility is CSS-only (not MudHidden) so the product column width
   is correct on first paint and does not shrink when filters hydrate. */
.store-menu-layout {
    display: grid;
    gap: var(--store-space-5);
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
}

.store-menu-sidebar {
    display: none;
}

@media (min-width: 960px) {
    .store-menu-layout {
        grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    }

    .store-menu-sidebar {
        display: block;
        position: sticky;
        top: var(--store-space-4);
    }
}

.store-menu-sidebar__panel,
.store-filter-drawer {
    background: var(--store-surface);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    box-shadow: var(--store-shadow);
}

.store-filter-drawer.mud-drawer {
    border-radius: var(--store-radius-lg) var(--store-radius-lg) 0 0;
    max-height: 85vh;
    overflow-y: auto;
    padding-bottom: calc(var(--store-space-4) + env(safe-area-inset-bottom, 0px));
}

.store-filter-heading,
.store-filter-label {
    font-weight: var(--store-font-weight-bold) !important;
    letter-spacing: -0.02em;
    color: var(--store-text) !important;
}

.store-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--store-space-2);
}

.store-filter-chips--scroll {
    max-height: 11rem;
    overflow-y: auto;
    padding-right: var(--store-space-1);
    scrollbar-width: thin;
}

.store-filter-chips-toggle {
    text-transform: none;
    font-weight: var(--store-font-weight-semibold);
    padding-left: 0;
}

.store-menu-filters .store-filter-search .mud-input-label-outlined {
    background-color: var(--store-surface);
    padding: 0 var(--store-space-1);
}

.store-menu-filters .store-filter-search {
    margin-top: var(--store-space-1);
}

.store-rating-signin {
    font-size: var(--store-font-size-sm);
    line-height: var(--store-line-height-snug);
}

.store-menu-card-wrap .store-rating-signin {
    padding-top: var(--store-space-2);
}

.store-order-feedback {
    background: var(--store-surface-alt);
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-sm);
}

.store-order-feedback__line {
    padding-bottom: var(--store-space-2);
    border-bottom: 1px solid var(--store-border-light);
}

.store-order-feedback__line:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.store-price-range {
    margin-top: var(--store-space-2);
}

.store-menu-card-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.store-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.store-product-card__link:focus-visible {
    outline: 2px solid var(--store-primary);
    outline-offset: 2px;
}

.store-product-card__rating .mud-rating-item {
    color: var(--store-accent);
}

.store-rating-indicator__stars .mud-rating-item {
    color: var(--store-accent);
}

.store-rating-indicator__value {
    line-height: var(--store-line-height-snug);
}

.store-branch-rating {
    margin-top: var(--store-space-1);
}

.store-menu-header-rating {
    margin-top: var(--store-space-1);
}

.store-checkout-location {
    background: var(--store-surface-alt);
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-sm);
}

.store-delivery-map-wrap {
    display: grid;
    gap: var(--store-space-2);
}

.store-delivery-map {
    width: 100%;
    height: 240px;
    border-radius: var(--store-radius-sm);
    border: 1px solid var(--store-border-light);
    overflow: hidden;
    z-index: 0;
}

.store-delivery-map__hint {
    line-height: 1.4;
}

.store-location-confirm {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: var(--store-radius-sm);
    padding: var(--store-space-3);
}

.store-product-detail__rating .mud-rating-item {
    color: var(--store-accent);
}

.store-product-card__actions .mud-button-root {
    min-height: var(--store-touch-sm);
}

/* Product details page — premium composition */
.store-product-detail {
    position: relative;
    padding-bottom: var(--store-space-8);
}

.store-product-detail-loading {
    padding: var(--store-space-4) 0;
}

.store-product-detail-skeleton__hero {
    border-radius: var(--store-radius-xl);
}

.store-product-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: var(--store-space-5);
    color: var(--store-text-secondary);
    text-decoration: none;
    font-size: var(--store-font-size-sm);
    font-weight: var(--store-font-weight-semibold);
    transition: color var(--store-duration-fast) var(--store-easing-out);
}

.store-product-detail__back:hover {
    color: var(--store-primary);
}

.store-product-detail__layout {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.75rem);
}

@media (min-width: 960px) {
    .store-product-detail__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        align-items: start;
        gap: clamp(2rem, 4vw, 3.25rem);
    }
}

.store-product-detail__gallery-stage {
    position: relative;
    border-radius: var(--store-radius-xl);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(234, 88, 12, 0.12), transparent 55%),
        var(--store-surface-alt);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        var(--store-shadow-lg);
}

.store-product-detail-carousel {
    border-radius: var(--store-radius-xl);
    overflow: hidden;
    border: 0;
    aspect-ratio: 1 / 1;
    background: transparent;
    box-shadow: none;
}

.store-product-detail-carousel__image,
.store-product-detail-carousel .mud-image,
.store-product-detail-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.7s var(--store-easing-out);
}

.store-product-detail-carousel:hover .store-product-detail-carousel__image,
.store-product-detail-carousel:hover .mud-image,
.store-product-detail-carousel:hover img {
    transform: scale(1.04);
}

.store-product-detail-carousel .mud-carousel-item,
.store-product-detail-carousel .mud-carousel-item-content {
    height: 100%;
}

.store-product-detail__sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.4rem 0.75rem;
    border-radius: var(--store-radius-full);
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-bold);
    letter-spacing: 0.02em;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.35);
}

.store-product-detail-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--store-radius-xl);
    background: linear-gradient(145deg, var(--store-primary-light), var(--store-bg-secondary));
    color: var(--store-primary);
}

.store-product-detail-thumbs {
    display: flex;
    gap: var(--store-space-2);
    margin-top: var(--store-space-3);
    overflow-x: auto;
    padding: 2px 2px var(--store-space-1);
    scrollbar-width: thin;
}

.store-product-detail-thumb {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: var(--store-radius-md);
    border: 2px solid transparent;
    outline: 1px solid var(--store-border);
    overflow: hidden;
    padding: 0;
    background: var(--store-surface);
    cursor: pointer;
    transition: outline-color var(--store-duration-base) var(--store-easing-out),
                transform var(--store-duration-fast) var(--store-easing-out),
                box-shadow var(--store-duration-fast) var(--store-easing-out);
}

.store-product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-product-detail-thumb.is-active,
.store-product-detail-thumb:focus-visible {
    outline: 2px solid var(--store-primary);
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(234, 88, 12, 0.18);
}

.store-product-detail-thumb:hover {
    transform: translateY(-2px);
}

.store-product-detail__info {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-4);
}

.store-product-detail__buybox {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--store-radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
        var(--store-surface);
    border: 1px solid rgba(229, 224, 217, 0.9);
    box-shadow: var(--store-shadow-md);
}

@media (min-width: 960px) {
    .store-product-detail__buybox {
        position: sticky;
        top: 5.5rem;
        z-index: 2;
    }
}

.store-product-detail__category {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.7rem;
    border-radius: var(--store-radius-full);
    border: 1px solid color-mix(in srgb, var(--store-primary) 35%, var(--store-border));
    color: var(--store-primary-dark);
    background: color-mix(in srgb, var(--store-primary-light) 70%, #fff);
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: var(--store-space-3);
}

.store-product-detail__title {
    margin: 0;
    font-size: clamp(1.65rem, 3.4vw, 2.15rem);
    font-weight: var(--store-font-weight-extrabold);
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--store-text);
}

.store-product-detail__subtitle {
    margin: 0.35rem 0 0;
    color: var(--store-text-secondary);
    font-size: var(--store-font-size-base);
}

.store-product-detail__rating {
    margin-top: var(--store-space-3);
}

.store-product-detail__rating .mud-rating-item {
    color: var(--store-accent, var(--store-primary));
}

.store-product-detail__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: var(--store-space-3);
}

.store-product-detail__badge {
    display: inline-flex;
    padding: 0.28rem 0.65rem;
    border-radius: var(--store-radius-full);
    background: var(--store-surface-alt);
    border: 1px solid var(--store-border-light);
    color: var(--store-text-secondary);
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-semibold);
}

.store-product-detail__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.65rem 0.85rem;
    margin: var(--store-space-4) 0 var(--store-space-5);
}

.store-product-detail__price {
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-weight: var(--store-font-weight-extrabold);
    letter-spacing: -0.03em;
    color: var(--store-primary);
    line-height: 1;
}

.store-product-detail__compare {
    color: var(--store-text-tertiary);
    text-decoration: line-through;
    font-size: var(--store-font-size-base);
}

.store-product-detail__stock {
    margin-left: auto;
    padding: 0.3rem 0.7rem;
    border-radius: var(--store-radius-full);
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-bold);
}

.store-product-detail__stock.is-available {
    background: color-mix(in srgb, var(--store-secondary-light) 80%, #fff);
    color: var(--store-secondary-dark);
}

.store-product-detail__stock.is-oos {
    background: #fee2e2;
    color: #991b1b;
}

.store-product-detail__cta.mud-button-filled {
    min-height: 3.15rem;
    border-radius: var(--store-radius-md) !important;
    font-weight: var(--store-font-weight-bold) !important;
    letter-spacing: -0.01em;
    text-transform: none !important;
    box-shadow: 0 12px 28px rgba(234, 88, 12, 0.28) !important;
}

.store-product-detail__cta.mud-button-filled:hover:not(:disabled) {
    box-shadow: 0 14px 32px rgba(234, 88, 12, 0.34) !important;
    transform: translateY(-1px);
}

.store-product-detail-panel {
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-radius: var(--store-radius-xl);
    background: var(--store-surface);
    border: 1px solid var(--store-border-light);
    box-shadow: var(--store-shadow-xs);
}

.store-product-detail-panel__title {
    margin: 0 0 var(--store-space-3);
    font-size: var(--store-font-size-lg);
    font-weight: var(--store-font-weight-bold);
    letter-spacing: -0.02em;
    color: var(--store-text);
}

.store-product-detail-panel__lead {
    margin: 0 0 var(--store-space-3);
    font-size: var(--store-font-size-base);
    line-height: 1.55;
    color: var(--store-text);
}

.store-product-detail-panel__body {
    margin: 0;
    white-space: pre-line;
    color: var(--store-text-secondary);
    line-height: 1.65;
    font-size: var(--store-font-size-sm);
}

.store-product-detail-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .store-product-detail-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.store-product-detail-meta__item {
    padding: 0.85rem 0.95rem;
    border-radius: var(--store-radius-md);
    background: linear-gradient(180deg, #fff, var(--store-surface-alt));
    border: 1px solid var(--store-border-light);
}

.store-product-detail-meta__label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.7rem;
    font-weight: var(--store-font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-text-muted);
}

.store-product-detail-meta__value {
    display: block;
    font-size: var(--store-font-size-sm);
    font-weight: var(--store-font-weight-semibold);
    color: var(--store-text);
    line-height: 1.35;
    word-break: break-word;
}

.store-product-detail-accordions.mud-expand-panels {
    margin-top: var(--store-space-4);
    border: 0;
    background: transparent;
    display: grid;
    gap: 0.55rem;
}

.store-product-detail-accordion.mud-expand-panel {
    border: 1px solid var(--store-border) !important;
    border-radius: var(--store-radius-md) !important;
    background: #fff !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: hidden;
    transition: border-color var(--store-duration-fast) var(--store-easing-out),
                box-shadow var(--store-duration-fast) var(--store-easing-out);
}

.store-product-detail-accordion.mud-expand-panel.mud-panel-expanded {
    border-color: color-mix(in srgb, var(--store-primary) 28%, var(--store-border)) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05) !important;
}

.store-product-detail-accordion .mud-expand-panel-header {
    min-height: 3rem;
    padding: 0.8rem 1rem !important;
    font-weight: var(--store-font-weight-bold) !important;
    font-size: var(--store-font-size-sm) !important;
    letter-spacing: -0.01em;
    color: var(--store-text) !important;
}

.store-product-detail-accordion .mud-expand-panel-content {
    padding: 0 1rem 1rem !important;
}

.store-product-detail-specs {
    margin: 0;
    display: grid;
    gap: var(--store-space-3);
}

.store-product-detail-specs--nested {
    gap: 0.7rem;
}

.store-product-detail-spec {
    display: grid;
    grid-template-columns: minmax(7rem, 34%) 1fr;
    gap: var(--store-space-3);
    align-items: baseline;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--store-border-light);
}

.store-product-detail-spec:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.store-product-detail-spec dt {
    margin: 0;
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--store-text-muted);
}

.store-product-detail-spec dd {
    margin: 0;
    color: var(--store-text);
    font-size: var(--store-font-size-sm);
    line-height: 1.45;
    white-space: pre-line;
}

.store-product-detail-nutrition {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(5.75rem, 1fr));
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.store-product-detail-nutrition__notes {
    margin: 0 0 0.85rem;
    color: var(--store-text-secondary);
    font-size: var(--store-font-size-sm);
    line-height: 1.5;
}

.store-product-detail-nutrition__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 4.4rem;
    padding: 0.65rem 0.4rem;
    border-radius: var(--store-radius-md);
    background: linear-gradient(165deg, #fff7ed, #fff);
    border: 1px solid #fed7aa;
    text-align: center;
}

.store-product-detail-nutrition__value {
    font-size: var(--store-font-size-sm);
    font-weight: var(--store-font-weight-extrabold);
    color: var(--store-primary-dark);
    letter-spacing: -0.02em;
}

.store-product-detail-nutrition__label {
    font-size: 0.68rem;
    font-weight: var(--store-font-weight-semibold);
    color: var(--store-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-product-detail__diet-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.store-product-detail__diet-flag {
    display: inline-flex;
    padding: 0.32rem 0.7rem;
    border-radius: var(--store-radius-full);
    background: color-mix(in srgb, var(--store-secondary-light) 65%, #fff);
    color: var(--store-secondary-dark);
    border: 1px solid color-mix(in srgb, var(--store-secondary) 22%, transparent);
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-semibold);
}

.store-product-detail-includes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.store-product-detail-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: var(--store-font-size-sm);
    color: var(--store-text);
}

.store-product-detail-includes__icon {
    color: var(--store-primary);
    margin-top: 0.1rem;
}

.store-product-detail-includes__sku {
    color: var(--store-text-muted);
    margin-left: 0.25rem;
    font-size: var(--store-font-size-xs);
}

.store-product-detail-reviews {
    overflow: hidden;
}

.store-product-detail .store-sticky-cart,
.store-sticky-cart:has(.store-sticky-cart__price) {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.store-sticky-cart__price {
    flex: 0 0 auto;
    font-weight: var(--store-font-weight-extrabold);
    color: var(--store-primary);
    font-size: var(--store-font-size-lg);
    letter-spacing: -0.02em;
}

.store-product-detail__cta--sticky {
    flex: 1 1 auto;
    width: auto !important;
}

.store-sticky-cart:has(.store-sticky-cart__price) .mud-button-root {
    width: auto;
    flex: 1 1 auto;
}

@media (max-width: 599px) {
    .store-product-detail-spec {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .store-product-detail__stock {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .store-product-detail-meta {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-product-detail-carousel__image,
    .store-product-detail-carousel .mud-image,
    .store-product-detail-carousel img,
    .store-product-detail__cta.mud-button-filled {
        transition: none;
        transform: none !important;
    }
}

/* Feedback / review history */
.store-feedback-history__title {
    font-weight: var(--store-font-weight-bold) !important;
    letter-spacing: -0.02em;
}

.store-feedback-history__empty {
    background: var(--store-surface-alt);
    border: 1px dashed var(--store-border);
    border-radius: var(--store-radius-md);
    text-align: center;
}

.store-feedback-history__skeleton {
    border-radius: var(--store-radius-md);
}

.store-feedback-review {
    background: var(--store-surface);
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-md);
    transition: box-shadow var(--store-transition-fast);
}

.store-feedback-review:hover {
    box-shadow: var(--store-shadow-xs);
}

.store-feedback-review__stars .mud-rating-item {
    color: var(--store-accent);
}

.store-feedback-review__author {
    font-weight: var(--store-font-weight-semibold) !important;
}

.store-feedback-review__comment {
    line-height: var(--store-line-height-relaxed);
    white-space: pre-line;
}

.store-feedback-history__load-more {
    text-transform: none;
    font-weight: var(--store-font-weight-semibold);
}

.store-branch-reviews-panel {
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-md);
    overflow: hidden;
    background: var(--store-surface);
}

.store-branch-reviews-panel .mud-expand-panel {
    background: transparent;
}

.store-product-detail-reviews {
    margin-top: var(--store-space-2);
}

/* ─── Mobile optimizations ─── */

/* Prevent iOS input zoom (requires 16px minimum) */
.store-body .mud-input-root input,
.store-body .mud-input-root textarea,
.store-body .mud-input-slot input,
.store-body .mud-input-slot textarea,
.store-body .mud-select .mud-input-slot input {
    font-size: 16px !important;
}

@media (min-width: 600px) {
    .store-body .mud-input-root input,
    .store-body .mud-input-root textarea,
    .store-body .mud-input-slot input,
    .store-body .mud-input-slot textarea,
    .store-body .mud-select .mud-input-slot input {
        font-size: inherit !important;
    }
}

/* Touch-friendly chips and links */
.store-body .mud-chip,
.store-body .store-filter-chips .mud-chip {
    min-height: 36px;
}

.store-body .mud-button-root.mud-button-size-small {
    min-height: var(--store-touch-sm);
}

@media (max-width: 599px) {
    .store-main {
        width: 100%;
        max-width: 100%;
        padding: var(--store-space-3) var(--store-space-3);
        padding-bottom: calc(var(--store-bottom-nav-height) + var(--store-space-4) + env(safe-area-inset-bottom, 0px));
    }

    .store-brand {
        font-size: 1rem !important;
        letter-spacing: -0.01em !important;
    }

    .store-appbar-branch.mud-button-root {
        max-width: 96px;
        font-size: var(--store-font-size-xs);
    }

    .store-hero {
        padding: var(--store-space-5) var(--store-space-4);
        border-radius: var(--store-radius-md);
    }

    .store-hero-title,
    .store-hero .mud-typography-h4 {
        font-size: 1.5rem !important;
    }

    .store-hero-sub,
    .store-hero .mud-typography-body1 {
        font-size: var(--store-font-size-base);
    }

    .store-location-card,
    .store-checkout-card,
    .store-cart-card,
    .store-confirm-card {
        border-radius: var(--store-radius-md);
    }

    .store-location-card.pa-4,
    .store-checkout-card.pa-4,
    .store-cart-card.pa-3,
    .store-cart-card.pa-4,
    .store-confirm-card.pa-4,
    .store-empty.pa-5 {
        padding: var(--store-space-4) !important;
    }

    .store-branch-grid > .mud-grid-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .store-branch-card-top {
        gap: var(--store-space-3);
        padding: var(--store-space-3) var(--store-space-3) 0;
    }

    .store-branch-logo {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .store-menu-layout .store-menu-grid {
        display: flex !important;
        flex-direction: column;
        gap: var(--store-space-4) !important;
    }

    .store-menu-layout .store-menu-grid > .mud-grid-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
    }

    .store-product-card__body {
        padding: var(--store-space-4) var(--store-space-4) var(--store-space-2) !important;
    }

    .store-product-card__actions {
        padding: var(--store-space-3) var(--store-space-4) var(--store-space-4) !important;
    }

    .store-menu-header .store-page-title {
        font-size: 1.35rem !important;
    }

    .store-menu-toolbar {
        border-radius: var(--store-radius-md);
    }

    .store-menu-with-cart {
        padding-bottom: calc(var(--store-bottom-nav-height) + var(--store-sticky-bar-height) + var(--store-space-4) + env(safe-area-inset-bottom, 0px));
    }

    .store-delivery-map {
        height: 220px;
        min-height: 200px;
    }

    .store-location-confirm__actions {
        width: 100%;
    }

    .store-location-confirm__yes {
        flex: 1 1 100%;
    }

    .store-cart-line {
        align-items: flex-start;
    }

    .store-cart-line .store-qty-btn {
        margin-top: var(--store-space-1);
    }

    .store-order-card-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: var(--store-space-2);
    }

    .store-order-card-header .store-order-card-total {
        align-self: flex-start;
    }

    .store-account-page {
        max-width: 100%;
    }

    .store-product-detail-thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }

    .store-product-detail-panel {
        padding: var(--store-space-3);
    }

    .store-page-with-sticky-footer {
        padding-bottom: calc(var(--store-bottom-nav-height) + var(--store-sticky-bar-height) + var(--store-space-2) + env(safe-area-inset-bottom, 0px));
    }

    .store-menu-filters .store-filter-search,
    .store-location-filters .store-location-field {
        width: 100%;
    }

    .store-tips {
        gap: var(--store-space-2);
    }

    .store-tip-card {
        padding: var(--store-space-3);
    }

    .store-order-feedback {
        padding: var(--store-space-3) !important;
    }

    .store-order-feedback .mud-rating-item {
        min-width: 36px;
        min-height: 36px;
    }
}

@media (min-width: 600px) and (max-width: 959px) {
    .store-main {
        width: 100%;
        padding: var(--store-space-4) var(--store-space-4);
        padding-bottom: calc(var(--store-bottom-nav-height) + var(--store-space-6) + env(safe-area-inset-bottom, 0px));
    }

    .store-menu-layout .store-menu-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-menu-layout .store-menu-grid > .mud-grid-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .store-delivery-map {
        height: 280px;
    }
}

.store-account-page {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

/* Campaign hero carousel */
.store-campaign-carousel {
    position: relative;
    border-radius: var(--store-radius-lg);
    overflow: hidden;
    box-shadow: var(--store-shadow-sm);
}

.store-campaign-carousel__track {
    height: clamp(200px, 32vw, 320px);
    border-radius: var(--store-radius-lg);
}

.store-campaign-carousel__track .mud-carousel-item,
.store-campaign-carousel__track .mud-carousel-item-content {
    height: 100%;
}

/*
 * MudBlazor 8 controls overlay is a flex sibling (not .mud-carousel-elements).
 * Let clicks pass through empty overlay area to the hero CTA.
 */
.store-campaign-carousel__track > .d-flex.flex-grow-1 {
    z-index: 4;
    pointer-events: none;
}

.store-campaign-carousel__track > .d-flex.flex-grow-1 > * {
    pointer-events: auto;
}

/* Middle column stretches full width — center the pill track; only it captures clicks */
.store-campaign-carousel__track > .d-flex.flex-grow-1 > .flex-grow-1.align-self-end {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

/* Frosted circular prev/next */
.store-campaign-carousel__nav-btn,
.store-campaign-carousel__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-campaign-carousel__arrow {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background var(--store-duration-base) var(--store-easing-out),
        transform var(--store-duration-fast) var(--store-easing-out),
        border-color var(--store-duration-base) var(--store-easing-out);
}

.store-campaign-carousel__arrow:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.05);
}

.store-campaign-carousel__arrow:active {
    transform: scale(0.97);
}

.store-campaign-carousel__track > .d-flex.flex-grow-1 > .store-campaign-carousel__nav-btn {
    margin-inline: 0.65rem;
}

/*
 * MudBlazor applies BulletsClass to EACH bullet button, not the row.
 * Frost the shared .d-flex.justify-center row; keep per-bullet wrappers bare.
 * Parent flex centers this fit-content track at bottom-center of the banner.
 */
.store-campaign-carousel__track .align-self-end > .d-flex.justify-center {
    pointer-events: auto;
    display: flex !important;
    width: fit-content;
    max-width: calc(100% - 1.5rem);
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.4rem 0.7rem;
    margin: 0 0 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.store-campaign-carousel__bullet {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
    padding: 0.2rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    border-radius: 999px;
}

.store-campaign-carousel__bullet:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.store-campaign-carousel__dot {
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
    transition:
        width var(--store-duration-base) var(--store-easing-out),
        background var(--store-duration-base) var(--store-easing-out),
        border-color var(--store-duration-base) var(--store-easing-out),
        box-shadow var(--store-duration-base) var(--store-easing-out);
}

.store-campaign-carousel__bullet:hover .store-campaign-carousel__dot:not(.is-active) {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.55);
}

.store-campaign-carousel__dot.is-active {
    width: 1.35rem;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.store-campaign-hero {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(200px, 32vw, 320px);
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: left;
    color: #fff;
    overflow: hidden;
    background:
        var(--campaign-image, linear-gradient(135deg, var(--store-primary) 0%, #0f766e 100%));
    background-size: cover;
    background-position: center;
    transition: transform var(--store-duration-slow) var(--store-easing-out);
}

.store-campaign-hero:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -4px;
}

.store-campaign-hero__scrim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(105deg, rgba(8, 12, 24, 0.82) 0%, rgba(8, 12, 24, 0.55) 42%, rgba(8, 12, 24, 0.18) 72%, rgba(8, 12, 24, 0.08) 100%),
        linear-gradient(0deg, rgba(8, 12, 24, 0.55) 0%, rgba(8, 12, 24, 0.12) 42%, transparent 70%);
}

.store-campaign-hero__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.4rem;
    height: 100%;
    padding: clamp(1.35rem, 3.2vw, 2.15rem);
    padding-bottom: clamp(1.5rem, 3.5vw, 2.4rem);
    max-width: min(38rem, 88%);
}

.store-campaign-carousel--multi .store-campaign-hero__copy {
    padding-bottom: clamp(2.75rem, 5vw, 3.5rem);
}

.store-campaign-hero__eyebrow {
    font-family: var(--store-font-family);
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.store-campaign-hero__title {
    font-family: var(--store-font-family);
    font-size: clamp(1.45rem, 2.8vw, 2.15rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.store-campaign-hero__sub {
    font-family: var(--store-font-family);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
    max-width: 36ch;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.store-campaign-hero__cta {
    margin-top: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    font-family: var(--store-font-family);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    transition:
        transform var(--store-duration-fast) var(--store-easing-out),
        background var(--store-duration-base) var(--store-easing-out),
        box-shadow var(--store-duration-base) var(--store-easing-out);
}

.store-campaign-hero__cta-icon {
    font-size: 1rem !important;
    transition: transform var(--store-duration-fast) var(--store-easing-out);
}

.store-campaign-hero:hover .store-campaign-hero__cta {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.store-campaign-hero:hover .store-campaign-hero__cta-icon {
    transform: translateX(2px);
}

@media (max-width: 600px) {
    .store-campaign-carousel__arrow {
        width: 2.35rem;
        height: 2.35rem;
    }

    .store-campaign-carousel__track > .d-flex.flex-grow-1 > .store-campaign-carousel__nav-btn {
        margin-inline: 0.4rem;
    }

    .store-campaign-carousel__track .align-self-end > .d-flex.justify-center {
        margin-bottom: 0.55rem;
        padding: 0.35rem 0.55rem;
        gap: 0.3rem;
    }
}

/* —— Order history & favourites —— */
.store-orders-filters {
    background: linear-gradient(180deg, var(--store-surface) 0%, var(--store-surface-alt) 100%);
    border: 1px solid var(--store-border-light);
}

.store-orders-filters .store-filter-label {
    font-weight: var(--store-font-weight-semibold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--store-text-muted);
}

.store-orders-date {
    min-width: 10.5rem;
    flex: 1 1 10.5rem;
}

.store-favorite-btn {
    margin: -0.25rem 0 !important;
    color: var(--store-text-tertiary) !important;
    transition: transform var(--store-duration-fast) var(--store-easing-out),
                color var(--store-duration-fast) var(--store-easing-out);
}

.store-favorite-btn:hover:not(:disabled) {
    transform: scale(1.08);
}

.store-favorite-btn .mud-icon-button-label .mud-icon-root {
    font-size: 1.25rem;
}

.store-order-card {
    border: 1px solid var(--store-border-light);
    transition: border-color var(--store-duration-base) var(--store-easing-out),
                box-shadow var(--store-duration-base) var(--store-easing-out);
}

.store-order-card:hover {
    border-color: color-mix(in srgb, var(--store-primary) 28%, var(--store-border));
    box-shadow: var(--store-shadow-sm);
}

.store-orders-pager {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.store-orders-fav-link {
    border-radius: var(--store-radius-full) !important;
}

.store-favourites-empty {
    text-align: center;
}

.store-favourites-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: var(--store-radius-full);
    background: color-mix(in srgb, var(--store-primary) 12%, transparent);
}


/* Public order receipt (POS QR) */
.store-public-order {
    width: min(28rem, 100%);
    margin: 0 auto;
    padding: var(--store-space-4) 0 var(--store-space-10);
}

.store-public-order--loading,
.store-public-order.store-empty {
    text-align: center;
}

.store-public-order__hero {
    margin-bottom: var(--store-space-4);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--store-radius-xl);
    background:
        radial-gradient(ellipse 70% 80% at 10% 0%, rgba(234, 88, 12, 0.14), transparent 55%),
        var(--store-surface);
    border: 1px solid var(--store-border-light);
    box-shadow: var(--store-shadow-sm);
}

.store-public-order__eyebrow {
    margin: 0 0 0.5rem;
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-primary);
}

.store-public-order__title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 1.85rem);
    font-weight: var(--store-font-weight-extrabold);
    letter-spacing: -0.03em;
    word-break: break-word;
}

.store-public-order__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: var(--store-space-3);
}

.store-public-order__pill {
    display: inline-flex;
    padding: 0.28rem 0.65rem;
    border-radius: var(--store-radius-full);
    background: color-mix(in srgb, var(--store-primary) 14%, #fff);
    color: var(--store-primary-dark);
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-bold);
}

.store-public-order__pill--soft {
    background: var(--store-surface-alt);
    color: var(--store-text-secondary);
    border: 1px solid var(--store-border-light);
}

.store-public-order__when {
    margin: var(--store-space-3) 0 0;
    color: var(--store-text-secondary);
    font-size: var(--store-font-size-sm);
}

.store-public-order__panel {
    padding: 1.15rem 1.25rem;
    margin-bottom: var(--store-space-3);
    border-radius: var(--store-radius-xl);
    background: var(--store-surface);
    border: 1px solid var(--store-border-light);
}

.store-public-order__panel-title {
    margin: 0 0 var(--store-space-3);
    font-size: var(--store-font-size-base);
    font-weight: var(--store-font-weight-bold);
}

.store-public-order__lines {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.store-public-order__lines li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.store-public-order__line-main {
    display: flex;
    gap: 0.45rem;
    min-width: 0;
}

.store-public-order__qty {
    color: var(--store-primary);
    font-weight: var(--store-font-weight-bold);
    flex: 0 0 auto;
}

.store-public-order__name {
    font-weight: var(--store-font-weight-semibold);
    word-break: break-word;
}

.store-public-order__line-total {
    font-weight: var(--store-font-weight-bold);
    white-space: nowrap;
}

.store-public-order__totals {
    display: grid;
    gap: 0.55rem;
}

.store-public-order__totals > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--store-text-secondary);
    font-size: var(--store-font-size-sm);
}

.store-public-order__totals strong {
    color: var(--store-text);
}

.store-public-order__grand {
    margin-top: 0.35rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--store-border);
    font-size: var(--store-font-size-base) !important;
    color: var(--store-text) !important;
}

.store-public-order__grand strong {
    color: var(--store-primary);
    font-size: 1.15rem;
}

.store-public-order__footer {
    margin-top: var(--store-space-6);
    text-align: center;
    font-size: var(--store-font-size-xs);
    color: var(--store-text-muted);
}

/* Order tracking timeline */
.order-track {
    margin: 0 0 var(--store-space-4);
    padding: 1.1rem 1.15rem 0.85rem;
    border-radius: var(--store-radius-xl);
    border: 1px solid var(--store-border-light);
    background:
        linear-gradient(165deg, color-mix(in srgb, var(--store-primary) 6%, transparent), transparent 42%),
        var(--store-surface);
}

.order-track__header {
    margin-bottom: 0.85rem;
}

.order-track__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--store-text);
}

.order-track__subtitle {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    color: var(--store-text-muted);
}

.order-track__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-track__step {
    display: grid;
    grid-template-columns: 1.25rem 1fr;
    gap: 0.75rem;
    min-height: 2.75rem;
}

.order-track__rail {
    position: relative;
    display: flex;
    justify-content: center;
}

.order-track__rail::before {
    content: "";
    position: absolute;
    top: 0.85rem;
    bottom: -0.15rem;
    width: 2px;
    background: color-mix(in srgb, var(--store-border) 80%, transparent);
}

.order-track__step:last-child .order-track__rail::before {
    display: none;
}

.order-track__dot {
    position: relative;
    z-index: 1;
    width: 0.7rem;
    height: 0.7rem;
    margin-top: 0.35rem;
    border-radius: 999px;
    border: 2px solid color-mix(in srgb, var(--store-border) 90%, #64748b);
    background: var(--store-surface);
}

.order-track__step--done .order-track__dot {
    border-color: var(--store-primary);
    background: var(--store-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--store-primary) 18%, transparent);
}

.order-track__step--current .order-track__dot {
    border-color: var(--store-primary);
    background: #fff;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--store-primary) 22%, transparent);
    animation: order-track-pulse 1.6s ease-in-out infinite;
}

.order-track__step--done .order-track__rail::before {
    background: color-mix(in srgb, var(--store-primary) 55%, transparent);
}

.order-track__body {
    padding-bottom: 0.85rem;
}

.order-track__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.order-track__label {
    font-size: 0.875rem;
    font-weight: 650;
    color: var(--store-text);
}

.order-track__step--pending .order-track__label {
    color: var(--store-text-muted);
    font-weight: 550;
}

.order-track__time {
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    color: var(--store-text-muted);
    white-space: nowrap;
}

.order-track__time--live {
    color: var(--store-primary);
    font-weight: 650;
}

.order-track__time--pending {
    opacity: 0.75;
}

.order-track__detail {
    margin: 0.2rem 0 0;
    font-size: 0.72rem;
    color: var(--store-text-muted);
}

@keyframes order-track-pulse {
    0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--store-primary) 16%, transparent); }
    50% { box-shadow: 0 0 0 6px color-mix(in srgb, var(--store-primary) 10%, transparent); }
}

    margin: var(--store-space-4) 0 0;
    text-align: center;
    color: var(--store-text-muted);
    font-size: var(--store-font-size-xs);
}

/* Checkout — online payment gateways */
.store-pay-online__list {
    display: flex;
    flex-direction: column;
    gap: var(--store-space-2);
    margin-top: var(--store-space-2);
}

.store-gateway-card {
    display: flex;
    align-items: center;
    gap: var(--store-space-3);
    padding: var(--store-space-3);
    background: var(--store-surface);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-md);
    cursor: pointer;
    transition: border-color var(--store-duration-base) var(--store-easing-in-out),
        box-shadow var(--store-duration-base) var(--store-easing-in-out),
        background var(--store-duration-base) var(--store-easing-in-out);
}

.store-gateway-card:hover,
.store-gateway-card:focus-visible {
    border-color: var(--store-primary);
    box-shadow: var(--store-shadow-sm);
}

.store-gateway-card:focus-visible {
    outline: 2px solid var(--store-primary);
    outline-offset: 2px;
}

.store-gateway-card--selected {
    border-color: var(--store-primary);
    background: var(--store-primary-lighter);
    box-shadow: 0 0 0 1px var(--store-primary), var(--store-shadow-sm);
}

.store-gateway-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--store-font-weight-bold);
    font-size: var(--store-font-size-sm);
    letter-spacing: 0.02em;
    flex: 0 0 auto;
    box-shadow: var(--store-shadow-xs);
}

.store-gateway-card__body {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.store-gateway-card__title {
    display: flex;
    align-items: center;
    gap: var(--store-space-2);
    flex-wrap: wrap;
}

.store-gateway-card__name {
    font-weight: var(--store-font-weight-semibold);
    color: var(--store-text);
}

.store-gateway-card__sandbox {
    font-size: var(--store-font-size-xs);
    font-weight: var(--store-font-weight-semibold);
    color: #92400e;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--store-radius-full);
    padding: 1px 8px;
    white-space: nowrap;
}

.store-gateway-card__tagline {
    font-size: var(--store-font-size-sm);
    color: var(--store-text-secondary);
    margin-top: 2px;
}

.store-gateway-card__methods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--store-space-1);
    margin-top: var(--store-space-2);
}

.store-gateway-card__chip {
    font-size: var(--store-font-size-xs);
    color: var(--store-text-muted);
    background: var(--store-surface-alt);
    border: 1px solid var(--store-border-light);
    border-radius: var(--store-radius-full);
    padding: 2px 8px;
    white-space: nowrap;
}

.store-gateway-card__check {
    color: var(--store-text-tertiary);
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.store-gateway-card--selected .store-gateway-card__check {
    color: var(--store-primary);
}

/* Payment return page */
.store-payret-card {
    max-width: 480px;
    margin: 0 auto;
}

.store-payret-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.store-payret-icon--pending {
    background: rgba(13, 148, 136, 0.08);
    animation: store-payret-pulse 1.6s ease-in-out infinite;
}

.store-payret-icon--success {
    background: rgba(16, 185, 129, 0.14);
    color: var(--store-success);
    animation: store-payret-pop 450ms var(--store-easing-bounce);
}

.store-payret-icon--error {
    background: rgba(239, 68, 68, 0.12);
    color: var(--store-error);
}

@keyframes store-payret-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.25);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(13, 148, 136, 0);
    }
}

@keyframes store-payret-pop {
    0% {
        transform: scale(0.4);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.store-android-banner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(120deg, #0F2744 0%, #16365C 55%, #0B1F33 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 10px 28px rgba(15, 39, 68, 0.18);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-android-banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 39, 68, 0.24);
    text-decoration: none;
    color: inherit;
}

.store-android-banner__qr {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
    flex-shrink: 0;
    image-rendering: pixelated;
}

.store-android-banner__copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.store-android-banner__label {
    color: #F8FAFC;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.store-android-banner__hint {
    color: #CBD5E1;
    font-size: 0.88rem;
    line-height: 1.4;
}

/* ─── Premium production polish (Fiducia Store) ─── */
:root {
    --store-warm: var(--iph-consumer-warm, #f59e0b);
    --store-warm-soft: var(--iph-consumer-warm-soft, #fffbeb);
    --store-ink-dark: var(--iph-consumer-ink-dark, #0b1f1c);
    --store-shadow-premium: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.store-appbar.mud-appbar {
    background: linear-gradient(120deg, var(--store-primary) 0%, var(--store-primary-dark) 55%, var(--store-ink-dark) 140%) !important;
    border-bottom: 0 !important;
    box-shadow: 0 10px 28px rgba(13, 148, 136, 0.22) !important;
}

.store-brand-stack {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-left: 0.15rem;
}

.store-brand-by {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.78;
    color: #fff;
}

.store-appbar-branch.mud-button-root {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px !important;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
}

.store-hero {
    background:
        radial-gradient(900px 420px at 90% -10%, rgba(245, 158, 11, 0.22), transparent 55%),
        linear-gradient(135deg, var(--store-primary) 0%, var(--store-primary-dark) 48%, var(--store-ink-dark) 100%) !important;
    border-radius: 28px !important;
    box-shadow: var(--store-shadow-premium) !important;
}

.store-hero-eyebrow {
    display: inline-flex;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.store-branch-card {
    border-radius: 22px !important;
    box-shadow: var(--store-shadow-premium) !important;
    border-color: rgba(148, 163, 184, 0.22) !important;
}

.store-branch-card:hover {
    border-color: rgba(13, 148, 136, 0.35) !important;
}

.store-branch-logo {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    border-radius: 18px !important;
}

.store-product-card {
    border-radius: 22px !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important;
}

.store-product-card__media {
    aspect-ratio: 4 / 3 !important;
}

.store-product-card__quick-add {
    position: absolute !important;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 3;
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    background: var(--store-primary) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(13, 148, 136, 0.35) !important;
}

.store-product-card__quick-add:disabled {
    opacity: 0.45;
}

.store-product-card__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-product-card__badge--deal {
    background: var(--store-warm);
    color: #111827;
}

.store-product-card__badge--off {
    background: #dc2626;
    color: #fff;
}

.store-product-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--store-primary-dark);
    background: var(--store-primary-light);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.35rem;
}

.store-product-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: 0.65rem;
}

.store-product-card__compare-strike {
    text-decoration: line-through;
}

.store-product-card__cta.mud-button-root {
    min-height: 48px;
    border-radius: 14px !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.22);
}

.store-bottom-nav {
    backdrop-filter: blur(16px) saturate(1.2);
    background: rgba(255, 255, 255, 0.92) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.08);
}

.store-bottom-nav .mud-button-root.mud-primary-text {
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.12), rgba(13, 148, 136, 0.04)) !important;
}

.store-footer {
    margin-top: 3rem;
    padding: 2rem 1rem 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(13, 148, 136, 0.04));
}

.store-footer-tagline {
    font-size: 0.9rem;
    color: var(--store-text-secondary);
    margin: 0.35rem 0 0.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.store-footer-powered {
    margin-top: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--store-primary);
}

.store-cart-card,
.store-checkout-card {
    border-radius: 22px !important;
    box-shadow: var(--store-shadow-premium) !important;
    border: 1px solid rgba(148, 163, 184, 0.2) !important;
}

.store-appbar-branch__logo {
    width: 2rem;
    height: 2rem;
    margin-right: 0.55rem;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 0.65rem;
    background: #fff;
    object-fit: cover;
    vertical-align: middle;
}

.store-sticky-action {
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 -12px 36px rgba(15, 23, 42, 0.1) !important;
    border-top: 1px solid rgba(226, 232, 240, 0.9) !important;
}

.mud-dialog .mud-dialog-content {
    font-family: var(--store-font-family);
}

.store-reconnect {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    place-items: center;
    padding: 1.5rem;
    background: rgba(7, 20, 31, 0.72);
    backdrop-filter: blur(12px);
}

.store-reconnect.components-reconnect-show,
.store-reconnect.components-reconnect-failed,
.store-reconnect.components-reconnect-rejected {
    display: grid;
}

.store-reconnect.components-reconnect-hide {
    display: none;
}

.store-reconnect__card {
    width: min(100%, 28rem);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 30px 90px rgba(2, 14, 24, 0.32);
    color: var(--store-text-primary);
    text-align: center;
}

.store-reconnect__card strong,
.store-reconnect__card span {
    display: block;
}

.store-reconnect__card strong {
    margin-top: 1rem;
    font-size: 1.15rem;
}

.store-reconnect__card span {
    margin-top: 0.5rem;
    color: var(--store-text-secondary);
    line-height: 1.55;
}

.store-reconnect__pulse {
    width: 2.5rem;
    height: 2.5rem;
    margin: auto;
    border: 4px solid rgba(13, 148, 136, 0.18);
    border-top-color: var(--store-primary);
    border-radius: 50%;
    animation: store-reconnect-spin 0.9s linear infinite;
}

.store-reconnect__retry {
    display: none;
    min-height: 2.75rem;
    margin: 1.25rem auto 0;
    padding: 0.65rem 1.25rem;
    border: 0;
    border-radius: 999px;
    background: var(--store-primary);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.components-reconnect-failed .store-reconnect__retry,
.components-reconnect-rejected .store-reconnect__retry {
    display: inline-flex;
}

@keyframes store-reconnect-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
