:root {
      color-scheme: light;
      --bg: #f7f5f2;
      --card: #ffffff;
      --text: #1c1c1c;
      --muted: #6b6b6b;
      --accent: #d1462f;
      --accent-dark: #b83b26;
    }

    * {
      box-sizing: border-box;
    }

    [hidden] {
      display: none !important;
    }

    body {
      margin: 0;
      font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    body.cart-scroll-lock-page {
      overflow: hidden;
    }

    body.header-menu-lock {
      overflow: hidden;
    }

    header {
      background: #ffffff;
      border-bottom: 1px solid #ece9e4;
      padding: 20px 0;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
    }

    .brand__logo {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--accent);
      display: grid;
      place-items: center;
      color: white;
      font-weight: 700;
      letter-spacing: 1px;
      transition: filter .2s ease, background .2s ease, color .2s ease;
    }

    .brand__logo--mono {
      background: #909090;
      color: #f2f2f2;
      filter: grayscale(1);
    }

    .brand__title {
      display: flex;
      flex-direction: column;
    }

    .brand__title strong {
      font-size: 18px;
    }

    .brand__title span {
      color: var(--muted);
      font-size: 13px;
    }

    .hero {
      padding: 40px 0 20px;
      display: grid;
      gap: 16px;
    }

    .hero h1 {
      margin: 0;
      font-size: 34px;
    }

    .hero p {
      margin: 0;
      color: var(--muted);
      max-width: 680px;
    }

    .slider {
      margin-top: 12px;
      overflow: visible;
      padding-bottom: 4px;
    }

    .slider {
      /* Slider wrapper is always constrained by <main class="container"> width. */
      position: relative;
      width: 100%;
      max-width: 100%;
      display: flex;
      justify-content: center;
      overflow: visible;
      padding: 0 0px;
    }

    .slider__scroll-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 999px;
      background: rgba(255,255,255,.95);
      box-shadow: 0 6px 14px rgba(0,0,0,.12);
      cursor: pointer;
      font-size: 40px;
      font-weight: 300;
      line-height: 1;
      display: inline-flex;
      justify-content: center;
      text-align: center;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      padding: 0;
    }

    .slider__scroll-nav--prev { left: 0; }
    .slider__scroll-nav--next { right: 0; }

    .slider__track {
      display: grid;
      min-height: 248px;
      grid-auto-flow: column;
      grid-auto-columns: 195px;
      gap: 12px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding: 0 4px 6px;
      max-width: 100%;
      margin: 0 auto;
      box-sizing: border-box;
      scrollbar-width: none;
    }

    .slider__track::-webkit-scrollbar {
      width: 0;
      height: 0;
    }

    .slider__card {
      width: 195px;
      height: 248px;
      border: none;
      border-radius: 16px;
      background: #efe3d4;
      color: #1c1c1c;
      padding: 0;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      text-align: left;
      scroll-snap-align: start;
      scroll-snap-stop: always;
    }

    .slider__card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      position: relative;
      z-index: 1;
    }

    .slider__card-title {
      position: absolute;
      z-index: 2;
      left: 10px;
      right: 10px;
      bottom: 10px;
      margin: 0;
      padding: 6px 8px;
      border-radius: 10px;
      background: rgba(20, 20, 20, 0.55);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
    }

    .slider__card-text-layer {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      overflow: hidden;
    }

    .slider__card-text-block {
      position: absolute;
      margin: 0;
      max-width: calc(100% - 10px);
      padding: 2px 6px;
      border-radius: 6px;
      line-height: 1.2;
      white-space: pre-wrap;
      word-break: break-word;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    }

    .slider-modal {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .slider-modal.is-open {
      display: flex;
    }

    .slider-modal__backdrop {
      position: absolute;
      inset: 0;
      border: none;
      background-color: rgba(8, 8, 8, 0.40);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-blend-mode: multiply;
      filter: blur(26px) saturate(1.04) brightness(0.72);
      backdrop-filter: blur(6px) brightness(0.9);
      transform: scale(1.08);
      transition: background-color .2s ease, filter .2s ease;
    }

    .slider-modal__backdrop[data-has-image="0"] {
      background-color: rgba(8, 8, 8, 0.22);
      filter: blur(8px) saturate(1) brightness(0.92);
      backdrop-filter: blur(3px) brightness(0.98);
      transform: scale(1);
    }

    .slider-modal__viewport {
      position: relative;
      width: min(745px, 100%);
      height: min(92vh, 1050px);
      overflow: hidden;
      border-radius: 18px;
      z-index: 1;
    }

    .slider-modal__track {
      display: flex;
      height: 100%;
      transition: transform 0.25s ease;
    }

    .slider-modal__slide {
      min-width: 100%;
      position: relative;
      height: 100%;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 12px;
      padding: 20px;
      background-size: cover;
      background-position: center;
      background-color: #fff;
      overflow-y: auto;
    }

    .slider-modal__section {
      border-radius: 14px;
      padding: 14px;
      background: rgba(255, 255, 255, 0.86);
      position: relative;
      z-index: 2;
    }

    .slider-modal__section img {
      position: relative;
      z-index: 1;
    }


    .slider-modal__section--wrap-left img {
      float: left;
      width: min(45%, 320px);
      margin: 0 12px 8px 0;
    }

    .slider-modal__section--wrap-right img {
      float: right;
      width: min(45%, 320px);
      margin: 0 0 8px 12px;
    }

    .slider-modal__text--wrap::after,
    .slider-modal__section--wrap-left::after,
    .slider-modal__section--wrap-right::after {
      content: '';
      display: block;
      clear: both;
    }

    .slider-modal__section p,
    .slider-modal__section h1,
    .slider-modal__section h2,
    .slider-modal__section h3,
    .slider-modal__section h4,
    .slider-modal__section h5,
    .slider-modal__section h6,
    .slider-modal__section span,
    .slider-modal__section ul,
    .slider-modal__section ol,
    .slider-modal__section div {
      position: relative;
      z-index: 2;
    }

    .slider-modal__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      font-size: 26px;
      cursor: pointer;
    }


    .slider-modal__close {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 3;
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
    }

    .slider-modal__nav--prev { left: 24px; }
    .slider-modal__nav--next { right: 24px; }

    .banner {
      margin-top: 12px;
      background: linear-gradient(135deg, #1f1f1f, #3d241f);
      color: white;
      border-radius: 18px;
      padding: 24px;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: center;
      flex-wrap: wrap;
    }

    .banner__text {
      max-width: 520px;
    }

    .banner__text h2 {
      margin: 0 0 8px;
      font-size: 24px;
    }

    .banner__text p {
      margin: 0;
      color: #f0e6df;
    }

    .menu-nav {
      position: sticky;
      top: 0;
      z-index: 9;
      padding: 10px 0;
      background: var(--bg);
      border-bottom: 1px solid #ece9e4;
      margin-top: 12px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .menu-nav__list {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 2px 2px 6px;
      scrollbar-width: thin;
      scroll-behavior: smooth;
      flex: 1 1 auto;
    }

    .menu-nav__list::-webkit-scrollbar {
      height: 6px;
    }

    .menu-nav__list::-webkit-scrollbar-track {
      background: transparent;
    }

    .menu-nav__list::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, 0.2);
      border-radius: 999px;
    }

    .menu-nav__button {
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: #ffffff;
      color: var(--text);
      padding:10px 20px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
      flex: 0 0 auto;
      box-shadow: 0 4px 16px rgba(28, 28, 28, 0.08);
    }

    .menu-nav__button:hover {
      border-color: rgba(0, 0, 0, 0.2);
      color: var(--accent);
    }

    .menu-nav__button.is-active {
      background: var(--accent);
      color: #ffffff;
      border-color: var(--accent);
    }

    .menu-nav__actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
      position: relative;
    }

    .menu-nav__cart {
      flex: 0 0 auto;
    }

    .menu-nav__cart.cart-button {
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 600;
      cursor: pointer;
    }

    .menu-nav__cart.cart-button:hover {
      background: var(--accent-dark);
    }

    .section {
      padding: 20px 0 60px;
    }

    .cart-button {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .cart-button__icon {
      display: none;
      font-size: 18px;
    }

    .cart-button__sum {
      font-weight: 600;
    }

    .cart-button__badge {
      position: absolute;
      top: -6px;
      right: -6px;
      background: #3d241f;
      color: #fff;
      font-size: 11px;
      border-radius: 999px;
      min-width: 18px;
      height: 18px;
      display: grid;
      place-items: center;
      padding: 0 4px;
    }

    .cart-modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 30;
    }

    .cart-modal.is-open {
      display: block;
    }

    .cart-modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.25);
      pointer-events: auto;
      transition: background 0.2s ease;
    }

    .cart-modal.cart-modal--focus-mode {
      pointer-events: none;
    }

    .cart-modal.cart-modal--focus-mode .cart-modal__panel,
    .cart-modal.cart-modal--focus-mode .cart-modal__close {
      pointer-events: auto;
    }

    .cart-modal.cart-modal--focus-mode .cart-modal__overlay {
      pointer-events: none;
      background: rgba(10, 10, 10, 0.14);
    }

    .cart-modal.cart-modal--panel-active:not(.cart-modal--focus-mode) .cart-modal__overlay {
      background: rgba(10, 10, 10, 0.25);
    }

    .cart-modal.cart-modal--page-active:not(.cart-modal--focus-mode) .cart-modal__overlay {
      background: rgba(10, 10, 10, 0.45);
    }

    .cart-modal__panel {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: min(520px, 100%);
      background: #fff;
      display: grid;
      grid-template-rows: auto 1fr;
      transform: translateX(100%);
      transition: transform 0.3s ease, opacity 0.2s ease;
      opacity: 1;
      box-shadow: -12px 0 30px rgba(0, 0, 0, 0.2);
    }

    .cart-modal.is-open .cart-modal__panel {
      transform: translateX(0);
    }

    .cart-modal.cart-modal--focus-mode.cart-modal--page-active .cart-modal__panel {
      opacity: 0.78;
    }

    .cart-modal.cart-modal--focus-mode.cart-modal--page-active .cart-modal__overlay {
      background: rgba(10, 10, 10, 0.02);
    }

    .cart-modal__header {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 16px 20px;
      border-bottom: 1px solid #ece9e4;
      position: relative;
    }

    .cart-modal__title {
      margin: 0;
      font-size: 18px;
    }

    .cart-modal__close {
      --cart-close-start-x: 0px;
      border: none;
      background: #f3f0eb;
      color: #3a3a3a;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      cursor: pointer;
      font-weight: 600;
      position: fixed;
      right: calc(min(520px, 100vw) + 20px);
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .cart-modal__close-x,
    .cart-modal__close-arrow {
      grid-area: 1 / 1;
      transition: opacity 0.25s ease;
      font-size: 16px;
      line-height: 1;
    }

    .cart-modal__close-arrow {
      opacity: 0;
      transform: translateX(2px);
    }

    .cart-modal__close.is-animate {
      animation: cart-close-rubber 1.45s cubic-bezier(0.22, 0.95, 0.24, 1);
      transform-origin: right center;
    }

    @keyframes cart-close-rubber {
      0% {
        transform: translate(var(--cart-close-start-x), -50%) scale(1);
        width: 32px;
        border-radius: 50%;
      }
      14% {
        transform: translate(0, -50%) scale(1);
        width: 62px;
        border-radius: 999px;
      }
      36% {
        transform: translate(0, -50%) scaleX(1.08) scaleY(0.92);
        width: 62px;
        border-radius: 999px;
      }
      52% {
        transform: translate(0, -50%) scaleX(0.94) scaleY(1.08);
        width: 58px;
        border-radius: 999px;
      }
      68% {
        transform: translate(0, -50%) scaleX(1.15) scaleY(0.84);
        width: 32px;
        border-radius: 50%;
      }
      82% {
        transform: translate(0, -50%) scaleX(0.9) scaleY(1.1);
        width: 32px;
        border-radius: 50%;
      }
      100% {
        transform: translate(0, -50%) scale(1);
        width: 32px;
        border-radius: 50%;
      }
    }

    .cart-modal__close.is-animate .cart-modal__close-x {
      animation: cart-close-x-fade 1.45s ease;
    }

    .cart-modal__close.is-animate .cart-modal__close-arrow {
      animation: cart-close-arrow-fade 1.45s ease;
    }

    @keyframes cart-close-x-fade {
      0%, 10%, 70%, 100% { opacity: 1; }
      18%, 56% { opacity: 0; }
    }

    @keyframes cart-close-arrow-fade {
      0%, 12%, 68%, 100% { opacity: 0; }
      20%, 58% { opacity: 1; }
    }

    .cart-modal__body {
      overflow-y: auto;
      padding: 16px 20px 24px;
      display: grid;
      gap: 20px;
    }

    .cart-modal.cart-modal--focus-mode.cart-modal--page-active .cart-modal__body {
      overflow-y: hidden;
    }

    .cart-panel,
    .order-panel {
      background: var(--card);
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
      display: grid;
      gap: 16px;
      height: fit-content;
    }

    .cart-items {
      display: grid;
      gap: 12px;
      min-height: 80px;
    }

    .cart-recommendations-host {
      display: block;
    }

    .cart-recommendations-host .modal-recommendations {
      padding: 0;
    }

    .cart-recommendations-host .modal-recommendations__title {
      font-size: 14px;
    }

    @media (max-width: 980px) {
      .cart-recommendations-host .modal-recommendations--cart .modal-recommendations__card {
        min-width: 108px;
        max-width: 108px;
        padding: 6px;
        gap: 4px;
      }

      .cart-recommendations-host .modal-recommendations--cart .modal-recommendations__media {
        height: 64px;
      }

      .cart-recommendations-host .modal-recommendations--cart .modal-recommendations__media img {
        width: 54px;
        height: 54px;
      }

      .cart-recommendations-host .modal-recommendations--cart .modal-recommendations__name {
        font-size: 11px;
        min-height: 26px;
      }

      .cart-recommendations-host .modal-recommendations--cart .modal-recommendations__price {
        font-size: 12px;
      }
    }

    .cart-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 12px;
      border: 1px solid #ece9e4;
      border-radius: 12px;
      padding: 12px 14px;
      background: #faf8f5;
    }

    .cart-item__header {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
    }

    .cart-item__title {
      display: grid;
      gap: 4px;
    }

    .cart-item__title strong {
      font-size: 15px;
    }

    .cart-item__meta {
      font-size: 12px;
      color: var(--muted);
    }

    .cart-item__modifiers {
      font-size: 12px;
      color: var(--muted);
    }

    .cart-item__actions {
      display: grid;
      gap: 8px;
      justify-items: end;
    }

    .cart-item__price {
      font-weight: 600;
      font-size: 14px;
    }

    .cart-item__remove {
      border: none;
      background: none;
      color: #b83b26;
      cursor: pointer;
      font-size: 12px;
    }

    .cart-summary {
      border-top: 1px solid #ece9e4;
      padding-top: 12px;
      display: grid;
      gap: 12px;
    }

    .cart-summary__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 16px;
    }

    .cart-empty {
      font-size: 15px;
      color: #5d4c3c;
      background: #fff3e5;
      border: 1px solid #f2ddc6;
      border-radius: 12px;
      padding: 14px 16px;
      font-weight: 600;
    }

    .checkout-page {
      padding: 24px 0 56px;
      background: #f3f3f5;
    }

    .checkout-main {
      display: none;
    }

    .delivery-details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 12px;
    }

    .delivery-details-grid > label {
      min-width: 0;
    }

    .order-actions-row {
      display: grid;
      grid-template-columns: minmax(140px, 180px) minmax(140px, 180px) 1fr;
      gap: 12px;
      align-items: center;
    }

    .checkout-page__container {
      display: grid;
    }

    .order-panel--page {
      max-width: 860px;
      width: min(100%, 860px);
    }

    .delivery-address-suggest {
      position: relative;
    }

    .delivery-address-suggest__list {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 6px);
      z-index: 6;
      background: #fff;
      border: 1px solid #e1dad1;
      border-radius: 12px;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
      padding: 6px;
      display: grid;
      gap: 4px;
    }

    .delivery-address-suggest__item {
      border: 0;
      background: #fff;
      text-align: left;
      padding: 10px;
      border-radius: 8px;
      cursor: pointer;
    }

    .delivery-address-suggest__item:hover {
      background: #f4f0eb;
    }

    .order-checkbox {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      background: #fff;
      border: 1px solid #ece9e4;
      border-radius: 12px;
      padding: 12px;
      color: #3f332b;
    }

    .order-checkbox input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--accent);
      flex-shrink: 0;
    }

    .order-panel h4 {
      margin: 0;
      font-size: 18px;
    }

    .order-form {
      display: grid;
      gap: 12px;
    }

    .order-type {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .order-type__button {
      border: 1px solid #ded7cf;
      border-radius: 12px;
      background: #fff;
      padding: 10px 12px;
      font-weight: 600;
      cursor: pointer;
      color: #6b5c4a;
    }

    .order-type__button.is-active {
      border-color: var(--accent);
      color: var(--accent);
      background: #fff4ef;
    }

    .order-time {
      display: grid;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid #ece9e4;
      border-radius: 12px;
      background: #fff;
    }

    .order-time__title {
      font-size: 14px;
      font-weight: 600;
      color: #3a2d27;
    }

    .order-time__modes {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .order-time__modes label {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .order-time__modes input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .order-time__modes span {
      display: block;
      width: 100%;
      text-align: center;
      border: 1px solid #ded7cf;
      border-radius: 12px;
      background: #fff;
      padding: 10px 12px;
      font-size: 13px;
      font-weight: 600;
      color: #6b5c4a;
    }

    .order-time__modes input[type="radio"]:checked + span {
      border-color: var(--accent);
      color: var(--accent);
      background: #fff4ef;
    }

    .delivery-time-picker {
      padding-top: 4px;
    }

    .delivery-time-picker__grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 12px;
      align-items: stretch;
    }

    .delivery-time-picker__left,
    .delivery-time-picker__right {
      border: 1px solid #ece9e4;
      border-radius: 12px;
      background: #fff;
      padding: 10px;
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .delivery-time-picker__title {
      font-size: 14px;
      font-weight: 700;
      color: #4a3d34;
      margin: 0;
    }

    .delivery-time-picker__right small {
      color: #6b5c4a;
      line-height: 1.4;
      font-size: 12px;
    }

    .delivery-time-picker__days {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .delivery-time-picker__day {
      border: 1px solid #ded7cf;
      border-radius: 12px;
      background: #fff;
      color: #6b5c4a;
      padding: 8px 6px;
      cursor: pointer;
      display: grid;
      gap: 2px;
      justify-items: center;
      font-size: 12px;
      font-weight: 600;
    }

    .delivery-time-picker__day strong {
      font-size: 18px;
      line-height: 1;
      color: #3a2d27;
    }

    .delivery-time-picker__day span {
      text-transform: capitalize;
    }

    .delivery-time-picker__day.is-active {
      border-color: var(--accent);
      background: #fff4ef;
      color: var(--accent);
    }

    .delivery-time-picker__day:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .delivery-time-picker__time {
      display: grid;
      gap: 6px;
      font-size: 13px;
      color: #5f4f45;
      font-weight: 600;
    }

    .delivery-time-picker__time select {
      border: 1px solid #ded7cf;
      border-radius: 12px;
      background: #fff;
      padding: 10px 12px;
      font-size: 14px;
      color: #3a2d27;
    }

    .delivery-time-picker__time select:disabled {
      background: #f5f3ef;
      color: #9a8f84;
    }


    @media (max-width: 700px) {
      .delivery-time-picker__grid {
        grid-template-columns: 1fr;
      }
    }

    .order-section {
      display: grid;
      gap: 12px;
    }

    .order-section--options {
      border-top: 1px solid #ece9e4;
      padding-top: 12px;
    }

    .order-bonus {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .order-bonus-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 14px;
      padding: 14px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #ece9e4;
      align-items: center;
    }

    .order-bonus-panel__info {
      display: grid;
      gap: 8px;
      font-size: 13px;
      color: #6b5c4a;
    }

    .order-bonus-panel__info > strong {
      font-size: 13px;
      line-height: 1.4;
      color: #6b5c4a;
      letter-spacing: normal;
      font-weight: 600;
    }

    .order-bonus-panel__controls {
      display: grid;
      gap: 10px;
      justify-items: end;
    }

    .order-bonus-panel__field {
      display: grid;
      gap: 6px;
      font-size: 13px;
      color: #6b5c4a;
    }

    .order-bonus-panel__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      position: relative;
    }

    .order-bonus-panel__max-wrap {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .order-bonus-panel__toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #6b5c4a;
    }

    .order-total {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid #ece9e4;
      font-size: 15px;
      font-weight: 600;
      color: #3a2d27;
    }

    .order-payment {
      display: grid;
      justify-items: center;
      gap: 12px;
      font-size: 14px;
      color: #6b5c4a;
    }

    .order-payment__options {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
    }

    .order-payment__options--toggle {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }

    .order-payment__options label {
      position: relative;
      display: flex;
      align-items: stretch;
      justify-content: center;
      padding: 0;
      min-height: 44px;
      width: 100%;
      font-size: 14px;
      font-weight: 600;
      color: #6b5c4a;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }


    .order-payment__options label[hidden] {
      display: none;
    }

    .order-payment__options input[type="radio"] {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .order-payment__options span {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 44px;
      box-sizing: border-box;
      text-align: center;
      border: 1px solid #ded7cf;
      border-radius: 12px;
      background: #fff;
      padding: 0 12px;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .order-payment__options input[type="radio"]:checked + span {
      border-color: var(--accent);
      color: var(--accent);
      background: #fff4ef;
    }


    .checkout-binding {
      width: 100%;
      display: grid;
      gap: 8px;
    }

    .checkout-binding[hidden] {
      display: none;
    }

    .checkout-binding__unlink {
      justify-self: center;
    }


    @media (min-width: 1024px) {
      .order-payment__options--toggle {
        grid-template-columns: repeat(3, 150px);
        justify-content: space-between;
      }

      .order-payment__options--toggle label,
      .order-payment__options--toggle span {
        width: 150px;
        min-width: 150px;
        height: 45px;
        min-height: 45px;
      }
    }

    .order-submit {
      border-radius: 999px;
      background: #e6a195;
      border: none;
      font-weight: 600;
      color: #fff;
      padding: 14px 20px;
      box-shadow: 0 8px 16px rgba(214, 115, 96, 0.35);
    }

    .order-submit:disabled {
      opacity: 0.6;
      box-shadow: none;
      cursor: not-allowed;
    }

    .order-form label {
      display: grid;
      gap: 6px;
      font-size: 14px;
      color: #6b5c4a;
    }

    .order-form input,
    .order-form textarea {
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #ded7cf;
      font-size: 14px;
      font-family: inherit;
      resize: vertical;
    }

    .order-status {
      font-size: 13px;
      color: #6b5c4a;
      min-height: 18px;
    }

    .order-status--highlight {
      margin-top: 10px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #f0d3a2;
      background: #fff7e8;
      color: #6b4a1f;
      font-weight: 600;
      font-size: 15px;
    }

    .order-status--highlight[data-tone="warning"] {
      background: #fff1d6;
      border-color: #f2c78a;
      color: #7c4a00;
    }

    .order-status--highlight[data-tone="error"] {
      background: #ffe7e7;
      border-color: #f2b1b1;
      color: #8b2f2f;
    }

    .order-status--highlight[data-tone="info"],
    .order-status--highlight[data-tone="warning"],
    .order-status--highlight[data-tone="neutral"] {
      background: #fff7e8;
      border-color: #bfa27f;
      color: #5a3f28;
    }

    .order-status--highlight[data-tone="success"] {
      background: #e8f8ea;
      border-color: #2f6b45;
      color: #1f4f32;
    }

    .order-status__amount {
      font-weight: 700;
    }

    .cart-toast {
      position: fixed;
      top: calc(env(safe-area-inset-top) + 12px);
      right: 12px;
      left: auto;
      background: #fff7e8;
      color: #5a3f28;
      border: 1px solid #bfa27f;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      opacity: 0;
      transform: translateX(120%);
      transition: opacity 0.24s ease, transform 0.24s ease;
      pointer-events: none;
      z-index: 2147483647;
      max-width: min(440px, calc(100vw - 24px));
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
      text-align: left;
    }

    .cart-toast.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .cart-toast[data-tone="success"] {
      background: #e8f8ea;
      color: #1f4f32;
      border-color: #2f6b45;
    }

    .cart-toast[data-tone="error"] {
      background: #ffe9e9;
      color: #6b2727;
      border-color: #a23b3b;
    }

    .cart-toast[data-tone="info"],
    .cart-toast[data-tone="warning"],
    .cart-toast[data-tone="neutral"] {
      background: #fff7e8;
      color: #5a3f28;
      border-color: #bfa27f;
    }

    .checkout-toast {
      position: fixed;
      top: calc(env(safe-area-inset-top) + 12px);
      right: 12px;
      left: auto;
      transform: translateX(120%);
      background: #fff7e8;
      color: #5a3f28;
      border: 1px solid #bfa27f;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.35;
      width: min(360px, calc(100vw - 24px));
      max-width: min(440px, calc(100vw - 24px));
      text-align: left;
      opacity: 0;
      transition: opacity 0.22s ease, transform 0.22s ease;
      pointer-events: none;
      z-index: 2147483647;
      white-space: normal;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .checkout-toast.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .checkout-toast[data-tone="success"] {
      background: #e8f8ea;
      color: #1f4f32;
      border-color: #2f6b45;
    }

    .checkout-toast[data-tone="error"] {
      background: #ffe9e9;
      color: #6b2727;
      border-color: #a23b3b;
    }

    .checkout-toast[data-tone="info"],
    .checkout-toast[data-tone="warning"],
    .checkout-toast[data-tone="neutral"] {
      background: #fff7e8;
      color: #5a3f28;
      border-color: #bfa27f;
    }

    @media (max-width: 700px) {
      .checkout-toast {
        position: fixed;
        top: calc(env(safe-area-inset-top) + 12px);
        left: auto;
        right: 12px;
        width: min(92vw, 420px);
        max-width: min(92vw, 420px);
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.4;
        white-space: normal;
        text-align: left;
        transform: translateX(120%);
        z-index: 2147483647;
      }

      .checkout-toast.is-visible {
        transform: translateX(0);
      }
    }

    .section__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .section__header h3 {
      margin: 0;
      font-size: 22px;
    }

    .catalog-status {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 12px;
      min-height: 18px;
    }

    .catalog {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .catalog--loading .card {
      pointer-events: none;
    }

    .card.skeleton {
      border: 1px solid #f1ece7;
      background: #fff;
      position: relative;
      overflow: hidden;
    }

    .card.skeleton::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(241, 236, 231, 0.4) 0%, rgba(241, 236, 231, 0.8) 50%, rgba(241, 236, 231, 0.4) 100%);
      transform: translateX(-100%);
      animation: shimmer 1.6s infinite;
    }

    .skeleton-block {
      background: #f1ece7;
      border-radius: 10px;
    }

    .skeleton-image {
      width: 100%;
      aspect-ratio: 4 / 3;
    }

    .skeleton-line {
      height: 14px;
    }

    .skeleton-line--short {
      width: 70%;
    }

    .skeleton-line--long {
      width: 100%;
    }

    .skeleton-actions {
      width: 40%;
      height: 32px;
      margin-left: auto;
    }

    @keyframes shimmer {
      100% {
        transform: translateX(100%);
      }
    }

    .catalog--grouped {
      display: block;
    }

    .catalog-group {
      display: grid;
      gap: 12px;
      margin-bottom: 24px;
      scroll-margin-top: 84px;
    }

    .catalog-group__title {
      margin: 0;
      font-size: 18px;
      color: var(--text);
    }

    .catalog-group__items {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .catalog-item {
      list-style: none;
      display: flex;
    }

    @media (max-width: 1200px) {
      .catalog {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .catalog-group__items {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .modifier-grid {
        grid-template-columns: repeat(2, 106px);
      }
    }

    @media (max-width: 900px) {
      .catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .catalog-group__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .modifier-grid {
        grid-template-columns: repeat(2, 106px);
      }

      .cart-modal__overlay {
        pointer-events: auto;
        background: rgba(10, 10, 10, 0.55);
      }

      .checkout-page {
        padding: 14px 0 32px;
      }

      .checkout-page__container {
        padding-left: 0;
        padding-right: 0;
      }

      .order-panel--page {
        width: 100%;
        max-width: 100%;
        border-radius: 16px;
        padding: 14px;
      }

      .order-panel--page h4 {
        font-size: 17px;
      }

      .order-time,
      .order-total,
      .order-checkbox,
      .order-bonus-panel {
        border-radius: 10px;
      }

      .order-payment {
        justify-items: stretch;
      }

      .order-payment__options--toggle {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .order-payment__options--toggle label[data-payment-option="online"] {
        grid-column: 1 / -1;
      }

      .slider-modal {
        padding: 0;
      }

      .slider__scroll-nav {
        display: none !important;
      }

      .slider {
        overflow: hidden;
      }

      .slider__track {
        width: 100%;
        max-width: 100%;
        min-height: 130px;
        grid-auto-columns: 100px;
        gap: 8px;
      }

      .slider__card {
        width: 100px;
        height: 130px;
      }

      .slider__card-title {
        left: 6px;
        right: 6px;
        bottom: 6px;
        padding: 4px 6px;
        font-size: 11px;
      }

      .slider-modal__viewport {
        width: 100%;
        height: 100vh;
        border-radius: 0;
      }

      .slider-modal__slide {
        padding: 14px;
      }

      .slider-modal__nav {
        display: none;
      }

      .slider-modal__close {
        top: 10px;
        right: 10px;
      }

      .order-actions-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .order-actions-row .button,
      .order-actions-row .order-submit {
        min-height: 46px;
      }

      .order-actions-row .order-submit {
        grid-column: 1 / -1;
      }

      .order-bonus-panel__controls {
        justify-items: stretch;
      }

      .cart-modal__panel {
        top: auto;
        bottom: 0;
        right: 0;
        height: 85vh;
        width: 100%;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        transform: translateY(100%);
      }

      .cart-modal.is-open .cart-modal__panel {
        transform: translateY(0);
      }

      .cart-modal__close {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        margin-left: auto;
        box-shadow: none;
        width: 32px;
      }

      .cart-modal__close.is-animate {
        animation: none;
      }
    }

    @media (max-width: 640px) {
      .checkout-page {
        padding: 10px 0 24px;
      }

      .order-panel--page {
        border-radius: 12px;
        padding: 12px;
        gap: 10px;
      }

      .order-actions-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .order-type {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .order-time__modes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .order-payment__options--toggle {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 2px;
        justify-content: center;
      }

      .order-payment__options--toggle label[data-payment-option="bcard"],
      .order-payment__options--toggle label[data-payment-option="cash"],
      .order-payment__options--toggle label[data-payment-option="online"] {
        flex: 0 0 100px;
        width: 100px;
        min-height: 44px;
        height: 44px;
      }

      .order-payment__options--toggle span {
        min-height: 44px;
        height: 44px;
      }

      .order-actions-row .button,
      .order-actions-row .order-submit,
      .order-type__button,
      .order-payment__options span {
        width: 100%;

      }

      .delivery-time-picker__days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .delivery-time-picker__day strong {
        font-size: 16px;
      }

      .order-form label,
      .order-time__title,
      .order-total,
      .order-checkbox {
        font-size: 13px;
      }

      .order-form input,
      .order-form textarea,
      .order-payment__options span {
        font-size: 13px;
      }
        .order-payment .order-payment__options span {
            flex: 0 0 100px;
            width: 100px;
            min-height: 44px;
            height: 44px;
            font-size: 13px;
        }

      .catalog {
        grid-template-columns: 1fr;
      }

      .catalog-group__items {
        grid-template-columns: 1fr;
      }

      .modifier-grid {
        grid-template-columns: repeat(2, 106px);
      }

      .menu-nav__actions {
        position: fixed;
        bottom: 20px;
        right: 16px;
        z-index: 25;
        width: auto;
        height: 52px;
      }

      .menu-nav__cart.cart-button {
        width: 52px;
        height: 52px;
        padding: 0;
        position: static;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg);
        border: 1px solid var(--accent);
        color: #2b241e;
        pointer-events: auto;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.12);
      }

      .menu-nav__actions .cart-toast {
        position: fixed;
        left: auto;
        right: 12px;
        top: calc(env(safe-area-inset-top) + 12px);
        width: min(92vw, 420px);
        padding: 12px 16px;
        font-size: 14px;
        line-height: 1.4;
        transform: translateX(120%);
        margin: 0;
        display: block;
        pointer-events: none;
        opacity: 0;
        z-index: 2147483647;
      }

      .menu-nav__actions .cart-toast.is-visible {
        transform: translateX(0);
        opacity: 1;
      }

      .menu-nav__cart .cart-button__icon {
        display: inline-flex;
        color: #2b241e;
      }

      .menu-nav__cart .cart-button__text,
      .menu-nav__cart .cart-button__sum {
        display: none;
      }

      .cart-item {
        grid-template-columns: 1fr;
      }

      .cart-item__actions {
        justify-items: start;
      }

      .cart-toast {
        text-align: left;
      }
    }

    .card {
      background: var(--card);
      border-radius: 16px;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
      padding: 18px;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto auto;
      gap: 12px;
      width: 100%;
      height: 100%;
      min-height: 100%;
    }

    .card__image {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 12px;
      background: #f1ece7;
      display: grid;
      place-items: center;
      color: var(--muted);
      font-size: 13px;
      overflow: hidden;
    }

    .card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .card__title {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      gap: 6px;
      min-height: 0;
    }

    .card__title h4 {
      margin: 0;
      font-size: 18px;
    }

    .card__title span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
      max-height: calc(1.35em * 4);
      overflow-y: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding-right: 2px;
    }

    .card__title span::-webkit-scrollbar {
      width: 0;
      height: 0;
    }

    .card:hover .card__title span,
    .card:focus-within .card__title span {
      scrollbar-width: thin;
    }

    .card:hover .card__title span::-webkit-scrollbar,
    .card:focus-within .card__title span::-webkit-scrollbar {
      width: 4px;
    }

    .card:hover .card__title span::-webkit-scrollbar-thumb,
    .card:focus-within .card__title span::-webkit-scrollbar-thumb {
      background: #d4cec6;
      border-radius: 999px;
    }

    .sizes {
      display: grid;
      gap: 8px;
    }

    .size {
      background: #faf8f5;
      border-radius: 12px;
      padding: 10px 12px;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 40px;
      font-size: 14px;
      gap: 8px;
      text-align: center;
      margin-top: auto;
    }

    .price {
      font-weight: 600;
    }


    .button.card__mobile-open {
      display: none;
    }

    .card--simple .button.card__mobile-open,
    .card--variant .button.card__mobile-open {
      display: none;
    }

    .card__actions {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 40px;
    }

    .card__actions .button,
    .card__actions .quantity-control {
      width: 170px;
      min-height: 40px;
      justify-content: center;
    }

    .card__actions .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .card__actions .quantity-control {
      gap: 6px;
      border-radius: 999px;
      background: #faf8f5;
      padding: 4px 8px;
      box-sizing: border-box;
    }

    .card__actions .quantity-button {
      width: 30px;
      height: 30px;
      flex: 0 0 30px;
    }

    .card__actions .modal__input {
      width: 56px;
      height: 30px;
      padding: 4px 8px;
    }

    .button {
      border: none;
      border-radius: 999px;
      padding: 10px 16px;
      font-weight: 600;
      cursor: pointer;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      line-height: 1.2;
      transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .button--secondary {
      background: #fff;
      color: var(--text);
      border: 1px solid #d9d1c7;
    }

    .button--secondary:hover {
      background: #f5efe8;
      border-color: #c8bcae;
    }

    .button--primary {
      background: var(--accent);
      color: #fff;
    }

    .button--primary:hover {
      background: var(--accent-dark);
    }

    .button:disabled {
      cursor: not-allowed;
      opacity: 0.6;
    }

    .footer {
      text-align: center;
      padding: 24px 0 40px;
      color: var(--muted);
      font-size: 13px;
    }

    .status {
      padding: 12px 16px;
      border-radius: 12px;
      background: #fff3e5;
      color: #7a5a2b;
      font-size: 14px;
    }

    .modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 20;
    }

    #auth-modal.modal {
      z-index: 40;
    }

    #address-update-modal.modal {
      z-index: 35;
      align-items: flex-start;
      justify-content: flex-end;
      padding: 12px;
      pointer-events: none;
    }

    .modal.is-open {
      display: flex;
    }

    #modal.modal {
      display: flex;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.24s ease;
    }

    #modal.modal.is-open,
    #modal.modal.is-closing {
      visibility: visible;
    }

    #modal.modal.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    #modal.modal.is-closing {
      opacity: 0;
      pointer-events: none;
    }

    #modal .modal__overlay {
      transition: opacity 0.24s ease;
    }

    #modal .modal__content {
      transition: transform 0.24s ease, opacity 0.24s ease;
    }


    #address-update-modal.is-passive .modal__content {
      opacity: 0.72;
    }

    #address-update-modal.is-passive .modal__overlay {
      background: transparent;
    }

    #address-update-modal .modal__overlay {
      background: transparent;
      pointer-events: auto;
    }

    #address-update-modal .modal__content {
      width: min(420px, calc(100vw - 24px));
      max-height: calc(100vh - 24px);
      padding: 16px;
      gap: 12px;
      border-radius: 14px;
      transform: translateX(120%);
      opacity: 0;
      transition: opacity 0.22s ease, transform 0.22s ease;
      pointer-events: auto;
      grid-template-rows: auto auto auto;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    #address-update-modal.modal.is-open .modal__content {
      transform: translateX(0);
      opacity: 1;
    }

    .modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.55);
    }

    .modal__content {
      position: relative;
      background: #fff;
      border-radius: 16px;
      width: min(980px, 92vw);
      max-height: min(92vh, 760px);
      padding: 20px;
      z-index: 1;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      gap: 16px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .modal__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .modal__title {
      margin: 0;
      font-size: 18px;
    }

    .modal__back,
    .modal__close {
      border: none;
      background: #f3f0eb;
      color: #3a3a3a;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      cursor: pointer;
      font-weight: 700;
      font-size: 20px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
        0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .modal__steps {
      display: grid;
      gap: 12px;
      overflow-y: auto;
      min-height: 0;
      padding-right: 4px;
      padding-bottom: 8px;
      overscroll-behavior: contain;
      display: flex;
      flex-direction: column;
    }

    .modal__footer-slot {
      min-height: 0;
    }


    #modal .modal__content {
      width: 950px;
      max-width: 95vw;
      height: 770px;
      max-height: 95vh;
      padding: 0;
      gap: 0;
      overflow: hidden;
    }

    #modal .modal__header {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      z-index: 2;
      min-height: 35px;
      pointer-events: none;
    }

    #modal .modal__header .modal__back,
    #modal .modal__header .modal__close {
      position: absolute;
      top: 0;
      pointer-events: auto;
    }

    #modal .modal__header .modal__back {
      left: 0;
    }

    #modal .modal__header .modal__close {
      right: 0;
    }

    #modal .modal__title {
      display: none;
    }

    .modal__back[aria-disabled="true"] {
      opacity: 0.45;
      cursor: default;
    }

    #modal .modal__steps {
      padding: 0;
      gap: 0;
      overflow: hidden;
      flex: 1 1 auto;
      min-height: 0;
    }

    #modal .modal__content {
      display: flex;
      flex-direction: column;
    }

    #modal .modal__footer-slot {
      margin-top: auto;
      flex: 0 0 auto;
      width: 100%;
    }

    #modal .modal__footer-slot:empty {
      display: none;
    }

    .product-modal-layout {
      display: block;
      width: 950px;
      height: 770px;
      background: #fff;
    }

    .product-modal-layout__scroll {
      display: grid;
      grid-template-columns: 540px 410px;
      min-height: 0;
    }

    .product-modal-layout__left {
      width: 540px;
      height: 770px;
      background: #fff;
      display: grid;
      place-items: center;
      padding: 24px;
      box-sizing: border-box;
    }

    .product-modal-layout__right {
      width: 410px;
      min-width: 0;
      height: 770px;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      background: #f5f2ed;
      border-left: 1px solid #f0ece6;
      overflow-x: hidden;
    }

    .product-modal-layout--simple .product-modal-layout__right {
      grid-template-rows: auto;
      align-content: start;
    }

    .product-modal-layout__header {
      padding: 28px 20px 12px;
      display: grid;
      gap: 8px;
    }

    .product-modal-layout__title {
      margin: 0;
      font-size: 24px;
      line-height: 1;
    }

    .product-modal-layout__meta {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding-top: 10px;
    }

    .product-modal-layout__meta > span {
      flex: 1 1 0;
      text-align: center;
      white-space: nowrap;
    }

    .product-modal-layout__selectors {
      overflow-y: auto;
      padding: 0 20px 12px;
      display: grid;
      gap: 12px;
      align-content: start;
      align-items: start;
    }

    #modal-footer .modal__footer {
      position: static;
      display: flex;
      margin-top: 0;
      padding: 12px 50px 20px;
      background: #fff;
      border-top: 1px solid #f0ece6;
    }

    .modal-product {
      display: grid;
      gap: 10px;
      width: 100%;
      place-items: center;
    }

    .modal-product__hero {
      width: 560px;
      height: 560px;
      border-radius: 14px;
      background: #fffffe;
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .modal-product__hero img {
      width: 460px;
      height: 460px;
      object-fit: contain;
    }

    .modal-product__description {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.35;
    }

    .modal-recommendations {
      padding: 0 20px 14px;
      display: grid;
      gap: 10px;
    }

    .modal-recommendations__title {
      margin: 0;
      font-size: 15px;
      color: #6b5c4a;
      font-weight: 600;
    }

    .modal-recommendations__track {
      gap: 10px;
    }

    .modal-recommendations--modal .modal-recommendations__track {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-content: start;
    }

    .modal-recommendations--cart .modal-recommendations__track {
      display: flex;
      overflow-x: auto;
      overflow-y: hidden;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
    }

    .modal-recommendations__card {
      border: 1px solid #e5ddd3;
      background: #fff;
      border-radius: 12px;
      padding: 7px;
      display: grid;
      gap: 6px;
      text-align: left;
      cursor: pointer;
      scroll-snap-align: start;
    }

    .modal-recommendations--modal .modal-recommendations__card {
      min-width: 0;
      max-width: none;
    }

    .modal-recommendations--cart .modal-recommendations__card {
      min-width: 126px;
      max-width: 126px;
    }

    .modal-recommendations__media {
      display: grid;
      place-items: center;
      width: 100%;
      height: 78px;
      border-radius: 8px;
      background: #fbf9f5;
      overflow: hidden;
    }

    .modal-recommendations__media img {
      width: 68px;
      height: 68px;
      object-fit: contain;
    }

    .modal-recommendations__name {
      font-size: 12px;
      line-height: 1.25;
      color: #35271f;
      min-height: 30px;
    }

    .modal-recommendations__price {
      font-size: 13px;
      font-weight: 600;
      color: var(--accent-dark);
    }

    .modal-recommendations__loading {
      margin: 0 20px 12px;
      padding: 10px 12px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #ece3d7;
      font-size: 13px;
      color: #7a6855;
    }

    .modal-section {
      display: grid;
      gap: 10px;
      align-content: start;
      align-items: start;
    }

    .modal-section__title {
      margin: 0;
      font-size: 18px;
      line-height: 1.1;
    }

    .step-list {
      display: flex;
      gap: 5px;
      width: 100%;
      align-items: stretch;
      align-self: start;
    }

    .step-option {
      display: block;
      flex: 1 1 0%;
      position: relative;
      cursor: pointer;
      user-select: none;
      border-radius: 9999px;
      color: rgb(0, 0, 0);
      font: 500 12px/ 1.2 Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      text-align: center;
      height: 32px;
      transition: color 150ms;
      border: 1px solid #ece9e4;
      background: #faf8f5;
      padding: 8px 10px;
      box-sizing: border-box;
      overflow: hidden;
    }

    .step-option__content {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-width: 0;
      width: 100%;
      height: 100%;
    }

    .step-list--switch {
      position: relative;
      background: #ffffff;
      border-radius: 9999px;
      padding: 2px;
    }

    .step-list--switch::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      bottom: 2px;
      width: calc((100% - 4px) / var(--size-count, 4));
      border-radius: 9999px;
      background: #fff0d7;
      transform: translateX(calc(var(--active-index, 0) * 100%));
      transition: transform 150ms;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      z-index: 0;
    }

    .step-list--switch .step-option {
      background: transparent;
      border-color: transparent;
      z-index: 1;
    }

    .step-option__radio {
      display: none;
    }

    .step-option__content img {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      object-fit: cover;
    }

    .modifier-group {
      display: grid;
      gap: 10px;
    }

    .modifier-group__title {
      margin: 0;
      font-size: 16px;
    }

    .modifier-group__meta {
      font-size: 12px;
      color: var(--muted);
    }


    .required-tile-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6px;
    }

    .required-tile {
      border: 1px solid #e6e0d8;
      border-radius: 12px;
      background: #fff;
      padding: 8px;
      min-height: 98px;
      display: grid;
      gap: 6px;
      cursor: pointer;
    }

    .required-tile__content {
      display: grid;
      gap: 4px;
      justify-items: start;
    }

    .required-tile__content img {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      object-fit: cover;
    }

    .required-tile__name {
      font-size: 12px;
      line-height: 1.2;
      color: #1e1e1e;
    }

    .required-tile__price {
      font-size: 12px;
      color: var(--muted);
      white-space: nowrap;
      justify-self: end;
    }

    .required-tile.is-selected {
      background: #fff7f2;
      box-shadow: inset 0 0 0 1px rgba(255, 109, 0, 0.35);
    }

    .required-tile .step-option__radio {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

    .modifier-grid {
      display: grid;
      grid-template-columns: repeat(3, 120px);
      gap: 5px;
      justify-content: center;
      max-height: none;
      overflow: visible;
      padding-right: 0;
      margin-bottom: 80px;
    }

    .modifier-card {
      border: 1px solid #ece9e4;
      border-radius: 12px;
      padding: 6px;
      background: #fff;
      display: grid;
      gap: 6px;
      width: 120px;
      min-height: 165px;
    }

    .modifier-card__image {
      width: 100%;
      height: 74px;
      border-radius: 10px;
      background: #ffffff;
      display: grid;
      place-items: center;
      overflow: hidden;
      font-size: 12px;
      color: var(--muted);
    }

    .modifier-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modifier-card__details {
      display: grid;
      gap: 6px;
    }

    .modifier-card__header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 8px;
    }

    .modifier-card__name {
      font-weight: 600;
      font-size: 13px;
      flex: 1 1 auto;
    }

    .modifier-card__price {
      font-size: 12px;
      color: var(--muted);
      text-align: right;
      white-space: nowrap;
    }


    .modifier-card.is-selected {
      border-color: rgba(255, 109, 0, 0.45);
      box-shadow: inset 0 0 0 1px rgba(255, 109, 0, 0.18);
      background: #fff8f3;
    }

    .modifier-card__switch {
      width: 100%;
      min-height: 30px;
      padding: 6px 10px;
      font-size: 12px;
      justify-content: center;
    }

    .modifier-card__switch.is-selected {
      background: #ff6d00;
      color: #fff;
      border-color: #ff6d00;
    }

    .modifier-card__details .quantity-control {
      gap: 4px;
      justify-content: space-between;
    }

    .modifier-card__details .quantity-button {
      width: 28px;
      height: 28px;
      font-size: 14px;
      border-width: 2px;
    }

    .modifier-card__details .modal__input {
      width: 36px;
      padding: 4px 6px;
      font-size: 12px;
    }

    @media (max-width: 980px) {
      #modal .modal__content {
        width: min(96vw, 560px);
        height: min(94vh, 860px);
      }

      #modal .modal__steps {
        overflow: hidden;
        min-height: 0;
      }

      #modal.modal {
        align-items: flex-end;
      }

      #modal .modal__overlay {
        opacity: 1;
      }

      #modal .modal__content {
        width: 100%;
        max-width: 100%;
        max-height: 94vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
      }


      #modal.modal.is-open .modal__overlay {
        opacity: 1;
      }

      #modal.modal.is-closing .modal__overlay {
        opacity: 0;
      }

      #modal.modal.is-open .modal__content {
        transform: translateY(0);
      }

      #modal.modal.is-closing .modal__content {
        transform: translateY(100%);
      }


      .product-modal-mobile {
        width: 100%;
        height: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        background: #f5f2ed;
      }

      .product-modal-mobile__scroll {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        display: flex;
        flex-direction: column;
        background: #f5f2ed;
      }

      .product-modal-mobile__media {
        padding: 16px;
        background: #fff;
      }

      .product-modal-mobile__content {
        flex: 1 1 auto;
        min-height: 0;
        background: #f5f2ed;
        border-top: 1px solid #f0ece6;
        display: flex;
        flex-direction: column;
      }

      .product-modal-mobile__spacer {
        flex: 1 1 auto;
        min-height: 16px;
      }

      .product-modal-mobile [data-modal-selectors] {
        overflow: visible;
      }

      #modal-footer .modal__footer {
        position: static;
        margin-top: 0;
        min-height: 0;
        padding: 12px 16px;
        background: #fff;
        border-top: 1px solid #f0ece6;
        flex-wrap: nowrap;
      }

      .product-modal-layout {
        width: 100%;
        height: 100%;
        min-height: 100%;
      }

      .product-modal-layout__scroll {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        overflow-y: auto;
        overflow-x: hidden;
        min-height: 0;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
      }

      .product-modal-layout__left,
      .product-modal-layout__right {
        width: 100%;
        height: auto;
      }

      .product-modal-layout__left {
        padding: 16px;
      }

      .product-modal-layout__left,
      .modal-product,
      .modal-product__hero {
        touch-action: pan-y;
      }

      .product-modal-layout__right {
        border-left: none;
        border-top: 1px solid #f0ece6;
        grid-template-rows: auto auto;
      }

      .product-modal-layout--simple .product-modal-layout__right {
        grid-template-rows: auto;
      }

      .product-modal-layout--simple .product-modal-layout__header {
        padding-bottom: 16px;
      }

      .product-modal-layout__left {
        align-content: start;
      }

      .product-modal-layout__selectors {
        overflow: visible;
      }

      #modal-footer .modal__footer {
        position: static;
        z-index: 1;
        margin-top: 0;
        min-height: 0;
        padding: 12px 16px;
        background: #fff;
        border-top: 1px solid #f0ece6;
        flex-wrap: nowrap;
      }

      .product-modal-layout__title {
        font-size: 20px;
      }

      .product-modal-layout__meta {
        font-size: 16px;
      }

      .modal-product__hero,
      .modal-product__hero img {
        width: 320px;
        height: 320px;
      }
    }

    @media (max-width: 430px) and (max-height: 780px) {
      #modal .modal__content {
        max-height: 100dvh;
        border-radius: 14px 14px 0 0;
      }

      .product-modal-mobile__media {
        padding: 10px 12px;
      }

      .product-modal-layout__header {
        padding: 12px;
        gap: 8px;
      }

      .product-modal-layout__title {
        font-size: 18px;
        line-height: 1.25;
      }

      .product-modal-layout__meta {
        font-size: 13px;
      }

      .modal-product__hero,
      .modal-product__hero img {
        width: min(240px, 56vw);
        height: min(240px, 56vw);
      }

      #modal-footer .modal__footer {
        gap: 8px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      }

      #modal-footer .modal__footer .quantity-control {
        gap: 6px;
      }

      #modal-footer .modal__footer .quantity-button {
        width: 30px;
        height: 30px;
      }

      #modal-footer .modal__footer .button {
        min-height: 40px;
        padding: 10px 14px;
      }

      .product-modal-mobile .step-option {
        min-height: 40px;
        padding: 8px 10px;
      }
    }

    @media (max-width: 640px) {
      .modal__content {
        width: min(540px, 96vw);
        max-height: 94vh;
        padding: 16px;
      }

      #modal .modal__content {
        padding: 0;
      }

      .modal-section__title {
        font-size: 15px;
      }

      .required-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .required-tile {
        min-height: 88px;
      }

      .modifier-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-content: stretch;
        gap: 8px;
      }

      .modifier-card {
        width: auto;
        min-height: 150px;
        padding: 6px;
        gap: 4px;
        justify-self: stretch;
        border-color: #e5ddd3;
        background: #fff;
        overflow: hidden;
      }

      .modifier-card__image {
        height: 64px;
        border-radius: 8px;
        background: #fbf9f5;
      }

      .modifier-card__image img {
        width: 54px;
        height: 54px;
        object-fit: contain;
      }

      .modifier-card__name {
        font-size: 11px;
        line-height: 1.2;
        font-weight: 500;
        word-break: break-word;
      }

      .modifier-card__price {
        font-size: 12px;
        white-space: nowrap;
      }

      .modifier-card__header {
        align-items: flex-start;
        gap: 4px;
      }

      .modifier-card__details {
        min-width: 0;
      }

      .modifier-card__details .quantity-control {
        width: 100%;
        justify-content: center;
        gap: 3px;
      }

      .modifier-card__details .quantity-button {
        width: 28px;
        height: 28px;
        background: #fff4ef;
        border-color: var(--accent);
      }

      .modifier-card__details .modal__input {
        width: 32px;
        min-width: 32px;
        padding: 4px;
        font-size: 11px;
        border: none;
        background: #fff4ef;
      }
      .step-option{
          font: 500 12px / 0.2 Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
      }
    }

    @media (max-width: 360px) {
      .modifier-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .modifier-card {
        min-height: 138px;
      }
    }


    .modal__summary {
      background: #faf8f5;
      border-radius: 12px;
      padding: 12px 14px;
      display: grid;
      gap: 6px;
      font-size: 14px;
    }

    .modal__footer {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      position: sticky;
      bottom: 10px;
      background: linear-gradient(to top, #fff 78%, rgba(255, 255, 255, 0));
      padding-top: 25px;
      margin-top: auto;
      justify-content: flex-end;
    }

    .modal__input {
      width: 54px;
      padding: 6px 10px;
      border-radius: 10px;
      border: 1px solid #ddd7cf;
      font-size: 14px;
      text-align: center;
    }

    .quantity-control {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .quantity-button {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #ddd7cf;
      background: #fff;
      cursor: pointer;
      font-weight: 600;
    }

    .quantity-button:hover {
      border-color: var(--accent);
    }

    .auth-button {
      margin-left: auto;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid var(--accent);
      background: #fff;
      color: var(--accent);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .auth-button:hover {
      background: var(--accent);
      color: #fff;
    }

    .auth-user {
      margin-left: auto;
      font-size: 14px;
      color: #6b5c4a;
      display: none;
    }

    .auth-user.is-visible {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    
    .header-menu-toggle {
      margin-left: auto;
      margin-right: 25px;
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid #e5d8cb;
      border-radius: 10px;
      background: #fff;
      color: #5d4c3c;
      cursor: pointer;
      font-size: 20px;
      line-height: 1;
    }

    .header-mobile-nav {
      position: fixed;
      inset: 0;
      z-index: 140;
      pointer-events: none;
      display: none;
    }

    .header-mobile-nav__overlay {
      position: absolute;
      inset: 0;
      border: none;
      background: rgba(0, 0, 0, 0.35);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .header-mobile-nav__panel {
      position: absolute;
      top: 0;
      right: 0;
      width: min(86vw, 340px);
      height: 100%;
      background: #fff;
      border-left: 1px solid #eee6dc;
      box-shadow: -12px 0 30px rgba(0, 0, 0, 0.2);
      transform: translateX(100%);
      transition: transform 0.25s ease;
      padding: 18px;
      overflow-y: auto;
    }

    .header-mobile-nav__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .header-mobile-nav__close {
      border: none;
      background: #f6f2ed;
      color: #5d4c3c;
      width: 32px;
      height: 32px;
      border-radius: 8px;
      cursor: pointer;
    }

    .header-mobile-nav__links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }


    .header-mobile-nav__links a {
      display: block;
      padding: 10px 14px;
      border-radius: 12px;
      text-decoration: none;
      color: var(--text);
      background: #f7f2ec;
    }

    .account-mobile-nav__menu-link.button {
      width: 100%;
      text-align: center;
    }

    .account-mobile-nav__footer {
      margin-top: auto;
      padding-top: 16px;
    }

    .account-mobile-nav__footer .button {
      width: 100%;
      justify-content: center;
    }

    .header-mobile-nav.is-open {
      pointer-events: auto;
    }

    .header-mobile-nav.is-open .header-mobile-nav__overlay {
      opacity: 1;
    }

    .header-mobile-nav.is-open .header-mobile-nav__panel {
      transform: translateX(0);
    }

    .modal__content--auth {
      max-width: 520px;
    }

    .modal__checkbox {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #6b5c4a;
      margin-top: 12px;
    }

    .address-update-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .auth-tabs {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
      border-bottom: 1px solid #ebe5dd;
    }

    .auth-tab {
      padding: 10px 0;
      border: none;
      background: none;
      font-weight: 600;
      color: #8e7a63;
      cursor: pointer;
      border-bottom: 2px solid transparent;
    }

    .auth-tab.is-active {
      color: var(--accent);
      border-color: var(--accent);
    }

    .auth-body {
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      gap: 16px;
    }

    .auth-form {
      display: none;
      gap: 12px;
    }

    .auth-form.is-active {
      display: grid;
    }

    .auth-form label {
      display: grid;
      gap: 6px;
      font-size: 14px;
      color: #6b5c4a;
    }

    .auth-form input {
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid #ded7cf;
      font-size: 14px;
    }

    .auth-code-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: end;
    }

    .auth-code-row .auth-submit {
      white-space: nowrap;
    }

    .auth-submit {
      padding: 12px 18px;
      border-radius: 999px;
      border: none;
      background: var(--accent);
      color: #fff;
      font-weight: 600;
      cursor: pointer;
    }

    .auth-submit:disabled,
    .auth-submit--muted {
      background: #a48484;
      cursor: not-allowed;
    }

    .auth-links-row {
      display: flex;
      justify-content: space-around;
      gap: 12px;
      margin-top: 4px;
    }

    .auth-link {
      border: none;
      background: none;
      color: #8e7a63;
      font-weight: 600;
      cursor: pointer;
      padding: 4px 0;
      text-decoration: none;
    }

    .auth-link--left {
      justify-self: start;
    }


    .auth-status {
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
      background: #f6f2ed;
      color: #6b5c4a;
      display: none;
    }

    .auth-status[data-tone="success"] {
      background: #e9f7ef;
      color: #1d5b33;
    }

    .auth-status[data-tone="error"] {
      background: #fdeaea;
      color: #8a2c2c;
    }

    .auth-note {
      margin: 0;
      font-size: 12px;
      color: #9b8c7a;
    }

    @media (max-width: 700px) {
      .brand {
        gap: 12px;
        flex-wrap: wrap;
      }

      .header-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: 0px;
      }

      .header-mobile-nav {
        display: block;
      }

      #header-auth-button {
        display: none;
      }

      .auth-button {
        width: 100%;
      }

      .auth-code-row {
        grid-template-columns: 1fr;
      }

      .auth-user {
        width: 100%;
        justify-content: center;
      }

      .site-closed-notice {
        position: static;
        transform: none;
        margin: 0 auto;
        order: 10;
      }
    }


    .site-closed-notice {
      display: none !important;
    }


    .seo-only {
      position: absolute !important;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      clip-path: inset(50%);
      border: 0;
      white-space: nowrap;
    }

.card--popular-target {
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
  transition: box-shadow .3s ease, outline-color .3s ease;
}

@media (max-width: 640px) {
  .card {
    grid-template-columns: 135px minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
      "image title"
      "image price";
    align-items: start;
    column-gap: 12px;
    row-gap: 8px;
    width: 100%;
    min-height: 185px;
    height: auto;
    padding: 12px;
  }

  .card__image {
    grid-area: image;
    width: 135px;
    height: 135px;
    aspect-ratio: auto;
  }

  .card__title {
    grid-area: title;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: start;
  }

  .card__title h4 {
    font-size: 16px;
  }

  .card__title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: calc(1.35em * 2);
  }

  .card .size {
    grid-area: price;
    display: flex;
    padding: 0;
    min-height: 0;
    margin: 0;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
  }

  .card .size > span:first-child {
    display: none;
  }

  .card__actions {
    display: none;
  }

  .card--simple .price,
  .card--variant .price {
    display: none;
  }

  .card--simple .button.card__mobile-open,
  .card--variant .button.card__mobile-open {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    justify-content: center;
    font-weight: 600;
  }
}

@media (max-width: 420px) {
  .card {
    grid-template-columns: 116px minmax(0, 1fr);
    column-gap: 10px;
    padding: 10px;
    min-height: 166px;
  }

  .card__image {
    width: 116px;
    height: 116px;
  }

  .card__title h4 {
    font-size: 15px;
  }
}


.account-translations-table-wrap {
  overflow: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  margin-top: 10px;
  max-width: 100%;
}

.account-translations-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
  table-layout: fixed;
}

.account-translations-table th,
.account-translations-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px;
  vertical-align: top;
}

.account-translations-table th {
  text-align: left;
  font-size: 13px;
}

.account-translations-table td input,
.account-translations-table td textarea {
  width: 100%;
  box-sizing: border-box;
}

.account-translations-table td textarea {
  min-height: 72px;
  resize: vertical;
}

.account-translations-table td small {
  color: #666;
}

.account-translations-group-row td {
  background: rgba(92, 44, 12, 0.08);
  border-top: 2px solid rgba(92, 44, 12, 0.25);
  border-bottom: 1px solid rgba(92, 44, 12, 0.2);
  font-size: 13px;
}
