/* === ROOMA Cart Widget: font === */
@font-face {
  font-family: "Grato Grotesk Variable";
  src: url("https://roomadesign.ru/wp-content/uploads/2025/08/Grato-Grotesk-Variable-Demo.ttf") format("truetype-variations"),
       url("https://roomadesign.ru/wp-content/uploads/2025/08/Grato-Grotesk-Variable-Demo.ttf") format("truetype");
  font-weight: 100 900;   /* диапазон осей для variable */
  font-style: normal;
  font-display: swap;
}
/* === ROOMA Cart Widget: Cormorant Variable === */
@font-face {
  font-family: "Cormorant Variable";
  src: url("https://roomadesign.ru/wp-content/uploads/2025/08/Cormorant-VariableFont_wght.ttf") format("truetype-variations"),
       url("https://roomadesign.ru/wp-content/uploads/2025/08/Cormorant-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}

/* 0) RESETS & TOKENS */
html, body { margin:0; padding:0; height:100%; }
*, *::before, *::after { box-sizing:border-box; }
:root{
  --left-padding-x: 40px;
  --attr-divider: rgba(0,0,0,.15);
}

/* 0.1) Типографика и утилиты */
/* Применяем только в пределах нашего виджета */
.main-container {
  font-family: "Grato Grotesk Variable", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizespeed;
}

/* На всякий случай — наследование внутри */
.main-container * {
  font-family: inherit;
}
.text-fade{ opacity:.3; }
.sup{ font-size:10px; vertical-align:super; }
.sup::before{ content:"(" } .sup::after{ content:")" }
.prev{ opacity:.3; text-decoration:line-through; }

/* Применяем шрифт ТОЛЬКО внутри виджета и перебиваем Elementor */
.rooma-cart {
  font-family: "Grato Grotesk Variable", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizespeed;
}

/* Любые элементы внутри наследуют (и перебиваем возможные !important темы) */
.rooma-cart * {
  font-family: inherit !important;
}



@media (max-width: 764px) {
  .header { height: 88px; padding: 0 20px; }
  :root { --left-padding-x: 20px; }
}

/* Жёстко фиксируем вес заголовков товаров */
.rooma-cart .item-title,
.rooma-cart .item-title a,
.rooma-cart .item-title * {
  font-family: "Cormorant Variable", serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variation-settings: "wght" 400 !important; /* фиксируем ось */
  font-synthesis-weight: none;                    /* запрещаем синтетический bold */
  letter-spacing: 0;
  line-height: 1.2;
}

/* === ROOMA Cart: canonical card/layout/buttons (scoped) === */

/* Карточка (desktop базово) */
.rooma-cart .in-stock-item {
  width: 100%;
  gap: 40px;
  padding: 0;
}

/* Грид-раскладка */
.rooma-cart .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rooma-cart .right-top .item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rooma-cart .item-title {
  font-size: 32px;
  font-weight: 400;
}

.rooma-cart .item-sku {
  font-size: 12px;
}

.rooma-cart .item-attrs {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0;
}

.rooma-cart .in-stock-item .right-top,
.rooma-cart .in-stock-item .item-attrs,
.rooma-cart .in-stock-item .item-footer,
.rooma-cart .in-stock-item .attr,
.rooma-cart .in-stock-item .attr-name,
.rooma-cart .in-stock-item .attr-value {
  min-width: 0;
}

.rooma-cart .attr {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
  grid-column: 1 / -1;
  position: relative;
}

.rooma-cart .attr:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--attr-divider);
}

/* Если в item-attrs только один .attr — рисуем полоску сверху */
.rooma-cart .item-attrs:has(> .attr:first-child:last-child) .attr::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--attr-divider);
}

.rooma-cart .attr-name,
.rooma-cart .attr-value {
  padding: 14px 0;
}

.rooma-cart .attr-name::after {
  content: ":";
  margin-left: 0.25em;
  opacity: 0.6;
}

.rooma-cart .attr-name { white-space: nowrap; }

.rooma-cart .attr-value {
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.rooma-cart .attr.availability .attr-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.rooma-cart .item-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-bottom: 0;
}

/* Qty control */
.rooma-cart .qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  padding: 6px 10px;
}

