.notice,
.m2-notice,
.alert {
  display: none !important;
}

.wc-admin-route .m2-form-grid .m2-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.25;
  font-weight: 500;
  margin: 0;
}

.wc-admin-route input[type="checkbox"],
.wc-admin-route .m2-form-grid .m2-checkbox-label input[type="checkbox"],
.wc-admin-route .m2-table td > input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  margin: 0;
  border: 1.5px solid rgba(127, 155, 241, 0.85);
  border-radius: 3px;
  background: rgba(8, 18, 37, 0.9);
  box-shadow: none;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  transform: none !important;
}

.wc-admin-route input[type="checkbox"]:checked,
.wc-admin-route .m2-form-grid .m2-checkbox-label input[type="checkbox"]:checked,
.wc-admin-route .m2-table td > input[type="checkbox"]:checked {
  border-color: #6ef1d9;
  background: #6ef1d9;
}

.wc-admin-route input[type="checkbox"]::after,
.wc-admin-route .m2-form-grid .m2-checkbox-label input[type="checkbox"]::after,
.wc-admin-route .m2-table td > input[type="checkbox"]::after {
  content: "";
  width: 7px;
  height: 4px;
  border-left: 2px solid #062037;
  border-bottom: 2px solid #062037;
  transform: rotate(-45deg) translateY(-1px);
  opacity: 0;
}

.wc-admin-route input[type="checkbox"]:checked::after,
.wc-admin-route .m2-form-grid .m2-checkbox-label input[type="checkbox"]:checked::after,
.wc-admin-route .m2-table td > input[type="checkbox"]:checked::after {
  opacity: 1;
}

.wc-mobile-nav {
  display: none;
}

.wc-mobile-nav-form {
  margin: 0;
  display: flex;
  flex: 1 0 auto;
  min-width: 74px;
}

.wc-mobile-nav-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 6px;
  cursor: pointer;
}

.wc-support-fab-mobile {
  display: none;
}

.m2-brand-logo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
  display: inline-block;
}

@media (max-width: 900px) {
  .solo-layout .sidebar,
  .solo-layout .sidebar-backdrop,
  .solo-layout .m2-topbar,
  .solo-layout .header-bar {
    display: none;
  }

  .wc-mobile-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 1100;
    display: flex;
    align-items: stretch;
    gap: 6px;
    padding: 6px;
    border-radius: 20px;
    border: 1px solid rgba(121, 148, 229, 0.34);
    background: linear-gradient(155deg, rgba(10, 18, 44, 0.96), rgba(7, 14, 35, 0.94));
    box-shadow: 0 16px 34px rgba(2, 6, 20, 0.48);
    backdrop-filter: blur(10px);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wc-mobile-nav-link {
    min-width: 74px;
    flex: 1 0 auto;
    border-radius: 14px;
    border: 1px solid transparent;
    color: #b8c9ff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 6px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
    position: relative;
  }

  .wc-mobile-nav-link:hover {
    color: #e5eeff;
  }

  .wc-mobile-nav-link.is-active {
    color: #d6e3ff;
    border-color: rgba(97, 143, 255, 0.42);
    background: linear-gradient(145deg, rgba(32, 64, 146, 0.62), rgba(13, 111, 169, 0.35));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .wc-mobile-nav-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
  }

  .wc-mobile-nav-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .wc-mobile-nav-dropdown {
    position: relative;
    min-width: 74px;
    flex: 1 0 auto;
  }

  .wc-mobile-nav-dropdown > summary {
    list-style: none;
    cursor: pointer;
  }

  .wc-mobile-nav-dropdown > summary::after {
    content: '▾';
    font-size: 11px;
    line-height: 1;
    margin-left: 4px;
    opacity: .72;
    transition: transform .16s ease;
  }

  .wc-mobile-nav-dropdown[open] > summary::after {
    transform: rotate(180deg);
  }

  .wc-mobile-nav-dropdown > summary::-webkit-details-marker {
    display: none;
  }

  .wc-mobile-nav-dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(100% + 8px);
    display: grid;
    gap: 6px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(121, 148, 229, 0.34);
    background: rgba(9, 17, 42, 0.98);
    box-shadow: 0 12px 28px rgba(2, 6, 20, 0.42);
    z-index: 1120;
  }

  .wc-mobile-nav-dropdown:not([open]) .wc-mobile-nav-dropdown-menu {
    display: none;
  }

  .wc-mobile-nav-dropdown-item {
    min-height: 34px;
    border-radius: 10px;
    padding: 8px 10px;
    text-decoration: none;
    color: #b8c9ff;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
  }

  .wc-mobile-nav-dropdown-item:hover {
    background: rgba(16, 39, 97, 0.62);
    color: #e5eeff;
  }

  .wc-mobile-nav-text {
    white-space: nowrap;
  }

  .wc-mobile-nav-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 16px;
    font-weight: 700;
    color: #031127;
    background: #6ef1d9;
    display: none;
  }

  .solo-layout .m2-content-wrap {
    padding-bottom: calc(122px + env(safe-area-inset-bottom));
  }

  .wc-support-fab-mobile {
    position: fixed;
    right: 14px;
    bottom: calc(96px + env(safe-area-inset-bottom));
    z-index: 1110;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(121, 148, 229, 0.24);
    background: rgba(7, 14, 35, 0.95);
    box-shadow: 0 10px 24px rgba(2, 6, 20, 0.45);
    color: #9cb8ff;
    text-decoration: none;
  }

  .wc-support-fab-mobile svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

