/* Configurator styles */
:root {
  --bg: #ffffff;
  --bgBlock: rgb(250, 250, 250);
  --bgButton: #0a0a0ade;
  --bgBlue: #3f78e0;
  --textColor: #000000;
  --radius: 20px;
  --radiusButton: 10px;
  --border: 1px solid #00000017;
  --shadow: rgba(0, 0, 0, 0.02) 4px 4px 24px 0px;
}

.configContainer > * {
  color: var(--textColor);
}

/* .config_wrapper {
  padding-top: 5rem;
  background-color: var(--bg);
} */

.configContainer {
  display: flex;
  margin: auto;
  /* width: 90%; */
}

.configLeft_block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 70%;
}

.configContainer img {
  display: block;
  width: 100%;
  height: auto;
}

.configContainer a {
  display: block !important;
  width: 100%;
  text-decoration: none;
}

.configContainer .pagination > li > a {
  display: flex !important;
}

/* Start Title */

.titleBox {
  padding: 1rem 0;
}

.titleConfig {
  font-weight: 600;
  font-size: 25px;
}

.titleButton_block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.titleButton {
  padding: 0.2rem 1rem;
  border-radius: var(--radiusButton);
  border: var(--border);
  background-color: var(--bgBlock);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.3s;
}

/* Start Services */

.titleService {
  display: block;
  padding: 1rem 0;
  font-weight: 400;
  font-size: 20px;
}

/* Start Plate */

.plateService_block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.plateService_checkbox input {
  height: 20px;
  width: 20px;
  cursor: pointer;
}

.plateService_box {
  display: flex;
  align-items: center;
}

.imageBox {
  width: 40px;
}

.textServices_container {
  display: flex;
  flex-direction: column;
}

.textServices_box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.textServices {
  font-weight: 600;
  font-size: 14px;
}

.iconInfo_box {
  width: 20px;
  cursor: pointer;
}

.priceServices {
  font-weight: 400;
  font-size: 12px;
}

/* Start Basic */

.basicContainer {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.titleBasic {
  display: block;
  padding: 1rem 0;
  font-weight: 400;
  font-size: 20px;
}

/* Start Basic Box */

.basicBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.basicLeft {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.basicImage_box {
  width: 30px;
}

.progressButton_block {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.basicButton {
  padding: 0.5rem 1rem;
  width: max-content;
  font-weight: 400;
  font-size: 14px;
  color: white;
  border-radius: var(--radiusButton);
  background-color: var(--bgButton);
  cursor: pointer;
  transition: 0.3s;
}

/* Start Right */

.configRight_block {
  width: 30%;
}

.configRight_container {
  margin: auto;
  padding-top: 9rem;
  width: 90%;
}

.progressBar_block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.progressText_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progressPrice {
  font-weight: 600;
  font-size: 20px;
}

/* Start Progress */

.progressLine_block {
  position: relative;
  width: 100%;
  background-color: var(--bgBlock);
  border-radius: var(--radius);
  overflow: hidden;
}

.progressLine {
  display: block;
  height: 20px;
  width: 20%;
  border-radius: var(--radius);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: green;
}

.progressPercent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 14px;
}

.assemblyContainer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

/* Start Info */

.assemblyInfo_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: var(--border);
}

.asssemblyIcon_box {
  width: 30px;
}

.asssemblyIcon_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.assemblyText {
  font-weight: 600;
  font-size: 18px;
}

.assemblyProducts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Open Block */

.openBasic_block {
  padding: 1rem;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow);
}

.openHeader_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.openBasic_right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.openSerch {
  padding: 0.3rem 1rem;
  border-radius: var(--radiusButton);
  border: var(--border);
}

/* Start Filter */

.filterBlock {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: var(--radiusButton);
  border: var(--border);
  background-color: var(--bgBlock);
}

.filterTitle_box {
  position: absolute;
  top: -10px;
  left: 30px;
}

