/**
 * v10 Cart: mini-cart pill, min-order toast, right sidebar
 * Source: new-design/new-homepage.html
 */

/* ===== CALLOUT ===== */
.v10-callout {
  position: fixed;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 201;
}
.v10-callout.show { opacity: 1; }

/* ===== MINI CART PILL ===== */
.mini-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--blue);
  color: white;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgb(172 176 183 / 45%);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s;
  z-index: 200;
  min-width: 260px;
  white-space: nowrap;
  border: 1px solid rgb(255 255 255 / 14%);
}
.mini-cart.visible { transform: translateX(-50%) translateY(0); }
.mini-cart:hover { box-shadow: 0 12px 40px rgba(26,39,68,0.45); }

.mini-cart-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-cart-icon svg { width: 18px; height: 18px; }

.mini-cart-info { flex: 1; min-width: 0; }
.mini-cart-stores { font-size: 11px; opacity: 0.8; margin-bottom: 1px; }
.mini-cart-summary { font-size: 13px; font-weight: 600; }

.mini-cart-total {
  background: rgba(255,255,255,0.2);
  color: white;
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
}

.mini-cart-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== OVERLAY ===== */
.v10-cart-overlay.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(2px);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.v10-cart-overlay.overlay.visible { opacity: 1; pointer-events: all; }

/* ===== SIDEBAR ===== */
.v10-cart-sidebar.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sidebar-w, 440px);
  max-width: 100vw;
  height: 100vh;
  background: white;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.v10-cart-sidebar.sidebar.open { transform: translateX(0); }

.sidebar-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-50);
  flex-shrink: 0;
}
.sidebar-title-block { flex: 1; min-width: 0; }
.sidebar-title { font-size: 17px; font-weight: 700; color: var(--gray-800); margin-bottom: 2px; }
.sidebar-subtitle { font-size: 12px; color: var(--gray-500); }
.sidebar-close {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: all 0.15s;
  flex-shrink: 0;
}
.sidebar-close:hover { background: var(--gray-200); color: var(--gray-800); }

/* Tabs nav */
.tabs-nav {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--gray-200);
  background: white;
  gap: 4px;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tabs-nav-btn {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--gray-400);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.15s;
  font-family: inherit;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.tabs-nav-btn:hover { color: var(--gray-700); }
.tabs-nav-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tabs-nav-btn.warning { color: var(--amber); }
.tabs-nav-count {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 8px;
}
.tabs-nav-btn.active .tabs-nav-count { background: var(--navy); color: white; }
.tabs-nav-btn.warning.active .tabs-nav-count { background: var(--amber); color: white; }

.sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.store-panel {
  display: none;
  flex-direction: column;
  height: 100%;
}
.store-panel.active { display: flex; }

/* Empty state */
.empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: var(--gray-400);
  gap: 12px;
  text-align: center;
}
.empty-state svg { width: 48px; height: 48px; opacity: 0.4; }
.empty-state-title { font-size: 15px; font-weight: 600; color: var(--gray-600); }
.empty-state-text { font-size: 13px; line-height: 1.5; }

/* All summary */
.all-summary {
  display: none;
  flex-direction: column;
  height: 100%;
}
.all-summary.active { display: flex; }

.summary-stores-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.summary-store-card {
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s;
  background: white;
}
.summary-store-card:hover {
  border-color: var(--blue-light);
  box-shadow: 0 4px 16px rgba(33, 70, 125, 0.12);
  transform: translateY(-1px);
}
.summary-store-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: white;
}
.summary-store-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.summary-store-info {
  flex: 1;
  min-width: 0;
}
.summary-store-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.summary-store-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.summary-store-count-inline {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  white-space: nowrap;
}
.summary-store-total {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}