.rooma-cart .qty-minus,
.rooma-cart .qty-plus {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  padding: 2px 6px;
}

.rooma-cart .qty-value { min-width: 24px; text-align: center; }

/* Totals (цена/предоплата) */
.rooma-cart .item-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rooma-cart .item-total .price { font-size: 14px; font-weight: 400; }

.rooma-cart .item-footer .totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.rooma-cart .item-prepay {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.rooma-cart .item-prepay .price { font-size: 14px; font-weight: 400; }

/* Кнопка закрытия/удаления */
.rooma-cart .item-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
  color: #000;
}
.rooma-cart .item-close .x {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}
.rooma-cart .item-close .bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.rooma-cart .item-close .bar1 { transform: translateY(-50%) rotate(45deg); }
.rooma-cart .item-close .bar2 { transform: translateY(-50%) rotate(-45deg); }
.rooma-cart .item-close .label {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.rooma-cart .item-close:hover .bar1,
.rooma-cart .item-close:focus-visible .bar1 { transform: translateY(-50%) rotate(0deg); }
.rooma-cart .item-close:hover .bar2,
.rooma-cart .item-close:focus-visible .bar2 { opacity: 0; }
.rooma-cart .item-close:hover .label,
.rooma-cart .item-close:focus-visible .label { opacity: 1; transform: translateX(0); }
.rooma-cart .item-close:focus-visible { outline: 1px solid rgba(0, 0, 0, 0.2); outline-offset: 1px; }

@media (prefers-reduced-motion: reduce) {
  .rooma-cart .item-close .bar,
  .rooma-cart .item-close .label { transition: none; }
}

.rooma-cart .item-close.is-open .bar1 { transform: translateY(-50%) rotate(0deg); }
.rooma-cart .item-close.is-open .bar2 { opacity: 0; }
.rooma-cart .item-close.is-open .label { opacity: 1; transform: translateX(0); }

/* Модификатор крестика у промокода */
.rooma-cart .item-close--promo {
  padding: 0;
  gap: 0;
  display: inline-flex;
  align-items: flex-end;
  vertical-align: baseline;
}
.rooma-cart .item-close--promo .x { width: 10px; height: 10px; position: relative; top: 0.5px; }
.rooma-cart .item-close--promo .bar { height: 1px; }
.rooma-cart .item-close--promo .label { display: none; }

/* ====== РАСКЛАДКА ПО БРЕЙКПОИНТАМ ====== */

/* ≥ 764px */
@media (min-width: 764px) {
  .rooma-cart .in-stock-item {
    display: grid;
    grid-template-columns: 40% 1fr;
    column-gap: 40px;
    row-gap: 16px;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
      "img head"
      "img attrs"
      "img footer";
  }
  .rooma-cart .in-stock-item .item-footer {
    align-self: end;
  }
  .rooma-cart .in-stock-item .left       { grid-area: img;   align-self: stretch; }
  .rooma-cart .in-stock-item .right-top  { grid-area: head; }
  .rooma-cart .in-stock-item .item-attrs { grid-area: attrs; }
  .rooma-cart .in-stock-item .item-footer{ grid-area: footer; }

  .rooma-cart .in-stock-item .left img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
}

/* < 764px */
@media (max-width: 763px) {
  .rooma-cart .in-stock-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 16px;
    row-gap: 20px;
    grid-template-areas:
      "img head"
      "img sku"
      "attrs attrs"
      "footer footer";
    padding: 0px;
  }
  .rooma-cart .in-stock-item .left      { grid-area: img; }
  .rooma-cart .in-stock-item .right-top { grid-area: head; }
  .rooma-cart .in-stock-item .item-sku  { grid-area: sku; }
  .rooma-cart .in-stock-item .item-attrs{ grid-area: attrs; }
  .rooma-cart .in-stock-item .item-footer{grid-area: footer; }

  .rooma-cart .in-stock-item .left img {
    width: 140px; height: 140px; object-fit: cover; border-radius: 4px;
  }

  .rooma-cart .right-top .item-head {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
  }
  .rooma-cart .right-top .item-title { font-size: 24px; line-height: 1.3; }

  .rooma-cart .item-close .x { transform: scale(0.8); }

  .rooma-cart .item-sku { font-size: 13px; line-height: 1.2; margin-top: 0; }

  .rooma-cart .item-attrs { row-gap: 0px; font-size: 14px; }

  .rooma-cart .attr {
    grid-template-columns: auto 1fr;
    column-gap: 8px;
  }
  .rooma-cart .attr-name { color: var(--text-fade, #777); white-space: nowrap; }

  .rooma-cart .item-footer {
    display: flex; align-items: end; justify-content: space-between; margin-top: 0px;
  }

  .rooma-cart .qty-control button { width: 24px; height: 24px; font-size: 18px; }
  .rooma-cart .qty-value         { min-width: 20px; text-align: center; }
  .rooma-cart .item-total,
  .rooma-cart .item-prepay       { font-size: 15px; }
  .rooma-cart .price             { font-weight: 500; }
}

/* ==========================================================
   ROOMA Cart: summary + checkout (scoped)
   ========================================================== */

.rooma-cart .summary-block {
  position: sticky;
  top: 12px;
  background: #fff;
  z-index: 2;
  padding-top: 0;
}

.rooma-cart .checkout-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 24px 0;
  z-index: 10;
}

/* Общий контейнер строк */
.rooma-cart .order-summary { display: block; }

/* Строки сводки */
.rooma-cart .order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 20px 0;
}