.openFilter {
  padding: 0.2rem 1rem;
  border-radius: var(--radiusButton);
  border: var(--border);
  cursor: pointer;
  transition: 0.3s;
}

.selectedFilter_box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radiusButton);
  border: var(--border);
  background-color: var(--bgBlue);
  cursor: pointer;
  transition: 0.3s;
}

.selectedFilter {
  font-weight: 400;
  font-size: 14px;
  color: white;
}

.openFilterIcon {
  width: 10px;
}

/* Start Product */

.assemblyProduct_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: var(--border);
  background-color: white;
  cursor: pointer;
  transition: 0.3s;
}

.assemblyImage_box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.assemblyImage_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.productGroup_block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-radius: var(--radius);
  border: var(--border);
  background-color: var(--bgBlock);
}

.groupLine_box {
  position: absolute;
  top: -9px;
  left: 30px;
}

.nameProduct {
  width: 60%;
  font-size: 14px;
}

.iconProduct_box {
  width: 20px;
}

.iconProduct_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.none {
  display: none;
}

/* Start Hover */

.assemblyProduct_block:hover {
  transform: scale(0.99, 0.99);
}
.basicButton:hover {
  transform: scale(0.99, 0.99);
}

.selectedFilter_box:hover {
  transform: scale(0.99, 0.99);
}

.openFilter:hover {
  transform: scale(0.99, 0.99);
}

.titleButton_box:hover {
  transform: scale(0.99, 0.99);
}

.tabText {
  padding: 0.2rem 1rem;
  font-weight: 400;
  font-size: 14px;
  color: white;
  border-radius: var(--radiusButton);
  background-color: var(--bgButton);
}

/* ================================================
   [3] Відступ блоку списку товарів від блоків фільтрів
   ================================================ */

.filterList_block {
  margin-top: 1.5rem;
}

/* ================================================
   [2] Порожній стан списку товарів у панелі фільтрів
   ================================================ */

.config-empty-products {
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 14px;
  color: #aaa;
}

/* ================================================
   [1] Компонування блоку вибраного товару
   [лівий блок: flex-column]  [правий блок: хрестик]
   Рядок 1: фото + назва + ціна
   Рядок 2: інпут кількості (якщо є — завжди другим рядком)
   ================================================ */

/* Два блоки поруч, лівий тягнеться, правий по ширині хрестика */
.assemblyProduct_block {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

/* Лівий блок: рядки зверху вниз */
.assemblyProduct_main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Рядок 1: фото + назва + ціна */
.assemblyProduct_row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Назва займає залишковий простір (override width: 60%) */
.assemblyProduct_row .nameProduct {
  flex: 1;
  width: auto;
}

/* Рядок 2: інпут кількості */
.assemblyProduct_qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: var(--border);
}

.assemblyProduct_qty label {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.assemblyProduct_qty input[type='number'] {
  width: 70px;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radiusButton);
  border: var(--border);
  background-color: var(--bgBlock);
  font-size: 14px;
  text-align: center;
}

/* Правий блок: хрестик центрований по висоті обох рядків */
.iconProduct_box {
  display: flex;
  align-items: center;
}

/* ============================================================
   IGOR Style configurator.css
   ============================================================ */

/* ── Configurator Modal ── */
.configurator-modal {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.configurator-modal.in {
  opacity: 1;
}
.configurator-modal .modal-content {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: none;
}
.configurator-modal .modal-header {
  border: none;
  padding: 16px 20px 8px;
}
.configurator-modal .modal-body {
  padding: 8px 20px 20px;
  max-height: 70vh;
  overflow: hidden;
}
.config-modal-list {
  display: grid;
  max-height: 60vh;
  overflow: auto;
  padding-right: 6px;
}
.config-modal-option {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  cursor: pointer;
}
.config-modal-option input {
  width: 16px;
  height: 16px;
}
.config-modal-option-text {
  font-size: 14px;
}

/* ── Compatibility Error ── */
.basicBox--error {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.25);
}
.basicBox--error .titleButton {
  background: #e74c3c !important;
}
.compat-error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  margin-right: 8px;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.compat-error-icon:hover {
  background: #c0392b;
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.5);
}
.compat-error-message {
  padding: 10px 12px;
  border: 1px solid #f5c6cb;
  background: #fff5f5;
  border-radius: 8px;
  color: #c0392b;
  font-size: 14px;
  margin: 0 0 8px;
}