.summary-store-body {
  padding: 0 14px 12px;
}
.summary-store-progress-row {
  display:flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.summary-store-progress-label {
  font-size: 11px;
  font-weight: 600;
}
.summary-store-progress-label--info {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.summary-store-progress-info-ic {
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}
.summary-store-progress-min {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
}
.summary-store-progress-bar {
  height: 5px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}
.summary-store-progress-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s ease;
}
.summary-store-items { font-size: 12px; color: var(--gray-500); margin-bottom: 6px; }
.summary-store-ok { font-size: 11px; color: var(--green); margin-top: 6px; }

.summary-footer {
  border-top: 1px solid var(--gray-200);
  padding: 16px;
  background: white;
}
.summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.summary-total-label { font-size: 13px; color: var(--gray-500); }
.summary-total-val { font-size: 22px; font-weight: 800; color: var(--navy); }
.summary-hint { font-size: 11px; color: var(--gray-400); margin-bottom: 14px; }

.checkout-all-btn {
  width: 100%;
  background: #21467d;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, opacity 0.15s;
}
.checkout-all-btn:hover { background: #1a3a6b; }

/* Status bar */
.status-bar {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}
.status-bar.ok { background: #f0fdf4; color: var(--green); }
.status-bar.warn { background: #fffbeb; color: var(--amber); }
.status-bar strong { font-weight: 800; }
.status-bar svg { width: 14px; height: 14px; flex-shrink: 0; }

.status-bar-warn-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.status-bar-warn-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-bar-warn-info-ic {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--amber);
}
.status-bar-ok-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--green);
}
.status-bar-catalog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  background: #fef3c7;
  color: #92400e;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
  transition: background 0.15s;
}
.status-bar-catalog-btn:hover {
  background: #fde68a;
  color: #92400e;
}
.status-bar-catalog-btn--ok {
  background: var(--green);
  color: white;
}
.status-bar-catalog-btn--ok:hover {
  background: #15803d;
  color: white;
}

/* Items list */
.items-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.item-img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  overflow: hidden;
}
.item-img img { width: 100%; height: 100%; object-fit: cover; }

.item-details { flex: 1; min-width: 0; }
.item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-vol { font-size: 11px; color: var(--gray-400); margin-bottom: 8px; }
.item-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.item-price { font-size: 14px; font-weight: 700; color: var(--navy); }

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  background: white;
}
.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.1s;
  font-family: inherit;
}
.qty-btn:hover { background: var(--gray-100); color: var(--gray-800); }
.qty-val {
  width: 32px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}

/* ÐŸÐ¾Ð»Ðµ ÐºÐ¾Ð»Ð¸Ñ‡ÐµÑÑ‚Ð²Ð° Ð² Ð¾Ñ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ð¸ Ð·Ð°ÐºÐ°Ð·Ð°: ÐºÐ°Ðº Ð² Ð±Ð¾ÐºÐ¾Ð²Ð¾Ð¹ ÐºÐ¾Ñ€Ð·Ð¸Ð½Ðµ (Ð¿Ð¾Ð²ÐµÑ€Ñ… legacy btn-input-cart) */
.qty-ctrl input.qty-val.form-control,
.qty-ctrl input.form-control.qty-val {
  width: 40px;
  min-width: 32px;
  max-width: 64px;
  height: 28px;
  line-height: 28px;
  padding: 0 4px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--gray-800);
  background: white;
  border: none;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-radius: 0;
  box-shadow: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-ctrl input.qty-val.form-control:focus,
.qty-ctrl input.form-control.qty-val:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--gray-200);
}
.qty-ctrl input.qty-val.form-control::-webkit-outer-spin-button,
.qty-ctrl input.qty-val.form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-ctrl input.qty-val.form-control.btn-input-cart {
  height: 28px;
  line-height: 28px;
  width: 40px;
  min-width: 32px;
  max-width: 64px;
  font-size: 13px;
  background: white;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-top: none;
  border-bottom: none;
}
.simplecheckout-cart .item .quantity.quantity-v10 {
  border: none;
  padding: 0;
  border-radius: 0;
  background: transparent;
}
.simplecheckout-cart .item .quantity.quantity-v10 .qty-ctrl {
  margin: 0;
}
.simplecheckout-cart .item .quantity.quantity-v10 .qty-btn {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
  background: none;
  padding: 0;
}
.simplecheckout-cart .item .quantity.quantity-v10 .qty-ctrl input {
  min-width: 32px;
  width: 40px;
  max-width: 64px;
}
.simplecheckout-cart td.quantity .simplecheckout-qty-wrap {
  gap: 6px;
  max-width: 220px;
}
.simplecheckout-cart td.quantity .simplecheckout-qty-remove {
  flex-shrink: 0;
  padding: 4px 8px;
}

