.container {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
}

.left-column {
  flex: 0 0 65%;
  min-width: 0;
  background: #fff;
}

.right-column {
  flex: 0 0 35%;
  min-width: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  border-left: 1px solid var(--attr-divider);
}

.left-inner {
  width: 80%;
  margin: 40px auto 0;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 0px;              /* было 60px */
  width: 100%;
}


.right-column .right-inner {
  width: 80%;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100vh;
}

.back-button {
  border-top: 1px solid var(--attr-divider);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0 60px;
  padding-top: 20px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
}

.back-button:hover {
  opacity: 0.6;
}

.arrow {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.arrow-line {
  position: absolute;
  width: 6px;
  height: 1px;
  background: #000;
  top: 4px;
  left: 0;
  transform-origin: left center;
}

.arrow-line.line1 {
  transform: rotate(45deg);
}

.arrow-line.line2 {
  transform: rotate(-45deg);
}

@media (max-width: 1024px) {
  /* Колонки складываются */
  .container { flex-direction: column; }

  .left-column,
  .right-column { flex: 0 0 auto; width: 100%; }

  .right-column {
    border-left: 0;
    border-top: 1px solid var(--attr-divider);
  }

  .right-column .right-inner {
    width: 100%;
    padding: 24px var(--left-padding-x);
  }

  .left-inner {
    width: 100%;
    padding: 0 var(--left-padding-x);
  }
}

@media (max-width: 764px) {
.left-inner {
  margin: 20px auto 0;
}

.items-list {

  gap: 0px;              /* было 60px */
}
}

/* ==== Cart info notice (full-width above tabs) ==== */
.rooma-cart .items-notice{
  width: 100%;
  margin: 0 0 8px 0;
  padding: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
}

.rooma-cart .items-notice.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.rooma-cart .items-notice__inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  background: #F6F6F6;
  border: 0px solid rgba(0,0,0,.08);
  border-radius: 0px;
  padding: 24px 24px;
  box-sizing: border-box;
}

/* текст уведомления */
.rooma-cart .items-notice__text{
  flex: 1;
  font-size: 14px;
  line-height: 1.45;
  color: #000;
  opacity: .9;
  font-family: "Grato Grotesk Variable", system-ui, sans-serif;
  font-weight: 400;
}

/* кнопка закрытия ✕ */
.rooma-cart .items-notice__close{
  background: none;
  border: 0;
  padding: 2px;
  margin: 0;
  cursor: pointer;
  opacity: 1;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.rooma-cart .items-notice__close:hover,
.rooma-cart .items-notice__close:focus-visible{
  opacity: 0.7 !important;
}

/* Базовое состояние баннера над табами */
.rooma-cart .items-notice {
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity   0.22s ease,
    transform 0.22s ease;
}

/* Внутренность — фон/границы как тебе нужно, без резких изменений */
.rooma-cart .items-notice__inner {
  /* пример, подправь под свой текущий стиль */
  background: #F6F6F6;
  border-radius: 6px;
}

/* Видимый баннер */
.rooma-cart .items-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}