/* Desktop composition from mobile-app-trend-concept (same UX + tokens, wider layout) */

:root {
  --desk-w: 1180px;
  --paper: #f2efe8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #151a1f;
  --muted: #6f7479;
  --soft: #e8e2d7;
  --line: #ddd5c8;
  --blue: #0a63d8;
  --blue-dark: #064da8;
  --green: #159a5d;
  --shadow-soft: 0 18px 48px rgba(21, 26, 31, 0.12);
  --shadow-card: 0 10px 28px rgba(21, 26, 31, 0.1);
}

@media (min-width: 768px) {
  /* ——— Shell ——— */
  body.mobile-app-shell {
    background:
      radial-gradient(ellipse 55% 40% at 0% 0%, rgba(10, 99, 216, 0.04), transparent 55%),
      radial-gradient(ellipse 40% 30% at 100% 8%, rgba(21, 154, 93, 0.03), transparent 50%),
      var(--paper) !important;
    background-attachment: fixed, fixed, scroll;
    color: var(--ink) !important;
    font-family: "Onest", ui-sans-serif, system-ui, sans-serif !important;
    font-size: 15px;
    line-height: 1.5;
  }

  .mobile-header,
  .mobile-drawer,
  .mobile-search-panel,
  .mobile-bottom-nav,
  .mobile-backdrop,
  .mobile-toast,
  .mobile-buy-bar {
    display: none !important;
  }

  /* Desktop home is a dedicated composition (.web-home); mobile home blocks are hidden */
  body.is-catalog-home .screen-home {
    display: none !important;
  }

  .web-home {
    display: block;
  }

  .desktop-header.web-top {
    display: block !important;
    position: relative;
    z-index: 40;
    border-bottom: none;
    background: transparent !important;
    backdrop-filter: none;
  }

  body.is-catalog-home .desktop-header.web-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: none;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .web-footer {
    display: block !important;
  }

  .web-cat-backdrop.is-open {
    display: block !important;
  }

  .catalog-main.phone-shell-bridge,
  .catalog-main {
    all: unset;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 48px;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  /* Content shell must match header width (--desk-w / --content-w), not full bleed */
  .catalog-main.phone-shell-bridge.content-shell,
  .catalog-main.app-main.content-shell,
  main.content-shell {
    width: 100% !important;
    max-width: var(--content-w, var(--web-w, var(--desk-w, 1180px))) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--content-pad, 24px) !important;
    padding-right: var(--content-pad, 24px) !important;
    padding-top: 0 !important;
    padding-bottom: 48px !important;
    box-sizing: border-box !important;
  }


/* Home: full-bleed hero; content-shell width only for catalog pages */
@media (min-width: 768px) {
  body.is-catalog-home main.catalog-main.content-shell,
  body.is-catalog-home main.catalog-main.app-main.content-shell,
  body.is-catalog-home main.content-shell {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.is-catalog-home .web-hero {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  body.is-catalog-home .web-hero-stage {
    width: 100%;
    max-width: none;
  }

  /* Keep non-hero home blocks aligned to header width */
  body.is-catalog-home .web-home > *:not(.web-hero) {
    max-width: var(--content-w, var(--web-w, var(--desk-w, 1180px)));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--content-pad, 24px);
    padding-right: var(--content-pad, 24px);
    box-sizing: border-box;
  }

  /* Fit keeps its own inset; brands box aligns to content grid (no extra pad) */
  body.is-catalog-home .web-fit {
    padding-left: 0;
    padding-right: 0;
  }

  body.is-catalog-home .home-brands--web.web-section {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(var(--content-w, var(--web-w, var(--desk-w, 1180px))) - 2 * var(--content-pad, 24px));
  }
}

  /* Keep existing web-top header tokens aligned with mobile palette */
  .web-top,
  .web-top * {
    --web-paper: var(--paper);
    --web-surface: var(--surface);
    --web-surface-strong: var(--surface-strong);
    --web-ink: var(--ink);
    --web-muted: var(--muted);
    --web-soft: var(--soft);
    --web-line: var(--line);
    --web-blue: var(--blue);
    --web-blue-dark: var(--blue-dark);
    --web-w: var(--desk-w);
  }

  /* ——— Content pages (.proto-screen) ——— */
  .proto-screen {
    display: block !important;
    width: 100%;
    max-width: var(--desk-w);
    margin: 0 auto;
    padding: 32px 24px 64px !important;
    color: var(--ink);
  }

  .proto-screen .screen-title h1 {
    font-size: clamp(28px, 3vw, 40px);
    max-width: 22ch;
  }

  .proto-screen .checkout-card,
  .proto-screen .payment-card,
  .proto-screen .summary-card {
    max-width: none;
  }

  .proto-screen .summary-card {
    position: sticky;
    top: 96px;
  }

  .proto-screen .rental-product-scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
  }

  .proto-screen .rental-product-card {
    min-width: 0;
  }

  .proto-screen .about-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .proto-screen .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proto-screen .about-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proto-screen .gift-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proto-screen .gift-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
  }

  .proto-screen .contact-actions,
  .proto-screen .service-actions,
  .proto-screen .rental-actions,
  .proto-screen .about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .proto-screen .map-card {
    min-height: 360px;
  }

  .proto-screen .service-price-list div {
    grid-template-columns: 1fr auto;
  }

  .proto-screen .catalog-groups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .proto-screen .catalog-group {
    margin: 0;
  }

  .proto-screen .account-hero-card,
  .proto-screen .account-bonus-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
  }

  /* ——— Category listing ——— */
  .category-intro {
    max-width: var(--desk-w);
    margin: 0 auto;
    padding: 28px 24px 0;
  }

  .category-intro h1 {
    font-size: clamp(28px, 3vw, 40px);
  }

  .catalog-breadcrumbs {
    max-width: none;
    width: 100%;
    margin: 12px 0 0;
    padding: 10px 14px;
    box-sizing: border-box;
  }

  .product-breadcrumbs {
    max-width: var(--desk-w);
    margin: 0 auto;
    padding: 20px 24px 0;
  }

  .mobile-category-hero {
    max-width: var(--desk-w);
    margin: 20px auto 0;
    padding: 0 24px;
    border-radius: 24px;
    overflow: hidden;
    min-height: 260px;
  }

  .mobile-brand-rail,
  .prototype-fit-card {
    max-width: var(--desk-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .catalog-filter-form {
    max-width: var(--desk-w);
    margin: 20px auto;
    padding: 20px 24px !important;
  }

  .product-grid {
    max-width: var(--desk-w);
    margin: 0 auto;
    padding: 0 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .category-page {
    max-width: var(--desk-w);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .category-page .product-grid,
  .category-product-grid {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .category-product-grid[data-view='grid'] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .category-layout {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .category-filters-aside {
    position: relative;
    top: auto;
    max-height: none;
  }

  /* Sidebar filters only from 1100px; below that app.css drawer wins */
  @media (min-width: 1100px) {
    .category-filters-aside .mobile-filter-trigger {
      display: none !important;
    }

    .category-filters-panel.catalog-filter-form {
      position: static !important;
      display: flex !important;
      flex-direction: column !important;
      max-width: none !important;
      max-height: none !important;
      overflow: visible !important;
      transform: none !important;
      margin: 0 !important;
      padding: 0 !important;
      border-radius: 22px !important;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 18px 42px rgba(21, 26, 31, 0.09) !important;
      backdrop-filter: blur(22px) saturate(1.14);
    }
  }

  @media (max-width: 1099px) {
    .category-filters-aside .mobile-filter-trigger {
      display: flex !important;
    }

    .mobile-filter-trigger {
      display: flex !important;
    }

    .category-filters-panel.catalog-filter-form {
      position: fixed !important;
      transform: translateY(105%) !important;
    }

    .mobile-filters-open .category-filters-panel.catalog-filter-form {
      transform: translateY(0) !important;
    }
  }

  .category-filter-stack {
    display: grid !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 10px 8px !important;
  }

  @media (min-width: 1100px) {
    .category-filter-stack {
      overflow: visible !important;
      flex: 0 1 auto !important;
      padding: 0 10px 8px !important;
    }
  }

  @media (max-width: 1099px) {
    .category-filters-panel.catalog-filter-form {
      height: min(92vh, 820px) !important;
      max-height: min(92vh, 820px) !important;
      padding: 0 !important;
      overflow: hidden !important;
    }

    .category-filter-stack {
      flex: 1 1 auto !important;
      overflow-x: hidden !important;
      overflow-y: auto !important;
      padding: 12px 16px 16px !important;
    }

    .category-filters-panel__head {
      display: flex !important;
      flex-shrink: 0 !important;
    }

    .category-filters-panel__reset,
    .category-filters-panel__reset-icon {
      display: none !important;
    }

    .category-filters-panel__head button[data-mobile-filters-close] {
      display: grid !important;
    }

    .category-filters-panel__head button[data-mobile-filters-close] svg,
    .category-filters-panel__head button[data-mobile-filters-close] path {
      fill: none !important;
      stroke: currentColor !important;
      stroke-width: 1.9;
    }

    .category-filters-panel__actions {
      flex-shrink: 0 !important;
      position: relative !important;
    }
  }

  .category-filter-theme {
    min-width: 0 !important;
  }

  .category-page .product-grid,
  .category-product-grid {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .category-product-grid[data-view='grid'] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .category-product-grid[data-view='list'] {
    grid-template-columns: 1fr !important;
  }

  .category-banner {
    min-height: 172px;
  }

  .mobile-category-hero {
    display: none;
  }


  .category-product-grid[data-view='list'] {
    grid-template-columns: 1fr !important;
  }

  .category-banner {
    min-height: 172px;
  }

  .mobile-category-hero {
    display: none;
  }

  .catalog-product-card {
    border-radius: 18px !important;
    border-color: var(--line) !important;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease;
  }

  .catalog-product-card:hover {
    transform: translateY(-3px);
  }

  @media (min-width: 1100px) {
    .mobile-filter-trigger {
      display: none !important;
    }

    .catalog-filter-form {
      display: block !important;
    }
  }

  /* Product PDP desktop → public/mobile-prototype/product-desktop.css */

  .proto-screen.kit-card,
  section.proto-screen {
    max-width: var(--desk-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Pagination / misc */
  .mt-8 {
    max-width: var(--desk-w);
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
  }
}

@media (min-width: 768px) and (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .category-product-grid[data-view='grid'] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .proto-screen .catalog-groups {
    grid-template-columns: 1fr;
  }

  body:has(.proto-screen .cart-list) .proto-screen {
    grid-template-columns: 1fr;
  }

  body:has(.proto-screen .cart-list) .proto-screen > .summary-card {
    grid-column: 1;
    grid-row: auto;
    position: static;
  }
}

@media (min-width: 1180px) {
  .category-product-grid[data-view='grid'] {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 981px) {
  .proto-screen.cart-page,
  .proto-screen[data-cart-page] {
    width: 100%;
    max-width: var(--content-w, var(--web-w, var(--desk-w, 1180px)));
    margin: 0 auto;
    padding: 24px 0 56px !important;
    color: var(--ink);
  }

  .proto-screen.cart-page .screen-title h1,
  .proto-screen[data-cart-page] .screen-title h1 {
    font-size: clamp(28px, 2.4vw, 36px);
    max-width: none;
    letter-spacing: -0.03em;
  }

  .proto-screen.cart-page .cart-empty,
  .proto-screen[data-cart-page] .cart-empty {
    display: grid;
    gap: 16px;
    justify-items: center;
    width: 100%;
    margin: 24px 0 0;
    padding: 48px 32px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-strong, #fff);
    box-shadow: 0 2px 8px rgba(21, 26, 31, 0.06);
    text-align: center;
  }

  .proto-screen.cart-page .cart-empty p,
  .proto-screen[data-cart-page] .cart-empty p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
  }

  .proto-screen.cart-page .cart-empty .primary,
  .proto-screen[data-cart-page] .cart-empty .primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 220px;
    padding: 0 24px;
    border-radius: 14px;
  }

  .proto-screen.cart-page .cart-empty .primary:focus-visible,
  .proto-screen[data-cart-page] .cart-empty .primary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }

  body:has(.proto-screen.cart-page .cart-list) .proto-screen.cart-page,
  body:has(.proto-screen[data-cart-page] .cart-list) .proto-screen[data-cart-page] {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) clamp(340px, 32vw, 380px);
    gap: 24px;
    align-items: start;
  }

  .proto-screen.cart-page .catalog-breadcrumbs,
  .proto-screen[data-cart-page] .catalog-breadcrumbs {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .proto-screen.cart-page .screen-title,
  .proto-screen[data-cart-page] .screen-title {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .proto-screen.cart-page .cart-list,
  .proto-screen[data-cart-page] .cart-list {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
  }

  .proto-screen.cart-page .cart-empty,
  .proto-screen[data-cart-page] .cart-empty {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .proto-screen.cart-page .cart-offers,
  .proto-screen[data-cart-page] .cart-offers {
    grid-column: 1;
    grid-row: auto;
  }

  .proto-screen.cart-page > [data-cart-checkout-block],
  .proto-screen[data-cart-page] > [data-cart-checkout-block] {
    display: contents;
  }

  .proto-screen.cart-page [data-cart-checkout-block] > .summary-card,
  .proto-screen[data-cart-page] [data-cart-checkout-block] > .summary-card {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    position: sticky;
    top: 96px;
  }

  .proto-screen.cart-page .cart-list,
  .proto-screen[data-cart-page] .cart-list {
    display: grid;
    gap: 12px;
    margin-top: 0;
    width: 100%;
  }

  .proto-screen.cart-page .cart-item,
  .proto-screen[data-cart-page] .cart-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 16px 20px;
    align-items: center;
    width: 100%;
    min-height: 0;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface-strong, #fff);
    box-shadow: 0 1px 3px rgba(21, 26, 31, 0.06);
    backdrop-filter: none;
  }

  .proto-screen.cart-page .cart-image,
  .proto-screen[data-cart-page] .cart-image {
    display: grid;
    width: 160px;
    height: 160px;
    place-items: center;
    border-radius: 12px;
    background: var(--surface, #fffdf8);
    border: 1px solid var(--line);
    overflow: hidden;
  }

  .proto-screen.cart-page .cart-image img,
  .proto-screen[data-cart-page] .cart-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
  }

  .proto-screen.cart-page .cart-image .product-visual,
  .proto-screen[data-cart-page] .cart-image .product-visual {
    transform: scale(0.9);
  }

  .proto-screen.cart-page .cart-item-body,
  .proto-screen[data-cart-page] .cart-item-body {
    display: grid;
    gap: 6px;
    min-width: 0;
  }

  .proto-screen.cart-page .cart-item h2,
  .proto-screen[data-cart-page] .cart-item h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
    max-width: none;
    font-weight: 700;
  }

  .proto-screen.cart-page .cart-item h2 a,
  .proto-screen[data-cart-page] .cart-item h2 a {
    color: var(--ink);
    text-decoration: none;
  }

  .proto-screen.cart-page .cart-item h2 a:hover,
  .proto-screen[data-cart-page] .cart-item h2 a:hover {
    color: var(--blue);
  }

  .proto-screen.cart-page .cart-item h2 a:focus-visible,
  .proto-screen[data-cart-page] .cart-item h2 a:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .proto-screen.cart-page .cart-item-status,
  .proto-screen[data-cart-page] .cart-item-status {
    margin: 0;
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
  }

  .proto-screen.cart-page .cart-item-bottom,
  .proto-screen[data-cart-page] .cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap;
  }

  .proto-screen.cart-page .cart-item-bottom > strong,
  .proto-screen[data-cart-page] .cart-item-bottom > strong {
    display: block;
    color: var(--ink);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .proto-screen.cart-page .qty,
  .proto-screen[data-cart-page] .qty {
    display: inline-grid;
    grid-template-columns: 36px minmax(36px, auto) 36px;
    align-items: center;
    min-height: 36px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-strong, #fff);
    box-shadow: none;
  }

  .proto-screen.cart-page .qty button,
  .proto-screen[data-cart-page] .qty button {
    color: var(--blue);
    font-size: 18px;
    border-radius: 8px;
  }

  .proto-screen.cart-page .qty button:hover,
  .proto-screen[data-cart-page] .qty button:hover {
    background: rgba(10, 99, 216, 0.08);
  }

  .proto-screen.cart-page .qty button:focus-visible,
  .proto-screen[data-cart-page] .qty button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
  }

  .proto-screen.cart-page .summary-card,
  .proto-screen[data-cart-page] .summary-card {
    display: grid;
    gap: 10px;
    margin-top: 0;
    padding: 20px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-strong, #fff);
    box-shadow: 0 2px 12px rgba(21, 26, 31, 0.06);
    backdrop-filter: none;
  }

  .proto-screen.cart-page .summary-card h2,
  .proto-screen[data-cart-page] .summary-card h2 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
  }

  .proto-screen.cart-page .summary-card > div,
  .proto-screen[data-cart-page] .summary-card > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.4;
  }

  .proto-screen.cart-page .summary-card > div span,
  .proto-screen[data-cart-page] .summary-card > div span {
    color: var(--muted);
  }

  .proto-screen.cart-page .summary-card > div strong,
  .proto-screen[data-cart-page] .summary-card > div strong {
    color: var(--ink);
    font-weight: 700;
    text-align: right;
  }

  .proto-screen.cart-page .summary-card .total,
  .proto-screen[data-cart-page] .summary-card .total {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    align-items: center;
  }

  .proto-screen.cart-page .summary-card .total span,
  .proto-screen[data-cart-page] .summary-card .total span {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
  }

  .proto-screen.cart-page .summary-card .total strong,
  .proto-screen[data-cart-page] .summary-card .total strong {
    font-size: 26px;
    letter-spacing: -0.03em;
  }

  .proto-screen.cart-page .summary-cashback,
  .proto-screen[data-cart-page] .summary-cashback {
    margin-top: -2px;
    font-size: 13px;
  }

  .proto-screen.cart-page .summary-cashback span,
  .proto-screen.cart-page .summary-cashback strong,
  .proto-screen[data-cart-page] .summary-cashback span,
  .proto-screen[data-cart-page] .summary-cashback strong {
    color: var(--green);
  }

  .proto-screen.cart-page .cart-promo,
  .proto-screen.cart-page .cart-bonus,
  .proto-screen[data-cart-page] .cart-promo,
  .proto-screen[data-cart-page] .cart-bonus {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    gap: 10px;
  }

  .proto-screen.cart-page .cart-promo label span,
  .proto-screen[data-cart-page] .cart-promo label span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
  }

  .proto-screen.cart-page .cart-promo input,
  .proto-screen[data-cart-page] .cart-promo input {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-strong, #fff);
    box-shadow: none;
  }

  .proto-screen.cart-page .cart-promo input:focus-visible,
  .proto-screen[data-cart-page] .cart-promo input:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 0;
    border-color: var(--blue);
  }

  .proto-screen.cart-page .cart-promo .secondary,
  .proto-screen[data-cart-page] .cart-promo .secondary {
    min-height: 44px;
    border-radius: 12px;
  }

  .proto-screen.cart-page .cart-promo .secondary:focus-visible,
  .proto-screen[data-cart-page] .cart-promo .secondary:focus-visible,
  .proto-screen.cart-page .cart-offer-card .secondary:focus-visible,
  .proto-screen[data-cart-page] .cart-offer-card .secondary:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }

  .proto-screen.cart-page .cart-checkout-cta,
  .proto-screen[data-cart-page] .cart-checkout-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .proto-screen.cart-page .cart-checkout-cta:focus-visible,
  .proto-screen[data-cart-page] .cart-checkout-cta:focus-visible {
    outline: 2px solid var(--blue-dark);
    outline-offset: 2px;
  }

  .proto-screen.cart-page .cart-offers,
  .proto-screen[data-cart-page] .cart-offers {
    margin-top: 20px;
    gap: 12px;
  }

  .proto-screen.cart-page .cart-offers h2,
  .proto-screen[data-cart-page] .cart-offers h2 {
    font-size: 18px;
    margin: 0;
  }

  .proto-screen.cart-page .cart-offers-list,
  .proto-screen[data-cart-page] .cart-offers-list {
    display: grid;
    gap: 12px;
  }

  .proto-screen.cart-page .cart-offer-card,
  .proto-screen[data-cart-page] .cart-offer-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 0;
  }

  .proto-screen.cart-page .cart-offer-card .cart-image,
  .proto-screen[data-cart-page] .cart-offer-card .cart-image {
    width: 120px;
    height: 120px;
  }
}