.item-remove {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-300);
  border-radius: 4px;
  transition: all 0.15s;
  flex-shrink: 0;
}
.item-remove:hover { background: #fef2f2; color: var(--red); }
.item-remove svg { width: 14px; height: 14px; }

.sidebar-footer {
  border-top: 1px solid var(--gray-200);
  padding: 16px;
  flex-shrink: 0;
  background: white;
}
.total-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.total-label { font-size: 13px; color: var(--gray-500); }
.total-val { font-size: 20px; font-weight: 700; color: var(--navy); }
.min-order-note { font-size: 11px; color: var(--gray-400); margin-bottom: 12px; }
.min-order-note.warn { color: var(--amber); }

.progress-bar-wrap {
  height: 4px;
  background: var(--gray-100);
  border-radius: 2px;
  margin-bottom: 12px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.progress-bar-fill.full { background: var(--green); }
.progress-bar-fill.warn { background: var(--amber); }

.checkout-btn {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.checkout-btn:hover:not(:disabled) { background: var(--navy-light); }
.checkout-btn:disabled {
  background: var(--gray-100);
  color: var(--gray-400);
  cursor: not-allowed;
  border: 1.5px dashed var(--gray-300);
}
.checkout-hint { text-align: center; font-size: 11px; color: var(--gray-400); margin-top: 8px; }

/* ===== MIN ORDER TOAST ===== */
.min-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 301;
  width: 420px;
  max-width: calc(100vw - 32px);
  background: white;
  border-radius: 26px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.32,.72,0,1), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
}
.min-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.min-toast-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
}
.min-toast-leading {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}
.min-toast-leading .min-toast-product-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.min-toast-leading .min-toast-icon-fallback {
  line-height: 1;
}
.min-toast-store-info { flex: 1; min-width: 0; }
/* ÐŸÐµÑ€Ð²Ð°Ñ ÑÑ‚Ñ€Ð¾ÐºÐ° â€” Ð½Ð°Ð·Ð²Ð°Ð½Ð¸Ðµ Ð¼Ð°Ð³Ð°Ð·Ð¸Ð½Ð° (ÐºÐ°Ðº Ð±Ñ€ÐµÐ½Ð´ Ð½Ð° Ð¼Ð°ÐºÐµÑ‚Ðµ) */
.min-toast-store-name { font-size: 15px; font-weight: 800; color: var(--gray-800); letter-spacing: -0.02em; line-height: 1.25; }
.min-toast-added { font-size: 12px; color: var(--gray-500); margin-top: 4px; line-height: 1.35; }
.min-toast-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: background 0.15s;
}
.min-toast-close:hover { background: var(--gray-200); }