.wc-home {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.wc-home-grid-2,
.wc-home-grid-3 {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.wc-home-grid-2 {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
}

.wc-home-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-home-solo .wc-home-surface {
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(120, 149, 234, 0.32);
  background: linear-gradient(155deg, rgba(10, 18, 44, 0.9), rgba(8, 15, 36, 0.92));
  box-shadow: 0 14px 30px rgba(2, 6, 20, 0.36);
  min-width: 0;
}

.wc-home-solo .wc-home-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(70, 117, 255, 0.22);
  color: #d7e3ff;
  font-size: 12px;
  font-weight: 700;
}

.wc-home-solo h1,
.wc-home-solo h2,
.wc-home-solo h3 {
  margin: 0;
  color: #e8f0ff;
}

.wc-home-solo h1 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
}

.wc-home-solo .wc-home-muted,
.wc-home-solo .wc-home-link-card p,
.wc-home-solo .wc-home-status-list p {
  color: #b7c9f8;
}

.wc-home-solo .wc-home-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-home-solo .wc-home-btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.wc-home-solo .wc-home-btn-primary {
  background: linear-gradient(135deg, #3f69f1, #66a4ff);
  color: #fff;
}

.wc-home-solo .wc-home-btn-secondary {
  color: #dce8ff;
  border-color: rgba(112, 149, 255, 0.36);
  background: rgba(14, 28, 66, 0.72);
}

.wc-home-solo .wc-home-status-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.wc-home-solo .wc-home-status-list p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.wc-home-solo .wc-home-status-list b,
.wc-home-solo .wc-home-metric strong,
.wc-home-solo .wc-home-price {
  color: #e9f1ff;
}

.wc-home-solo .wc-home-metric span {
  color: #adc2f4;
  font-weight: 600;
}

.wc-home-solo .wc-home-metric strong {
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
}

.wc-home-solo .wc-home-link-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.wc-home-solo .wc-home-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.wc-home-solo .wc-home-row-head a {
  color: #8db3ff;
  font-weight: 700;
  text-decoration: none;
}

.wc-home-solo .wc-home-tariff-grid {
  align-items: stretch;
}

.wc-home-solo .wc-home-tariff {
  border-radius: 16px;
  padding: 14px;
  border: 1px solid rgba(120, 149, 234, 0.3);
  background: rgba(10, 19, 47, 0.86);
  display: grid;
  gap: 8px;
  min-width: 0;
}

.wc-home-solo h1,
.wc-home-solo h2,
.wc-home-solo h3,
.wc-home-solo p,
.wc-home-solo span,
.wc-home-solo b,
.wc-home-solo strong,
.wc-home-solo a {
  overflow-wrap: anywhere;
}

.wc-home-solo .wc-home-tariff.is-featured {
  border-color: rgba(106, 146, 255, 0.6);
  box-shadow: 0 14px 30px rgba(2, 6, 20, 0.44);
}

.wc-home-solo .wc-home-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 10px;
  background: rgba(70, 117, 255, 0.2);
  color: #dce8ff;
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .wc-home-grid-2 {
    grid-template-columns: 1fr;
  }

  .wc-home-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wc-home-grid-3 {
    grid-template-columns: 1fr;
  }

  .wc-home-solo .wc-home-surface {
    border-radius: 16px;
    padding: 14px;
  }

  .wc-home-solo .wc-home-row-head {
    flex-wrap: wrap;
  }

  .wc-home-solo .wc-home-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wc-home-solo .wc-home-btn {
    text-align: center;
    justify-content: center;
  }
}
