.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 color-mix(in srgb, #4cddce 72%, #9fb6ff 28%);
  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: #4cddce;
  background: #4cddce;
}

.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) {
  .m2-masthead,
  .m2-topbar {
    display: none !important;
  }

  .m2-content-wrap {
    padding-top: 12px;
    padding-bottom: calc(122px + env(safe-area-inset-bottom));
  }

  .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 color-mix(in srgb, #4cddce 22%, rgba(134, 157, 230, 0.32));
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--nv-surface, #0f1424) 90%, #4cddce 10%),
      color-mix(in srgb, var(--nv-surface-alt, #131a2f) 94%, #4cddce 6%)
    );
    box-shadow: 0 14px 30px rgba(5, 10, 22, 0.42);
    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: var(--nv-text-muted, #a7b4d6);
    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;
    transition: color .16s ease, background .16s ease, border-color .16s ease;
  }

  .wc-mobile-nav-link > span:last-child {
    white-space: nowrap;
  }

  .wc-mobile-nav-btn {
    border-radius: 14px;
    border: 1px solid transparent;
    color: inherit;
    transition: color .16s ease, background .16s ease, border-color .16s ease;
  }

  .wc-mobile-nav-link:hover,
  .wc-mobile-nav-btn:hover {
    color: var(--nv-text, #edf2ff);
    border-color: color-mix(in srgb, #4cddce 34%, transparent);
    background: color-mix(in srgb, #4cddce 12%, transparent);
  }

  .wc-mobile-nav-link.is-active {
    color: var(--nv-text, #edf2ff);
    border-color: color-mix(in srgb, #4cddce 44%, transparent);
    background: color-mix(in srgb, #4cddce 20%, transparent);
    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 color-mix(in srgb, #4cddce 20%, rgba(134, 157, 230, 0.32));
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--nv-surface, #0f1424) 92%, #4cddce 8%),
      color-mix(in srgb, var(--nv-surface-alt, #131a2f) 96%, #4cddce 4%)
    );
    box-shadow: 0 12px 28px rgba(5, 10, 22, 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: var(--nv-text-muted, #a7b4d6);
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
  }

  .wc-mobile-nav-dropdown-item:hover {
    background: color-mix(in srgb, #4cddce 18%, transparent);
    color: var(--nv-text, #edf2ff);
  }

  .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 color-mix(in srgb, #4cddce 26%, rgba(134, 157, 230, 0.32));
    background: linear-gradient(
      155deg,
      color-mix(in srgb, var(--nv-surface, #0f1424) 88%, #4cddce 12%),
      color-mix(in srgb, var(--nv-surface-alt, #131a2f) 94%, #4cddce 6%)
    );
    box-shadow: 0 12px 26px rgba(5, 10, 22, 0.42);
    color: #4cddce;
    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-modern .wc-home-surface {
  border-radius: 20px;
  padding: 18px;
  min-width: 0;
  border: 1px solid color-mix(in srgb, #4cddce 18%, var(--nv-border-strong, #2f3f63));
  background:
    linear-gradient(
      155deg,
      color-mix(in srgb, var(--nv-surface, #0f1424) 88%, #4cddce 12%) 0%,
      color-mix(in srgb, var(--nv-surface-alt, #131a2f) 92%, #4cddce 8%) 55%,
      color-mix(in srgb, #0c1322 96%, #4cddce 4%) 100%
    );
  box-shadow:
    0 14px 30px rgba(5, 10, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.wc-home-modern .wc-home-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  background: color-mix(in srgb, #4cddce 20%, transparent);
  color: var(--nv-text, #edf2ff);
  font-size: 12px;
  font-weight: 700;
}

.wc-home-modern h1,
.wc-home-modern h2,
.wc-home-modern h3 {
  margin: 0;
  color: var(--nv-text, #edf2ff);
}

.wc-home-modern h1 {
  margin-top: 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.2;
}

.wc-home-modern .wc-home-muted,
.wc-home-modern .wc-home-link-card p,
.wc-home-modern .wc-home-status-list p {
  color: var(--nv-text-muted, #a7b4d6);
}

.wc-home-modern .wc-home-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-home-modern .wc-home-btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.wc-home-modern .wc-home-btn-primary {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #4cddce 86%, #1ca99d),
    color-mix(in srgb, #4cddce 58%, #0f766e)
  );
  color: #062037;
}

.wc-home-modern .wc-home-btn-secondary {
  color: var(--nv-text, #edf2ff);
  border-color: color-mix(in srgb, #4cddce 34%, transparent);
  background: color-mix(in srgb, var(--nv-surface, #0f1424) 82%, #4cddce 18%);
}

.wc-home-modern .wc-home-status-list {
  display: grid;
  gap: 35%;
  margin-top: 5%;
}

.wc-home-modern .wc-home-status-list p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.wc-home-modern .wc-home-status-list b,
.wc-home-modern .wc-home-metric strong,
.wc-home-modern .wc-home-price {
  color: var(--nv-text, #edf2ff);
}

.wc-home-modern .wc-home-metric span {
  color: var(--nv-text-muted, #a7b4d6);
  font-weight: 600;
}

.wc-home-modern .wc-home-metric strong {
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
}

.wc-home-modern .wc-home-link-card {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.wc-home-modern .wc-home-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.wc-home-modern .wc-home-row-head a {
  color: #4cddce;
  font-weight: 700;
  text-decoration: none;
}

.wc-home-modern .wc-home-tariff-grid {
  align-items: stretch;
}

.wc-home-modern .wc-home-tariff {
  border-radius: 16px;
  padding: 14px;
  display: grid;
  gap: 8px;
  min-width: 0;
  border: 1px solid color-mix(in srgb, #4cddce 14%, var(--nv-border-strong, #2f3f63));
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--nv-surface, #0f1424) 94%, #4cddce 6%) 0%,
      color-mix(in srgb, var(--nv-surface, #0f1424) 97%, #ffffff 3%) 55%,
      color-mix(in srgb, var(--nv-surface-alt, #131a2f) 94%, #4cddce 6%) 100%
    );
}

.wc-home-modern h1,
.wc-home-modern h2,
.wc-home-modern h3,
.wc-home-modern p,
.wc-home-modern span,
.wc-home-modern b,
.wc-home-modern strong,
.wc-home-modern a {
  overflow-wrap: anywhere;
}

.wc-home-modern .wc-home-tariff.is-featured {
  border-color: color-mix(in srgb, #4cddce 42%, transparent);
  box-shadow:
    0 14px 30px rgba(6, 12, 26, 0.4),
    0 0 0 1px rgba(76, 221, 206, 0.08);
}

.wc-home-modern .wc-home-chip {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 10px;
  background: color-mix(in srgb, #4cddce 20%, transparent);
  color: var(--nv-text, #edf2ff);
  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-modern .wc-home-surface {
    border-radius: 16px;
    padding: 14px;
  }

  .wc-home-modern .wc-home-row-head {
    flex-wrap: wrap;
  }

  .wc-home-modern .wc-home-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wc-home-modern .wc-home-btn {
    text-align: center;
    justify-content: center;
  }
}