/* ── Info Tooltip ── */
.iconInfo_box {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.iconInfo_tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #fff;
  font-size: 12px;
  line-height: 1.45;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  width: 220px;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  z-index: 100;
}
.iconInfo_tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
}
.iconInfo_box:hover .iconInfo_tooltip {
  opacity: 1;
  visibility: visible;
}

/* ── Services ── */
.basicBox {
  flex-wrap: wrap;
  align-content: flex-start;
}
.basicBox-services-row {
  flex-basis: 100%;
  display: flex;
  border-top: 1px solid #ebebeb;
  padding-top: 6px;
  margin-top: 6px;
}
.services-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  padding: 0;
}
.services-toggle-btn:hover .services-toggle-label {
  color: #555;
}
.services-toggle-label {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}
.services-toggle-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.services-toggle-arrow::after {
  content: '▾';
  font-size: 11px;
  color: #bbb;
  line-height: 1;
}
.basicBox-services-row.services-open .services-toggle-arrow {
  transform: rotate(180deg);
}
.services-toggle-sum {
  font-size: 11px;
  color: #888;
  margin: 0 4px;
}
.services-panel {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 4px;
}
.service-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background 0.15s;
}
.service-row:last-child {
  border-bottom: none;
}
.service-row:hover {
  background: #fafafa;
}
.service-checkbox {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  cursor: pointer;
}
.service-name {
  flex: 1;
  font-size: 12px;
  color: #444;
  line-height: 1.35;
}
.service-price-tag {
  font-size: 11px;
  color: #666;
  background: #f2f2f2;
  border-radius: 10px;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.services-empty {
  padding: 10px 12px;
  font-size: 12px;
  color: #bbb;
  margin: 0;
}

/* ── Save Build Modal ── */
.configurator-save-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.configurator-save-modal.in {
  opacity: 1;
}
.save-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.save-modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  width: 500px;
  max-width: calc(100vw - 32px);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.save-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.save-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #0a0a0a;
}
.save-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.15s;
}
.save-modal-close:hover {
  color: #333;
}
.save-modal-body {
  padding: 16px 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.save-modal-name-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.save-modal-label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
}
.save-modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.save-modal-input:focus {
  border-color: #3f78e0;
}
.save-modal-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f7f8fb;
  border-radius: 10px;
  padding: 12px 16px;
}
.save-modal-percent {
  font-size: 22px;
  font-weight: 700;
  color: #3f78e0;
}
.save-modal-price {
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin-left: auto;
}
.save-modal-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.save-modal-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
}
.save-modal-section-title--missing {
  color: #888;
}
.save-modal-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.js-save-modal-missing {
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}
.js-save-modal-missing::-webkit-scrollbar {
  width: 4px;
}
.js-save-modal-missing::-webkit-scrollbar-track {
  background: transparent;
}
.js-save-modal-missing::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
.save-modal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
}
.save-modal-item--selected {
  background: #f0f5ff;
  border: 1px solid #d6e4ff;
}
.save-modal-item--missing {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
}
.save-modal-item-name {
  flex: 1;
  color: #222;
  min-width: 0;
}
.save-modal-item-product {
  color: #888;
}
.save-modal-item-price {
  font-weight: 500;
  color: #3f78e0;
  white-space: nowrap;
  flex-shrink: 0;
}
.save-modal-item--missing .save-modal-item-name {
  color: #666;
}
.save-modal-empty {
  font-size: 13px;
  color: #aaa;
  padding: 8px 12px;
}
.save-modal-footer {
  padding: 12px 24px 20px;
  border-top: 1px solid #f0f0f0;
}
.save-modal-btn {
  width: 100%;
  padding: 12px;
  background: #0a0a0ade;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.save-modal-btn:hover {
  background: #333;
}