.min-toast-progress-wrap { padding: 0 16px 12px; }
.min-toast-amounts {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.min-toast-current { font-size: 20px; font-weight: 800; color: var(--navy); }
.min-toast-goal { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.min-toast-bar-bg {
  height: 10px;
  background: var(--gray-100);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}
/* Ð”Ð¾ Ð¼Ð¸Ð½Ð¸Ð¼ÑƒÐ¼Ð° â€” Ð¾Ñ€Ð°Ð½Ð¶ÐµÐ²Ð°Ñ Ð¿Ð¾Ð»Ð¾ÑÐ° (ÐºÐ°Ðº Ð½Ð° Ð¼Ð°ÐºÐµÑ‚Ðµ); Ð¿Ð¾ÑÐ»Ðµ â€” Ð·ÐµÐ»Ñ‘Ð½Ð°Ñ */
.min-toast-bar-fill {
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(90deg, #ea580c, #fbbf24);
  transition: width 0.45s ease;
  min-width: 6px;
}
.min-toast-bar-fill.warning { background: linear-gradient(90deg, #ea580c, #fbbf24); }
.min-toast-bar-fill.done { background: linear-gradient(90deg, #16a34a, #4ade80); }
.min-toast-label { font-size: 11px; color: var(--gray-500); line-height: 1.4; }
.min-toast-label b { color: var(--gray-700); }
.min-toast-label.done-label { color: #15803d; font-weight: 700; }

.min-toast-nomin {
  padding: 0 16px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #1b7f3e;
  font-weight: 700;
  line-height: 1.4;
}
.min-toast-nomin svg { color: #16a34a; flex-shrink: 0; }

.min-toast-actions {
  display: flex;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--gray-100);
}
.min-toast-btn-ic {
  flex-shrink: 0;
}
.min-toast-btn-catalog {
  flex: 7;
  min-width: 0;
  padding: 12px 14px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.min-toast-btn-catalog .min-toast-btn-ic {
  color: rgba(255,255,255,0.95);
}
.min-toast-btn-catalog:hover { background: var(--navy-light); }
.min-toast-btn-cart {
  flex: 3;
  min-width: 0;
  padding: 12px 10px;
  background: #f0f4f8;
  color: #1a2b44;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.min-toast-btn-cart .min-toast-btn-ic {
  color: #1a2b44;
}
.min-toast-btn-cart:hover { background: var(--gray-200); }

/* ÐœÐ¾Ð±Ð¸Ð»ÑŒÐ½Ð°Ñ ÐºÐ¾Ñ€Ð·Ð¸Ð½Ð° â€” Ð²Ñ‹ÐµÐ·Ð´ ÑÐ½Ð¸Ð·Ñƒ (ÐºÐ°Ðº tepsey-mbanners / new-homepage_old) */
@media (max-width: 768px) {
  .v10-cart-overlay.overlay {
    z-index: 1200;
  }

  .v10-cart-sidebar.sidebar {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: min(92vh, calc(100dvh - 24px));
    max-height: 92vh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(calc(100% + 16px));
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .v10-cart-sidebar.sidebar.open {
    transform: translateY(0);
  }

  .v10-cart-sidebar.sidebar::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
    margin: 10px auto 4px;
    flex-shrink: 0;
  }

  .v10-cart-sidebar .sidebar-body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
}

/* ÐžÑ„Ð¾Ñ€Ð¼Ð»ÐµÐ½Ð¸Ðµ Ð·Ð°ÐºÐ°Ð·Ð° Ð¸ Ð›Ðš: Ð±ÐµÐ· Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‰ÐµÐ¹ Ð¼Ð¸Ð½Ð¸ÐºÐ¾Ñ€Ð·Ð¸Ð½Ñ‹ Ð¸ ÑÑ‚Ð°Ñ€Ð¾Ð³Ð¾ popup #cart */
body.hide-floating-cart-ui #cart.minicart.new-menu.custom-popup {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

/* Ð¡Ñ‚Ñ€Ð°Ð½Ð¸Ñ†Ð° ÐºÐ¾Ñ€Ð·Ð¸Ð½Ñ‹: Ð·Ð°Ð¿Ð°ÑÐ½Ð¾Ð¹ ÑÐºÑ€Ð¾Ð¹ v10 (Ð¿Ð»Ð°ÑˆÐºÐ° + ÑÐ°Ð¹Ð´Ð±Ð°Ñ€), ÐµÑÐ»Ð¸ Ñ€Ð°Ð·Ð¼ÐµÑ‚ÐºÐ° Ð²ÑÑ‘ Ð¶Ðµ Ð¿Ð¾Ð¿Ð°Ð»Ð° Ð² HTML */
body.checkout-cart #miniCart,
body.checkout-cart .mini-cart,
body.checkout-cart #cartOverlay.v10-cart-overlay,
body.checkout-cart #sidebar.v10-cart-sidebar,
body.checkout-cart .v10-callout,
body.checkout-cart #minToast {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}