.rooma-cart .order-row--heading {
  padding-top: 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.rooma-cart .order-row .label,
.rooma-cart .order-row .value {
  color: #000;
}

/* Разделители */
.rooma-cart .divider {
  height: 1px;
  width: 100%;
  background: var(--attr-divider);
}

/* ИТОГО */
.rooma-cart .order-row--total {
  position: relative;
  padding-top: 24px;
}
.rooma-cart .order-row--total::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: var(--attr-divider);
}
.rooma-cart .order-row--total .value { font-weight: 400; }

.rooma-cart .order-row .value-container {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}
.rooma-cart .order-row .value-container .value { white-space: nowrap; }

/* ==========================================================
   ПРОМОКОД
   ========================================================== */

.rooma-cart .promo-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(0, 0, 0, .25);
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.rooma-cart .promo-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 16px 14px;
  font-size: 12px;
  border-radius: 0;
}
.rooma-cart .promo-input::placeholder {
  color: rgba(0, 0, 0, .4);
  font-size: 12px;
}

.rooma-cart .promo-apply {
  background: #fff;
  padding: 16px 12px;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Исправление: поле промокода и кнопка в одну строку */
.rooma-cart .promo-row form.apply-coupon {
  display: flex;
  align-items: stretch; /* чтобы высота совпадала */
  width: 100%;
  gap: 0;
}

.rooma-cart .promo-row form.apply-coupon .promo-input {
  flex: 1 1 auto;
  width: auto !important; /* важно — перебивает width:100% из темы */
  min-width: 0;
  border-right: 1px solid rgba(0,0,0,.15); /* чтобы не слипалось визуально */
}

.rooma-cart .promo-row form.apply-coupon .promo-apply {
  flex: 0 0 auto;
  width: auto !important;
  white-space: nowrap;
  padding-left: 16px;
  padding-right: 16px;
}

/* Исправляем поведение кнопки "Применить" */
.rooma-cart .promo-row form.apply-coupon .promo-apply {
  background: #fff;
  color: #000;
  transition: opacity .2s ease;
}

.rooma-cart .promo-row form.apply-coupon .promo-apply:hover,
.rooma-cart .promo-row form.apply-coupon .promo-apply:focus-visible {
  opacity: .3;
  color: #000; /* фиксируем цвет, чтобы не исчезал */
}

.rooma-cart .promo-apply:hover { opacity: .9; }
.rooma-cart .promo-apply:focus,
.rooma-cart .promo-apply:active {
  outline: 0;
  box-shadow: none;
}

.rooma-cart .promo-alert {
  margin-top: 4px;
  font-size: 12px;
}

.rooma-cart .promo-result {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.rooma-cart .promo-code { transition: opacity .2s ease; }

/* Тускнеет при наведении */
.rooma-cart .item-close--promo:hover + .promo-code,
.rooma-cart .item-close--promo:focus-visible + .promo-code {
  opacity: .3;
}
.rooma-cart .promo-result:has(.item-close--promo:hover) .promo-code {
  opacity: .3;
}

/* Аккордеон */
.rooma-cart .promo-accordion {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .35s ease, opacity .35s ease;
  contain: paint;
}
.rooma-cart .promo-accordion.is-open { opacity: 1; }
.rooma-cart .promo-accordion[aria-hidden="true"] {
  height: 0;
  opacity: 0;
}

/* ==========================================================
   АККОРДЕОН (+ / –)
   ========================================================== */
.rooma-cart .indicator.icon-plusminus {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.rooma-cart .icon-plusminus .pm {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-block;
}
.rooma-cart .icon-plusminus .bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
}
.rooma-cart .icon-plusminus .bar-h { transform: translateY(-50%) rotate(0deg); }
.rooma-cart .icon-plusminus .bar-v { transform: translateY(-50%) rotate(90deg); }
.rooma-cart .order-row--heading[aria-expanded="true"] .icon-plusminus .bar-v {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

/* ==========================================================
   СНОСКИ И ИНДЕКСЫ
   ========================================================== */
.rooma-cart .note {
  display: grid;
  grid-template-columns: 1.2em 1fr;
  column-gap: 2px;
  align-items: start;
  font-size: 12px;
}
.rooma-cart .note .sup {
  grid-column: 1;
  display: block;
  line-height: 1;
}
.rooma-cart .order-row .label .sup {
  position: relative;
  top: -0.25em;
  vertical-align: baseline;
  line-height: 0;
}
.rooma-cart .note--promo {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* ==========================================================
   КНОПКА ОПЛАТЫ
   ========================================================== */
.rooma-cart .checkout-btn {
  display: block;
  width: 100%;
  padding: 16px 18px;
  margin: 0;
  background: #000;
  color: #fff;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
.rooma-cart .checkout-btn:hover { opacity: .9; }

/* Специальное поведение для кнопки "Отправить менеджеру" */
.rooma-cart .checkout-btn--manager:hover,
.rooma-cart .checkout-btn--manager:focus-visible {
  opacity: 0.7;
}

/* ==========================================================
   АДАПТИВ
   ========================================================== */
@media (max-width: 1024px) {
  .rooma-cart .summary-block,
  .rooma-cart .checkout-block {
    position: static;
    top: auto;
    bottom: auto;
  }
  .rooma-cart .right-column .right-inner {
    min-height: auto;
    gap: 40px;
  }
  .rooma-cart .checkout-block {
    margin-top: 0px;
    padding: 0;
  }
}

@media (max-width: 764px) {
  .rooma-cart .promo-input { padding: 14px 12px; }
  .rooma-cart .promo-apply { padding: 14px 12px; }
  .rooma-cart .order-row   { padding: 20px 0; }
}


/* ==========================================================
   ROOMA Cart: City dropdown (как мини-виджет "Санкт-Петербург >")
   ========================================================== */

/* выравниваем бар */
.rooma-cart .items-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* сам контейнер справа */
.rooma-cart .city-dropdown{
  margin-left:auto;
}

/* кнопка = текст города + стрелка (как мини-виджет) */
.rooma-cart .city-dropdown__button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0px 0px;           /* визуально как у мини-виджета */
  background:transparent;
  border:0;
  outline:0;
  cursor:pointer;
  color:#000;
  font-size:14px;
  line-height:1;
  letter-spacing:0;
  
  text-transform:none;
  -webkit-appearance:none;
  appearance:none;
}


/* подпись города (сам текст) */
.rooma-cart .city-dropdown__content{
  display:inline-block;
  white-space:nowrap;
  max-width:40vw;
  overflow:hidden;
  text-overflow:ellipsis;
   margin: 0px;
}

/* стрелка ">" как в мини-виджете */
.rooma-cart .city-dropdown__icon{
  width:10px;
  height:10px;
  display:inline-block;
  flex:0 0 auto;
  
}

/* ховер/фокус – лёгкое тускнение, как у остальных компактных контролов */
.rooma-cart .city-dropdown__button:hover .city-dropdown__content,
.rooma-cart .city-dropdown__button:hover .city-dropdown__icon{
  opacity:.6;
}
.rooma-cart .city-dropdown__button:focus-visible{
  outline:1px solid rgba(0,0,0,.2);
  outline-offset:2px;
}

/* мобильная подгонка */
@media (max-width: 763px){
    .rooma-cart .qty-control {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    line-height: 1;
    height: auto;
  }

  .rooma-cart .qty-control button,
  .rooma-cart .qty-control .qty {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    height: 100%;
  }

  .rooma-cart .qty-control .qty {
    min-width: 32px;
  }
  
  .rooma-cart .city-dropdown__button{
    padding:10px 12px;
    font-size:14px;
    gap:8px;
  }
  .rooma-cart .city-dropdown__icon{
    width:9px; height:9px;
  }
}


/* На время подмены фрагментов убираем анимации/переходы, чтобы не мигало */
.rooma-cart.is-updating * {
  transition: none !important;
  animation: none !important;
}

/* ==== Undo-placeholder (самостоятельный UI) ==== */
.rooma-cart .cart-undo {
  display: flex;
  align-items: center;
  background: #F6F6F6;
  min-height: 40px;
  gap: 0px;
  margin: 30px 0;
}


.rooma-cart .cart-undo__img {
    display:none;
}

.rooma-cart .cart-undo__right {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 24px;
  gap: 0; /* не нужен общий gap */
}

/* название — занимает всю доступную ширину */
.rooma-cart .cart-undo__title {
  flex: 1;
  font-family: "Cormorant Variable", serif !important;
  font-weight: 400 !important;
  font-variation-settings: "wght" 400 !important;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* контейнер для кнопки и таймера */
.rooma-cart .cart-undo__actions {
  display: flex;
  align-items: center;
  gap: 0; /* кнопка и таймер вплотную */
  flex-shrink: 0;
}

/* кнопка "вернуть удалённый товар" — по содержимому */
.rooma-cart .cart-undo__btn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  opacity: .3;
  cursor: pointer;
  color: inherit;
  white-space: nowrap;
  text-align: right;
  padding-right:12px;
}
.rooma-cart .cart-undo__btn:hover,
.rooma-cart .cart-undo__btn:focus-visible {
  opacity: .5;
}

/* таймер — фиксированная ширина 16px, справа от кнопки */
.rooma-cart .cart-undo__timer {
  width: 16px;
  text-align: right;
  font-size: 14px;
  opacity: .6;
  flex-shrink: 0;
  line-height: 1;
}

/* ==========================================================
   ROOMA Cart: Empty states for tabs
   ========================================================== */
 .cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  padding: 80px 0;
}

.rooma-cart .cart-empty-state__text {
  font-family: "Cormorant Variable", serif !important;
  font-weight: 400;
  font-variation-settings: "wght" 400;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 32px;
}

@media (max-width: 767px) {
  .rooma-cart .cart-empty-state__text {
    font-size: 32px;
  }
}

.cart-empty-state__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cormorant Variable", serif !important;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.rooma-cart .custom-send-manager {
  margin-top: 0px;
}

.rooma-cart .availability-line {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rooma-cart .availability-line.is-avail-fade-out {
  opacity: 0;
  transform: translateY(4px);
}

.rooma-cart .availability-line.is-avail-fade-in {
  opacity: 1;
  transform: translateY(0);
}

.rooma-cart .qty-control .qty-value {
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.rooma-cart .qty-control .qty-value.is-bump {
  transform: scale(1.08);
  opacity: 0.7;
}

.rooma-cart .qty-control .qty-minus,
.rooma-cart .qty-control .qty-plus {
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.rooma-cart .qty-control .qty-minus:hover,
.rooma-cart .qty-control .qty-plus:hover,
.rooma-cart .qty-control .qty-minus:focus-visible,
.rooma-cart .qty-control .qty-plus:focus-visible {
  opacity: 0.3;
}

.rooma-cart .qty-control .qty-minus:active,
.rooma-cart .qty-control .qty-plus:active {
  transform: scale(0.9);
  opacity: 0.7;
}