/* ── Short attributes block ── */
.short-attributes-groups {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  margin-top: 12px;
  padding: 12px;
  border-radius: var(--radiusButton);
  border: var(--border);
  background-color: var(--bgBlock);
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
}
.short-attributes-groups::-webkit-scrollbar {
  display: none;
}

.attr-group-name {
  position: sticky;
  top: -12px;
  margin: -12px -12px 6px -12px;
  padding: 12px 12px 8px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: var(--bgBlock);
  z-index: 3;
}

.short-attribute {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 4px 0;
  border-bottom: var(--border);
}

.short-attribute:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.attr-name {
  font-size: 12px;
  color: #888;
  flex-shrink: 0;
  max-width: 50%;
}

.attr-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--textColor);
  text-align: right;
}

/* ── basicBox with selected product ── */
.basicBox--selected {
  background-color: var(--bgBlock);
}

/* ── plateService_block active by checkbox ── */
.plateService_block {
  cursor: pointer;
}
.plateService_block:has(input[type='checkbox']:checked) {
  background-color: var(--bgBlock);
}

/* ── Product added floating label ── */
@keyframes productLabelFloat {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) scale(0.88);
  }
  18% {
    opacity: 1;
    transform: translateX(-50%) translateY(-18px) scale(1);
  }
  72% {
    opacity: 1;
    transform: translateX(-50%) translateY(-32px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-46px) scale(0.95);
  }
}
.product-added-label {
  position: fixed;
  width: max-content;
  background: #27ae60;
  color: #fff;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  pointer-events: none;
  z-index: 99999;
  animation: productLabelFloat 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── Product add button success flash ── */
@keyframes cartBtnFlash {
  0% {
    background: var(--bgButton);
    color: #fff;
    transform: scale(1);
  }
  35% {
    background: #27ae60;
    color: #fff;
    transform: scale(1.04);
  }
  100% {
    background: var(--bgButton);
    color: #fff;
    transform: scale(1);
  }
}
.text-cart-add.btn-flash {
  animation: cartBtnFlash 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ── Assembly product items fade-in ── */
@keyframes assemblyItemIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.assemblyProduct_block {
  animation: assemblyItemIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: calc(var(--anim-i, 0) * 50ms);
}

/* ── Panel Open/Close Animation ── */

.openBasic_block {
  overflow: hidden;
  transform-origin: top center;
  will-change: height, opacity, transform;
}
.menu_btn_mobile {
  position: fixed;
  top: 140px;
  right: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bgButton);
  cursor: pointer;
  z-index: 99997;
}

@media only screen and (max-width: 1330px) {
  .configRight_block {
    display: none;
  }
  .configLeft_block {
    width: 100%;
  }
  .menu_btn_mobile {
    display: flex;
  }
}
@media only screen and (max-width: 991px) {
  .menu_btn_mobile {
    top: 65px;
  }
}

@media only screen and (max-width: 567px) {
  .mobile-sidebar {
    width: 100% !important;
    max-width: 100vw !important;
  }
}

@media only screen and (max-width: 420px) {
  .basicBox {
    flex-direction: column;
    align-items: start;
  }
}

/* Mobile Sidebar */
.mobile-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99998;
}

.mobile-sidebar-overlay.open {
  display: block;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 390px;
  max-width: 90vw;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-sidebar.open {
  transform: translateX(0);
}

.mobile-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: var(--border);
  flex-shrink: 0;
}

.mobile-sidebar__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--textColor);
}

.mobile-sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--textColor);
  border-radius: 50%;
  transition: background 0.2s;
}

.mobile-sidebar__close:hover {
  background: rgba(0, 0, 0, 0.07);
}

.mobile-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.mobile-sidebar__body .configRight_container {
  padding-top: 1rem;
  width: 100%;
}
