body.gac-page {
    min-width: 280px;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    background: var(--gac-page-background, #eaf3f8);
}

html.gac-overlay-open,
body.gac-page.gac-overlay-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.gac-page > .gac-noscript,
body.gac-page > noscript > .gac-noscript {
    position: fixed;
    z-index: 200;
    right: 50%;
    bottom: 18px;
    width: min(calc(100vw - 28px), 452px);
    padding: 14px;
    transform: translateX(50%);
    border-radius: 14px;
    color: #ffffff;
    background: #c62828;
    box-shadow: 0 12px 30px rgba(35, 79, 121, 0.2);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
}

/*
 * Go Air Cool customer storefront
 * Mobile-first visual system mirrored from the production Flutter application.
 * Every runtime selector is intentionally scoped to .gac-app so the storefront
 * can coexist with Bootstrap/AdminLTE without leaking styles into the backend.
 */

.gac-app {
    --gac-primary: #3e79f4;
    --gac-primary-dark: #1e5fd8;
    --gac-secondary: #6fa2ff;
    --gac-accent: #9cc5ff;
    --gac-success: #2e7d32;
    --gac-warning: #f9a825;
    --gac-danger: #c62828;
    --gac-background: #f4f8fb;
    --gac-surface: #ffffff;
    --gac-surface-muted: #eaf3f8;
    --gac-border: #d5e3ec;
    --gac-text: #1a1a1a;
    --gac-text-muted: #526b78;
    --gac-blue-soft: #eef4ff;
    --gac-success-soft: #eaf6ec;
    --gac-warning-soft: #fff7dd;
    --gac-danger-soft: #ffebee;
    --gac-scrim: rgba(7, 20, 43, 0.56);
    --gac-shadow-xs: 0 2px 8px rgba(35, 79, 121, 0.06);
    --gac-shadow-sm: 0 6px 18px rgba(35, 79, 121, 0.09);
    --gac-shadow-md: 0 12px 30px rgba(35, 79, 121, 0.14);
    --gac-shadow-primary: 0 10px 22px rgba(62, 121, 244, 0.28);
    --gac-radius-xs: 6px;
    --gac-radius-sm: 10px;
    --gac-radius-md: 14px;
    --gac-radius-lg: 20px;
    --gac-radius-xl: 28px;
    --gac-radius-pill: 999px;
    --gac-space-1: 2px;
    --gac-space-2: 6px;
    --gac-space-3: 10px;
    --gac-space-4: 14px;
    --gac-space-5: 18px;
    --gac-space-6: 28px;
    --gac-space-7: 40px;
    --gac-appbar-height: 56px;
    --gac-input-height: 56px;
    --gac-button-height: 54px;
    --gac-icon-button: 46px;
    --gac-nav-height: 76px;
    --gac-safe-left: env(safe-area-inset-left, 0px);
    --gac-safe-right: env(safe-area-inset-right, 0px);
    isolation: isolate;
    position: relative;
    width: 100%;
    max-width: 480px;
    min-width: 280px;
    min-height: 100vh;
    min-height: 100dvh;
    margin-inline: auto;
    overflow-x: clip;
    color: var(--gac-text);
    background: var(--gac-background);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
}

.gac-app,
.gac-app *,
.gac-app *::before,
.gac-app *::after {
    box-sizing: border-box;
}

.gac-app button,
.gac-app input,
.gac-app select,
.gac-app textarea {
    margin: 0;
    color: inherit;
    font: inherit;
}

.gac-app button,
.gac-app [role="button"],
.gac-app a,
.gac-app label,
.gac-app select {
    touch-action: manipulation;
}

.gac-app button,
.gac-app [role="button"] {
    cursor: pointer;
}

.gac-app button:disabled,
.gac-app input:disabled,
.gac-app select:disabled,
.gac-app textarea:disabled,
.gac-app [aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.52;
}

.gac-app a {
    color: inherit;
    text-decoration: none;
}

.gac-app img,
.gac-app svg,
.gac-app video {
    display: block;
    max-width: 100%;
}

.gac-app img.is-fallback {
    object-fit: contain;
}

.gac-app p,
.gac-app h1,
.gac-app h2,
.gac-app h3,
.gac-app h4,
.gac-app ul,
.gac-app ol,
.gac-app figure {
    margin: 0;
}

.gac-app ul,
.gac-app ol {
    padding: 0;
}

.gac-app [hidden] {
    display: none !important;
}

.gac-app :focus {
    outline: none;
}

.gac-app :focus-visible {
    outline: 3px solid var(--gac-primary-dark);
    outline-offset: 3px;
}

.gac-app ::selection {
    color: #ffffff;
    background: var(--gac-primary);
}

.gac-app .gac-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.gac-app .gac-screen {
    position: relative;
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    overflow-x: clip;
    background: var(--gac-background);
}

.gac-app .gac-screen--white {
    background: var(--gac-surface);
}

.gac-app .gac-screen--blue {
    color: #ffffff;
    background: linear-gradient(155deg, var(--gac-secondary) 0%, var(--gac-primary) 43%, var(--gac-primary-dark) 100%);
}

.gac-app .gac-main {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    padding: var(--gac-space-4);
}

.gac-app .gac-main--flush {
    padding: 0;
}

.gac-app .gac-main--with-nav {
    padding-bottom: calc(var(--gac-nav-height) + 28px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-main--with-action {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-page-pad {
    padding-inline: var(--gac-space-4);
}

.gac-app .gac-safe-top {
    padding-top: env(safe-area-inset-top, 0px);
}

.gac-app .gac-safe-bottom {
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.gac-app .gac-scroll-x {
    display: flex;
    max-width: 100%;
    gap: var(--gac-space-3);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.gac-app .gac-scroll-x::-webkit-scrollbar {
    display: none;
}

.gac-app .gac-stack {
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-stack--tight {
    gap: var(--gac-space-3);
}

.gac-app .gac-stack--loose {
    gap: var(--gac-space-5);
}

.gac-app .gac-row {
    display: flex;
    align-items: center;
    gap: var(--gac-space-3);
}

.gac-app .gac-row--between {
    justify-content: space-between;
}

.gac-app .gac-row--start {
    align-items: flex-start;
}

.gac-app .gac-grow {
    min-width: 0;
    flex: 1 1 auto;
}

.gac-app .gac-divider {
    width: 100%;
    height: 1px;
    margin-block: var(--gac-space-4);
    border: 0;
    background: var(--gac-border);
}

.gac-app .gac-title-xl {
    color: var(--gac-text);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.7px;
}

.gac-app .gac-title-lg {
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.35px;
}

.gac-app .gac-title-md,
.gac-app .gac-section-title {
    color: var(--gac-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.gac-app .gac-title-sm {
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.gac-app .gac-copy {
    color: var(--gac-text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.gac-app .gac-caption {
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.4;
}

.gac-app .gac-micro {
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
}

.gac-app .gac-muted {
    color: var(--gac-text-muted) !important;
}

.gac-app .gac-primary-text {
    color: var(--gac-primary) !important;
}

.gac-app .gac-danger-text {
    color: var(--gac-danger) !important;
}

.gac-app .gac-success-text {
    color: var(--gac-success) !important;
}

.gac-app .gac-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
    margin: var(--gac-space-5) 0 var(--gac-space-3);
}

.gac-app .gac-section-head__action {
    min-height: 44px;
    padding: 0 var(--gac-space-2);
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
}

/* App bars and fixed navigation */
.gac-app .gac-appbar {
    position: sticky;
    z-index: 40;
    top: 0;
    display: block;
    min-height: calc(var(--gac-appbar-height) + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) var(--gac-space-4) 0;
    border-bottom: 1px solid rgba(213, 227, 236, 0.76);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 10px rgba(35, 79, 121, 0.035);
    backdrop-filter: blur(14px);
}

.gac-app .gac-appbar--transparent {
    position: absolute;
    right: 0;
    left: 0;
    color: #ffffff;
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.gac-app .gac-appbar--flat {
    border-bottom: 0;
    box-shadow: none;
}

.gac-app .gac-appbar__start,
.gac-app .gac-appbar__end {
    display: flex;
    align-items: center;
    gap: var(--gac-space-2);
}

.gac-app .gac-appbar__end {
    justify-content: flex-end;
}

.gac-app .gac-appbar__center {
    min-width: 0;
    text-align: center;
}

.gac-app .gac-appbar__title {
    overflow: hidden;
    color: currentColor;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-appbar__subtitle {
    overflow: hidden;
    margin-top: 1px;
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-appbar > .gac-appbar-row {
    width: 100%;
    grid-column: 1 / -1;
}

.gac-app .gac-appbar-copy {
    min-width: 0;
    flex: 1 1 auto;
}

.gac-app .gac-appbar--transparent .gac-appbar__subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.gac-app .gac-icon-btn {
    position: relative;
    display: inline-grid;
    width: var(--gac-icon-button);
    min-width: var(--gac-icon-button);
    height: var(--gac-icon-button);
    padding: 0;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    color: var(--gac-text);
    background: transparent;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.gac-app .gac-icon-btn:hover {
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-icon-btn:active {
    transform: scale(0.94);
}

.gac-app .gac-icon-btn--surface {
    border-color: rgba(213, 227, 236, 0.9);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-icon-btn--primary {
    color: #ffffff;
    background: var(--gac-primary);
}

.gac-app .gac-icon-btn--danger {
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-icon-btn__badge {
    position: absolute;
    top: 1px;
    right: 0;
    display: grid;
    min-width: 17px;
    height: 17px;
    padding-inline: 4px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: var(--gac-danger);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.gac-app .gac-action-badge {
    position: absolute;
    top: 1px;
    right: 0;
    display: grid;
    min-width: 17px;
    height: 17px;
    padding-inline: 4px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: var(--gac-danger);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.gac-app .gac-bottom-nav {
    position: fixed;
    z-index: 50;
    right: 50%;
    bottom: 0;
    left: auto;
    display: grid;
    width: min(100vw, 480px);
    min-height: calc(var(--gac-nav-height) + env(safe-area-inset-bottom, 0px));
    padding: 8px 8px max(8px, env(safe-area-inset-bottom, 0px));
    transform: translateX(50%);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-items: stretch;
    border: 1px solid rgba(213, 227, 236, 0.78);
    border-bottom: 0;
    border-radius: var(--gac-radius-xl) var(--gac-radius-xl) 0 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -10px 28px rgba(35, 79, 121, 0.12);
    backdrop-filter: blur(16px);
}

.gac-app .gac-bottom-nav__item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 58px;
    padding: 6px 3px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    border-radius: var(--gac-radius-lg);
    color: var(--gac-text-muted);
    background: transparent;
    font-size: 10px;
    font-weight: 600;
    transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.gac-app .gac-bottom-nav__item:hover {
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-bottom-nav__item:active {
    transform: translateY(1px);
}

.gac-app .gac-bottom-nav__item[aria-current="page"],
.gac-app .gac-bottom-nav__item.is-active {
    color: var(--gac-primary);
    background: linear-gradient(180deg, rgba(62, 121, 244, 0.11), rgba(62, 121, 244, 0.035));
    font-weight: 800;
}

.gac-app .gac-bottom-nav__icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    font-size: 22px;
    line-height: 1;
}

.gac-app .gac-bottom-nav__indicator {
    position: absolute;
    top: 1px;
    width: 22px;
    height: 3px;
    border-radius: var(--gac-radius-pill);
    background: transparent;
}

.gac-app .gac-bottom-nav__item[aria-current="page"] .gac-bottom-nav__indicator,
.gac-app .gac-bottom-nav__item.is-active .gac-bottom-nav__indicator {
    background: var(--gac-primary);
}

/* Surfaces, buttons, chips and badges */
.gac-app .gac-card,
.gac-app .gac-surface {
    position: relative;
    border: 1px solid rgba(213, 227, 236, 0.9);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-surface {
    border-radius: var(--gac-radius-xl);
    box-shadow: var(--gac-shadow-sm);
}

.gac-app .gac-card--flat {
    box-shadow: none;
}

.gac-app .gac-card--interactive {
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gac-app .gac-card--interactive:hover {
    border-color: rgba(62, 121, 244, 0.38);
    box-shadow: var(--gac-shadow-sm);
    transform: translateY(-1px);
}

.gac-app .gac-card--selected,
.gac-app .gac-card[aria-selected="true"] {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 2px rgba(62, 121, 244, 0.12), var(--gac-shadow-sm);
}

.gac-app .gac-card__body {
    padding: var(--gac-space-4);
}

.gac-app .gac-card__footer {
    padding: var(--gac-space-3) var(--gac-space-4) var(--gac-space-4);
    border-top: 1px solid var(--gac-border);
}

.gac-app .gac-btn {
    position: relative;
    display: inline-flex;
    min-width: 0;
    min-height: var(--gac-button-height);
    padding: 0 var(--gac-space-5);
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-3);
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--gac-radius-md);
    color: #ffffff;
    background: linear-gradient(145deg, var(--gac-primary) 0%, var(--gac-primary-dark) 100%);
    box-shadow: var(--gac-shadow-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    transition: box-shadow 160ms ease, filter 160ms ease, transform 160ms ease;
}

.gac-app .gac-btn:hover {
    filter: saturate(1.08) brightness(1.025);
    box-shadow: 0 12px 26px rgba(62, 121, 244, 0.34);
}

.gac-app .gac-btn:active {
    transform: translateY(1px) scale(0.99);
}

.gac-app .gac-btn--block {
    width: 100%;
}

.gac-app .gac-btn--small {
    min-height: 40px;
    padding-inline: var(--gac-space-4);
    border-radius: var(--gac-radius-sm);
    font-size: 12px;
}

.gac-app .gac-btn--compact {
    min-height: 44px;
    padding-inline: var(--gac-space-4);
    font-size: 14px;
}

.gac-app .gac-btn--outline {
    color: var(--gac-primary);
    border-color: var(--gac-primary);
    background: var(--gac-surface);
    box-shadow: none;
}

.gac-app .gac-btn--soft {
    color: var(--gac-primary-dark);
    border-color: rgba(62, 121, 244, 0.12);
    background: var(--gac-blue-soft);
    box-shadow: none;
}

.gac-app .gac-btn--ghost {
    color: var(--gac-primary);
    background: transparent;
    box-shadow: none;
}

.gac-app .gac-btn--dark {
    color: #ffffff;
    background: #10213e;
    box-shadow: 0 10px 22px rgba(16, 33, 62, 0.2);
}

.gac-app .gac-btn--success {
    color: #ffffff;
    background: var(--gac-success);
    box-shadow: 0 10px 22px rgba(46, 125, 50, 0.2);
}

.gac-app .gac-btn--danger {
    color: #ffffff;
    background: var(--gac-danger);
    box-shadow: 0 10px 22px rgba(198, 40, 40, 0.2);
}

.gac-app .gac-btn--danger-outline {
    color: var(--gac-danger);
    border-color: rgba(198, 40, 40, 0.5);
    background: var(--gac-surface);
    box-shadow: none;
}

.gac-app .gac-btn-primary {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(145deg, var(--gac-primary), var(--gac-primary-dark));
    box-shadow: var(--gac-shadow-primary);
}

.gac-app .gac-btn-outline {
    color: var(--gac-primary);
    border-color: var(--gac-primary);
    background: var(--gac-surface);
    box-shadow: none;
}

.gac-app .gac-btn-danger {
    color: #ffffff;
    border-color: transparent;
    background: var(--gac-danger);
    box-shadow: 0 10px 22px rgba(198, 40, 40, 0.2);
}

.gac-app .gac-btn-white-outline {
    color: var(--gac-primary-dark);
    border-color: var(--gac-border);
    background: #ffffff;
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-btn-block {
    width: 100%;
}

.gac-app .gac-btn-small {
    min-height: 40px;
    padding-inline: var(--gac-space-4);
    border-radius: var(--gac-radius-sm);
    font-size: 12px;
}

.gac-app .gac-btn__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.46);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: gac-spin 760ms linear infinite;
}

.gac-app .gac-button-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.46);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: gac-spin 760ms linear infinite;
}

.gac-app .gac-btn--outline .gac-btn__spinner,
.gac-app .gac-btn--soft .gac-btn__spinner {
    border-color: rgba(62, 121, 244, 0.25);
    border-top-color: var(--gac-primary);
}

.gac-app .gac-chip-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

.gac-app .gac-chip-row::-webkit-scrollbar {
    display: none;
}

.gac-app .gac-chip {
    display: inline-flex;
    min-height: 38px;
    padding: 0 13px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-pill);
    color: var(--gac-text-muted);
    background: var(--gac-surface);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.gac-app .gac-chip:hover {
    border-color: var(--gac-secondary);
    color: var(--gac-primary-dark);
}

.gac-app .gac-chip.is-active,
.gac-app .gac-chip[aria-pressed="true"],
.gac-app .gac-chip[aria-selected="true"] {
    color: #ffffff;
    border-color: var(--gac-primary);
    background: var(--gac-primary);
}

.gac-app .gac-badge,
.gac-app .gac-status {
    display: inline-flex;
    width: fit-content;
    min-height: 24px;
    padding: 4px 9px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.gac-app .gac-badge--success,
.gac-app .gac-status--success,
.gac-app .gac-status--delivered,
.gac-app .gac-status--completed {
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-badge--warning,
.gac-app .gac-status--warning,
.gac-app .gac-status--pending,
.gac-app .gac-status--processing {
    color: #8a5a00;
    background: var(--gac-warning-soft);
}

.gac-app .gac-badge--danger,
.gac-app .gac-status--danger,
.gac-app .gac-status--cancelled,
.gac-app .gac-status--failed {
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-status--shipped,
.gac-app .gac-status--confirmed,
.gac-app .gac-status--refunded {
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
}

.gac-app .gac-status.is-success {
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-status.is-warning {
    color: #8a5a00;
    background: var(--gac-warning-soft);
}

.gac-app .gac-status.is-danger {
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-status.is-blue {
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
}

.gac-app .gac-status.is-violet {
    color: #534ab7;
    background: #f0edff;
}

.gac-app .gac-avatar {
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    overflow: hidden;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
    box-shadow: var(--gac-shadow-xs);
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Splash and authentication */
.gac-app .gac-splash {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(40px, env(safe-area-inset-top, 0px)) 28px max(28px, env(safe-area-inset-bottom, 0px));
    overflow: hidden;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(155deg, #6fa2ff 0%, #3e79f4 48%, #1e5fd8 100%);
}

.gac-app .gac-splash::before,
.gac-app .gac-splash::after {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 42px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.gac-app .gac-splash::before {
    top: -128px;
    right: -92px;
}

.gac-app .gac-splash::after {
    bottom: -160px;
    left: -110px;
}

.gac-app .gac-splash > img {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-splash__content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: var(--gac-space-5);
    text-align: center;
}

.gac-app .gac-splash__logo {
    width: min(64vw, 238px);
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(15, 47, 107, 0.22));
}

.gac-app .gac-splash__title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.7px;
}

.gac-app .gac-splash__copy {
    max-width: 310px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.gac-app .gac-splash__loader {
    position: absolute;
    right: 28px;
    bottom: max(34px, env(safe-area-inset-bottom, 0px));
    left: 28px;
    height: 4px;
    overflow: hidden;
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.26);
}

.gac-app .gac-splash__loader::after {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    content: "";
    animation: gac-progress 1.45s ease-in-out infinite;
}

.gac-app .gac-auth {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    background: var(--gac-surface);
}

.gac-app .gac-auth-screen {
    overflow: hidden;
    background: var(--gac-surface);
}

.gac-app .gac-auth-screen > .gac-auth {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(28px, calc(env(safe-area-inset-top, 0px) + 18px)) 24px calc(112px + env(safe-area-inset-bottom, 0px));
    background: transparent;
}

.gac-app .gac-auth-screen > .gac-auth::before,
.gac-app .gac-auth-screen > .gac-auth::after {
    display: none;
}

.gac-app .gac-auth::before,
.gac-app .gac-auth::after {
    position: fixed;
    z-index: 0;
    right: max(calc((100vw - 480px) / 2), 0px);
    bottom: 0;
    border-radius: 100% 0 0 0;
    pointer-events: none;
    content: "";
}

.gac-app .gac-auth::before {
    width: min(76vw, 365px);
    height: 180px;
    background: rgba(156, 197, 255, 0.3);
}

.gac-app .gac-auth::after {
    width: min(58vw, 278px);
    height: 126px;
    background: linear-gradient(145deg, var(--gac-secondary), var(--gac-primary-dark));
}

.gac-app .gac-auth__scroll {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(28px, calc(env(safe-area-inset-top, 0px) + 18px)) 24px calc(112px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
}

.gac-app .gac-auth__back {
    margin: -4px 0 var(--gac-space-3) -10px;
}

.gac-app .gac-auth__brand {
    display: flex;
    margin-bottom: var(--gac-space-5);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.gac-app .gac-auth__logo {
    width: 128px;
    height: 82px;
    object-fit: contain;
}

.gac-app .gac-auth-logo {
    display: grid;
    width: 128px;
    height: 82px;
    margin: 0 auto var(--gac-space-5);
    place-items: center;
}

.gac-app .gac-auth-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gac-app .gac-auth-heading {
    margin-bottom: var(--gac-space-3);
}

.gac-app .gac-auth-heading h1,
.gac-app .gac-auth-heading h2 {
    color: var(--gac-text);
    font-weight: 800;
    line-height: 1.2;
}

.gac-app .gac-auth-heading h1 {
    font-size: 22px;
}

.gac-app .gac-auth-heading h2 {
    margin-top: 2px;
    color: var(--gac-primary);
    font-size: 18px;
}

.gac-app .gac-auth-heading p {
    margin-top: 8px;
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.gac-app .gac-auth__heading {
    margin-bottom: 8px;
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.35px;
}

.gac-app .gac-auth__subheading {
    margin-bottom: var(--gac-space-6);
    color: var(--gac-text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.gac-app .gac-form {
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: var(--gac-space-2);
}

.gac-app .gac-field__label {
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 700;
}

.gac-app .gac-field > span:first-child {
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 700;
}

.gac-app .gac-field > input,
.gac-app .gac-field > select,
.gac-app .gac-field > textarea {
    width: 100%;
    min-height: var(--gac-input-height);
    padding: 0 var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    outline: 0;
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.gac-app .gac-field > textarea {
    min-height: 112px;
    padding-block: var(--gac-space-4);
    resize: vertical;
}

.gac-app .gac-field > input:focus,
.gac-app .gac-field > select:focus,
.gac-app .gac-field > textarea:focus {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-field-error {
    min-height: 14px;
    color: var(--gac-danger);
    font-size: 10px;
    font-weight: 600;
}

.gac-app .gac-field-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gac-space-3);
}

.gac-app .gac-field__control {
    position: relative;
    display: flex;
    width: 100%;
    min-height: var(--gac-input-height);
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.gac-app .gac-field__control:focus-within {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-field__control.is-invalid,
.gac-app .gac-field[aria-invalid="true"] .gac-field__control {
    border-color: var(--gac-danger);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.08);
}

.gac-app .gac-field__icon {
    display: grid;
    width: 22px;
    min-width: 22px;
    margin-left: var(--gac-space-4);
    place-items: center;
    color: var(--gac-text-muted);
}

.gac-app .gac-field__control:focus-within .gac-field__icon {
    color: var(--gac-primary);
}

.gac-app .gac-field__input,
.gac-app .gac-field__select,
.gac-app .gac-field__textarea {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 var(--gac-space-4);
    border: 0;
    outline: 0;
    color: var(--gac-text);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
}

.gac-app .gac-field__icon + .gac-field__input,
.gac-app .gac-field__icon + .gac-field__select,
.gac-app .gac-field__icon + .gac-field__textarea {
    padding-left: 0;
}

.gac-app .gac-field__input::placeholder,
.gac-app .gac-field__textarea::placeholder {
    color: #8aa0ad;
    opacity: 1;
}

.gac-app .gac-field__select {
    appearance: none;
    padding-right: 40px;
}

.gac-app .gac-field__textarea {
    min-height: 112px;
    padding-block: var(--gac-space-4);
    line-height: 1.5;
    resize: vertical;
}

.gac-app .gac-field__suffix,
.gac-app .gac-field__action {
    display: grid;
    min-width: 44px;
    min-height: 44px;
    margin-right: 5px;
    padding: 0 8px;
    place-items: center;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-field__prefix {
    display: flex;
    min-height: 32px;
    margin-left: var(--gac-space-4);
    padding-right: var(--gac-space-3);
    align-items: center;
    border-right: 1px solid var(--gac-border);
    color: var(--gac-text);
    font-size: 14px;
    font-weight: 700;
}

.gac-app .gac-field__help,
.gac-app .gac-field__error {
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.35;
}

.gac-app .gac-field__error {
    color: var(--gac-danger);
    font-weight: 600;
}

.gac-app .gac-check,
.gac-app .gac-radio {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: var(--gac-space-3);
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 600;
}

.gac-app .gac-check input,
.gac-app .gac-radio input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    accent-color: var(--gac-primary);
}

.gac-app .gac-switch {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 28px;
    flex: 0 0 auto;
}

.gac-app .gac-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gac-app .gac-switch__track {
    width: 100%;
    height: 100%;
    border-radius: var(--gac-radius-pill);
    background: #b7c6ce;
    transition: background-color 180ms ease;
}

.gac-app .gac-switch__track::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    content: "";
    transition: transform 180ms ease;
}

.gac-app .gac-switch input:checked + .gac-switch__track {
    background: var(--gac-primary);
}

.gac-app .gac-switch input:checked + .gac-switch__track::after {
    transform: translateX(20px);
}

.gac-app .gac-switch input:focus-visible + .gac-switch__track {
    outline: 3px solid rgba(62, 121, 244, 0.38);
    outline-offset: 3px;
}

.gac-app .gac-phone-control {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
}

.gac-app .gac-phone-control__code {
    display: flex;
    height: 54px;
    padding: 0 13px;
    align-items: center;
    border-right: 1px solid var(--gac-border);
    font-weight: 800;
}

.gac-app .gac-otp {
    display: grid;
    margin-block: var(--gac-space-5);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-otp__input {
    width: 100%;
    height: 62px;
    padding: 0;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    outline: 0;
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    caret-color: var(--gac-primary);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.gac-app .gac-otp__input:focus {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-resend {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--gac-text-muted);
    font-size: 12px;
}

.gac-app .gac-resend button {
    min-height: 44px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-weight: 800;
}

.gac-app .gac-or {
    display: grid;
    margin-block: var(--gac-space-5);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--gac-space-3);
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gac-app .gac-or::before,
.gac-app .gac-or::after {
    height: 1px;
    background: var(--gac-border);
    content: "";
}

.gac-app .gac-social-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gac-space-3);
}

.gac-app .gac-social-btn {
    display: flex;
    min-height: 50px;
    padding: 0 var(--gac-space-4);
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    color: var(--gac-text);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
    font-size: 12px;
    font-weight: 700;
}

.gac-app .gac-social-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gac-app .gac-social-row > :only-child {
    grid-column: 1 / -1;
}

.gac-app .gac-auth__trust,
.gac-app .gac-trust-row {
    display: flex;
    margin-top: var(--gac-space-5);
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-5);
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 600;
}

.gac-app .gac-trust-row__item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.gac-app .gac-auth__legal {
    margin-top: var(--gac-space-5);
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.55;
    text-align: center;
}

.gac-app .gac-auth__legal a {
    color: var(--gac-primary);
    font-weight: 700;
}

.gac-app .gac-auth-divider {
    display: grid;
    margin-block: 4px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--gac-space-3);
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gac-app .gac-auth-divider::before,
.gac-app .gac-auth-divider::after {
    height: 1px;
    background: var(--gac-border);
    content: "";
}

.gac-app .gac-auth-switch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gac-app .gac-auth-switch p {
    color: var(--gac-text-muted);
    font-size: 11px;
}

.gac-app .gac-auth-back {
    display: grid;
    width: 46px;
    height: 46px;
    margin: -8px 0 4px -10px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-text);
    background: transparent;
}

.gac-app .gac-captcha {
    min-height: 0;
    overflow: hidden;
}

/* Shared loading, feedback, dialogs and sheets */
.gac-app .gac-progress {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border-radius: var(--gac-radius-pill);
    background: var(--gac-surface-muted);
}

.gac-app .gac-progress__bar {
    width: var(--gac-progress, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gac-secondary), var(--gac-primary-dark));
    transition: width 300ms ease;
}

.gac-app .gac-spinner {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(62, 121, 244, 0.18);
    border-top-color: var(--gac-primary);
    border-radius: 50%;
    animation: gac-spin 760ms linear infinite;
}

.gac-app .gac-loading-page {
    display: grid;
    min-height: 50vh;
    place-items: center;
}

.gac-app .gac-loader > span,
.gac-app .gac-inline-loader {
    display: block;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(62, 121, 244, 0.18);
    border-top-color: var(--gac-primary);
    border-radius: 50%;
    animation: gac-spin 760ms linear infinite;
}

.gac-app .gac-loader:has(> span)::after {
    display: none;
}

.gac-app .gac-loader > p {
    margin-top: 48px;
    color: var(--gac-text-muted);
    font-size: 12px;
}

.gac-app .gac-inline-loader {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.gac-app .gac-shimmer {
    position: relative;
    overflow: hidden;
    color: transparent !important;
    border-color: transparent !important;
    background: #e5eef3 !important;
    box-shadow: none !important;
}

.gac-app .gac-shimmer::after {
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
    content: "";
    animation: gac-shimmer 1.35s infinite;
}

.gac-app .gac-skeleton-line {
    height: 12px;
    border-radius: var(--gac-radius-xs);
}

.gac-app .gac-skeleton-line--short {
    width: 56%;
}

.gac-app .gac-skeleton-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.gac-app .gac-shimmer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-shimmer-card {
    width: 100%;
    min-height: 142px;
    border-radius: var(--gac-radius-lg);
}

.gac-app .gac-empty,
.gac-app .gac-error-state {
    display: flex;
    min-height: 54vh;
    padding: var(--gac-space-7) var(--gac-space-5);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-3);
    text-align: center;
}

.gac-app .gac-empty__art,
.gac-app .gac-error-state__art {
    display: grid;
    width: 116px;
    height: 116px;
    margin-bottom: var(--gac-space-2);
    overflow: hidden;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
    font-size: 40px;
}

.gac-app .gac-empty__art img,
.gac-app .gac-error-state__art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gac-app .gac-empty__title,
.gac-app .gac-error-state__title {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-empty__copy,
.gac-app .gac-error-state__copy {
    max-width: 300px;
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.gac-app .gac-empty-icon {
    display: grid;
    width: 116px;
    height: 116px;
    margin-bottom: var(--gac-space-2);
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
    font-size: 40px;
}

.gac-app .gac-empty > h2 {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-empty > p {
    max-width: 300px;
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.gac-app .gac-overlay {
    position: fixed;
    z-index: 90;
    inset: 0;
    display: grid;
    width: min(100vw, 480px);
    margin-inline: auto;
    padding: var(--gac-space-4);
    place-items: center;
    background: var(--gac-scrim);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.gac-app .gac-overlay.is-open,
.gac-app .gac-overlay[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.gac-app .gac-dialog {
    width: min(100%, 356px);
    padding: var(--gac-space-5);
    border-radius: var(--gac-radius-xl);
    background: var(--gac-surface);
    box-shadow: 0 24px 60px rgba(7, 20, 43, 0.26);
    transform: translateY(14px) scale(0.98);
    transition: transform 180ms ease;
}

.gac-app .gac-overlay.is-open .gac-dialog,
.gac-app .gac-overlay[aria-hidden="false"] .gac-dialog {
    transform: none;
}

.gac-app .gac-dialog__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: var(--gac-space-4);
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
    font-size: 28px;
}

.gac-app .gac-dialog__icon--danger {
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-dialog__title {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-dialog__copy {
    margin-top: var(--gac-space-2);
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.gac-app .gac-dialog__actions {
    display: grid;
    margin-top: var(--gac-space-5);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gac-space-3);
}

.gac-app .gac-modal-overlay {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    width: min(100vw, 480px);
    margin-inline: auto;
    padding: var(--gac-space-4);
    place-items: center;
    background: var(--gac-scrim);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.gac-app .gac-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.gac-app .gac-modal-overlay .gac-modal {
    position: relative;
    transform: translateY(14px) scale(0.98);
    transition: transform 180ms ease;
}

.gac-app .gac-modal-overlay.is-open .gac-modal {
    transform: none;
}

.gac-app .gac-modal-close {
    position: absolute;
    top: 8px;
    right: 8px;
}

.gac-app .gac-modal-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: var(--gac-space-4);
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
    font-size: 28px;
}

.gac-app .gac-modal > h2,
.gac-app .gac-modal-title {
    padding-right: 34px;
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-modal-copy {
    margin-top: var(--gac-space-2);
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.gac-app .gac-modal-actions {
    display: grid;
    margin-top: var(--gac-space-5);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gac-space-3);
}

.gac-app .gac-sheet {
    position: fixed;
    z-index: 100;
    right: 50%;
    bottom: 0;
    width: min(100vw, 480px);
    max-height: min(88vh, 720px);
    padding: 10px var(--gac-space-5) max(20px, env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    transform: translate(50%, 105%);
    border-radius: var(--gac-radius-xl) var(--gac-radius-xl) 0 0;
    background: var(--gac-surface);
    box-shadow: 0 -16px 46px rgba(7, 20, 43, 0.22);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gac-app .gac-sheet.is-open,
.gac-app .gac-sheet[aria-hidden="false"] {
    transform: translate(50%, 0);
}

.gac-app .gac-sheet__handle {
    width: 42px;
    height: 4px;
    margin: 0 auto var(--gac-space-5);
    border-radius: var(--gac-radius-pill);
    background: var(--gac-border);
}

.gac-app .gac-sheet__head {
    display: flex;
    margin-bottom: var(--gac-space-5);
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
}

.gac-app .gac-sheet__title {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-sheet-overlay {
    padding: 0;
    align-items: end;
}

.gac-app .gac-sheet-overlay .gac-sheet {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-height: min(88vh, 720px);
    transform: translateY(105%);
}

.gac-app .gac-sheet-overlay.is-open .gac-sheet {
    transform: none;
}

.gac-app .gac-sheet-handle {
    width: 42px;
    height: 4px;
    margin: 0 auto var(--gac-space-4);
    border-radius: var(--gac-radius-pill);
    background: var(--gac-border);
}

.gac-app .gac-sheet > header {
    display: flex;
    margin-bottom: var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
}

.gac-app .gac-sheet > header h2 {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-sheet-body {
    min-height: 0;
}

.gac-app .gac-sheet-form {
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-sheet-search {
    position: sticky;
    z-index: 2;
    top: 0;
    padding-bottom: 10px;
    background: var(--gac-surface);
}

.gac-app .gac-sheet-backdrop,
.gac-app .gac-drawer-backdrop {
    position: fixed;
    z-index: 89;
    inset: 0;
    width: min(100vw, 480px);
    margin-inline: auto;
    border: 0;
    background: var(--gac-scrim);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.gac-app .gac-sheet-backdrop.is-open,
.gac-app .gac-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.gac-app .gac-drawer {
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: max(calc((100vw - 480px) / 2), 0px);
    width: min(84vw, 360px);
    padding: max(20px, env(safe-area-inset-top, 0px)) var(--gac-space-5) max(20px, env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    transform: translateX(-105%);
    border-radius: 0 var(--gac-radius-xl) var(--gac-radius-xl) 0;
    background: var(--gac-surface);
    box-shadow: 16px 0 46px rgba(7, 20, 43, 0.2);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gac-app .gac-drawer.is-open,
.gac-app .gac-drawer[aria-hidden="false"] {
    transform: none;
}

.gac-app .gac-toast {
    position: fixed;
    z-index: 120;
    right: 50%;
    bottom: calc(var(--gac-nav-height) + 18px + env(safe-area-inset-bottom, 0px));
    display: flex;
    width: min(calc(100vw - 28px), 452px);
    min-height: 52px;
    padding: 10px 12px;
    transform: translate(50%, 20px);
    align-items: center;
    gap: var(--gac-space-3);
    border-radius: var(--gac-radius-md);
    color: #ffffff;
    background: #10213e;
    box-shadow: 0 14px 34px rgba(7, 20, 43, 0.28);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.gac-app .gac-toast.is-visible,
.gac-app .gac-toast[aria-hidden="false"] {
    transform: translate(50%, 0);
    opacity: 1;
    visibility: visible;
}

.gac-app .gac-toast--success {
    background: var(--gac-success);
}

.gac-app .gac-toast--danger {
    background: var(--gac-danger);
}

.gac-app .gac-toast__icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.gac-app .gac-toast__action {
    min-height: 40px;
    margin-left: auto;
    padding-inline: 8px;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.gac-app .gac-toast-host {
    position: fixed;
    z-index: 140;
    right: 50%;
    bottom: calc(var(--gac-nav-height) + 18px + env(safe-area-inset-bottom, 0px));
    display: flex;
    width: min(calc(100vw - 28px), 452px);
    transform: translateX(50%);
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.gac-app .gac-toast-host .gac-toast {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    transform: translateY(20px);
    pointer-events: auto;
}

.gac-app .gac-toast-host .gac-toast.is-visible {
    transform: none;
}

.gac-app .gac-toast.is-error {
    background: var(--gac-danger);
}

.gac-app .gac-toast.is-success {
    background: var(--gac-success);
}

/* Home */
.gac-app .gac-home-appbar {
    display: block;
}

.gac-app .gac-location-title {
    display: flex;
    min-width: 0;
    min-height: 46px;
    padding: 0;
    flex: 1 1 auto;
    align-items: center;
    gap: 8px;
    border: 0;
    color: var(--gac-text);
    background: transparent;
    text-align: left;
}

.gac-app .gac-location-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-location-title > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
}

.gac-app .gac-location-title small {
    color: var(--gac-text-muted);
    font-size: 9px;
    font-weight: 500;
}

.gac-app .gac-location-title strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-availability-warning {
    display: grid;
    margin-bottom: var(--gac-space-4);
    padding: 11px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border: 1px solid #ffe19a;
    border-radius: var(--gac-radius-md);
    color: #704d00;
    background: var(--gac-warning-soft);
}

.gac-app .gac-availability-warning > svg {
    width: 22px;
    color: var(--gac-warning);
}

.gac-app .gac-availability-warning strong,
.gac-app .gac-availability-warning span {
    display: block;
}

.gac-app .gac-availability-warning strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-availability-warning span {
    margin-top: 2px;
    font-size: 9px;
    line-height: 1.4;
    opacity: 0.8;
}

.gac-app .gac-availability-warning button {
    min-height: 40px;
    padding-inline: 8px;
    border: 0;
    color: #704d00;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-home-appbar__location {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.gac-app .gac-home-appbar__pin {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-home-appbar__copy {
    min-width: 0;
}

.gac-app .gac-home-appbar__eyebrow {
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.25;
}

.gac-app .gac-home-appbar__address {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 3px;
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.gac-app .gac-home-appbar__address span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-service-alert {
    display: grid;
    margin-bottom: var(--gac-space-4);
    padding: 12px;
    grid-template-columns: 38px minmax(0, 1fr) 36px;
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid #ffe19a;
    border-radius: var(--gac-radius-md);
    color: #704d00;
    background: var(--gac-warning-soft);
}

.gac-app .gac-service-alert--success {
    color: var(--gac-success);
    border-color: #bcdcbc;
    background: var(--gac-success-soft);
}

.gac-app .gac-service-alert__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(249, 168, 37, 0.13);
}

.gac-app .gac-service-alert__title {
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-service-alert__copy {
    margin-top: 2px;
    color: currentColor;
    font-size: 10px;
    line-height: 1.35;
    opacity: 0.8;
}

.gac-app .gac-home-carousel,
.gac-app .gac-carousel {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface-muted);
    box-shadow: var(--gac-shadow-sm);
}

.gac-app .gac-carousel__track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gac-app .gac-carousel__slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    overflow: hidden;
    scroll-snap-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #5b8cff, #3e6fe0);
}

.gac-app .gac-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-carousel__slide::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 34, 81, 0.48), rgba(8, 34, 81, 0.02) 72%);
    pointer-events: none;
    content: "";
}

.gac-app .gac-carousel__content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: var(--gac-space-5);
    width: min(58%, 250px);
    transform: translateY(-50%);
}

.gac-app .gac-carousel__eyebrow {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.gac-app .gac-carousel__title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.35px;
}

.gac-app .gac-carousel__copy {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 10px;
    line-height: 1.4;
}

.gac-app .gac-carousel__dots {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 10px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.gac-app .gac-carousel__dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.54);
    transition: width 160ms ease, background-color 160ms ease;
}

.gac-app .gac-carousel__dot.is-active,
.gac-app .gac-carousel__dot[aria-current="true"] {
    width: 18px;
    background: #ffffff;
}

.gac-app .gac-feature-grid {
    display: grid;
    margin-top: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-feature-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 160px;
    padding: var(--gac-space-4);
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    border-radius: var(--gac-radius-lg);
    color: #ffffff;
    background: linear-gradient(145deg, #5b8cff 0%, #3e6fe0 100%);
    box-shadow: 0 10px 20px rgba(62, 111, 224, 0.2);
    text-align: left;
    transition: filter 160ms ease, transform 160ms ease;
}

.gac-app .gac-feature-card:hover {
    filter: saturate(1.06) brightness(1.025);
}

.gac-app .gac-feature-card:active {
    transform: scale(0.985);
}

.gac-app .gac-feature-card--violet {
    background: linear-gradient(145deg, #7c4dff 0%, #534ab7 100%);
    box-shadow: 0 10px 20px rgba(83, 74, 183, 0.22);
}

.gac-app .gac-feature-card--teal {
    background: linear-gradient(145deg, #00d4ff 0%, #0f6e56 100%);
    box-shadow: 0 10px 20px rgba(15, 110, 86, 0.22);
}

.gac-app .gac-feature-card--amber {
    background: linear-gradient(145deg, #f59e0b 0%, #854f0b 100%);
    box-shadow: 0 10px 20px rgba(133, 79, 11, 0.22);
}

.gac-app .gac-feature-card--coral {
    background: linear-gradient(145deg, #ff6b6b 0%, #d85a30 100%);
    box-shadow: 0 10px 20px rgba(216, 90, 48, 0.22);
}

.gac-app .gac-feature-card--emerald {
    background: linear-gradient(145deg, #22c55e 0%, #15803d 100%);
    box-shadow: 0 10px 20px rgba(21, 128, 61, 0.22);
}

.gac-app .gac-feature-card.is-blue {
    background: linear-gradient(145deg, #5b8cff, #3e6fe0);
    box-shadow: 0 10px 20px rgba(62, 111, 224, 0.2);
}

.gac-app .gac-feature-card.is-violet {
    background: linear-gradient(145deg, #7c4dff, #534ab7);
    box-shadow: 0 10px 20px rgba(83, 74, 183, 0.22);
}

.gac-app .gac-feature-card.is-emerald {
    background: linear-gradient(145deg, #22c55e, #15803d);
    box-shadow: 0 10px 20px rgba(21, 128, 61, 0.22);
}

.gac-app .gac-feature-card.is-amber {
    background: linear-gradient(145deg, #f59e0b, #854f0b);
    box-shadow: 0 10px 20px rgba(133, 79, 11, 0.22);
}

.gac-app .gac-feature-card__icon {
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    background: rgba(255, 255, 255, 0.18);
    font-size: 20px;
    backdrop-filter: blur(6px);
}

.gac-app .gac-feature-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    font-size: 20px;
    backdrop-filter: blur(6px);
}

.gac-app .gac-feature-card__title {
    position: relative;
    z-index: 1;
    max-width: 76%;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.gac-app .gac-feature-card__copy {
    position: relative;
    z-index: 1;
    max-width: 76%;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.35;
}

.gac-app .gac-feature-card__image {
    position: absolute;
    right: -5px;
    bottom: -2px;
    width: 47%;
    height: 58%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.gac-app .gac-feature-card__arrow {
    position: absolute;
    z-index: 1;
    bottom: 12px;
    left: 14px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.gac-app .gac-tollfree {
    position: relative;
    display: grid;
    min-height: 104px;
    margin-top: var(--gac-space-5);
    padding: var(--gac-space-5);
    overflow: hidden;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border-radius: var(--gac-radius-lg);
    color: #ffffff;
    background: linear-gradient(135deg, var(--gac-primary) 0%, var(--gac-primary-dark) 100%);
    box-shadow: var(--gac-shadow-primary);
}

.gac-app .gac-tollfree::after {
    position: absolute;
    top: -58px;
    right: -40px;
    width: 148px;
    height: 148px;
    border: 24px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.gac-app .gac-tollfree__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    font-size: 22px;
}

.gac-app .gac-tollfree__label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 600;
}

.gac-app .gac-tollfree__number {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-tollfree__action {
    position: relative;
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-primary-dark);
    background: #ffffff;
}

/* Runtime class contract aliases (kept terse for the API-rendered SPA) */
.gac-app .gac-scroll {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    /* This main grows with its content on mobile. Let touch gestures reach the
       document when it has no inner scroll range; overlays lock separately. */
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
}

.gac-app .gac-scroll.has-bottom-nav {
    padding-bottom: calc(var(--gac-nav-height) + 18px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-scroll.has-sticky-actions {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-scroll.has-bottom-nav.has-sticky-actions {
    padding-bottom: calc(var(--gac-nav-height) + 92px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-content {
    position: relative;
    width: 100%;
    padding: var(--gac-space-4);
}

.gac-app .gac-content.has-bottom-nav {
    padding-bottom: calc(var(--gac-nav-height) + 28px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-appbar-row {
    display: flex;
    min-width: 0;
    min-height: var(--gac-appbar-height);
    align-items: center;
    gap: var(--gac-space-2);
}

.gac-app .gac-appbar-back {
    display: inline-grid;
    width: 46px;
    min-width: 46px;
    height: 46px;
    margin-left: -10px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: currentColor;
    background: transparent;
}

.gac-app .gac-appbar-title {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    color: currentColor;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-appbar-subtitle {
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-appbar-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 2px;
}

.gac-app .gac-bottom-nav-item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 58px;
    padding: 6px 3px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    border-radius: var(--gac-radius-lg);
    color: var(--gac-text-muted);
    background: transparent;
    font-size: 10px;
    font-weight: 600;
}

.gac-app .gac-bottom-nav-item svg,
.gac-app .gac-bottom-nav-item i {
    width: 23px;
    height: 23px;
    font-size: 22px;
}

.gac-app .gac-bottom-nav-item.is-active,
.gac-app .gac-bottom-nav-item[aria-current="page"] {
    color: var(--gac-primary);
    background: linear-gradient(180deg, rgba(62, 121, 244, 0.11), rgba(62, 121, 244, 0.035));
    font-weight: 800;
}

.gac-app .gac-btn.primary {
    color: #ffffff;
    border-color: transparent;
    background: linear-gradient(145deg, var(--gac-primary), var(--gac-primary-dark));
    box-shadow: var(--gac-shadow-primary);
}

.gac-app .gac-btn.outline {
    color: var(--gac-primary);
    border-color: var(--gac-primary);
    background: var(--gac-surface);
    box-shadow: none;
}

.gac-app .gac-btn.danger {
    color: #ffffff;
    border-color: transparent;
    background: var(--gac-danger);
    box-shadow: 0 10px 22px rgba(198, 40, 40, 0.2);
}

.gac-app .gac-input,
.gac-app .gac-select,
.gac-app .gac-textarea {
    width: 100%;
    min-height: var(--gac-input-height);
    padding: 0 var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    outline: 0;
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 14px;
    font-weight: 500;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.gac-app .gac-input:focus,
.gac-app .gac-select:focus,
.gac-app .gac-textarea:focus {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-input::placeholder,
.gac-app .gac-textarea::placeholder {
    color: #8aa0ad;
}

.gac-app .gac-select {
    appearance: none;
    padding-right: 42px;
    background-image: linear-gradient(45deg, transparent 50%, var(--gac-text-muted) 50%), linear-gradient(135deg, var(--gac-text-muted) 50%, transparent 50%);
    background-position: calc(100% - 20px) 24px, calc(100% - 15px) 24px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
}

.gac-app .gac-textarea {
    min-height: 112px;
    padding-block: var(--gac-space-4);
    resize: vertical;
}

.gac-app .gac-loader {
    display: grid;
    min-height: 48vh;
    place-items: center;
}

.gac-app .gac-loader::after {
    width: 34px;
    height: 34px;
    border: 3px solid rgba(62, 121, 244, 0.18);
    border-top-color: var(--gac-primary);
    border-radius: 50%;
    content: "";
    animation: gac-spin 760ms linear infinite;
}

.gac-app .gac-splash-progress {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: max(34px, env(safe-area-inset-bottom, 0px));
    left: 28px;
    height: 4px;
    overflow: hidden;
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.26);
}

.gac-app .gac-splash-progress::after {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    content: "";
    animation: gac-progress 1.45s ease-in-out infinite;
}

.gac-app .gac-splash-progress > span {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    animation: gac-progress 1.45s ease-in-out infinite;
}

.gac-app .gac-splash-progress:has(> span)::after {
    display: none;
}

.gac-app .gac-noscript {
    position: fixed;
    z-index: 200;
    right: 50%;
    bottom: 18px;
    width: min(calc(100vw - 28px), 452px);
    padding: var(--gac-space-4);
    transform: translateX(50%);
    border-radius: var(--gac-radius-md);
    color: #ffffff;
    background: var(--gac-danger);
    box-shadow: var(--gac-shadow-md);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.gac-app.gac-is-booting {
    overflow: hidden;
}

.gac-app .gac-modal {
    width: min(100%, 356px);
    padding: var(--gac-space-5);
    border-radius: var(--gac-radius-xl);
    background: var(--gac-surface);
    box-shadow: 0 24px 60px rgba(7, 20, 43, 0.26);
}

/* Home runtime aliases */
.gac-app .gac-home {
    padding-bottom: calc(var(--gac-nav-height) + 28px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gac-app .gac-carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #5b8cff, #3e6fe0);
    opacity: 0;
    visibility: hidden;
    transition: opacity 320ms ease, visibility 320ms ease;
}

.gac-app .gac-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-carousel-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.gac-app .gac-carousel-dots {
    bottom: 2px;
    gap: 0;
}

.gac-app .gac-carousel-dots > button {
    position: relative;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    border-radius: var(--gac-radius-pill);
    background: transparent;
}

.gac-app .gac-carousel-dots > button::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.58);
    content: "";
    transition: width 160ms ease, background-color 160ms ease;
}

.gac-app .gac-carousel-dots > button.is-active {
    width: 28px;
    background: transparent;
}

.gac-app .gac-carousel-dots > button.is-active::before {
    width: 18px;
    background: #ffffff;
}

.gac-app .gac-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #5b8cff, #3e6fe0);
}

.gac-app .gac-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-carousel-dots {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 10px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.gac-app .gac-carousel-dots span {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.54);
}

.gac-app .gac-carousel-dots .is-active,
.gac-app .gac-carousel-dots [aria-current="true"] {
    width: 18px;
    background: #ffffff;
}

.gac-app .gac-dots {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 10px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.gac-app .gac-dots button,
.gac-app .gac-dots span {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.54);
}

.gac-app .gac-dots .is-active,
.gac-app .gac-dots [aria-current="true"] {
    width: 18px;
    background: #ffffff;
}

.gac-app .gac-feature-card-art {
    position: absolute;
    right: -5px;
    bottom: -2px;
    width: 47%;
    height: 58%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.gac-app .gac-feature-card-title {
    position: relative;
    z-index: 1;
    max-width: 76%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.gac-app .gac-feature-card-subtitle {
    position: relative;
    z-index: 1;
    max-width: 76%;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.35;
}

.gac-app .gac-feature-card-arrow {
    position: absolute;
    z-index: 2;
    bottom: 12px;
    left: 14px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.gac-app .gac-feature-art {
    position: absolute;
    right: -5px;
    bottom: -2px;
    width: 47%;
    height: 58%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.18));
}

.gac-app .gac-feature-title {
    position: relative;
    z-index: 1;
    max-width: 76%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.gac-app .gac-feature-subtitle {
    position: relative;
    z-index: 1;
    max-width: 76%;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.35;
}

.gac-app .gac-feature-arrow {
    position: absolute;
    z-index: 2;
    bottom: 12px;
    left: 14px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.gac-app .gac-consult-card {
    position: relative;
    display: block;
    min-height: 112px;
    margin-top: var(--gac-space-5);
    padding: var(--gac-space-5);
    overflow: hidden;
    border-radius: var(--gac-radius-lg);
    color: #ffffff;
    background: linear-gradient(135deg, var(--gac-primary), var(--gac-primary-dark));
    box-shadow: var(--gac-shadow-primary);
}

.gac-app .gac-consult-card > h2 {
    position: relative;
    z-index: 1;
    max-width: 310px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.gac-app .gac-consult-card > p {
    position: relative;
    z-index: 1;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.gac-app .gac-consult-card::after {
    position: absolute;
    top: -58px;
    right: -40px;
    width: 148px;
    height: 148px;
    border: 24px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.gac-app .gac-consult-card-services,
.gac-app .gac-consult-card-email {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.gac-app .gac-consult-card-services {
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
}

.gac-app .gac-consult-card-email {
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-consult-services {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
}

.gac-app .gac-consult-services {
    display: flex;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 7px;
}

.gac-app .gac-consult-services > span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.gac-app .gac-consult-services svg {
    width: 13px;
    height: 13px;
}

.gac-app .gac-consult-email {
    position: relative;
    z-index: 1;
    display: inline-flex;
    max-width: 100%;
    min-height: 44px;
    margin-top: 12px;
    padding: 7px 12px;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: var(--gac-radius-sm);
    background: rgba(255, 255, 255, 0.16);
}

/* Offers */
.gac-app .gac-offers,
.gac-app .gac-offer-detail {
    min-height: 100%;
}

.gac-app .gac-offer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--gac-space-4);
}

.gac-app .gac-offer-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(213, 227, 236, 0.9);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-sm);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gac-app .gac-offer-card:hover {
    border-color: rgba(62, 121, 244, 0.35);
    box-shadow: var(--gac-shadow-md);
    transform: translateY(-1px);
}

.gac-app .gac-offer-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.2;
    overflow: hidden;
    background: var(--gac-surface-muted);
}

.gac-app .gac-offer-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.2;
    overflow: hidden;
    background: var(--gac-surface-muted);
}

.gac-app .gac-offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-offer-card-image::after {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(transparent, rgba(7, 20, 43, 0.22));
    pointer-events: none;
    content: "";
}

.gac-app .gac-offer-card-body {
    padding: var(--gac-space-4);
}

.gac-app .gac-offer-body {
    padding: var(--gac-space-4);
}

.gac-app .gac-offer-card-title {
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.gac-app .gac-offer-card-copy {
    display: -webkit-box;
    margin-top: 5px;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-offer-card-meta {
    display: flex;
    margin-top: var(--gac-space-3);
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 600;
}

.gac-app .gac-offer-detail-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gac-surface-muted);
}

.gac-app .gac-offer-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-offer-detail-body {
    position: relative;
    z-index: 1;
    margin-top: -22px;
    padding: var(--gac-space-5) var(--gac-space-4) calc(var(--gac-space-7) + env(safe-area-inset-bottom, 0px));
    border-radius: var(--gac-radius-xl) var(--gac-radius-xl) 0 0;
    background: var(--gac-surface);
}

.gac-app .gac-coupon-box {
    display: grid;
    margin-block: var(--gac-space-5);
    padding: var(--gac-space-4);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px dashed var(--gac-primary);
    border-radius: var(--gac-radius-md);
    background: var(--gac-blue-soft);
}

.gac-app .gac-coupon-box__code {
    color: var(--gac-primary-dark);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.07em;
}

.gac-app .gac-coupon-box__copy {
    min-height: 40px;
    padding-inline: 12px;
    border: 0;
    border-radius: var(--gac-radius-sm);
    color: #ffffff;
    background: var(--gac-primary);
    font-size: 10px;
    font-weight: 800;
}

/* Brand directory */
.gac-app .gac-brand-header {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(155deg, var(--gac-secondary), var(--gac-primary) 52%, var(--gac-primary-dark));
}

.gac-app .gac-brand-header::before {
    position: absolute;
    top: -92px;
    right: -76px;
    width: 218px;
    height: 218px;
    border: 32px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.gac-app .gac-brand-hero {
    position: relative;
    z-index: 1;
    padding: var(--gac-space-5) var(--gac-space-4) 32px;
}

.gac-app .gac-brand-hero-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-brand-hero-copy {
    max-width: 300px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
}

.gac-app .gac-brand-search {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 54px;
    margin: -27px var(--gac-space-4) var(--gac-space-5);
    padding-inline: var(--gac-space-4);
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid rgba(213, 227, 236, 0.8);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-md);
}

.gac-app .gac-brand-search input {
    width: 100%;
    min-width: 0;
    height: 52px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.gac-app .gac-brand-list {
    display: grid;
    padding: 0 var(--gac-space-4) calc(var(--gac-space-7) + env(safe-area-inset-bottom, 0px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-brand-item {
    display: flex;
    min-width: 0;
    min-height: 132px;
    padding: var(--gac-space-4);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    color: var(--gac-text);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gac-app .gac-brand-item:hover {
    border-color: rgba(62, 121, 244, 0.4);
    box-shadow: var(--gac-shadow-sm);
    transform: translateY(-1px);
}

.gac-app .gac-brand-logo {
    display: grid;
    width: 78px;
    height: 62px;
    padding: 7px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    background: #ffffff;
}

.gac-app .gac-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Search, product catalogue and list/grid switcher */
.gac-app .gac-search {
    min-height: 100%;
}

.gac-app .gac-search-box {
    position: relative;
    display: flex;
    min-height: var(--gac-input-height);
    padding: 0 8px 0 var(--gac-space-4);
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-search-box:focus-within {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-search-box input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.gac-app .gac-search-suggestions,
.gac-app .gac-search-recent {
    display: flex;
    margin-top: var(--gac-space-5);
    flex-direction: column;
}

.gac-app .gac-search-row {
    display: grid;
    min-height: 54px;
    padding: 8px 4px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    align-items: center;
    gap: var(--gac-space-3);
    border-bottom: 1px solid var(--gac-border);
    color: var(--gac-text);
    background: transparent;
    font-size: 12px;
    text-align: left;
}

.gac-app .gac-product-header {
    position: relative;
    padding: var(--gac-space-5) var(--gac-space-4) var(--gac-space-6);
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(145deg, #5b8cff, #3e6fe0);
}

.gac-app .gac-product-header--violet {
    background: linear-gradient(145deg, #7c4dff, #534ab7);
}

.gac-app .gac-product-header--teal {
    background: linear-gradient(145deg, #00d4ff, #0f6e56);
}

.gac-app .gac-product-header--amber {
    background: linear-gradient(145deg, #f59e0b, #854f0b);
}

.gac-app .gac-product-header__title {
    font-size: 22px;
    font-weight: 800;
}

.gac-app .gac-product-header__count {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.gac-app .gac-product-toolbar {
    position: sticky;
    z-index: 30;
    top: calc(var(--gac-appbar-height) + env(safe-area-inset-top, 0px));
    display: flex;
    min-height: 58px;
    padding: 8px var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
    border-bottom: 1px solid rgba(213, 227, 236, 0.78);
    background: rgba(244, 248, 251, 0.95);
    backdrop-filter: blur(14px);
}

.gac-app .gac-product-toolbar-count {
    color: var(--gac-text-muted);
    font-size: 12px;
    font-weight: 600;
}

.gac-app .gac-product-toolbar-actions {
    display: flex;
    gap: 4px;
}

.gac-app .gac-product-toolbar-actions button {
    display: grid;
    min-width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: transparent;
}

.gac-app .gac-product-toolbar-actions button.is-active {
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-product-grid {
    display: grid;
    padding: var(--gac-space-4);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid rgba(213, 227, 236, 0.9);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.gac-app .gac-product-card:hover {
    border-color: rgba(62, 121, 244, 0.38);
    box-shadow: var(--gac-shadow-sm);
    transform: translateY(-1px);
}

.gac-app .gac-product-card-image {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 0.92;
    padding: 10px;
    place-items: center;
    overflow: hidden;
    background: #f8fbfd;
}

.gac-app .gac-product-image {
    position: relative;
    display: grid;
    width: 100%;
    aspect-ratio: 1 / 0.92;
    padding: 10px;
    place-items: center;
    overflow: hidden;
    background: #f8fbfd;
}

.gac-app .gac-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-product-card-wishlist {
    position: absolute;
    z-index: 2;
    top: 7px;
    right: 7px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(213, 227, 236, 0.75);
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-product-card-wishlist.is-active,
.gac-app .gac-product-card-wishlist[aria-pressed="true"] {
    color: var(--gac-danger);
}

.gac-app .gac-product-badge,
.gac-app .gac-product-card-badge {
    position: absolute;
    z-index: 2;
    top: 9px;
    left: 8px;
    display: inline-flex;
    min-height: 22px;
    padding: 4px 8px;
    align-items: center;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: var(--gac-success);
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-product-card-body {
    display: flex;
    min-width: 0;
    padding: 11px;
    flex: 1 1 auto;
    flex-direction: column;
}

.gac-app .gac-product-body {
    display: flex;
    min-width: 0;
    padding: 11px;
    flex: 1 1 auto;
    flex-direction: column;
}

.gac-app .gac-product-card-brand {
    overflow: hidden;
    color: var(--gac-primary);
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.gac-app .gac-product-card-title {
    display: -webkit-box;
    min-height: 35px;
    margin-top: 4px;
    overflow: hidden;
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-product-prices {
    display: flex;
    margin-top: 8px;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
}

.gac-app .gac-product-price,
.gac-app .gac-product-prices-current {
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.gac-app .gac-product-mrp,
.gac-app .gac-product-prices-old {
    color: var(--gac-text-muted);
    font-size: 10px;
    text-decoration: line-through;
}

.gac-app .gac-product-discount,
.gac-app .gac-product-prices-off {
    color: var(--gac-success);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-product-meta {
    display: flex;
    margin-top: 7px;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-product-rating {
    display: inline-flex;
    min-height: 22px;
    padding: 3px 7px;
    align-items: center;
    gap: 3px;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: var(--gac-success);
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-product-list {
    display: flex;
    padding: var(--gac-space-4);
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-product-list .gac-product-card {
    display: grid;
    min-height: 146px;
    grid-template-columns: 132px minmax(0, 1fr);
}

.gac-app .gac-product-list .gac-product-card-image {
    height: 100%;
    aspect-ratio: auto;
}

.gac-app .gac-product-list .gac-product-image {
    height: 100%;
    aspect-ratio: auto;
}

.gac-app .gac-product-list .gac-product-card-title {
    min-height: 0;
    font-size: 14px;
}

.gac-app .gac-filter-bar {
    position: fixed;
    z-index: 45;
    right: 50%;
    bottom: calc(var(--gac-nav-height) + 14px + env(safe-area-inset-bottom, 0px));
    display: grid;
    width: min(calc(100vw - 56px), 360px);
    min-height: 52px;
    padding: 5px;
    transform: translateX(50%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(213, 227, 236, 0.86);
    border-radius: var(--gac-radius-pill);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--gac-shadow-md);
    backdrop-filter: blur(16px);
}

.gac-app .gac-filter-bar button {
    display: flex;
    min-width: 0;
    min-height: 42px;
    padding-inline: 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-text);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-filter-bar button + button {
    border-left: 1px solid var(--gac-border);
    border-radius: 0 var(--gac-radius-pill) var(--gac-radius-pill) 0;
}

.gac-app .gac-filter-options,
.gac-app .gac-sort-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gac-app .gac-filter-option,
.gac-app .gac-sort-option {
    display: grid;
    min-height: 50px;
    padding: 5px 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border-bottom: 1px solid var(--gac-border);
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 600;
}

.gac-app .gac-range {
    width: 100%;
    accent-color: var(--gac-primary);
}

.gac-app .gac-filter-actions {
    position: sticky;
    bottom: 0;
    display: grid;
    margin: var(--gac-space-5) calc(var(--gac-space-5) * -1) calc(max(20px, env(safe-area-inset-bottom, 0px)) * -1);
    padding: 12px var(--gac-space-5) max(12px, env(safe-area-inset-bottom, 0px));
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: var(--gac-space-3);
    border-top: 1px solid var(--gac-border);
    background: var(--gac-surface);
}

/* Product detail, wishlist and compare */
.gac-app .gac-product-detail {
    min-height: 100%;
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-product-detail-hero,
.gac-app .gac-product-gallery {
    position: relative;
    width: 100%;
    min-height: 330px;
    overflow: hidden;
    background: var(--gac-surface);
}

.gac-app .gac-product-gallery-track {
    display: flex;
    width: 100%;
    height: 330px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gac-app .gac-product-gallery-track::-webkit-scrollbar {
    display: none;
}

.gac-app .gac-product-gallery-slide {
    display: grid;
    width: 100%;
    height: 330px;
    padding: 28px;
    flex: 0 0 100%;
    place-items: center;
    scroll-snap-align: center;
}

.gac-app .gac-product-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-product-gallery-actions {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-product-gallery-dots {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 12px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.gac-app .gac-product-gallery-dots span,
.gac-app .gac-product-gallery-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: var(--gac-radius-pill);
    background: #b8c7d0;
}

.gac-app .gac-product-gallery-dots .is-active,
.gac-app .gac-product-gallery-dots [aria-current="true"] {
    width: 18px;
    background: var(--gac-primary);
}

.gac-app .gac-product-detail-body {
    position: relative;
    z-index: 3;
    margin-top: -10px;
    padding: var(--gac-space-5) var(--gac-space-4) var(--gac-space-7);
    border-radius: var(--gac-radius-xl) var(--gac-radius-xl) 0 0;
    background: var(--gac-background);
}

.gac-app .gac-product-detail-brand {
    color: var(--gac-primary);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gac-app .gac-product-detail-title {
    margin-top: 5px;
    color: var(--gac-text);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.gac-app .gac-product-detail-model {
    margin-top: 4px;
    color: var(--gac-text-muted);
    font-size: 10px;
}

.gac-app .gac-product-detail-prices {
    display: flex;
    margin-top: var(--gac-space-4);
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 8px;
}

.gac-app .gac-product-detail-prices strong {
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
}

.gac-app .gac-product-detail-prices del {
    color: var(--gac-text-muted);
    font-size: 12px;
}

.gac-app .gac-product-detail-prices em {
    color: var(--gac-success);
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
}

.gac-app .gac-product-stock {
    display: inline-flex;
    min-height: 28px;
    margin-top: var(--gac-space-3);
    padding: 5px 10px;
    align-items: center;
    gap: 5px;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-success);
    background: var(--gac-success-soft);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-product-stock.is-out {
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-spec-grid {
    display: grid;
    margin-top: var(--gac-space-5);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.gac-app .gac-spec-card {
    display: flex;
    min-width: 0;
    min-height: 82px;
    padding: 9px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    text-align: center;
}

.gac-app .gac-spec-card__icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-spec-card__value {
    overflow: hidden;
    max-width: 100%;
    color: var(--gac-text);
    font-size: 10px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-spec-card__label {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-variant-group {
    margin-top: var(--gac-space-5);
}

.gac-app .gac-variant-group__head {
    display: flex;
    margin-bottom: 9px;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.gac-app .gac-variant-group__label {
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-variant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.gac-app .gac-variant {
    display: flex;
    min-height: 48px;
    padding: 8px 11px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-sm);
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 10px;
    font-weight: 700;
    text-align: center;
}

.gac-app .gac-variant.is-active,
.gac-app .gac-variant[aria-pressed="true"],
.gac-app .gac-variant[aria-selected="true"] {
    color: var(--gac-primary-dark);
    border-color: var(--gac-primary);
    background: var(--gac-blue-soft);
    box-shadow: 0 0 0 2px rgba(62, 121, 244, 0.09);
}

.gac-app .gac-detail-section {
    margin-top: var(--gac-space-5);
    padding: var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-detail-section__title {
    margin-bottom: var(--gac-space-3);
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-detail-section__content,
.gac-app .gac-richtext {
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.gac-app .gac-richtext h2,
.gac-app .gac-richtext h3,
.gac-app .gac-richtext h4 {
    margin: var(--gac-space-5) 0 var(--gac-space-2);
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-richtext ul,
.gac-app .gac-richtext ol {
    padding-left: var(--gac-space-5);
}

.gac-app .gac-richtext img,
.gac-app .gac-richtext iframe,
.gac-app .gac-richtext table {
    max-width: 100%;
}

.gac-app .gac-file-row {
    display: grid;
    min-height: 58px;
    padding-block: 6px;
    grid-template-columns: 38px minmax(0, 1fr) 40px;
    align-items: center;
    gap: var(--gac-space-3);
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-file-row:last-child {
    border-bottom: 0;
}

.gac-app .gac-sticky-actions {
    position: fixed;
    z-index: 50;
    right: 50%;
    bottom: 0;
    display: grid;
    width: min(100vw, 480px);
    min-height: calc(82px + env(safe-area-inset-bottom, 0px));
    padding: 12px var(--gac-space-4) max(12px, env(safe-area-inset-bottom, 0px));
    transform: translateX(50%);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: var(--gac-space-3);
    align-items: center;
    border-top: 1px solid rgba(213, 227, 236, 0.86);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(35, 79, 121, 0.1);
    backdrop-filter: blur(16px);
}

.gac-app .gac-sticky-actions--single {
    grid-template-columns: minmax(0, 1fr);
}

.gac-app .gac-wishlist-grid {
    display: grid;
    padding: var(--gac-space-4);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-compare {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

.gac-app .gac-compare table,
.gac-app .gac-compare-table {
    width: max(100%, 680px);
    border-spacing: 0;
    border-collapse: separate;
    font-size: 12px;
}

.gac-app .gac-compare th,
.gac-app .gac-compare td,
.gac-app .gac-compare-table th,
.gac-app .gac-compare-table td {
    min-width: 150px;
    padding: 12px;
    border-right: 1px solid var(--gac-border);
    border-bottom: 1px solid var(--gac-border);
    background: var(--gac-surface);
    text-align: left;
    vertical-align: top;
}

.gac-app .gac-compare th:first-child,
.gac-app .gac-compare td:first-child,
.gac-app .gac-compare-table th:first-child,
.gac-app .gac-compare-table td:first-child {
    position: sticky;
    z-index: 2;
    left: 0;
    min-width: 112px;
    color: var(--gac-text-muted);
    background: var(--gac-surface-muted);
    font-weight: 700;
}

.gac-app .gac-compare-product-image {
    width: 112px;
    height: 96px;
    margin: 0 auto 8px;
    object-fit: contain;
}

/* Quantity, cart and price summary */
.gac-app .gac-qty {
    display: inline-grid;
    height: 38px;
    grid-template-columns: 38px minmax(32px, auto) 38px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-sm);
    background: var(--gac-surface);
}

.gac-app .gac-qty button {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 18px;
    font-weight: 700;
}

.gac-app .gac-qty output,
.gac-app .gac-qty input {
    width: 36px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.gac-app .gac-cart {
    min-height: 100%;
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-cart-list {
    display: flex;
    padding: var(--gac-space-4);
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-cart-item {
    position: relative;
    display: grid;
    padding: 12px;
    grid-template-columns: 24px 92px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-cart-item.is-unavailable {
    background: #f7f9fa;
    opacity: 0.7;
}

.gac-app .gac-cart-item-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 35px;
    accent-color: var(--gac-primary);
}

.gac-app .gac-cart-item-image {
    display: grid;
    width: 92px;
    height: 96px;
    padding: 6px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--gac-radius-md);
    background: #f7fafc;
}

.gac-app .gac-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-cart-item-body {
    min-width: 0;
}

.gac-app .gac-cart-item-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-cart-item-model {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-cart-item-price {
    margin-top: 7px;
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-cart-item-actions {
    display: flex;
    margin-top: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.gac-app .gac-cart-item-remove {
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    border: 0;
    color: var(--gac-danger);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-exchange-card {
    display: grid;
    margin: 0 var(--gac-space-4) var(--gac-space-4);
    padding: var(--gac-space-4);
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid #bcdcbc;
    border-radius: var(--gac-radius-lg);
    background: var(--gac-success-soft);
}

.gac-app .gac-savings-card {
    margin: 0 var(--gac-space-4) var(--gac-space-4);
    padding: 12px var(--gac-space-4);
    border-radius: var(--gac-radius-md);
    color: var(--gac-success);
    background: var(--gac-success-soft);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.gac-app .gac-cart-summary,
.gac-app .gac-price-summary {
    margin: 0 var(--gac-space-4) var(--gac-space-4);
    padding: var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-summary-title {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-summary-row {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-4);
    color: var(--gac-text-muted);
    font-size: 12px;
}

.gac-app .gac-summary-row dd,
.gac-app .gac-summary-row strong {
    margin: 0;
    color: var(--gac-text);
    font-weight: 700;
    text-align: right;
}

.gac-app .gac-summary-row--saving,
.gac-app .gac-summary-row--saving dd {
    color: var(--gac-success);
}

.gac-app .gac-summary-row--total {
    min-height: 48px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed var(--gac-border);
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-summary-row--total dd,
.gac-app .gac-summary-row--total strong {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-cart-trust {
    display: grid;
    margin: var(--gac-space-5) var(--gac-space-4);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.gac-app .gac-cart-trust__item {
    display: flex;
    min-width: 0;
    padding: 10px 4px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--gac-text-muted);
    font-size: 9px;
    font-weight: 600;
    text-align: center;
}

.gac-app .gac-cart-total,
.gac-app .gac-checkout-total {
    position: fixed;
    z-index: 50;
    right: 50%;
    bottom: 0;
    display: grid;
    width: min(100vw, 480px);
    min-height: calc(82px + env(safe-area-inset-bottom, 0px));
    padding: 11px var(--gac-space-4) max(11px, env(safe-area-inset-bottom, 0px));
    transform: translateX(50%);
    grid-template-columns: minmax(0, 0.8fr) minmax(158px, 1.2fr);
    align-items: center;
    gap: var(--gac-space-3);
    border-top: 1px solid rgba(213, 227, 236, 0.88);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 24px rgba(35, 79, 121, 0.1);
    backdrop-filter: blur(16px);
}

.gac-app .gac-cart-total-label,
.gac-app .gac-checkout-total-label {
    color: var(--gac-text-muted);
    font-size: 10px;
}

.gac-app .gac-cart-total-price,
.gac-app .gac-checkout-total-price {
    margin-top: 2px;
    color: var(--gac-text);
    font-size: 18px;
    font-weight: 800;
}

/* Checkout, coupon, payment and addresses */
.gac-app .gac-checkout {
    min-height: 100%;
    padding: var(--gac-space-4) var(--gac-space-4) calc(104px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-checkout-section {
    margin-bottom: var(--gac-space-4);
    padding: var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-checkout-section-head {
    display: flex;
    margin-bottom: var(--gac-space-3);
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
}

.gac-app .gac-checkout-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-checkout-step {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-primary);
    font-size: 10px;
}

.gac-app .gac-payment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-payment-option {
    display: grid;
    min-height: 64px;
    padding: 10px 12px;
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
}

.gac-app .gac-payment-option.is-active,
.gac-app .gac-payment-option:has(input:checked) {
    border-color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-payment-option:focus-within {
    outline: 3px solid rgba(62, 121, 244, 0.45);
    outline-offset: 2px;
}

.gac-app .gac-payment-option__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: #ffffff;
}

.gac-app .gac-payment-option__title {
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-payment-option__copy {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-payment-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--gac-primary);
}

.gac-app .gac-coupon-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.gac-app .gac-coupon-form .gac-input {
    min-height: 48px;
}

.gac-app .gac-coupon-form .gac-btn {
    min-height: 48px;
    padding-inline: var(--gac-space-4);
}

.gac-app .gac-coupon-applied {
    display: grid;
    min-height: 56px;
    padding: 8px 10px;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    border: 1px solid #bcdcbc;
    border-radius: var(--gac-radius-md);
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-address-list {
    display: flex;
    padding: var(--gac-space-4);
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-address-card {
    position: relative;
    display: grid;
    padding: var(--gac-space-4);
    grid-template-columns: 24px minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-address-card.is-active,
.gac-app .gac-address-card.is-selected,
.gac-app .gac-address-card:has(input:checked) {
    border-color: var(--gac-primary);
    background: linear-gradient(145deg, #ffffff, var(--gac-blue-soft));
    box-shadow: 0 0 0 2px rgba(62, 121, 244, 0.08), var(--gac-shadow-sm);
}

.gac-app .gac-address-card input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--gac-primary);
}

.gac-app .gac-address-card-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
}

.gac-app .gac-address-card-copy {
    margin-top: 5px;
    color: var(--gac-text-muted);
    font-size: 11px;
    line-height: 1.55;
}

.gac-app .gac-address-card-phone {
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
}

.gac-app .gac-address-card-actions {
    display: flex;
    gap: 2px;
}

.gac-app .gac-address-card-actions button {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: transparent;
}

.gac-app .gac-address-form {
    display: grid;
    padding: var(--gac-space-4);
    grid-template-columns: minmax(0, 1fr);
    gap: var(--gac-space-4);
}

.gac-app .gac-location-map {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface-muted);
}

.gac-app .gac-location-map iframe,
.gac-app .gac-location-map img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.gac-app .gac-address-type {
    display: flex;
    gap: 8px;
}

.gac-app .gac-address-type .gac-chip {
    flex: 1 1 0;
}

/* Orders, booking lifecycle and payment result */
.gac-app .gac-order-tabs {
    position: sticky;
    z-index: 30;
    top: calc(var(--gac-appbar-height) + env(safe-area-inset-top, 0px));
    display: flex;
    padding: 9px var(--gac-space-4);
    gap: 8px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(213, 227, 236, 0.78);
    background: rgba(244, 248, 251, 0.96);
    scrollbar-width: none;
    backdrop-filter: blur(14px);
}

.gac-app .gac-order-tabs::-webkit-scrollbar {
    display: none;
}

.gac-app .gac-order-tabs button,
.gac-app .gac-order-tab {
    min-height: 38px;
    padding: 0 14px;
    flex: 0 0 auto;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-pill);
    color: var(--gac-text-muted);
    background: var(--gac-surface);
    font-size: 11px;
    font-weight: 700;
}

.gac-app .gac-order-tabs button.is-active,
.gac-app .gac-order-tab.is-active,
.gac-app .gac-order-tab[aria-selected="true"] {
    color: #ffffff;
    border-color: var(--gac-primary);
    background: var(--gac-primary);
}

.gac-app .gac-order-list {
    display: flex;
    padding: var(--gac-space-4) var(--gac-space-4) calc(var(--gac-space-7) + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-order-card {
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-order-card-head {
    display: flex;
    min-height: 54px;
    padding: 10px var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-order-card-id {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-order-card-date {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-order-card-body {
    display: grid;
    padding: var(--gac-space-4);
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.gac-app .gac-order-card-image {
    display: grid;
    width: 76px;
    height: 76px;
    padding: 5px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--gac-radius-md);
    background: #f7fafc;
}

.gac-app .gac-order-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-order-card-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-order-card-meta {
    margin-top: 4px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-order-card-price {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 800;
}

.gac-app .gac-order-card-footer {
    display: flex;
    padding: 9px var(--gac-space-4) 12px;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    border-top: 1px solid var(--gac-border);
}

.gac-app .gac-order-card-footer .gac-btn {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 10px;
}

.gac-app .gac-order-overview {
    margin: var(--gac-space-4);
    padding: var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-order-status-hero {
    display: flex;
    padding: var(--gac-space-6) var(--gac-space-4);
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gac-primary-dark);
    background: linear-gradient(145deg, #ffffff, var(--gac-blue-soft));
    text-align: center;
}

.gac-app .gac-order-status {
    display: inline-flex;
    min-height: 24px;
    padding: 4px 9px;
    align-items: center;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-order-status-hero__icon {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-primary);
    box-shadow: var(--gac-shadow-primary);
    font-size: 30px;
}

.gac-app .gac-order-status-hero--success {
    color: var(--gac-success);
    background: linear-gradient(145deg, #ffffff, var(--gac-success-soft));
}

.gac-app .gac-order-status-hero--success .gac-order-status-hero__icon {
    background: var(--gac-success);
    box-shadow: 0 10px 22px rgba(46, 125, 50, 0.24);
}

.gac-app .gac-order-timeline,
.gac-app .gac-timeline {
    display: flex;
    padding: var(--gac-space-5) var(--gac-space-4);
    flex-direction: column;
}

.gac-app .gac-timeline-item,
.gac-app .gac-order-timeline-item {
    position: relative;
    display: grid;
    min-height: 76px;
    padding-bottom: 14px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
}

.gac-app .gac-timeline-item::before,
.gac-app .gac-order-timeline-item::before {
    position: absolute;
    top: 34px;
    bottom: 0;
    left: 16px;
    width: 2px;
    background: var(--gac-border);
    content: "";
}

.gac-app .gac-timeline-item:last-child::before,
.gac-app .gac-order-timeline-item:last-child::before {
    display: none;
}

.gac-app .gac-timeline-dot,
.gac-app .gac-order-timeline-dot {
    position: relative;
    z-index: 1;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 2px solid var(--gac-border);
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: var(--gac-surface);
    font-size: 12px;
}

.gac-app .gac-timeline-item.is-complete .gac-timeline-dot,
.gac-app .gac-order-timeline-item.is-complete .gac-order-timeline-dot {
    color: #ffffff;
    border-color: var(--gac-success);
    background: var(--gac-success);
}

.gac-app .gac-timeline-item.is-current .gac-timeline-dot,
.gac-app .gac-order-timeline-item.is-current .gac-order-timeline-dot {
    color: #ffffff;
    border-color: var(--gac-primary);
    background: var(--gac-primary);
    box-shadow: 0 0 0 5px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-timeline-title {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-timeline-copy,
.gac-app .gac-timeline-date {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.45;
}

.gac-app .gac-reason-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-reason-option {
    display: grid;
    min-height: 54px;
    padding: 8px 12px;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    font-size: 12px;
    font-weight: 600;
}

.gac-app .gac-reason-option:has(input:checked),
.gac-app .gac-reason-option.is-active {
    border-color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-reason-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--gac-primary);
}

.gac-app .gac-refund-card {
    display: grid;
    margin: var(--gac-space-4);
    padding: var(--gac-space-4);
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid #bcdcbc;
    border-radius: var(--gac-radius-lg);
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-invoice-row {
    display: grid;
    min-height: 66px;
    padding: 9px 0;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-thankyou,
.gac-app .gac-payment-result {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(42px, env(safe-area-inset-top, 0px)) 24px max(28px, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gac-surface);
}

.gac-app .gac-result-icon {
    position: relative;
    display: grid;
    width: 104px;
    height: 104px;
    margin-bottom: var(--gac-space-5);
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-success);
    box-shadow: 0 15px 32px rgba(46, 125, 50, 0.25);
    font-size: 40px;
}

.gac-app .gac-payment-result.is-failed .gac-result-icon {
    background: var(--gac-danger);
    box-shadow: 0 15px 32px rgba(198, 40, 40, 0.24);
}

.gac-app .gac-result-title {
    font-size: 22px;
    font-weight: 800;
}

.gac-app .gac-result-copy {
    max-width: 318px;
    margin-top: 8px;
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.gac-app .gac-result-order {
    width: 100%;
    margin-block: var(--gac-space-5);
    padding: var(--gac-space-4);
    border: 1px dashed var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-background);
}

.gac-app .gac-result-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

/* Profile, settings, notifications and contact */
.gac-app .gac-profile-hero {
    position: relative;
    display: flex;
    min-height: 196px;
    padding: calc(var(--gac-space-6) + env(safe-area-inset-top, 0px)) var(--gac-space-5) var(--gac-space-6);
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(155deg, var(--gac-secondary), var(--gac-primary) 50%, var(--gac-primary-dark));
    text-align: center;
}

.gac-app .gac-profile-hero::before,
.gac-app .gac-profile-hero::after {
    position: absolute;
    border: 24px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.gac-app .gac-profile-hero::before {
    top: -68px;
    right: -42px;
    width: 172px;
    height: 172px;
}

.gac-app .gac-profile-hero::after {
    bottom: -98px;
    left: -70px;
    width: 206px;
    height: 206px;
}

.gac-app .gac-profile-avatar,
.gac-app .gac-profile-hero .gac-avatar {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    margin-bottom: 9px;
    border: 3px solid rgba(255, 255, 255, 0.86);
    color: var(--gac-primary-dark);
    background: #ffffff;
    font-size: 22px;
}

.gac-app .gac-profile-name {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-profile-phone,
.gac-app .gac-profile-email {
    position: relative;
    z-index: 1;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.gac-app .gac-profile-body {
    position: relative;
    z-index: 2;
    margin-top: -18px;
    padding: 0 var(--gac-space-4) calc(var(--gac-nav-height) + 28px + env(safe-area-inset-bottom, 0px));
}

.gac-app .gac-menu-section {
    margin-bottom: var(--gac-space-4);
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-menu-section-title {
    padding: 12px var(--gac-space-4) 6px;
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.gac-app .gac-menu-item {
    display: grid;
    width: 100%;
    min-height: 58px;
    padding: 8px var(--gac-space-4);
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border: 0;
    border-bottom: 1px solid var(--gac-border);
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

.gac-app .gac-menu-item:last-child {
    border-bottom: 0;
}

.gac-app .gac-menu-item:hover {
    background: var(--gac-blue-soft);
}

.gac-app .gac-menu-item-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-menu-item-copy {
    min-width: 0;
}

.gac-app .gac-menu-item-copy small {
    display: block;
    margin-top: 2px;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 9px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-menu-item-arrow {
    color: #94a8b4;
}

.gac-app .gac-menu-item--danger,
.gac-app .gac-menu-item--danger .gac-menu-item-icon {
    color: var(--gac-danger);
}

.gac-app .gac-menu-item--danger .gac-menu-item-icon {
    background: var(--gac-danger-soft);
}

.gac-app .gac-profile-stats {
    display: grid;
    margin-bottom: var(--gac-space-4);
    padding: var(--gac-space-4);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-sm);
}

.gac-app .gac-profile-stat {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}

.gac-app .gac-profile-stat + .gac-profile-stat::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 1px;
    background: var(--gac-border);
    content: "";
}

.gac-app .gac-profile-stat strong {
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-profile-stat span {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-settings-list {
    display: flex;
    padding: var(--gac-space-4);
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-setting-row {
    display: grid;
    min-height: 62px;
    padding: 9px 0;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-setting-row__icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-setting-row__title {
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-setting-row__copy {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-notification-list {
    display: flex;
    padding: var(--gac-space-4);
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-notification {
    position: relative;
    display: grid;
    min-height: 82px;
    padding: 12px;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
}

.gac-app .gac-notification.is-unread {
    border-color: rgba(62, 121, 244, 0.26);
    background: var(--gac-blue-soft);
}

.gac-app .gac-notification.is-unread::after {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gac-primary);
    content: "";
}

.gac-app .gac-notification-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: #ffffff;
}

.gac-app .gac-notification-title {
    padding-right: 12px;
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-notification-copy,
.gac-app .gac-notification-time {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 9px;
    line-height: 1.4;
}

.gac-app .gac-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-contact-card {
    display: flex;
    min-height: 126px;
    padding: var(--gac-space-4);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    color: var(--gac-text);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
    text-align: center;
}

.gac-app .gac-contact-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
    font-size: 20px;
}

.gac-app .gac-contact-card__label {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-contact-card__value {
    max-width: 100%;
    overflow: hidden;
    font-size: 11px;
    font-weight: 800;
    text-overflow: ellipsis;
}

.gac-app .gac-faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-faq {
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
}

.gac-app .gac-faq summary {
    display: flex;
    min-height: 54px;
    padding: 10px var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    list-style: none;
}

.gac-app .gac-faq summary::-webkit-details-marker {
    display: none;
}

.gac-app .gac-faq summary::after {
    color: var(--gac-primary);
    content: "+";
    font-size: 18px;
}

.gac-app .gac-faq[open] summary::after {
    content: "−";
}

.gac-app .gac-faq__body {
    padding: 0 var(--gac-space-4) var(--gac-space-4);
    color: var(--gac-text-muted);
    font-size: 11px;
    line-height: 1.6;
}

/* Legal / static content */
.gac-app .gac-legal {
    padding: var(--gac-space-5) var(--gac-space-4) calc(var(--gac-space-7) + env(safe-area-inset-bottom, 0px));
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.72;
}

.gac-app .gac-legal h1 {
    margin-bottom: var(--gac-space-5);
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-legal h2,
.gac-app .gac-legal h3 {
    margin: var(--gac-space-6) 0 var(--gac-space-3);
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.gac-app .gac-legal p + p {
    margin-top: 10px;
}

.gac-app .gac-legal ul,
.gac-app .gac-legal ol {
    margin-block: 10px;
    padding-left: 20px;
}

.gac-app .gac-legal a {
    color: var(--gac-primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gac-app .gac-legal-updated {
    display: inline-flex;
    margin-bottom: var(--gac-space-5);
    padding: 5px 10px;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
    font-size: 10px;
    font-weight: 700;
}

/* Reviews and rating */
.gac-app .gac-rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--gac-warning);
}

.gac-app .gac-rating button,
.gac-app .gac-rating__star {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    color: #c8d3d9;
    background: transparent;
    font-size: 28px;
}

.gac-app .gac-rating button.is-active,
.gac-app .gac-rating button[aria-pressed="true"],
.gac-app .gac-rating__star.is-active {
    color: var(--gac-warning);
}

.gac-app .gac-rating-summary {
    display: grid;
    padding: var(--gac-space-5);
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: var(--gac-space-5);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
}

.gac-app .gac-rating-score {
    text-align: center;
}

.gac-app .gac-rating-score strong {
    display: block;
    color: var(--gac-text);
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.gac-app .gac-rating-score span {
    display: block;
    margin-top: 6px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-rating-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gac-app .gac-rating-bar {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 26px;
    align-items: center;
    gap: 6px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-rating-bar__track {
    height: 6px;
    overflow: hidden;
    border-radius: var(--gac-radius-pill);
    background: var(--gac-surface-muted);
}

.gac-app .gac-rating-bar__fill {
    width: var(--gac-rating-width, 0%);
    height: 100%;
    border-radius: inherit;
    background: var(--gac-warning);
}

.gac-app .gac-review-list {
    display: flex;
    margin-top: var(--gac-space-5);
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-review-card {
    padding: var(--gac-space-4);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-lg);
    background: var(--gac-surface);
}

.gac-app .gac-review-head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
}

.gac-app .gac-review-author {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-review-date {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-review-body {
    margin-top: var(--gac-space-3);
    color: var(--gac-text-muted);
    font-size: 11px;
    line-height: 1.6;
}

.gac-app .gac-review-media {
    display: flex;
    margin-top: var(--gac-space-3);
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gac-app .gac-review-media img {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    border-radius: var(--gac-radius-sm);
    object-fit: cover;
}

/* Image viewer */
.gac-app .gac-viewer {
    position: fixed;
    z-index: 150;
    inset: 0;
    display: grid;
    width: min(100vw, 480px);
    margin-inline: auto;
    padding: max(58px, env(safe-area-inset-top, 0px)) 14px max(24px, env(safe-area-inset-bottom, 0px));
    place-items: center;
    color: #ffffff;
    background: rgba(3, 10, 22, 0.96);
}

.gac-app .gac-viewer img {
    max-width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
}

.gac-app .gac-viewer-close {
    position: absolute;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: 10px;
    color: #ffffff;
}

/* Compact auth aliases used by the renderer */
.gac-app .gac-auth-logo {
    display: block;
    width: 128px;
    height: 82px;
    margin: 0 auto var(--gac-space-5);
    object-fit: contain;
}

.gac-app .gac-auth-title {
    margin-bottom: 8px;
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-auth-subtitle {
    margin-bottom: var(--gac-space-6);
    color: var(--gac-text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.gac-app .gac-auth-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-phone-field {
    display: grid;
    min-height: var(--gac-input-height);
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
}

.gac-app .gac-phone-field:focus-within {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-phone-field-prefix {
    display: flex;
    height: 36px;
    padding-inline: var(--gac-space-4);
    align-items: center;
    border-right: 1px solid var(--gac-border);
    font-weight: 800;
}

.gac-app .gac-phone-field input {
    width: 100%;
    height: 54px;
    padding-inline: var(--gac-space-4);
    border: 0;
    outline: 0;
    background: transparent;
}

.gac-app .gac-auth-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gac-space-3);
}

.gac-app .gac-auth-social button {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
    font-size: 12px;
    font-weight: 700;
}

.gac-app .gac-auth-social img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.gac-app .gac-auth-wave {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: min(76vw, 365px);
    height: 180px;
    overflow: hidden;
    border-radius: 100% 0 0;
    background: rgba(156, 197, 255, 0.3);
    pointer-events: none;
}

.gac-app .gac-auth-wave::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 76%;
    height: 72%;
    border-radius: 100% 0 0;
    background: linear-gradient(145deg, var(--gac-secondary), var(--gac-primary-dark));
    content: "";
}

.gac-app .gac-auth-features {
    display: flex;
    margin-top: var(--gac-space-5);
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-5);
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 600;
}

.gac-app .gac-auth .gac-logo {
    display: block;
    width: 128px;
    height: 82px;
    margin: 0 auto var(--gac-space-5);
    object-fit: contain;
}

.gac-app .gac-auth .gac-title {
    margin-bottom: 8px;
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-auth .gac-subtitle {
    margin-bottom: var(--gac-space-6);
    color: var(--gac-text-muted);
    font-size: 14px;
    line-height: 1.55;
}

.gac-app .gac-auth .gac-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gac-space-3);
}

.gac-app .gac-auth .gac-wave {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: min(76vw, 365px);
    height: 180px;
    border-radius: 100% 0 0;
    background: linear-gradient(145deg, rgba(156, 197, 255, 0.32), var(--gac-primary));
    pointer-events: none;
}

.gac-app .gac-auth .gac-features {
    display: flex;
    margin-top: var(--gac-space-5);
    align-items: center;
    justify-content: center;
    gap: var(--gac-space-5);
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 600;
}

/* Exact API-rendered offer and brand composition */
.gac-app .gac-offer-image {
    display: block;
    padding: 0;
    border: 0;
    color: #ffffff;
    text-align: left;
}

.gac-app .gac-offer-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 43, 0.02) 38%, rgba(7, 20, 43, 0.68) 100%);
    pointer-events: none;
}

.gac-app .gac-offer-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: inline-flex;
    min-height: 26px;
    padding: 5px 10px;
    align-items: center;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-primary-dark);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--gac-shadow-xs);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-offer-image > strong {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 13px;
    left: 14px;
    overflow: hidden;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-offer-body > p {
    display: flex;
    margin-bottom: 7px;
    align-items: center;
    gap: 6px;
    color: var(--gac-text-muted);
    font-size: 10px;
}

.gac-app .gac-offer-body > p svg {
    width: 14px;
    height: 14px;
    color: var(--gac-primary);
}

.gac-app .gac-offer-body > div {
    display: flex;
    margin-top: 9px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gac-border);
    padding-top: 8px;
}

.gac-app .gac-offer-body > div button {
    min-height: 40px;
    padding-inline: 8px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-brand-title-row {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(var(--gac-appbar-height) + env(safe-area-inset-top, 0px));
    padding: env(safe-area-inset-top, 0px) var(--gac-space-4) 0;
    align-items: center;
    gap: 4px;
}

.gac-app .gac-brand-title-row .gac-icon-btn {
    margin-left: -10px;
    color: #ffffff;
}

.gac-app .gac-brand-title-row h1 {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-brand-hero {
    display: grid;
    min-height: 142px;
    padding: 12px var(--gac-space-5) 38px;
    grid-template-columns: minmax(0, 1fr) 142px;
    align-items: center;
    gap: 8px;
}

.gac-app .gac-brand-hero > p {
    position: relative;
    z-index: 1;
    max-width: 210px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.32;
}

.gac-app .gac-brand-hero > img {
    width: 142px;
    height: 118px;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(15, 47, 107, 0.22));
}

.gac-app .gac-count-label {
    margin-bottom: 10px;
    color: var(--gac-text-muted);
    font-size: 10px;
    font-weight: 700;
}

.gac-app .gac-brand-list {
    display: flex;
    padding: 0;
    flex-direction: column;
    gap: 10px;
}

.gac-app .gac-brand-item {
    display: grid;
    min-height: 92px;
    padding: 11px 12px;
    grid-template-columns: 74px minmax(0, 1fr) 34px;
    align-items: center;
    justify-content: initial;
    gap: 12px;
    font-size: 12px;
    text-align: left;
}

.gac-app .gac-brand-logo {
    width: 74px;
    height: 64px;
    background: color-mix(in srgb, var(--brand-color, var(--gac-blue-soft)) 12%, white);
}

.gac-app .gac-brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.gac-app .gac-brand-copy strong {
    overflow: hidden;
    color: var(--gac-text);
    font-size: 13px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-brand-copy small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 9px;
    font-weight: 400;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-brand-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-brand-product-appbar {
    color: #ffffff;
    border-bottom-color: transparent;
    background: linear-gradient(145deg, var(--active-brand-color, var(--gac-primary)), var(--gac-primary-dark));
    background: linear-gradient(145deg, var(--active-brand-color, var(--gac-primary)), color-mix(in srgb, var(--active-brand-color, var(--gac-primary-dark)) 72%, #10213e));
}

.gac-app .gac-brand-product-appbar .gac-appbar-subtitle {
    color: rgba(255, 255, 255, 0.76);
}

.gac-app .gac-brand-product-appbar .gac-chip:not(.is-active) {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
}

/* Exact catalogue renderer */
.gac-app .gac-appbar > .gac-inline-search {
    display: block;
    width: 100%;
    padding-bottom: 8px;
}

.gac-app .gac-inline-search label,
.gac-app .gac-inline-search {
    position: relative;
}

.gac-app .gac-inline-search label {
    display: flex;
    min-height: 46px;
    padding-inline: 13px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-inline-search input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0;
    border: 0;
    outline: 0;
    color: var(--gac-text);
    background: transparent;
    font-size: 12px;
}

.gac-app .gac-appbar > .gac-chip-row {
    width: calc(100% + (var(--gac-space-4) * 2));
    margin-inline: calc(var(--gac-space-4) * -1);
    padding: 2px var(--gac-space-4) 10px;
}

.gac-app .gac-brand-product-appbar .gac-inline-search label {
    border-color: rgba(255, 255, 255, 0.28);
}

.gac-app .gac-product-toolbar > button {
    display: flex;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-text);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-xs);
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-product-grid {
    padding: var(--gac-space-4) 0;
}

.gac-app .gac-product-grid.is-list {
    grid-template-columns: minmax(0, 1fr);
}

.gac-app .gac-product-card.gac-product-list,
.gac-app .gac-product-grid.is-list .gac-product-card {
    display: grid;
    padding: 0;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 0;
}

.gac-app .gac-product-card.gac-product-list .gac-product-image,
.gac-app .gac-product-grid.is-list .gac-product-image {
    height: 100%;
    min-height: 168px;
    aspect-ratio: auto;
}

.gac-app .gac-product-name {
    display: -webkit-box;
    min-height: 35px;
    margin-top: 4px;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: var(--gac-text);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-product-model {
    margin-top: 3px;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-product-stock {
    min-height: 24px;
    margin-top: 5px;
}

.gac-app .gac-stock-badge {
    display: inline-flex;
    min-height: 22px;
    padding: 3px 7px;
    align-items: center;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-success);
    background: var(--gac-success-soft);
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-stock-badge.is-low {
    color: #8a5a00;
    background: var(--gac-warning-soft);
}

.gac-app .gac-stock-badge.is-in {
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-stock-badge.is-out {
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-product-prices strong {
    color: var(--gac-text);
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-product-prices del {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-product-prices span {
    color: var(--gac-success);
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-saving {
    display: block;
    margin-top: 3px;
    color: var(--gac-success);
    font-size: 9px;
    font-weight: 700;
}

.gac-app .gac-wishlist-button {
    position: absolute;
    z-index: 3;
    top: 7px;
    right: 7px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(213, 227, 236, 0.75);
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--gac-shadow-xs);
}

.gac-app .gac-wishlist-button.is-active {
    color: var(--gac-danger);
}

.gac-app .gac-product-ribbon {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 0;
    padding: 4px 9px;
    border-radius: 0 var(--gac-radius-pill) var(--gac-radius-pill) 0;
    color: #ffffff;
    background: var(--brand-color, var(--gac-primary));
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.gac-app .gac-product-card-actions {
    display: grid;
    margin-top: auto;
    padding-top: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.gac-app .gac-pagination {
    display: grid;
    margin-top: var(--gac-space-3);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.gac-app .gac-pagination button {
    display: flex;
    min-height: 44px;
    padding-inline: 10px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-surface);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-pagination > span {
    color: var(--gac-text-muted);
    font-size: 9px;
    white-space: nowrap;
}

.gac-app .gac-filter-form,
.gac-app .gac-filter-form fieldset {
    display: flex;
    flex-direction: column;
}

.gac-app .gac-filter-form {
    gap: var(--gac-space-5);
}

.gac-app .gac-filter-form fieldset {
    min-width: 0;
    padding: 0;
    gap: 9px;
    border: 0;
}

.gac-app .gac-filter-form legend {
    margin-bottom: 8px;
    color: var(--gac-text);
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-choice-chip {
    position: relative;
    flex: 0 0 auto;
}

.gac-app .gac-choice-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.gac-app .gac-choice-chip span {
    display: inline-flex;
    min-height: 38px;
    padding: 0 13px;
    align-items: center;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-pill);
    color: var(--gac-text-muted);
    background: var(--gac-surface);
    font-size: 11px;
    font-weight: 700;
}

.gac-app .gac-choice-chip input:checked + span {
    color: #ffffff;
    border-color: var(--gac-primary);
    background: var(--gac-primary);
}

.gac-app .gac-choice-chip input:focus-visible + span {
    outline: 3px solid rgba(62, 121, 244, 0.38);
    outline-offset: 2px;
}

.gac-app .gac-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
}

.gac-app .gac-check-list label {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.gac-app .gac-check-list input {
    width: 18px;
    height: 18px;
    accent-color: var(--gac-primary);
}

/* Exact product-detail renderer */
.gac-app .gac-product-hero {
    position: relative;
    width: 100%;
    min-height: 342px;
    overflow: hidden;
    background: var(--gac-surface);
}

.gac-app .gac-product-gallery {
    min-height: 342px;
    padding: 12px 14px 10px;
}

.gac-app .gac-product-main-image {
    display: grid;
    width: 100%;
    height: 268px;
    padding: 18px;
    place-items: center;
    border: 0;
    border-radius: var(--gac-radius-lg);
    background: #f8fbfd;
}

.gac-app .gac-product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-gallery-thumbs {
    display: flex;
    height: 56px;
    margin-top: 8px;
    gap: 8px;
    overflow-x: auto;
    justify-content: center;
    scrollbar-width: none;
}

.gac-app .gac-gallery-thumbs button {
    display: grid;
    width: 54px;
    height: 54px;
    padding: 4px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-sm);
    background: #ffffff;
}

.gac-app .gac-gallery-thumbs button.is-active {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 2px rgba(62, 121, 244, 0.1);
}

.gac-app .gac-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-product-heading > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.gac-app .gac-product-heading > div > span {
    color: var(--gac-primary);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gac-app .gac-product-heading .gac-rating {
    min-height: 24px;
    padding: 4px 8px;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: var(--gac-success);
    font-size: 9px;
}

.gac-app .gac-product-heading > h1 {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.gac-app .gac-product-heading > p {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 10px;
}

.gac-app .gac-product-price-row {
    display: grid;
    margin-top: var(--gac-space-4);
    padding: var(--gac-space-4);
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--gac-space-3);
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
}

.gac-app .gac-product-price-row > div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 8px;
}

.gac-app .gac-product-price-row strong {
    font-size: 22px;
    font-weight: 800;
}

.gac-app .gac-product-price-row del {
    color: var(--gac-text-muted);
    font-size: 11px;
}

.gac-app .gac-product-price-row > div > span {
    color: var(--gac-success);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-product-price-row small {
    width: 100%;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-spec-grid > div {
    display: flex;
    min-width: 0;
    min-height: 78px;
    padding: 9px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    text-align: center;
}

.gac-app .gac-spec-grid > div small {
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-spec-grid > div strong {
    max-width: 100%;
    overflow: hidden;
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
}

.gac-app .gac-variant-selector {
    margin-top: var(--gac-space-5);
}

.gac-app .gac-variant-selector > h3 {
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-buy-options {
    display: flex;
    margin-top: var(--gac-space-5);
    padding: var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
}

.gac-app .gac-buy-options > div > span {
    display: block;
    margin-bottom: 6px;
    color: var(--gac-text-muted);
    font-size: 9px;
    font-weight: 700;
}

.gac-app .gac-exchange-link {
    display: flex;
    min-height: 46px;
    padding-inline: 11px;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    border: 1px solid rgba(37, 167, 91, 0.28);
    border-radius: var(--gac-radius-sm);
    color: var(--gac-success);
    background: rgba(37, 167, 91, 0.08);
    font-size: 10px;
    font-weight: 800;
    text-align: left;
}

.gac-app .gac-exchange-link > svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.gac-app .gac-exchange-link span,
.gac-app .gac-exchange-link strong,
.gac-app .gac-exchange-link small {
    display: block;
}

.gac-app .gac-exchange-link small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
    font-weight: 600;
}

.gac-app .gac-exchange-control {
    min-width: 0;
}

.gac-app .gac-exchange-applied {
    display: grid;
    min-height: 52px;
    padding: 7px 8px;
    grid-template-columns: 20px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(37, 167, 91, 0.3);
    border-radius: var(--gac-radius-sm);
    color: var(--gac-success);
    background: rgba(37, 167, 91, 0.08);
}

.gac-app .gac-exchange-applied > svg {
    width: 18px;
    height: 18px;
}

.gac-app .gac-exchange-applied span,
.gac-app .gac-exchange-applied strong,
.gac-app .gac-exchange-applied small {
    display: block;
    min-width: 0;
}

.gac-app .gac-exchange-applied strong {
    overflow: hidden;
    color: var(--gac-text);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-exchange-applied small {
    margin-top: 2px;
    color: var(--gac-success);
    font-size: 8px;
    font-weight: 650;
}

.gac-app .gac-exchange-applied button {
    min-width: 32px;
    min-height: 32px;
    padding: 5px;
    border: 0;
    color: var(--gac-success);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-exchange-applied button > svg {
    width: 15px;
    height: 15px;
}

.gac-app .gac-detail-section > h2,
.gac-app .gac-detail-section > .gac-section-heading:first-child {
    margin-bottom: var(--gac-space-3);
}

.gac-app .gac-detail-section > h2 {
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gac-space-3);
}

.gac-app .gac-section-heading > h2,
.gac-app .gac-section-heading > h3 {
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-section-heading > button {
    min-height: 40px;
    padding-inline: 7px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

.gac-app .gac-highlight-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 7px;
    color: var(--gac-text-muted);
    font-size: 11px;
    line-height: 1.5;
}

.gac-app .gac-highlight-list svg {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: var(--gac-success);
}

.gac-app .gac-rich-text {
    color: var(--gac-text-muted);
    font-size: 11px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.gac-app .gac-rich-text ul,
.gac-app .gac-rich-text ol {
    padding-left: var(--gac-space-5);
}

.gac-app .gac-rich-text img,
.gac-app .gac-rich-text table {
    max-width: 100%;
}

.gac-app .gac-warranty-card {
    display: grid;
    margin-top: var(--gac-space-5);
    padding: var(--gac-space-4);
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: var(--gac-space-3);
}

.gac-app .gac-warranty-card > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-warranty-card strong {
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-warranty-card p,
.gac-app .gac-warranty-card small {
    display: block;
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 9px;
    line-height: 1.45;
}

.gac-app .gac-product-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gac-app .gac-appbar-actions .gac-icon-btn.is-active {
    color: #ffffff;
    border-color: var(--gac-primary);
    background: var(--gac-primary);
}

.gac-app .gac-detail-info-grid {
    display: grid;
    margin-top: var(--gac-space-4);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}

.gac-app .gac-detail-info-grid article {
    display: flex;
    min-width: 0;
    min-height: 94px;
    padding: 10px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    text-align: center;
}

.gac-app .gac-detail-info-grid svg {
    width: 23px;
    height: 23px;
    color: var(--gac-primary);
}

.gac-app .gac-detail-info-grid strong {
    max-width: 100%;
    color: var(--gac-text);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.gac-app .gac-detail-info-grid small {
    color: var(--gac-text-muted);
    font-size: 7px;
    font-weight: 600;
    line-height: 1.25;
}

.gac-app .gac-brochure-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-brochure-card {
    display: grid;
    padding: 12px;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.gac-app .gac-brochure-card > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-brochure-card > span svg,
.gac-app .gac-brochure-card > svg {
    width: 18px;
    height: 18px;
}

.gac-app .gac-brochure-card div {
    min-width: 0;
}

.gac-app .gac-brochure-card strong,
.gac-app .gac-brochure-card p,
.gac-app .gac-brochure-card small {
    display: block;
}

.gac-app .gac-brochure-card strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-brochure-card p,
.gac-app .gac-brochure-card small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
    line-height: 1.35;
}

.gac-app .gac-review-image-editor {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.gac-app .gac-review-image-editor label {
    position: relative;
    display: block;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--gac-border);
    border-radius: 10px;
    background: var(--gac-surface-muted);
    cursor: pointer;
}

.gac-app .gac-review-image-editor img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.gac-app .gac-review-image-editor input {
    position: absolute;
    top: 6px;
    right: 6px;
}

.gac-app .gac-review-image-editor span {
    display: block;
    padding: 5px;
    color: var(--gac-danger);
    font-size: 8px;
    font-weight: 800;
    text-align: center;
}

.gac-app .gac-after-sale-status {
    display: flex;
    margin-top: 8px;
    padding: 7px 9px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    border: 1px solid var(--gac-border);
    border-radius: 9px;
    background: var(--gac-surface-muted);
}

.gac-app .gac-after-sale-status strong,
.gac-app .gac-after-sale-status small {
    margin: 0;
}

.gac-app .gac-after-sale-status.is-success { color: var(--gac-success); background: var(--gac-success-soft); }
.gac-app .gac-after-sale-status.is-danger { color: var(--gac-danger); background: var(--gac-danger-soft); }
.gac-app .gac-after-sale-status.is-warning { color: var(--gac-warning); background: var(--gac-warning-soft); }

.gac-app .gac-refund-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gac-app .gac-refund-summary {
    display: grid;
    padding: 14px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.gac-app .gac-refund-summary > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-refund-summary strong,
.gac-app .gac-refund-summary p,
.gac-app .gac-refund-summary small {
    display: block;
}

.gac-app .gac-refund-reference {
    padding: 12px;
}

.gac-app .gac-refund-reference h3 {
    margin-bottom: 7px;
    font-size: 11px;
}

.gac-app .gac-refund-reference p {
    display: flex;
    padding-block: 4px;
    justify-content: space-between;
    gap: 10px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-refund-reference strong {
    color: var(--gac-text);
    overflow-wrap: anywhere;
    text-align: right;
}

/* Exact cart, address and checkout renderer */
.gac-app .gac-cart-list,
.gac-app .gac-address-list {
    padding: 0;
}

.gac-app .gac-cart-list {
    margin-bottom: var(--gac-space-4);
}

.gac-app .gac-address-list {
    margin-top: var(--gac-space-4);
}

.gac-app .gac-cart-item {
    display: block;
    padding: 0;
}

.gac-app .gac-cart-item-main {
    position: relative;
    display: grid;
    padding: 12px;
    grid-template-columns: 92px minmax(0, 1fr) 36px;
    align-items: start;
    gap: 10px;
}

.gac-app .gac-cart-image {
    display: grid;
    width: 92px;
    height: 96px;
    padding: 6px;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: var(--gac-radius-md);
    background: #f7fafc;
}

.gac-app .gac-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.gac-app .gac-cart-copy {
    min-width: 0;
}

.gac-app .gac-cart-copy > span {
    display: block;
    overflow: hidden;
    color: var(--gac-primary);
    font-size: 8px;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.gac-app .gac-cart-copy h2 {
    display: -webkit-box;
    margin-top: 3px;
    overflow: hidden;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-cart-copy p {
    margin-top: 3px;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-cart-copy > strong {
    display: block;
    margin-top: 7px;
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-cart-remove {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-danger);
    background: var(--gac-danger-soft);
}

.gac-app .gac-exchange-badge {
    display: grid;
    margin: 0 12px 10px;
    padding: 8px 10px;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-exchange-badge > svg {
    width: 20px;
}

.gac-app .gac-exchange-badge strong,
.gac-app .gac-exchange-badge small {
    display: block;
}

.gac-app .gac-exchange-badge strong {
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-exchange-badge small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-cart-item-footer {
    display: flex;
    min-height: 54px;
    padding: 8px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--gac-border);
}

.gac-app .gac-qty strong {
    min-width: 32px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.gac-app .gac-coupon-card {
    display: grid;
    width: 100%;
    min-height: 72px;
    margin-bottom: var(--gac-space-4);
    padding: 12px var(--gac-space-4);
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    color: var(--gac-text);
    text-align: left;
}

.gac-app .gac-coupon-card > svg:first-child {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-coupon-card strong,
.gac-app .gac-coupon-card small {
    display: block;
}

.gac-app .gac-coupon-card strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-coupon-card small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-price-summary {
    margin: 0 0 var(--gac-space-4);
}

.gac-app .gac-price-summary > h2 {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-price-summary > div {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--gac-text-muted);
    font-size: 11px;
}

.gac-app .gac-price-summary > div > b {
    color: var(--gac-text);
    font-weight: 700;
}

.gac-app .gac-price-summary .is-saving {
    color: var(--gac-success);
}

.gac-app .gac-price-summary > .gac-price-total {
    min-height: 52px;
    margin-top: 7px;
    padding-top: 10px;
    border-top: 1px dashed var(--gac-border);
    color: var(--gac-text);
}

.gac-app .gac-price-total span {
    display: flex;
    flex-direction: column;
}

.gac-app .gac-price-total strong {
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-price-total small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-price-total > b {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-trust-badges {
    display: grid;
    margin-block: var(--gac-space-5);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
}

.gac-app .gac-trust-badges > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gac-text-muted);
    text-align: center;
}

.gac-app .gac-trust-badges svg {
    width: 24px;
    height: 24px;
    color: var(--gac-primary);
}

.gac-app .gac-trust-badges strong {
    font-size: 8px;
    font-weight: 800;
}

.gac-app .gac-trust-badges small {
    font-size: 7px;
    line-height: 1.25;
}

.gac-app .gac-sticky-actions.gac-cart-summary,
.gac-app .gac-sticky-actions.gac-checkout-total {
    margin: 0;
    border-radius: 0;
}

.gac-app .gac-sticky-actions.gac-cart-summary > div,
.gac-app .gac-sticky-actions.gac-checkout-total > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.gac-app .gac-sticky-actions.gac-cart-summary > div strong,
.gac-app .gac-sticky-actions.gac-checkout-total > div strong {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-sticky-actions.gac-cart-summary > div small,
.gac-app .gac-sticky-actions.gac-checkout-total > div small {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-address-card.is-selected {
    border-color: var(--gac-primary);
    background: linear-gradient(145deg, #ffffff, var(--gac-blue-soft));
    box-shadow: 0 0 0 2px rgba(62, 121, 244, 0.08), var(--gac-shadow-sm);
}

.gac-app .gac-address-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-address-copy {
    min-width: 0;
}

.gac-app .gac-address-copy > div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.gac-app .gac-address-copy > div > strong {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.gac-app .gac-address-copy > div > b {
    padding: 3px 7px;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-success);
    background: var(--gac-success-soft);
    font-size: 8px;
}

.gac-app .gac-address-copy h2 {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-address-copy p {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.5;
}

.gac-app .gac-address-copy > small {
    display: flex;
    margin-top: 6px;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
}

.gac-app .gac-address-actions {
    display: flex;
    grid-column: 2 / -1;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.gac-app .gac-address-actions button {
    min-height: 38px;
    padding-inline: 7px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-address-actions button.is-danger {
    color: var(--gac-danger);
}

.gac-app .gac-address-select {
    display: grid;
    width: 28px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
}

.gac-app .gac-address-select .gac-radio,
.gac-app .gac-payment-option .gac-radio {
    display: grid;
    width: 20px;
    height: 20px;
    min-height: 20px;
    place-items: center;
    border: 2px solid var(--gac-border);
    border-radius: 50%;
    color: #ffffff;
    font-size: 10px;
}

.gac-app .gac-address-card.is-selected .gac-address-select .gac-radio,
.gac-app .gac-payment-option.is-active .gac-radio,
.gac-app .gac-payment-option:has(input:checked) .gac-radio {
    border-color: var(--gac-primary);
    background: var(--gac-primary);
}

.gac-app .gac-address-list.is-selectable .gac-address-card {
    grid-template-columns: 28px 36px minmax(0, 1fr);
}

.gac-app .gac-address-list.is-selectable .gac-address-actions {
    grid-column: 2 / -1;
}

.gac-app .gac-empty-address {
    display: flex;
    width: 100%;
    min-height: 132px;
    padding: var(--gac-space-5);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--gac-primary);
    text-align: center;
}

.gac-app .gac-empty-address > svg {
    width: 30px;
    height: 30px;
}

.gac-app .gac-empty-address strong {
    color: var(--gac-text);
    font-size: 12px;
}

.gac-app .gac-empty-address span {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-delivery-card {
    display: grid;
    margin-block: var(--gac-space-4);
    padding: var(--gac-space-4);
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.gac-app .gac-delivery-card > svg {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 50%;
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-delivery-card strong,
.gac-app .gac-delivery-card span {
    display: block;
}

.gac-app .gac-delivery-card strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-delivery-card span {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-checkout-items {
    padding: var(--gac-space-4);
}

.gac-app .gac-checkout-items > h2 {
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-checkout-items > div {
    display: grid;
    min-height: 66px;
    padding-block: 8px;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-checkout-items > div:last-child {
    border-bottom: 0;
}

.gac-app .gac-checkout-items img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.gac-app .gac-checkout-items strong,
.gac-app .gac-checkout-items small {
    display: block;
}

.gac-app .gac-checkout-items strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-checkout-items small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-checkout-items b {
    font-size: 10px;
}

.gac-app .gac-checkout .gac-coupon-box {
    display: block;
    margin-block: var(--gac-space-4);
}

.gac-app .gac-checkout .gac-coupon-box h2 {
    margin-bottom: 9px;
    color: var(--gac-text);
    font-size: 13px;
}

.gac-app .gac-checkout .gac-coupon-box form label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.gac-app .gac-checkout .gac-coupon-box input {
    min-width: 0;
    height: 40px;
    padding-inline: 11px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-sm);
    outline: 0;
}

.gac-app .gac-checkout .gac-coupon-box p {
    margin-top: 6px;
    font-size: 9px;
}

.gac-app .gac-payment-option {
    grid-template-columns: 20px 34px minmax(0, 1fr);
}

.gac-app .gac-payment-option > input {
    position: absolute;
    opacity: 0;
}

.gac-app .gac-payment-option > svg {
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-payment-option strong,
.gac-app .gac-payment-option small {
    display: block;
}

.gac-app .gac-payment-option strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-payment-option small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

/* Icons, offer facts, global search and comparison */
.gac-app .gac-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

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

.gac-app .gac-offer-detail-hero {
    isolation: isolate;
    aspect-ratio: 16 / 10;
    border: 0;
}

.gac-app .gac-offer-detail-hero > img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gac-app .gac-offer-detail-hero > span {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 20, 43, 0.03) 34%, rgba(7, 20, 43, 0.8));
}

.gac-app .gac-offer-detail-hero > b {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 10px;
    border-radius: var(--gac-radius-pill);
    color: var(--gac-primary-dark);
    background: rgba(255, 255, 255, 0.94);
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-offer-detail-hero > h1 {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-offer-detail > section:not(.gac-offer-detail-hero) {
    margin-top: var(--gac-space-5);
}

.gac-app .gac-fact-list {
    display: grid;
    padding: 6px var(--gac-space-4);
    grid-template-columns: minmax(0, 1fr);
}

.gac-app .gac-fact-list > div {
    display: grid;
    min-height: 60px;
    padding-block: 8px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-fact-list > div:last-child {
    border-bottom: 0;
}

.gac-app .gac-fact-list > div > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-fact-list small,
.gac-app .gac-fact-list strong {
    display: block;
}

.gac-app .gac-fact-list small {
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-fact-list strong {
    margin-top: 2px;
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-search-bar {
    display: grid;
    min-height: var(--gac-input-height);
    padding: 0 7px 0 var(--gac-space-4);
    grid-template-columns: 24px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    background: var(--gac-surface);
    box-shadow: var(--gac-shadow-sm);
}

.gac-app .gac-search-bar:focus-within {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-search-bar > svg {
    color: var(--gac-text-muted);
}

.gac-app .gac-search-bar input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 12px;
}

.gac-app .gac-search-bar button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: transparent;
}

.gac-app .gac-search-results {
    margin-top: var(--gac-space-5);
}

.gac-app .gac-search-section {
    margin-top: var(--gac-space-6);
}

.gac-app .gac-search-section:first-child {
    margin-top: 0;
}

.gac-app .gac-search-section > h2 {
    margin-bottom: var(--gac-space-3);
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-category-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gac-app .gac-category-row button {
    display: flex;
    min-width: 76px;
    min-height: 92px;
    padding: 8px 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 9px;
    font-weight: 700;
    text-align: center;
}

.gac-app .gac-category-row img,
.gac-app .gac-category-row button > svg {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.gac-app .gac-inline-loader {
    display: flex;
    width: auto;
    height: auto;
    margin-block: var(--gac-space-6);
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 0;
    color: var(--gac-text-muted);
    background: transparent;
    font-size: 11px;
    animation: none;
}

.gac-app .gac-inline-loader > span {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(62, 121, 244, 0.18);
    border-top-color: var(--gac-primary);
    border-radius: 50%;
    animation: gac-spin 760ms linear infinite;
}

.gac-app .gac-suggestion-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gac-app .gac-suggestion-list > button {
    display: grid;
    width: 100%;
    min-height: 72px;
    padding: 8px 10px;
    grid-template-columns: 56px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    color: var(--gac-text);
    background: var(--gac-surface);
    text-align: left;
}

.gac-app .gac-suggestion-list > button > img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.gac-app .gac-suggestion-list strong,
.gac-app .gac-suggestion-list small {
    display: block;
}

.gac-app .gac-suggestion-list strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-suggestion-list small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-compare-products {
    display: grid;
    margin-top: var(--gac-space-4);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.gac-app .gac-content.gac-compare {
    overflow: visible;
}

.gac-app .gac-compare-product,
.gac-app .gac-compare-add {
    display: flex;
    min-width: 0;
    min-height: 214px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
}

.gac-app .gac-compare-product > img {
    width: 100%;
    height: 112px;
    object-fit: contain;
}

.gac-app .gac-compare-product > strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-compare-product > small {
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-compare-product > button {
    min-height: 36px;
    padding-inline: 7px;
    border: 0;
    color: var(--gac-danger);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-compare-add {
    border-style: dashed;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-compare-add > svg {
    width: 38px;
    height: 38px;
}

.gac-app .gac-compare-add > span {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-compare-table-wrap {
    max-width: 100%;
    margin-top: var(--gac-space-5);
    overflow-x: auto;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
}

.gac-app .gac-compare-table td.is-empty {
    color: var(--gac-text-muted);
    background: var(--gac-background);
    text-align: center;
}

.gac-app .gac-sheet-search {
    display: flex;
    min-height: 48px;
    padding-inline: 12px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
}

.gac-app .gac-sheet-search input {
    width: 100%;
    height: 46px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

/* Exact order and after-sales renderer */
.gac-app .gac-order-card-head {
    width: 100%;
    border: 0;
    color: var(--gac-text);
    background: var(--gac-surface);
    text-align: left;
}

.gac-app .gac-order-card-head > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gac-app .gac-order-card-head small {
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-order-card-head strong {
    font-size: 10px;
    font-weight: 700;
}

.gac-app .gac-order-preview {
    display: grid;
    width: 100%;
    min-height: 96px;
    padding: 10px var(--gac-space-4);
    grid-template-columns: 70px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    border: 0;
    color: var(--gac-text);
    background: var(--gac-surface);
    text-align: left;
}

.gac-app .gac-order-preview > img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.gac-app .gac-order-preview strong,
.gac-app .gac-order-preview small {
    display: block;
}

.gac-app .gac-order-preview strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-order-preview small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-order-card-foot {
    display: flex;
    min-height: 52px;
    padding: 8px var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--gac-border);
}

.gac-app .gac-order-card-foot > span {
    display: flex;
    flex-direction: column;
}

.gac-app .gac-order-card-foot small {
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-order-card-foot strong {
    font-size: 13px;
    font-weight: 800;
}

.gac-app .gac-order-card-foot button {
    min-height: 38px;
    padding-inline: 8px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-order-support {
    display: grid;
    padding: 12px 5px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}

.gac-app .gac-order-support > div,
.gac-app .gac-order-support > button {
    display: flex;
    min-width: 0;
    min-height: 72px;
    padding: 5px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    color: var(--gac-text-muted);
    background: transparent;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
}

.gac-app .gac-order-support > * + * {
    border-left: 1px solid var(--gac-border);
}

.gac-app .gac-order-support svg {
    width: 24px;
    height: 24px;
    color: var(--gac-primary);
}

.gac-app .gac-order-status-card {
    padding: var(--gac-space-4);
}

.gac-app .gac-order-status-card,
.gac-app .gac-order-status-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gac-app .gac-order-status-card > div {
    min-width: 0;
    justify-content: flex-start;
}

.gac-app .gac-order-status-card > b {
    color: var(--gac-primary);
    font-size: 9px;
}

.gac-app .gac-status-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-warning);
}

.gac-app .gac-status-icon.is-success {
    background: var(--gac-success);
}

.gac-app .gac-status-icon.is-danger {
    background: var(--gac-danger);
}

.gac-app .gac-status-icon.is-blue {
    background: var(--gac-primary);
}

.gac-app .gac-status-icon.is-violet {
    background: #534ab7;
}

.gac-app .gac-order-status-card p,
.gac-app .gac-order-status-card p > * {
    display: block;
}

.gac-app .gac-order-status-card p small,
.gac-app .gac-order-status-card p span {
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-order-status-card p strong {
    margin-block: 2px;
    font-size: 13px;
    font-weight: 800;
}

.gac-app .gac-order-detail > * + * {
    margin-top: var(--gac-space-4);
}

.gac-app .gac-order-detail > .gac-section-title,
.gac-app .gac-order-detail > section > .gac-section-title {
    margin-bottom: 9px;
}

.gac-app .gac-timeline {
    padding: var(--gac-space-4);
}

.gac-app .gac-timeline > h2 {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 800;
}

.gac-app .gac-timeline > div {
    position: relative;
    display: grid;
    min-height: 62px;
    padding-bottom: 12px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
}

.gac-app .gac-timeline > div::before {
    position: absolute;
    top: 30px;
    bottom: 0;
    left: 14px;
    width: 2px;
    background: var(--gac-border);
    content: "";
}

.gac-app .gac-timeline > div:last-child::before {
    display: none;
}

.gac-app .gac-timeline > div > span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 2px solid var(--gac-border);
    border-radius: 50%;
    color: var(--gac-text-muted);
    background: #ffffff;
}

.gac-app .gac-timeline > div.is-current > span {
    color: #ffffff;
    border-color: var(--gac-primary);
    background: var(--gac-primary);
    box-shadow: 0 0 0 4px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-timeline > div.is-complete > span {
    color: #ffffff;
    border-color: var(--gac-success);
    background: var(--gac-success);
}

.gac-app .gac-timeline > div.is-complete::before {
    background: var(--gac-success);
}

.gac-app .gac-timeline > div.is-failed > span {
    color: #ffffff;
    border-color: var(--gac-danger);
    background: var(--gac-danger);
}

.gac-app .gac-timeline > div.is-pending {
    opacity: 0.72;
}

.gac-app .gac-timeline p strong,
.gac-app .gac-timeline p small {
    display: block;
}

.gac-app .gac-timeline p strong {
    margin-top: 3px;
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-timeline p small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
    line-height: 1.4;
}

.gac-app .gac-order-items {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.gac-app .gac-order-items > article {
    display: grid;
    padding: 10px;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px;
}

.gac-app .gac-order-items > article > img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.gac-app .gac-order-items > article strong,
.gac-app .gac-order-items > article small,
.gac-app .gac-order-items > article b {
    display: block;
}

.gac-app .gac-order-items > article strong {
    font-size: 10px;
    line-height: 1.4;
}

.gac-app .gac-order-items > article small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-order-items > article b {
    margin-top: 5px;
    font-size: 11px;
}

.gac-app .gac-order-items > article div > span {
    display: flex;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 3px;
}

.gac-app .gac-order-items > article button {
    min-height: 36px;
    padding-inline: 6px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 8px;
    font-weight: 800;
}

.gac-app .gac-delivery-address,
.gac-app .gac-order-totals,
.gac-app .gac-invoices {
    padding: var(--gac-space-4);
}

.gac-app .gac-delivery-address > h2,
.gac-app .gac-order-totals > h2,
.gac-app .gac-invoices > h2 {
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 800;
}

.gac-app .gac-delivery-address > strong {
    font-size: 11px;
}

.gac-app .gac-delivery-address > p,
.gac-app .gac-delivery-address > span {
    display: block;
    margin-top: 4px;
    color: var(--gac-text-muted);
    font-size: 9px;
    line-height: 1.5;
}

.gac-app .gac-order-totals > div {
    display: flex;
    min-height: 32px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--gac-text-muted);
    font-size: 10px;
}

.gac-app .gac-order-totals > div:last-of-type {
    min-height: 48px;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--gac-border);
    color: var(--gac-text);
    font-size: 13px;
}

.gac-app .gac-order-totals .is-saving {
    color: var(--gac-success);
}

.gac-app .gac-order-totals > p {
    display: flex;
    margin-top: 8px;
    padding: 8px;
    align-items: center;
    gap: 6px;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-text-muted);
    background: var(--gac-surface-muted);
    font-size: 8px;
}

.gac-app .gac-invoices > a {
    display: grid;
    min-height: 58px;
    padding-block: 7px;
    grid-template-columns: 30px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gac-border);
}

.gac-app .gac-invoices > a:last-child {
    border-bottom: 0;
}

.gac-app .gac-invoices strong,
.gac-app .gac-invoices small {
    display: block;
}

.gac-app .gac-invoices strong {
    font-size: 10px;
}

.gac-app .gac-invoices small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-thank-you {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(42px, env(safe-area-inset-top, 0px)) 24px max(28px, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gac-surface);
    text-align: center;
}

.gac-app .gac-success-mark {
    display: grid;
    width: 104px;
    height: 104px;
    margin-bottom: 10px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-success);
    box-shadow: 0 15px 32px rgba(46, 125, 50, 0.25);
}

.gac-app .gac-success-mark svg {
    width: 46px;
    height: 46px;
}

.gac-app .gac-thank-you > h1 {
    font-size: 22px;
    font-weight: 800;
}

.gac-app .gac-thank-you > h2 {
    color: var(--gac-success);
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-thank-you > p {
    max-width: 310px;
    color: var(--gac-text-muted);
    font-size: 11px;
    line-height: 1.55;
}

.gac-app .gac-thank-you > section {
    display: grid;
    width: 100%;
    margin-block: 10px;
    padding: var(--gac-space-4);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gac-app .gac-thank-you > section > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.gac-app .gac-thank-you > section > span + span {
    border-left: 1px solid var(--gac-border);
}

.gac-app .gac-thank-you > section small {
    color: var(--gac-text-muted);
    font-size: 7px;
}

.gac-app .gac-thank-you > section strong {
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
}

/* Exact profile, settings, contact, notifications and review renderer */
.gac-app .gac-avatar.is-large {
    width: 78px;
    height: 78px;
    font-size: 22px;
}

.gac-app .gac-profile-hero {
    min-height: 180px;
    margin-bottom: var(--gac-space-4);
    padding: var(--gac-space-6) var(--gac-space-5);
    border: 0;
}

.gac-app .gac-profile-hero > h1 {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-profile-hero > p {
    position: relative;
    z-index: 1;
    display: flex;
    margin-top: 3px;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
}

.gac-app .gac-profile-hero > button {
    position: relative;
    z-index: 1;
    min-height: 38px;
    margin-top: 10px;
    padding-inline: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    font-size: 9px;
    font-weight: 800;
}

.gac-app .gac-menu-section > h2 {
    padding: 12px var(--gac-space-4) 7px;
    color: var(--gac-text-muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.gac-app .gac-menu-section > div {
    display: flex;
    flex-direction: column;
}

.gac-app .gac-menu-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
}

.gac-app .gac-menu-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-menu-icon svg {
    width: 18px;
    height: 18px;
}

.gac-app .gac-menu-item > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.gac-app .gac-menu-item > span:nth-child(2) strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-menu-item > span:nth-child(2) small {
    margin-top: 2px;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 8px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-developer {
    margin-block: var(--gac-space-5);
    color: var(--gac-text-muted);
    font-size: 8px;
    text-align: center;
}

.gac-app .gac-developer a {
    color: var(--gac-primary);
    font-weight: 700;
}

.gac-app .gac-profile-form {
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-avatar-picker {
    position: relative;
    display: block;
    width: 82px;
    height: 82px;
    margin: 8px auto var(--gac-space-5);
}

.gac-app .gac-avatar-picker:focus-within {
    border-radius: 50%;
    outline: 3px solid rgba(62, 121, 244, 0.55);
    outline-offset: 4px;
}

.gac-app .gac-avatar-picker > span:not(.gac-avatar) {
    position: absolute;
    right: -2px;
    bottom: -2px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-primary);
}

.gac-app .gac-avatar-picker > span:not(.gac-avatar) svg {
    width: 14px;
    height: 14px;
}

.gac-app .gac-identity-field {
    display: grid;
    width: 100%;
    min-height: 66px;
    padding: 10px var(--gac-space-4);
    grid-template-columns: 36px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
    color: var(--gac-text);
    text-align: left;
}

.gac-app .gac-identity-field > svg:first-child {
    width: 36px;
    height: 36px;
    padding: 9px;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-identity-field small,
.gac-app .gac-identity-field strong {
    display: block;
}

.gac-app .gac-identity-field small {
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-identity-field strong {
    margin-top: 2px;
    overflow: hidden;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gac-app .gac-current-value {
    display: block;
    color: var(--gac-text-muted);
    font-size: 9px;
    text-align: center;
}

.gac-app .gac-toggle-tile {
    display: grid;
    min-height: 68px;
    padding: 10px var(--gac-space-4);
    grid-template-columns: 38px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    box-shadow: none;
}

.gac-app .gac-toggle-tile > svg {
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-toggle-tile strong,
.gac-app .gac-toggle-tile small {
    display: block;
}

.gac-app .gac-toggle-tile strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-toggle-tile small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-toggle-tile > input {
    position: absolute;
    opacity: 0;
}

.gac-app .gac-toggle-tile > i {
    position: relative;
    display: block;
    width: 48px;
    height: 28px;
    border-radius: var(--gac-radius-pill);
    background: #b7c6ce;
    transition: background-color 180ms ease;
}

.gac-app .gac-toggle-tile > i::after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    content: "";
    transition: transform 180ms ease;
}

.gac-app .gac-toggle-tile > input:checked + i {
    background: var(--gac-primary);
}

.gac-app .gac-toggle-tile > input:checked + i::after {
    transform: translateX(20px);
}

.gac-app .gac-toggle-tile > input:focus-visible + i {
    outline: 3px solid rgba(62, 121, 244, 0.38);
    outline-offset: 3px;
}

.gac-app .gac-about-card {
    display: flex;
    margin-top: var(--gac-space-5);
    padding: var(--gac-space-5);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gac-app .gac-about-card img {
    width: 110px;
    height: 72px;
    object-fit: contain;
}

.gac-app .gac-about-card h2 {
    font-size: 15px;
    font-weight: 800;
}

.gac-app .gac-about-card p,
.gac-app .gac-about-card small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 9px;
}

.gac-app .gac-contact-hero {
    display: flex;
    min-height: 190px;
    padding: var(--gac-space-6) var(--gac-space-5);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--gac-radius-lg);
    color: #ffffff;
    background: linear-gradient(145deg, var(--gac-secondary), var(--gac-primary-dark));
    text-align: center;
}

.gac-app .gac-contact-hero > span {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 9px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.17);
}

.gac-app .gac-contact-hero h1 {
    font-size: 18px;
    font-weight: 800;
}

.gac-app .gac-contact-hero p {
    max-width: 290px;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    line-height: 1.45;
}

.gac-app .gac-contact-list {
    display: flex;
    margin-top: var(--gac-space-4);
    flex-direction: column;
    gap: 9px;
}

.gac-app .gac-contact-list > a,
.gac-app .gac-contact-list > div {
    display: grid;
    min-height: 68px;
    padding: 10px var(--gac-space-4);
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 10px;
}

.gac-app .gac-contact-list > a > span,
.gac-app .gac-contact-list > div > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-contact-list strong,
.gac-app .gac-contact-list small {
    display: block;
}

.gac-app .gac-contact-list strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-contact-list small {
    margin-top: 2px;
    overflow: hidden;
    color: var(--gac-text-muted);
    font-size: 8px;
    text-overflow: ellipsis;
}

.gac-app .gac-notification-list > article {
    display: grid;
    min-height: 82px;
    padding: 11px;
    grid-template-columns: 38px minmax(0, 1fr) 36px;
    align-items: start;
    gap: 9px;
}

.gac-app .gac-notification-list > article > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-notification-list strong,
.gac-app .gac-notification-list small {
    display: block;
}

.gac-app .gac-notification-list strong {
    font-size: 10px;
}

.gac-app .gac-notification-list p,
.gac-app .gac-notification-list small {
    margin-top: 3px;
    color: var(--gac-text-muted);
    font-size: 8px;
    line-height: 1.4;
}

.gac-app .gac-notification-list article > button {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--gac-danger);
    background: transparent;
}

.gac-app .gac-notification-summary {
    display: grid;
    padding: 12px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.gac-app .gac-notification-summary > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--gac-radius-md);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-notification-summary strong,
.gac-app .gac-notification-summary small {
    display: block;
}

.gac-app .gac-notification-summary strong {
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-notification-summary small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-notification-summary > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.gac-app .gac-notification-summary button {
    min-height: 30px;
    padding: 4px 6px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 8px;
    font-weight: 800;
}

.gac-app .gac-notification-list > article {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 36px;
    transition: border-color 160ms ease, background-color 160ms ease;
}

.gac-app .gac-notification-list > article.is-unread {
    border-color: rgba(62, 121, 244, 0.28);
    background: var(--gac-blue-soft);
}

.gac-app .gac-notification-list > article.is-unread::after {
    position: absolute;
    top: 10px;
    right: 48px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gac-primary);
    content: "";
}

.gac-app .gac-notification-list article > .gac-notification-open {
    display: grid;
    width: auto;
    height: auto;
    min-height: 58px;
    padding: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    border: 0;
    border-radius: 0;
    color: var(--gac-text);
    background: transparent;
    text-align: left;
}

.gac-app .gac-notification-open > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-surface);
}

.gac-app .gac-review-card > div:first-child {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px;
}

.gac-app .gac-review-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary-dark);
    background: var(--gac-blue-soft);
    font-size: 12px;
    font-weight: 800;
}

.gac-app .gac-review-card > div:first-child strong,
.gac-app .gac-review-card > div:first-child small {
    display: block;
}

.gac-app .gac-review-card > div:first-child strong {
    font-size: 10px;
}

.gac-app .gac-review-card > div:first-child small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-review-card > div:first-child > b {
    display: inline-flex;
    padding: 4px 7px;
    align-items: center;
    gap: 3px;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: var(--gac-success);
    font-size: 9px;
}

.gac-app .gac-review-card > h3 {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-review-card > p {
    margin-top: 6px;
    color: var(--gac-text-muted);
    font-size: 10px;
    line-height: 1.55;
}

.gac-app .gac-faq-list > details {
    overflow: hidden;
}

.gac-app .gac-faq-list > details > summary {
    display: flex;
    min-height: 56px;
    padding: 11px var(--gac-space-4);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    color: var(--gac-text);
    font-size: 11px;
    font-weight: 800;
    list-style: none;
}

.gac-app .gac-faq-list > details > summary::-webkit-details-marker {
    display: none;
}

.gac-app .gac-faq-list > details > summary svg {
    transition: transform 180ms ease;
}

.gac-app .gac-faq-list > details[open] > summary svg {
    transform: rotate(180deg);
}

.gac-app .gac-faq-list > details > .gac-rich-text {
    padding: 0 var(--gac-space-4) var(--gac-space-4);
}

/* Authentication OTP and specialized sheet states */
.gac-app .gac-phone-prefix {
    display: flex;
    height: 36px;
    padding-inline: 12px;
    align-items: center;
    gap: 5px;
    border-right: 1px solid var(--gac-border);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.gac-app .gac-phone-prefix .gac-icon {
    width: 13px;
    height: 13px;
    color: var(--gac-text-muted);
}

.gac-app .gac-msg91-captcha {
    max-width: 100%;
    overflow: hidden;
}

.gac-app .gac-otp-form > h1 {
    color: var(--gac-text);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.gac-app .gac-otp-form > p {
    margin: 6px 0 var(--gac-space-5);
    color: var(--gac-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.gac-app .gac-otp-form > form {
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-5);
}

.gac-app .gac-otp-boxes {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gac-app .gac-otp-boxes > input {
    width: 100%;
    height: 62px;
    padding: 0;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-md);
    outline: 0;
    color: var(--gac-text);
    background: var(--gac-surface);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    caret-color: var(--gac-primary);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.gac-app .gac-otp-boxes > input:focus {
    border-color: var(--gac-primary);
    box-shadow: 0 0 0 3px rgba(62, 121, 244, 0.12);
}

.gac-app .gac-otp-resend {
    align-self: center;
    min-height: 44px;
    padding-inline: 8px;
    border: 0;
    color: var(--gac-primary);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
}

.gac-app .gac-auth-features > div {
    display: flex;
    min-width: 0;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}

.gac-app .gac-auth-features > div > span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
}

.gac-app .gac-auth-features strong,
.gac-app .gac-auth-features small {
    display: block;
}

.gac-app .gac-auth-features strong {
    color: var(--gac-text);
    font-size: 8px;
    font-weight: 800;
}

.gac-app .gac-auth-features small {
    margin-top: 1px;
    font-size: 7px;
}

.gac-app .gac-address-sheet,
.gac-app .gac-filter-sheet,
.gac-app .gac-exchange-sheet,
.gac-app .gac-compare-sheet,
.gac-app .gac-pincode-sheet {
    max-height: min(92vh, 760px);
}

.gac-app .gac-sheet-body > form,
.gac-app .gac-exchange-sheet form {
    display: flex;
    flex-direction: column;
    gap: var(--gac-space-4);
}

.gac-app .gac-sheet-body fieldset {
    min-width: 0;
    padding: 0;
    border: 0;
}

.gac-app .gac-sheet-body legend {
    margin-bottom: 8px;
    color: var(--gac-text);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gac-app .gac-exchange-offer {
    display: grid;
    padding: 11px 12px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    border: 1px solid #bcdcbc;
    border-radius: var(--gac-radius-md);
    color: var(--gac-success);
    background: var(--gac-success-soft);
}

.gac-app .gac-exchange-offer > svg {
    width: 26px;
    height: 26px;
}

.gac-app .gac-exchange-offer strong,
.gac-app .gac-exchange-offer small {
    display: block;
}

.gac-app .gac-exchange-offer strong {
    font-size: 10px;
    font-weight: 800;
}

.gac-app .gac-exchange-offer small {
    margin-top: 2px;
    color: var(--gac-text-muted);
    font-size: 8px;
}

.gac-app .gac-field-note {
    margin: -3px 0 8px;
    color: var(--gac-text-muted);
    font-size: 9px;
    line-height: 1.45;
}

.gac-app .gac-photo-field > small[data-upload-status] {
    display: block;
    min-height: 14px;
    margin-top: 6px;
    color: var(--gac-success);
    font-size: 8px;
    font-weight: 700;
}

.gac-app .gac-upload-grid {
    display: grid;
    margin-bottom: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
}

.gac-app .gac-upload-thumb {
    position: relative;
    overflow: visible;
    aspect-ratio: 1;
    border: 1px solid var(--gac-border);
    border-radius: var(--gac-radius-sm);
    background: var(--gac-surface-muted);
}

.gac-app .gac-upload-thumb > img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.gac-app .gac-upload-thumb > button {
    position: absolute;
    top: -7px;
    right: -7px;
    display: grid;
    width: 24px;
    height: 24px;
    padding: 0;
    place-items: center;
    border: 2px solid var(--gac-surface);
    border-radius: 50%;
    color: #ffffff;
    background: var(--gac-danger);
}

.gac-app .gac-upload-thumb > button svg {
    width: 12px;
    height: 12px;
}

.gac-app .gac-upload-picker {
    display: flex;
    min-height: 50px;
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px dashed rgba(62, 121, 244, 0.45);
    border-radius: var(--gac-radius-sm);
    color: var(--gac-primary);
    background: var(--gac-blue-soft);
    font-size: 9px;
    font-weight: 800;
    cursor: pointer;
}

.gac-app .gac-upload-picker > input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.gac-app .gac-star-input {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.gac-app .gac-star-input label {
    position: relative;
}

.gac-app .gac-star-input input {
    position: absolute;
    opacity: 0;
}

.gac-app .gac-star-input span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #c8d3d9;
}

.gac-app .gac-star-input span svg {
    width: 30px;
    height: 30px;
}

.gac-app .gac-star-input input:focus-visible + span {
    border-radius: 50%;
    outline: 3px solid rgba(62, 121, 244, 0.55);
    outline-offset: 2px;
}

.gac-app .gac-star-input label:has(input:checked) span,
.gac-app .gac-star-input label:has(~ label input:checked) span {
    color: var(--gac-warning);
    fill: var(--gac-warning);
}

.gac-app .gac-star-input label.is-active span {
    color: var(--gac-warning);
    fill: var(--gac-warning);
}

.gac-app .gac-image-viewer {
    position: fixed;
    z-index: 160;
    inset: 0;
    display: grid;
    width: min(100vw, 480px);
    margin-inline: auto;
    padding: max(58px, env(safe-area-inset-top, 0px)) 14px max(24px, env(safe-area-inset-bottom, 0px));
    place-items: center;
    color: #ffffff;
    background: rgba(3, 10, 22, 0.96);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.gac-app .gac-image-viewer.is-open {
    opacity: 1;
    visibility: visible;
}

.gac-app .gac-image-viewer > img {
    max-width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
    transform: scale(0.96);
    transition: transform 180ms ease;
}

.gac-app .gac-image-viewer.is-open > img {
    transform: none;
}

.gac-app .gac-image-viewer > button {
    position: absolute;
    top: max(10px, env(safe-area-inset-top, 0px));
    right: 10px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.gac-app .gac-profile,
.gac-app .gac-brands-screen,
.gac-app .gac-settings,
.gac-app .gac-contact,
.gac-app .gac-notifications,
.gac-app .gac-addresses,
.gac-app .gac-edit-profile,
.gac-app .gac-search-screen {
    min-height: 100%;
}

.gac-app.gac-ready {
    opacity: 1;
}

/* Rich content and the product gallery stay usable with API-provided content. */
.gac-app .gac-rich-text a {
    color: var(--gac-primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.gac-app .gac-rich-text table {
    display: block;
    width: max-content;
    min-width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}

.gac-app .gac-rich-text th,
.gac-app .gac-rich-text td {
    min-width: 120px;
    padding: 9px 10px;
    border: 1px solid var(--gac-border);
    vertical-align: top;
}

.gac-app .gac-image-viewer {
    min-height: 100vh;
    height: 100vh;
    height: 100dvh;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-rows: minmax(0, 1fr);
    gap: 8px;
}

.gac-app .gac-image-viewer-stage {
    display: grid;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    grid-column: 2;
    place-items: center;
    overflow: hidden;
    border-radius: var(--gac-radius-lg);
    touch-action: pan-y;
    user-select: none;
}

.gac-app .gac-image-viewer-stage > img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(var(--gac-viewer-scale, 1));
    transform-origin: center;
    transition: transform 180ms ease;
}

.gac-app .gac-image-viewer > .gac-viewer-nav {
    position: relative;
    top: auto;
    right: auto;
    width: 48px;
    height: 48px;
    align-self: center;
}

.gac-app .gac-viewer-nav.is-previous {
    grid-column: 1;
    grid-row: 1;
}

.gac-app .gac-viewer-nav.is-next {
    grid-column: 3;
    grid-row: 1;
}

.gac-app .gac-viewer-toolbar {
    position: absolute;
    z-index: 2;
    top: max(10px, env(safe-area-inset-top, 0px));
    left: 50%;
    display: flex;
    min-height: 44px;
    padding: 3px;
    transform: translateX(-50%);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--gac-radius-pill);
    background: rgba(4, 17, 39, 0.78);
    backdrop-filter: blur(12px);
}

.gac-app .gac-viewer-toolbar > button {
    display: grid;
    min-width: 44px;
    height: 44px;
    padding: 0 9px;
    place-items: center;
    border: 0;
    border-radius: var(--gac-radius-pill);
    color: #ffffff;
    background: transparent;
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-viewer-toolbar > button:hover {
    background: rgba(255, 255, 255, 0.12);
}

.gac-app .gac-viewer-count {
    position: absolute;
    z-index: 2;
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    left: 50%;
    min-width: 64px;
    padding: 7px 12px;
    transform: translateX(-50%);
    border-radius: var(--gac-radius-pill);
    background: rgba(4, 17, 39, 0.76);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    backdrop-filter: blur(12px);
}

/* Desktop-only structure is injected by the storefront renderer. Keeping it
 * out of the mobile cascade preserves the Flutter layout through 767px. */
.gac-app .gac-desktop-header,
.gac-app .gac-desktop-only {
    display: none;
}

.gac-app .gac-cart-sidebar,
.gac-app .gac-checkout-main,
.gac-app .gac-checkout-sidebar {
    display: contents;
}

/* Motion and breakpoint behavior */
@media (max-width: 359px) {
    .gac-app {
        --gac-space-4: 12px;
        --gac-space-5: 16px;
    }

    .gac-app .gac-feature-grid,
    .gac-app .gac-product-grid,
    .gac-app .gac-wishlist-grid,
    .gac-app .gac-brand-list {
        gap: 9px;
    }

    .gac-app .gac-feature-card {
        min-height: 146px;
        padding: 12px;
    }

    .gac-app .gac-carousel,
    .gac-app .gac-home-carousel {
        height: 184px;
    }

    .gac-app .gac-product-card-title {
        font-size: 11px;
    }

    .gac-app .gac-product-card.gac-product-list,
    .gac-app .gac-product-grid.is-list .gac-product-card {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .gac-app .gac-cart-item-main {
        grid-template-columns: 76px minmax(0, 1fr) 34px;
        gap: 8px;
    }

    .gac-app .gac-cart-image {
        width: 76px;
        height: 86px;
    }

    .gac-app .gac-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gac-app .gac-dialog__actions {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (min-width: 481px) {
    .gac-app {
        border-right: 1px solid rgba(213, 227, 236, 0.8);
        border-left: 1px solid rgba(213, 227, 236, 0.8);
        box-shadow: 0 0 44px rgba(35, 79, 121, 0.14);
    }
}

/* Professional desktop storefront. Mobile and small-tablet behavior above is
 * intentionally left untouched; all desktop adaptations start at 1024px. */
@media (min-width: 1024px) {
    body.gac-page {
        background: #f3f7fb;
    }

    .gac-app {
        --gac-appbar-height: 64px;
        --gac-space-4: 16px;
        --gac-space-5: 24px;
        --gac-space-6: 32px;
        --gac-space-7: 48px;
        width: 100%;
        max-width: none;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: visible;
        border: 0;
        background: #f3f7fb;
        box-shadow: none;
        font-size: 15px;
    }

    .gac-app .gac-screen {
        min-height: 100vh;
        min-height: 100dvh;
        overflow: visible;
        background: #f3f7fb;
    }

    .gac-app .gac-desktop-header {
        position: sticky;
        z-index: 80;
        top: 0;
        display: block;
        width: 100%;
        min-height: 76px;
        border-bottom: 1px solid rgba(203, 218, 229, 0.9);
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 4px 18px rgba(35, 79, 121, 0.065);
        backdrop-filter: blur(18px);
    }

    .gac-app .gac-desktop-header__inner {
        display: grid;
        width: min(100%, 1344px);
        min-height: 76px;
        margin-inline: auto;
        padding-inline: 32px;
        grid-template-columns: auto auto minmax(0, 1fr);
        align-items: center;
        gap: 28px;
    }

    .gac-app .gac-desktop-header button {
        border: 0;
        font: inherit;
    }

    .gac-app .gac-desktop-brand {
        display: flex;
        min-width: 190px;
        min-height: 58px;
        padding: 4px 8px 4px 0;
        align-items: center;
        gap: 10px;
        color: var(--gac-text);
        background: transparent;
        text-align: left;
    }

    .gac-app .gac-desktop-brand img {
        width: 54px;
        height: 48px;
        flex: 0 0 auto;
        object-fit: contain;
    }

    .gac-app .gac-desktop-brand > span,
    .gac-app .gac-desktop-account > span:last-child {
        min-width: 0;
    }

    .gac-app .gac-desktop-brand strong,
    .gac-app .gac-desktop-brand small {
        display: block;
    }

    .gac-app .gac-desktop-brand strong {
        color: #17335d;
        font-size: 17px;
        font-weight: 800;
        line-height: 1.15;
    }

    .gac-app .gac-desktop-brand small {
        margin-top: 3px;
        color: var(--gac-text-muted);
        font-size: 9px;
        font-weight: 650;
        white-space: nowrap;
    }

    .gac-app .gac-desktop-nav {
        display: flex;
        min-width: 0;
        align-items: center;
        gap: 3px;
    }

    .gac-app .gac-desktop-nav button {
        position: relative;
        min-height: 44px;
        padding: 0 13px;
        border-radius: 12px;
        color: #536779;
        background: transparent;
        font-size: 12px;
        font-weight: 750;
        white-space: nowrap;
        transition: color 160ms ease, background-color 160ms ease;
    }

    .gac-app .gac-desktop-nav button:hover,
    .gac-app .gac-desktop-nav button.is-active {
        color: var(--gac-primary-dark);
        background: var(--gac-blue-soft);
    }

    .gac-app .gac-desktop-nav button.is-active::after {
        position: absolute;
        right: 13px;
        bottom: 4px;
        left: 13px;
        height: 2px;
        border-radius: var(--gac-radius-pill);
        background: var(--gac-primary);
        content: "";
    }

    .gac-app .gac-desktop-actions {
        display: flex;
        min-width: 0;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .gac-app .gac-desktop-search {
        display: flex;
        width: min(100%, 208px);
        min-width: 150px;
        min-height: 44px;
        padding-inline: 14px;
        align-items: center;
        gap: 9px;
        border: 1px solid var(--gac-border) !important;
        border-radius: var(--gac-radius-pill);
        color: var(--gac-text-muted);
        background: #f7fafc;
        font-size: 11px;
        font-weight: 650;
        text-align: left;
    }

    .gac-app .gac-desktop-search:hover {
        color: var(--gac-primary-dark);
        border-color: rgba(62, 121, 244, 0.42) !important;
        background: var(--gac-blue-soft);
    }

    .gac-app .gac-desktop-search svg,
    .gac-app .gac-desktop-icon svg {
        width: 19px;
        height: 19px;
        flex: 0 0 auto;
    }

    .gac-app .gac-desktop-icon {
        position: relative;
        display: grid;
        width: 44px;
        min-width: 44px;
        height: 44px;
        padding: 0;
        place-items: center;
        border: 1px solid var(--gac-border) !important;
        border-radius: 50%;
        color: #41596d;
        background: #ffffff;
        transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
    }

    .gac-app .gac-desktop-icon:hover {
        color: var(--gac-primary-dark);
        border-color: rgba(62, 121, 244, 0.42) !important;
        background: var(--gac-blue-soft);
    }

    .gac-app .gac-desktop-badge {
        position: absolute;
        top: -3px;
        right: -3px;
        display: grid;
        min-width: 18px;
        height: 18px;
        padding-inline: 4px;
        place-items: center;
        border: 2px solid #ffffff;
        border-radius: var(--gac-radius-pill);
        color: #ffffff;
        background: var(--gac-danger);
        font-size: 8px;
        font-weight: 800;
        line-height: 1;
    }

    .gac-app .gac-desktop-account {
        display: flex;
        max-width: 152px;
        min-height: 46px;
        padding: 4px 10px 4px 5px;
        align-items: center;
        gap: 8px;
        overflow: hidden;
        border: 1px solid var(--gac-border) !important;
        border-radius: var(--gac-radius-pill);
        color: #233d55;
        background: #ffffff;
        font-size: 11px;
        font-weight: 750;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .gac-app .gac-desktop-account:hover {
        border-color: rgba(62, 121, 244, 0.42) !important;
        background: var(--gac-blue-soft);
    }

    .gac-app .gac-desktop-account__avatar {
        display: grid;
        width: 34px;
        min-width: 34px;
        height: 34px;
        place-items: center;
        border-radius: 50%;
        color: #ffffff;
        background: linear-gradient(145deg, var(--gac-secondary), var(--gac-primary-dark));
        font-size: 10px;
        font-weight: 800;
    }

    .gac-app .gac-appbar {
        top: 76px;
        min-height: 64px;
        padding: 0 32px;
        background: rgba(255, 255, 255, 0.965);
        box-shadow: 0 2px 12px rgba(35, 79, 121, 0.045);
    }

    .gac-app .gac-appbar-row,
    .gac-app .gac-appbar > .gac-inline-search,
    .gac-app .gac-appbar > .gac-chip-row {
        width: min(100%, 1280px);
        max-width: 1280px;
        margin-inline: auto;
    }

    .gac-app .gac-appbar > .gac-inline-search {
        padding-bottom: 12px;
    }

    .gac-app .gac-appbar > .gac-chip-row {
        padding: 2px 0 12px;
    }

    .gac-app .gac-appbar-title {
        font-size: 21px;
    }

    .gac-app .gac-appbar-subtitle {
        margin-top: 2px;
        font-size: 11px;
    }

    .gac-app .gac-home-appbar .gac-appbar-actions {
        display: none;
    }

    .gac-app .gac-location-title {
        max-width: 420px;
    }

    .gac-app .gac-location-title strong {
        font-size: 13px;
    }

    .gac-app .gac-scroll {
        min-height: 0;
        overflow: visible;
        overscroll-behavior: auto;
    }

    .gac-app .gac-scroll.has-bottom-nav,
    .gac-app .gac-scroll.has-sticky-actions,
    .gac-app .gac-scroll.has-bottom-nav.has-sticky-actions {
        padding-bottom: 44px;
    }

    .gac-app .gac-content,
    .gac-app .gac-main {
        width: min(100%, 1280px);
        margin-inline: auto;
        padding: 32px;
    }

    .gac-app .gac-home {
        padding-bottom: 52px;
    }

    .gac-app .gac-bottom-nav {
        display: none;
    }

    .gac-app .gac-sticky-actions {
        width: min(calc(100vw - 64px), 560px);
        min-height: 76px;
        bottom: 24px;
        padding: 10px 12px;
        border: 1px solid rgba(203, 218, 229, 0.95);
        border-radius: 20px;
        box-shadow: 0 18px 44px rgba(27, 61, 94, 0.18);
    }

    .gac-app.gac-route-product .gac-sticky-actions,
    .gac-app.gac-route-cart .gac-sticky-actions,
    .gac-app.gac-route-checkout .gac-sticky-actions {
        display: none;
    }

    .gac-app .gac-overlay,
    .gac-app .gac-modal-overlay,
    .gac-app .gac-sheet-backdrop,
    .gac-app .gac-drawer-backdrop {
        width: 100vw;
        max-width: none;
    }

    .gac-app .gac-modal-overlay {
        padding: 32px;
    }

    .gac-app .gac-modal {
        width: min(100%, 460px);
        padding: 30px;
        border-radius: 24px;
    }

    .gac-app .gac-sheet-overlay {
        padding: 32px;
        place-items: center;
    }

    .gac-app .gac-sheet-overlay .gac-sheet {
        width: min(100%, 680px);
        max-height: min(86vh, 760px);
        padding: 16px 28px 28px;
        overflow-y: auto;
        border: 1px solid rgba(203, 218, 229, 0.92);
        border-radius: 24px;
        box-shadow: 0 26px 70px rgba(7, 20, 43, 0.24);
        transform: translateY(18px) scale(0.985);
    }

    .gac-app .gac-sheet-overlay.is-open .gac-sheet {
        transform: none;
    }

    .gac-app .gac-sheet-handle,
    .gac-app .gac-sheet__handle {
        display: none;
    }

    .gac-app .gac-drawer {
        left: 0;
        width: min(390px, 36vw);
    }

    .gac-app .gac-toast-host {
        right: 28px;
        bottom: 28px;
        width: min(calc(100vw - 56px), 420px);
        transform: none;
    }

    .gac-app .gac-toast {
        right: 28px;
        bottom: 28px;
        width: min(calc(100vw - 56px), 420px);
        transform: translateY(20px);
    }

    .gac-app .gac-toast.is-visible,
    .gac-app .gac-toast[aria-hidden="false"] {
        transform: none;
    }

    /* Home */
    .gac-app .gac-carousel,
    .gac-app .gac-home-carousel {
        height: clamp(360px, 46vw, 560px);
        border-radius: 24px;
        box-shadow: 0 18px 42px rgba(35, 79, 121, 0.14);
    }

    .gac-app .gac-feature-grid {
        margin-top: 24px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .gac-app .gac-feature-card {
        min-height: 214px;
        padding: 22px;
        border-radius: 22px;
        box-shadow: 0 16px 32px rgba(35, 79, 121, 0.15);
    }

    .gac-app .gac-feature-icon {
        width: 44px;
        height: 44px;
    }

    .gac-app .gac-feature-title {
        font-size: 18px;
    }

    .gac-app .gac-feature-subtitle {
        max-width: 70%;
        margin-top: 7px;
        font-size: 11px;
    }

    .gac-app .gac-feature-art {
        width: 52%;
        height: 62%;
    }

    .gac-app .gac-feature-arrow {
        bottom: 18px;
        left: 22px;
        width: 34px;
        height: 34px;
    }

    .gac-app .gac-consult-card {
        min-height: 188px;
        margin-top: 24px;
        padding: 30px 34px;
        border-radius: 24px;
    }

    .gac-app .gac-consult-card > h2 {
        max-width: 720px;
        font-size: 28px;
    }

    .gac-app .gac-consult-card > p,
    .gac-app .gac-consult-services {
        font-size: 12px;
    }

    .gac-app .gac-consult-services {
        max-width: 940px;
        gap: 10px 18px;
    }

    .gac-app .gac-consult-email {
        margin-top: 16px;
        font-size: 16px;
    }

    /* Offers, brands and product catalogue */
    .gac-app .gac-offer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .gac-app .gac-offer-card {
        border-radius: 20px;
        box-shadow: 0 10px 28px rgba(35, 79, 121, 0.09);
    }

    .gac-app .gac-offer-body > p,
    .gac-app .gac-offer-body > div button {
        font-size: 11px;
    }

    .gac-app .gac-brand-title-row,
    .gac-app .gac-brand-hero {
        width: min(100%, 1280px);
        margin-inline: auto;
    }

    .gac-app .gac-brand-title-row {
        min-height: 68px;
        padding-inline: 32px;
    }

    .gac-app .gac-brand-hero {
        min-height: 210px;
        padding: 12px 32px 54px;
        grid-template-columns: minmax(0, 1fr) 240px;
    }

    .gac-app .gac-brand-hero > p {
        max-width: 620px;
        font-size: 32px;
    }

    .gac-app .gac-brand-hero > img {
        width: 240px;
        height: 174px;
    }

    .gac-app .gac-brand-search {
        width: min(calc(100% - 64px), 1216px);
        min-height: 58px;
        margin: -29px auto 28px;
        border-radius: 16px;
    }

    .gac-app .gac-brand-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

    .gac-app .gac-brand-item {
        min-height: 116px;
        padding: 16px;
        grid-template-columns: 88px minmax(0, 1fr) 38px;
        border-radius: 18px;
    }

    .gac-app .gac-brand-logo {
        width: 88px;
        height: 76px;
    }

    .gac-app .gac-brand-copy strong {
        font-size: 15px;
    }

    .gac-app .gac-brand-copy small {
        font-size: 11px;
    }

    .gac-app .gac-product-toolbar {
        top: 88px;
        min-height: 60px;
        padding: 8px 0;
        border: 0;
        background: rgba(243, 247, 251, 0.96);
    }

    .gac-app.gac-route-products .gac-appbar {
        position: relative;
        top: auto;
    }

    .gac-app .gac-order-tabs {
        top: 140px;
        justify-content: center;
    }

    .gac-app .gac-product-toolbar > button {
        max-width: 180px;
        min-height: 44px;
        flex: 0 0 180px;
        border: 1px solid var(--gac-border);
        font-size: 12px;
    }

    .gac-app .gac-product-grid,
    .gac-app .gac-wishlist-grid {
        padding: 22px 0;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .gac-app .gac-product-grid.is-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gac-app .gac-product-card {
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(35, 79, 121, 0.075);
    }

    .gac-app .gac-product-card:hover {
        box-shadow: 0 16px 34px rgba(35, 79, 121, 0.14);
        transform: translateY(-4px);
    }

    .gac-app .gac-product-name {
        min-height: 42px;
        font-size: 14px;
    }

    .gac-app .gac-product-model,
    .gac-app .gac-product-prices del,
    .gac-app .gac-product-prices span,
    .gac-app .gac-saving {
        font-size: 10px;
    }

    .gac-app .gac-product-prices strong {
        font-size: 18px;
    }

    .gac-app .gac-stock-badge {
        font-size: 10px;
    }

    .gac-app .gac-pagination {
        width: min(100%, 560px);
        margin: 18px auto 0;
    }

    /* Product detail: two-column purchase area, full-width details below. */
    .gac-app .gac-product-detail {
        display: grid;
        width: min(100%, 1280px);
        min-height: 0;
        margin-inline: auto;
        padding: 40px 32px 72px;
        grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
        align-items: start;
        column-gap: 48px;
        row-gap: 0;
    }

    .gac-app .gac-product-detail > .gac-content {
        display: contents;
    }

    .gac-app .gac-product-detail > .gac-product-hero {
        position: sticky;
        top: 164px;
        grid-column: 1;
        grid-row: 1 / span 9;
        min-height: 528px;
        overflow: hidden;
        border: 1px solid var(--gac-border);
        border-radius: 24px;
        box-shadow: 0 14px 38px rgba(35, 79, 121, 0.09);
    }

    .gac-app .gac-product-gallery {
        min-height: 528px;
        padding: 22px;
    }

    .gac-app .gac-product-main-image {
        height: 430px;
        padding: 32px;
    }

    .gac-app .gac-gallery-thumbs {
        height: 64px;
        margin-top: 12px;
        gap: 10px;
    }

    .gac-app .gac-gallery-thumbs button {
        width: 62px;
        height: 62px;
    }

    .gac-app .gac-product-detail > .gac-content > :is(.gac-product-heading, .gac-product-price-row, .gac-spec-grid, .gac-detail-info-grid, .gac-variant-selector, .gac-buy-options, .gac-desktop-product-actions) {
        grid-column: 2;
    }

    .gac-app .gac-product-heading > h1 {
        margin-top: 8px;
        font-size: 28px;
        line-height: 1.25;
    }

    .gac-app .gac-product-heading > p {
        margin-top: 6px;
        font-size: 12px;
    }

    .gac-app .gac-product-heading > div > span,
    .gac-app .gac-product-heading .gac-rating {
        font-size: 10px;
    }

    .gac-app .gac-product-price-row {
        margin-top: 20px;
        padding: 18px;
    }

    .gac-app .gac-product-price-row strong {
        font-size: 28px;
    }

    .gac-app .gac-spec-grid,
    .gac-app .gac-detail-info-grid {
        gap: 10px;
    }

    .gac-app .gac-spec-grid > div,
    .gac-app .gac-detail-info-grid article {
        min-height: 104px;
        padding: 12px 8px;
    }

    .gac-app .gac-spec-grid > div small,
    .gac-app .gac-detail-info-grid small {
        font-size: 9px;
    }

    .gac-app .gac-spec-grid > div strong,
    .gac-app .gac-detail-info-grid strong {
        font-size: 11px;
    }

    .gac-app .gac-variant-selector > h3 {
        font-size: 13px;
    }

    .gac-app .gac-buy-options {
        padding: 18px;
    }

    .gac-app .gac-desktop-product-actions {
        display: grid;
        margin-top: 14px;
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 12px;
    }

    .gac-app .gac-desktop-product-actions .gac-btn {
        min-height: 58px;
        font-size: 14px;
    }

    .gac-app .gac-product-detail > .gac-content > :is(.gac-detail-section, .gac-warranty-card) {
        grid-column: 1 / -1;
    }

    .gac-app .gac-product-detail .gac-detail-section,
    .gac-app .gac-product-detail .gac-warranty-card {
        margin-top: 22px;
        padding: 24px;
        border-radius: 18px;
    }

    .gac-app .gac-detail-section > h2,
    .gac-app .gac-section-heading > h2,
    .gac-app .gac-section-heading > h3 {
        font-size: 18px;
    }

    .gac-app .gac-rich-text,
    .gac-app .gac-highlight-list li {
        font-size: 13px;
    }

    /* Cart and checkout use conventional desktop summary sidebars. */
    .gac-app .gac-cart {
        display: grid;
        padding-bottom: 64px;
        grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.72fr);
        align-items: start;
        gap: 32px;
    }

    .gac-app .gac-cart-list {
        margin: 0;
        gap: 16px;
    }

    .gac-app .gac-cart-sidebar {
        position: sticky;
        top: 164px;
        display: flex;
        padding: 20px;
        flex-direction: column;
        border: 1px solid var(--gac-border);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 12px 34px rgba(35, 79, 121, 0.09);
    }

    .gac-app .gac-cart-sidebar .gac-coupon-card,
    .gac-app .gac-cart-sidebar .gac-price-summary {
        margin-bottom: 18px;
    }

    .gac-app .gac-cart-sidebar .gac-trust-badges {
        margin: 4px 0 20px;
    }

    .gac-app .gac-cart-item-main {
        padding: 18px;
        grid-template-columns: 116px minmax(0, 1fr) 42px;
        gap: 16px;
    }

    .gac-app .gac-cart-image {
        width: 116px;
        height: 122px;
    }

    .gac-app .gac-cart-copy > span {
        font-size: 9px;
    }

    .gac-app .gac-cart-copy h2 {
        font-size: 15px;
    }

    .gac-app .gac-cart-copy p {
        font-size: 11px;
    }

    .gac-app .gac-cart-copy > strong {
        font-size: 18px;
    }

    .gac-app .gac-cart-item-footer {
        padding: 10px 18px;
    }

    .gac-app .gac-desktop-cart-action,
    .gac-app .gac-desktop-checkout-action {
        display: flex;
        min-height: 58px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
    }

    .gac-app .gac-checkout {
        display: grid;
        padding-bottom: 64px;
        grid-template-columns: minmax(0, 1.35fr) minmax(380px, 0.75fr);
        align-items: start;
        gap: 32px;
    }

    .gac-app .gac-checkout-main,
    .gac-app .gac-checkout-sidebar {
        display: flex;
        min-width: 0;
        flex-direction: column;
    }

    .gac-app .gac-checkout-main {
        gap: 18px;
    }

    .gac-app .gac-checkout-sidebar {
        position: sticky;
        top: 164px;
        gap: 18px;
        padding: 20px;
        border: 1px solid var(--gac-border);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 12px 34px rgba(35, 79, 121, 0.09);
    }

    .gac-app .gac-checkout-main .gac-delivery-card,
    .gac-app .gac-checkout-sidebar .gac-coupon-box,
    .gac-app .gac-checkout-sidebar .gac-price-summary,
    .gac-app .gac-checkout-sidebar .gac-trust-badges {
        margin: 0;
    }

    .gac-app .gac-checkout .gac-address-list.is-selectable {
        display: grid;
        margin-top: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .gac-app .gac-checkout-items {
        padding: 20px;
    }

    .gac-app .gac-checkout-items > h2,
    .gac-app .gac-checkout .gac-coupon-box h2 {
        font-size: 16px;
    }

    .gac-app .gac-checkout-items > div {
        min-height: 82px;
        grid-template-columns: 64px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .gac-app .gac-checkout-items img {
        width: 64px;
        height: 64px;
    }

    .gac-app .gac-checkout-items strong,
    .gac-app .gac-checkout-items b {
        font-size: 12px;
    }

    .gac-app .gac-checkout-items small {
        font-size: 10px;
    }

    .gac-app .gac-payment-option {
        min-height: 58px;
        padding: 10px 12px;
    }

    .gac-app .gac-payment-option strong {
        font-size: 12px;
    }

    .gac-app .gac-payment-option small {
        font-size: 9px;
    }

    /* Account, order, address, contact and readable-form widths. */
    .gac-app .gac-profile {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        align-items: start;
        gap: 0 28px;
    }

    .gac-app .gac-profile-hero {
        position: sticky;
        top: 164px;
        grid-column: 1;
        grid-row: 1 / span 5;
        min-height: 300px;
        margin: 0;
        padding: 42px 28px;
        border-radius: 24px;
    }

    .gac-app .gac-profile-hero > h1 {
        font-size: 22px;
    }

    .gac-app .gac-profile-hero > p,
    .gac-app .gac-profile-hero > button {
        font-size: 11px;
    }

    .gac-app .gac-profile > :not(.gac-profile-hero) {
        grid-column: 2;
    }

    .gac-app .gac-menu-section {
        margin-bottom: 18px;
    }

    .gac-app .gac-menu-section > h2 {
        padding: 0 2px 9px;
        font-size: 10px;
    }

    .gac-app .gac-menu-section > div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gac-app .gac-menu-item {
        min-height: 78px;
        padding: 14px;
        border: 1px solid var(--gac-border);
        border-radius: 16px;
        box-shadow: var(--gac-shadow-xs);
    }

    .gac-app .gac-menu-item:hover {
        border-color: rgba(62, 121, 244, 0.36);
        box-shadow: var(--gac-shadow-sm);
    }

    .gac-app .gac-menu-item > span:nth-child(2) strong {
        font-size: 13px;
    }

    .gac-app .gac-menu-item > span:nth-child(2) small {
        font-size: 10px;
    }

    .gac-app .gac-profile > .gac-consult-card {
        margin-top: 0;
    }

    .gac-app .gac-order-list {
        display: grid;
        padding-top: 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        gap: 18px;
    }

    .gac-app .gac-order-support {
        grid-column: 1 / -1;
    }

    .gac-app .gac-order-card-head strong,
    .gac-app .gac-order-preview strong {
        font-size: 12px;
    }

    .gac-app .gac-order-card-head small,
    .gac-app .gac-order-preview small,
    .gac-app .gac-order-card-foot small {
        font-size: 9px;
    }

    .gac-app .gac-addresses {
        max-width: 1120px;
    }

    .gac-app .gac-addresses .gac-address-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .gac-app .gac-address-copy h2 {
        font-size: 14px;
    }

    .gac-app .gac-address-copy p {
        font-size: 11px;
    }

    .gac-app .gac-edit-profile,
    .gac-app .gac-settings,
    .gac-app .gac-notifications,
    .gac-app .gac-search-screen,
    .gac-app .gac-reviews {
        max-width: 900px;
    }

    .gac-app .gac-legal {
        max-width: 920px;
        padding: 40px 48px;
        border: 1px solid var(--gac-border);
        border-radius: 22px;
        background: #ffffff;
        box-shadow: 0 10px 30px rgba(35, 79, 121, 0.07);
    }

    .gac-app .gac-contact {
        max-width: 1080px;
    }

    .gac-app .gac-contact-list,
    .gac-app .gac-contact-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .gac-app .gac-field > span,
    .gac-app .gac-filter-form legend {
        font-size: 12px;
    }

    .gac-app .gac-field input,
    .gac-app .gac-field select,
    .gac-app .gac-field textarea,
    .gac-app .gac-select {
        font-size: 13px;
    }

    /* Auth remains focused instead of stretching with the full-width shell. */
    .gac-app.gac-route-login .gac-auth-screen,
    .gac-app.gac-route-signup .gac-auth-screen,
    .gac-app.gac-route-otp .gac-auth-screen {
        display: grid;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 44px;
        place-items: center;
        background:
            radial-gradient(circle at 12% 18%, rgba(111, 162, 255, 0.22), transparent 31%),
            radial-gradient(circle at 88% 82%, rgba(62, 121, 244, 0.18), transparent 34%),
            #eef5fb;
    }

    .gac-app.gac-route-login .gac-auth,
    .gac-app.gac-route-signup .gac-auth,
    .gac-app.gac-route-otp .gac-auth {
        width: min(100%, 510px);
        min-height: 0;
        max-height: calc(100vh - 88px);
        max-height: calc(100dvh - 88px);
        padding: 38px 44px 42px;
        overflow-y: auto;
        border: 1px solid rgba(203, 218, 229, 0.95);
        border-radius: 30px;
        background: #ffffff;
        box-shadow: 0 28px 80px rgba(35, 79, 121, 0.17);
    }

    .gac-app.gac-route-login .gac-auth-logo,
    .gac-app.gac-route-signup .gac-auth-logo,
    .gac-app.gac-route-otp .gac-auth-logo {
        width: 148px;
        height: 92px;
    }

    .gac-app.gac-route-login .gac-auth-title,
    .gac-app.gac-route-signup .gac-auth-title,
    .gac-app.gac-route-otp .gac-auth-title,
    .gac-app.gac-route-otp .gac-otp-form h1 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .gac-app .gac-desktop-header__inner {
        padding-inline: 24px;
        gap: 15px;
    }

    .gac-app .gac-desktop-brand {
        min-width: auto;
    }

    .gac-app .gac-desktop-brand > span,
    .gac-app .gac-desktop-account > span:last-child {
        display: none;
    }

    .gac-app .gac-desktop-nav button {
        padding-inline: 10px;
    }

    .gac-app .gac-desktop-search {
        width: 48px;
        min-width: 48px;
        padding: 0;
        justify-content: center;
    }

    .gac-app .gac-desktop-search > span {
        display: none;
    }

    .gac-app .gac-desktop-account {
        width: 46px;
        padding: 5px;
    }

    .gac-app .gac-product-grid,
    .gac-app .gac-wishlist-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gac-app .gac-brand-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gac-app .gac-product-detail {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
        column-gap: 30px;
    }

    .gac-app .gac-checkout {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 24px;
    }
}

/* Mobile and tablet hardening. These rules intentionally stop before the
 * desktop breakpoint so the wide storefront composition remains unchanged. */
@media (max-width: 1023px) {
    .gac-app .gac-appbar {
        padding-right: max(var(--gac-space-4), var(--gac-safe-right));
        padding-left: max(var(--gac-space-4), var(--gac-safe-left));
    }

    .gac-app .gac-auth-screen > .gac-auth,
    .gac-app .gac-auth__scroll {
        padding-right: max(24px, var(--gac-safe-right));
        padding-left: max(24px, var(--gac-safe-left));
    }

    .gac-app .gac-content,
    .gac-app .gac-main,
    .gac-app .gac-page-pad,
    .gac-app .gac-product-list,
    .gac-app .gac-cart-list,
    .gac-app .gac-address-list,
    .gac-app .gac-wishlist-grid,
    .gac-app .gac-order-tabs,
    .gac-app .gac-checkout {
        padding-right: max(var(--gac-space-4), var(--gac-safe-right));
        padding-left: max(var(--gac-space-4), var(--gac-safe-left));
    }

    .gac-app .gac-toast-host,
    .gac-app .gac-toast {
        width: min(calc(100vw - var(--gac-safe-left) - var(--gac-safe-right) - 28px), 452px);
    }

    .gac-app .gac-bottom-nav {
        padding-right: max(8px, var(--gac-safe-right));
        padding-left: max(8px, var(--gac-safe-left));
    }

    .gac-app .gac-sticky-actions,
    .gac-app .gac-cart-total,
    .gac-app .gac-checkout-total {
        padding-right: max(var(--gac-space-4), var(--gac-safe-right));
        padding-left: max(var(--gac-space-4), var(--gac-safe-left));
    }

    .gac-app .gac-modal-overlay:not(.gac-sheet-overlay) {
        padding-right: max(var(--gac-space-4), var(--gac-safe-right));
        padding-left: max(var(--gac-space-4), var(--gac-safe-left));
    }

    .gac-app .gac-sheet,
    .gac-app .gac-sheet-overlay .gac-sheet {
        max-height: min(88vh, 720px);
        max-height: min(88dvh, 720px);
        padding-right: max(var(--gac-space-5), var(--gac-safe-right));
        padding-left: max(var(--gac-space-5), var(--gac-safe-left));
    }

    .gac-app .gac-sheet > header {
        position: sticky;
        z-index: 4;
        top: -10px;
        padding-block: 8px;
        background: var(--gac-surface);
    }

    .gac-app .gac-image-viewer {
        padding-top: max(68px, calc(env(safe-area-inset-top, 0px) + 56px));
        padding-right: max(6px, var(--gac-safe-right));
        padding-bottom: max(54px, calc(env(safe-area-inset-bottom, 0px) + 42px));
        padding-left: max(6px, var(--gac-safe-left));
    }

    .gac-app .gac-image-viewer > .gac-viewer-close {
        right: max(10px, var(--gac-safe-right));
    }

    .gac-app .gac-carousel,
    .gac-app .gac-carousel-track,
    .gac-app .gac-image-viewer-stage {
        touch-action: pan-y;
    }

    .gac-app .gac-btn-small,
    .gac-app .gac-chip,
    .gac-app .gac-choice-chip > span,
    .gac-app .gac-check-list label,
    .gac-app .gac-section-heading > button,
    .gac-app .gac-product-toolbar > button,
    .gac-app .gac-product-name,
    .gac-app .gac-filter-bar button,
    .gac-app .gac-order-tabs button,
    .gac-app .gac-order-tab,
    .gac-app .gac-compare-product > button,
    .gac-app .gac-order-card-footer .gac-btn,
    .gac-app .gac-order-card-foot button,
    .gac-app .gac-order-items > article button,
    .gac-app .gac-address-actions button,
    .gac-app .gac-notification-summary button,
    .gac-app .gac-profile-hero > button,
    .gac-app .gac-toast__action,
    .gac-app .gac-exchange-applied button {
        min-height: 44px;
    }

    .gac-app .gac-exchange-applied button {
        min-width: 44px;
    }

    .gac-app .gac-carousel-dots > button,
    .gac-app .gac-carousel-dots > button.is-active {
        width: 44px;
        height: 44px;
    }

    .gac-app .gac-qty {
        height: 44px;
        grid-template-columns: 44px minmax(34px, auto) 44px;
    }

    .gac-app .gac-qty button {
        width: 44px;
        height: 44px;
    }

    .gac-app .gac-wishlist-button,
    .gac-app .gac-cart-remove,
    .gac-app .gac-address-card-actions button,
    .gac-app .gac-address-select,
    .gac-app .gac-notification-list article > button:not(.gac-notification-open),
    .gac-app [data-action="clear-search"] {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .gac-app .gac-wishlist-button {
        top: 4px;
        right: 4px;
    }

    .gac-app .gac-cart-item-main {
        grid-template-columns: 92px minmax(0, 1fr) 44px;
    }

    .gac-app .gac-address-list.is-selectable .gac-address-card {
        grid-template-columns: 44px 36px minmax(0, 1fr);
    }

    .gac-app .gac-notification-list > article {
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .gac-app .gac-upload-thumb > button::before {
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        content: "";
    }

    .gac-app .gac-chip-row :focus-visible,
    .gac-app .gac-order-tabs :focus-visible,
    .gac-app .gac-carousel-dots :focus-visible,
    .gac-app .gac-gallery-thumbs :focus-visible {
        outline-offset: -3px;
    }

    .gac-app .gac-chip.is-active,
    .gac-app .gac-chip[aria-pressed="true"],
    .gac-app .gac-chip[aria-selected="true"],
    .gac-app .gac-choice-chip input:checked + span,
    .gac-app .gac-order-tabs button.is-active,
    .gac-app .gac-order-tabs button[aria-pressed="true"],
    .gac-app .gac-appbar-actions .gac-icon-btn.is-active {
        border-color: var(--gac-primary-dark);
        background: var(--gac-primary-dark);
    }

    .gac-app .gac-btn-primary {
        background: linear-gradient(145deg, #2f68de, #154fbe);
    }

    .gac-app .gac-rich-text {
        font-size: 12px;
    }

    .gac-app .gac-product-model,
    .gac-app .gac-product-prices del,
    .gac-app .gac-product-prices span,
    .gac-app .gac-saving,
    .gac-app .gac-cart-copy > span,
    .gac-app .gac-cart-copy p,
    .gac-app .gac-checkout-items small,
    .gac-app .gac-order-card-head small,
    .gac-app .gac-order-preview small,
    .gac-app .gac-order-card-foot small,
    .gac-app .gac-order-items > article small,
    .gac-app .gac-contact-list small,
    .gac-app .gac-notification-list p,
    .gac-app .gac-notification-list small,
    .gac-app .gac-notification-summary small,
    .gac-app .gac-identity-field small,
    .gac-app .gac-auth-features small,
    .gac-app .gac-trust-badges small,
    .gac-app .gac-detail-info-grid small,
    .gac-app .gac-thank-you > section small {
        font-size: 10px;
    }

    .gac-app .gac-cart-copy h2,
    .gac-app .gac-checkout-items strong,
    .gac-app .gac-checkout-items b,
    .gac-app .gac-order-card-head strong,
    .gac-app .gac-order-preview strong,
    .gac-app .gac-order-items > article strong,
    .gac-app .gac-contact-list strong,
    .gac-app .gac-notification-list strong,
    .gac-app .gac-notification-summary strong,
    .gac-app .gac-identity-field strong,
    .gac-app .gac-auth-features strong,
    .gac-app .gac-menu-item > span:nth-child(2) strong,
    .gac-app .gac-warranty-card p,
    .gac-app .gac-warranty-card small,
    .gac-app .gac-trust-badges strong,
    .gac-app .gac-detail-info-grid strong,
    .gac-app .gac-thank-you > section strong {
        font-size: 11px;
    }

    .gac-app .gac-menu-item > span:nth-child(2) small,
    .gac-app .gac-profile-hero > p {
        font-size: 10px;
    }

    .gac-app .gac-auth-features strong,
    .gac-app .gac-auth-features small {
        line-height: 1.35;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    body.gac-page {
        background: #edf4f8;
    }

    .gac-app {
        width: min(100%, 860px);
        max-width: 860px;
        border-right: 1px solid rgba(203, 218, 229, 0.9);
        border-left: 1px solid rgba(203, 218, 229, 0.9);
        box-shadow: 0 0 54px rgba(35, 79, 121, 0.15);
    }

    .gac-app .gac-appbar,
    .gac-app .gac-content,
    .gac-app .gac-main,
    .gac-app .gac-page-pad,
    .gac-app .gac-product-list,
    .gac-app .gac-cart-list,
    .gac-app .gac-address-list,
    .gac-app .gac-wishlist-grid,
    .gac-app .gac-order-tabs,
    .gac-app .gac-checkout {
        padding-right: max(22px, var(--gac-safe-right));
        padding-left: max(22px, var(--gac-safe-left));
    }

    .gac-app .gac-bottom-nav,
    .gac-app .gac-sticky-actions,
    .gac-app .gac-cart-total,
    .gac-app .gac-checkout-total,
    .gac-app .gac-modal-overlay,
    .gac-app .gac-image-viewer {
        width: min(100vw, 860px);
    }

    .gac-app .gac-sheet-overlay {
        place-items: end center;
    }

    .gac-app .gac-sheet-overlay .gac-sheet {
        width: min(100%, 680px);
        border-radius: var(--gac-radius-xl) var(--gac-radius-xl) 0 0;
    }

    .gac-app .gac-carousel,
    .gac-app .gac-home-carousel {
        height: auto;
        aspect-ratio: 9 / 5;
    }

    .gac-app .gac-feature-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gac-app .gac-product-grid,
    .gac-app .gac-wishlist-grid,
    .gac-app .gac-offer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gac-app .gac-product-grid.is-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .gac-app .gac-brand-list,
    .gac-app .gac-order-list,
    .gac-app .gac-address-list:not(.is-selectable),
    .gac-app .gac-checkout .gac-address-list.is-selectable,
    .gac-app .gac-contact-list,
    .gac-app .gac-menu-section > div {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .gac-app .gac-menu-item {
        border: 1px solid var(--gac-border);
        border-radius: var(--gac-radius-md);
        background: var(--gac-surface);
        box-shadow: var(--gac-shadow-xs);
    }

    .gac-app .gac-product-hero,
    .gac-app .gac-product-gallery {
        min-height: 424px;
    }

    .gac-app .gac-product-main-image {
        height: 342px;
    }

    .gac-app .gac-product-detail > .gac-content {
        max-width: 780px;
        margin-inline: auto;
    }

    .gac-app.gac-route-login .gac-auth-screen,
    .gac-app.gac-route-signup .gac-auth-screen,
    .gac-app.gac-route-otp .gac-auth-screen {
        display: grid;
        min-height: 100vh;
        min-height: 100dvh;
        padding: 32px;
        place-items: center;
        background: radial-gradient(circle at 15% 16%, rgba(111, 162, 255, 0.2), transparent 34%), #eef5fb;
    }

    .gac-app.gac-route-login .gac-auth,
    .gac-app.gac-route-signup .gac-auth,
    .gac-app.gac-route-otp .gac-auth {
        width: min(100%, 520px);
        min-height: 0;
        max-height: calc(100vh - 64px);
        max-height: calc(100dvh - 64px);
        padding: 36px max(42px, var(--gac-safe-right)) 40px max(42px, var(--gac-safe-left));
        overflow-y: auto;
        border: 1px solid rgba(203, 218, 229, 0.95);
        border-radius: 28px;
        background: #ffffff;
        box-shadow: 0 24px 68px rgba(35, 79, 121, 0.16);
    }
}

@media (min-width: 1024px) {
    .gac-app .gac-image-viewer {
        width: 100vw;
        max-width: none;
        padding: max(76px, calc(env(safe-area-inset-top, 0px) + 64px)) max(24px, var(--gac-safe-right)) max(58px, calc(env(safe-area-inset-bottom, 0px) + 44px)) max(24px, var(--gac-safe-left));
    }

    .gac-app .gac-image-viewer-stage {
        max-width: 1200px;
        justify-self: center;
    }

    .gac-app .gac-image-viewer > .gac-viewer-close {
        right: max(24px, var(--gac-safe-right));
    }
}

@media (max-width: 359px) {
    .gac-app .gac-detail-info-grid,
    .gac-app .gac-trust-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .gac-app .gac-auth-features,
    .gac-app .gac-auth-social,
    .gac-app .gac-modal-actions,
    .gac-app .gac-thank-you > section {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
    }

    .gac-app .gac-thank-you > section > span {
        padding-block: 5px;
    }

    .gac-app .gac-thank-you > section > span + span {
        border-top: 1px solid var(--gac-border);
        border-left: 0;
    }

    .gac-app .gac-notification-summary {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .gac-app .gac-notification-summary > div:last-child {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: flex-end;
    }

    .gac-app .gac-upload-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .gac-app .gac-cart-item-main {
        grid-template-columns: 72px minmax(0, 1fr) 44px;
    }
}

@media (max-width: 319px) {
    .gac-app .gac-product-grid:not(.is-list),
    .gac-app .gac-wishlist-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.gac-app .gac-developer {
    font-size: 10px;
    line-height: 1.5;
}

.gac-app .gac-developer a {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 4px;
    align-items: center;
}

.gac-app .gac-coupon-remove {
    min-height: 44px;
    margin-top: 6px;
    padding-inline: 8px;
    border: 0;
    color: var(--gac-danger);
    background: transparent;
    font-size: 11px;
    font-weight: 800;
}

.gac-app .gac-coupon-remove[hidden] {
    display: none;
}

.gac-app .gac-compare-product {
    justify-content: flex-start;
}

.gac-app .gac-compare-product > .gac-compare-product-main {
    display: flex;
    width: 100%;
    min-height: 0;
    padding: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    border: 0;
    color: var(--gac-text);
    background: transparent;
    font-size: inherit;
}

.gac-app .gac-compare-product-main img {
    width: 100%;
    height: 112px;
    object-fit: contain;
}

.gac-app .gac-compare-product-main strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.gac-app .gac-compare-product-main small {
    color: var(--gac-text-muted);
    font-size: 10px;
}

.gac-app .gac-compare-product-actions {
    display: grid;
    width: 100%;
    margin-top: 5px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px;
}

.gac-app .gac-compare-product-actions > button {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 8px;
}

.gac-app .gac-compare-product-actions > [data-action="remove-compare"] {
    border: 0;
    color: var(--gac-danger);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 1023px) {
    .gac-app .gac-chip {
        min-width: 44px;
    }

    .gac-app .gac-product-toolbar {
        top: 0;
    }
}

@media (min-width: 1024px) {
    .gac-app .gac-carousel-dots > button,
    .gac-app .gac-carousel-dots > button.is-active,
    .gac-app .gac-chip,
    .gac-app .gac-order-tabs button,
    .gac-app .gac-profile-hero > button,
    .gac-app .gac-product-name,
    .gac-app .gac-offer-body > div > button {
        min-height: 44px;
    }

    .gac-app .gac-chip {
        min-width: 44px;
    }

    .gac-app .gac-qty {
        height: 44px;
        grid-template-columns: 44px minmax(34px, auto) 44px;
    }

    .gac-app .gac-qty button,
    .gac-app [data-action="clear-search"] {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .gac-app .gac-section-heading > button {
        min-height: 44px;
    }

    .gac-app .gac-menu-section > h2 {
        padding: 12px 16px 9px;
    }

    .gac-app .gac-carousel-dots > button,
    .gac-app .gac-carousel-dots > button.is-active,
    .gac-app .gac-wishlist-button,
    .gac-app .gac-cart-remove,
    .gac-app .gac-offer-body > div > button:last-child {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .gac-app .gac-search-bar [data-action="clear-search"] {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .gac-app .gac-coupon-box input,
    .gac-app .gac-coupon-box button[type="submit"],
    .gac-app .gac-section-heading > button {
        min-width: 44px;
        min-height: 44px;
    }
}

@media (orientation: landscape) and (max-height: 560px) {
    .gac-app .gac-splash__logo {
        width: 170px;
        max-height: 100px;
    }

    .gac-app .gac-auth__scroll {
        padding-top: 20px;
    }

    .gac-app .gac-auth__brand {
        margin-bottom: 10px;
    }

    .gac-app .gac-auth__logo,
    .gac-app .gac-auth-logo {
        width: 104px;
        height: 60px;
    }
}

@media (hover: none) {
    .gac-app .gac-card--interactive:hover,
    .gac-app .gac-offer-card:hover,
    .gac-app .gac-product-card:hover,
    .gac-app .gac-brand-item:hover {
        transform: none;
        box-shadow: var(--gac-shadow-xs);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gac-app *,
    .gac-app *::before,
    .gac-app *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media (forced-colors: active) {
    .gac-app .gac-btn,
    .gac-app .gac-chip.is-active,
    .gac-app .gac-bottom-nav__item[aria-current="page"],
    .gac-app .gac-bottom-nav-item[aria-current="page"],
    .gac-app .gac-card--selected,
    .gac-app .gac-address-card.is-active,
    .gac-app .gac-address-card.is-selected {
        border: 2px solid ButtonText;
    }

    .gac-app .gac-shimmer::after,
    .gac-app .gac-auth::before,
    .gac-app .gac-auth::after,
    .gac-app .gac-profile-hero::before,
    .gac-app .gac-profile-hero::after {
        display: none;
    }
}

@media print {
    .gac-app {
        width: 100%;
        max-width: none;
        min-height: auto;
        color: #000000;
        background: #ffffff;
        box-shadow: none;
    }

    .gac-app .gac-appbar,
    .gac-app .gac-desktop-header,
    .gac-app .gac-bottom-nav,
    .gac-app .gac-sticky-actions,
    .gac-app .gac-cart-total,
    .gac-app .gac-checkout-total,
    .gac-app .gac-filter-bar,
    .gac-app .gac-toast {
        display: none !important;
    }

    .gac-app .gac-main,
    .gac-app .gac-content,
    .gac-app .gac-cart,
    .gac-app .gac-checkout,
    .gac-app .gac-product-detail {
        padding-bottom: 0;
    }
}

@keyframes gac-spin {
    to { transform: rotate(360deg); }
}

@keyframes gac-progress {
    0% { transform: translateX(-110%); }
    50% { transform: translateX(105%); }
    100% { transform: translateX(260%); }
}

@keyframes gac-shimmer {
    100% { transform: translateX(100%); }
}
