*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1f1f1f;
  background: #fff;
  overflow-x: hidden;
  max-width: 100%;
}

.nvc-layout {
  max-width: 100%;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

.nvc-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .nvc-container {
    padding: 0 20px;
  }
}

@media (min-width: 1200px) {
  .nvc-container {
    padding: 0 24px;
  }
}

.nvc-header {
  position: relative;
  z-index: 50;
  background: #fff;
}

.nvc-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 20, 32, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease,
    visibility 0.28s ease,
    box-shadow 0.28s ease;
}

.nvc-header-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.nvc-mainbar-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}

.nvc-header.is-catalog-open,
.nvc-header-sticky.is-catalog-open {
  box-shadow: none;
}

.nvc-header.is-catalog-open .nvc-topbar,
.nvc-header.is-catalog-open .nvc-mainbar,
.nvc-header.is-catalog-open .nvc-subbar {
  background: #fff;
}

.nvc-topbar {
  background: linear-gradient(180deg, #f8f9fb 0%, #f3f5f8 100%);
  border-bottom: 1px solid #eceef2;
}

.nvc-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  padding-left: 0;
  padding-right: 0;
}

.nvc-topbar__nav,
.nvc-topbar__right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nvc-topbar__right {
  margin-left: auto;
  white-space: nowrap;
}

.nvc-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: #5c6270;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nvc-topbar__item svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.nvc-topbar__item:hover {
  background: #fff;
  border-color: #eceef2;
  color: #1f1f1f;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15, 20, 32, 0.06);
}

.nvc-topbar__item:active {
  transform: translateY(0);
  box-shadow: none;
}

.nvc-topbar__item--accent {
  background: rgba(239, 138, 50, 0.08);
  border-color: rgba(239, 138, 50, 0.18);
  color: #ef8a32;
  font-weight: 600;
}

.nvc-topbar__item--accent:hover {
  background: #ef8a32;
  border-color: #ef8a32;
  color: #fff;
  box-shadow: 0 8px 20px rgba(239, 138, 50, 0.22);
}

.nvc-topbar__item--phone {
  background: #fff;
  border-color: #eceef2;
  color: #1f1f1f;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nvc-topbar__item--phone:hover {
  border-color: rgba(239, 138, 50, 0.35);
  color: #ef8a32;
}

.nvc-mainbar__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.nvc-logo {
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 4px;
}

.nvc-logo img {
  display: block;
  max-height: 56px;
  width: auto;
}

.nvc-search-row {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.nvc-catalog-btn {
  border: 0;
  border-radius: 8px;
  width: 162px;
  min-width: 162px;
  height: 50px;
  padding: 0 18px;
  background: #ef8a32;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.nvc-catalog-btn:hover {
  background: #e07d28;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(239, 138, 50, 0.28);
}

.nvc-catalog-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.nvc-catalog-btn__icon {
  width: 14px;
  height: 12px;
  position: relative;
  flex-shrink: 0;
}

.nvc-catalog-btn__icon::before,
.nvc-catalog-btn__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  border-top: 2px solid #fff;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nvc-catalog-btn__icon::before {
  top: 0;
  box-shadow: 0 4px 0 #fff;
}

.nvc-catalog-btn__icon::after {
  top: 8px;
}

.nvc-catalog-btn.is-open .nvc-catalog-btn__icon::before {
  transform: translateY(4px) rotate(45deg);
  box-shadow: none;
}

.nvc-catalog-btn.is-open .nvc-catalog-btn__icon::after {
  transform: translateY(-4px) rotate(-45deg);
}

.nvc-search-form {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  background: #f8f9fb;
  border: 1px solid #ebedf2;
  border-radius: 8px;
  height: 50px;
}

.nvc-search-form__input {
  flex: 1;
  min-width: 0;
  height: 50px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
  border-radius: 8px 0 0 8px;
}

.nvc-search-form__input::placeholder {
  color: #9aa0a8;
}

.nvc-search-form__mic {
  width: 44px;
  border: 0;
  border-left: 1px solid #ebedf2;
  background: transparent;
  color: #8d929a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nvc-search-form__mic:hover,
.nvc-search-form__mic.is-listening {
  color: #ef8a32;
  background: #f0f2f5;
}

.nvc-search-form__mic.is-listening svg {
  animation: nvc-voice-pulse 1.1s ease-in-out infinite;
}

.nvc-search-form__mic[hidden] {
  display: none !important;
}

.nvc-search-form__btn {
  width: 50px;
  border: 0;
  border-left: 1px solid #ebedf2;
  background: transparent;
  color: #343434;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nvc-search-form__btn:hover {
  background: #f0f2f5;
  color: #ef8a32;
}

.nvc-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 80;
  max-height: min(70vh, 520px);
  overflow: auto;
  padding: 12px;
  border: 1px solid #e7e9ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 24, 32, 0.12);
}

.nvc-search-suggest[hidden] {
  display: none !important;
}

.nvc-search-suggest__label {
  margin: 0 0 8px;
  padding: 0 4px;
  color: #8a9098;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nvc-search-suggest__group + .nvc-search-suggest__group {
  margin-top: 14px;
}

.nvc-search-suggest__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  color: #1f1f1f;
  text-decoration: none;
}

.nvc-search-suggest__item:hover {
  background: #f5f6f8;
}

.nvc-search-suggest__thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvc-search-suggest__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nvc-search-suggest__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nvc-search-suggest__name {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.nvc-search-suggest__meta,
.nvc-search-suggest__price {
  font-size: 13px;
  color: #6d7178;
}

.nvc-search-suggest__price {
  color: #1f1f1f;
  font-weight: 700;
}

.nvc-search-suggest__all {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f5f6f8;
  color: #1f1f1f;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.nvc-search-suggest__empty {
  padding: 18px 8px;
  color: #6d7178;
  text-align: center;
}

.nvc-search-suggest__shimmer-row,
.nvc-mobile-search__shimmer-row {
  height: 56px;
  margin-bottom: 10px;
  border-radius: 14px;
  background: linear-gradient(90deg, #f1f2f4 25%, #f8f9fb 37%, #f1f2f4 63%);
  background-size: 400% 100%;
  animation: nvc-search-shimmer 1.2s ease infinite;
}

@keyframes nvc-search-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.nvc-voice-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 12000;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(20, 24, 32, 0.92);
  color: #fff;
  font-size: 14px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.nvc-voice-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.nvc-search-page__meta {
  margin: -8px 0 18px;
  color: #6d7178;
  font-size: 15px;
}

.nvc-search-page__form {
  display: flex;
  gap: 10px;
  margin: 0 0 24px;
  width: 100%;
  max-width: 880px;
}

.nvc-search-page__input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #e7e9ee;
  border-radius: 12px;
  background: #fff;
  font-size: 15px;
}

.nvc-search-page__submit {
  height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: #ef8a32;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.nvc-search-page__hint,
.nvc-search-page__empty {
  margin: 24px 0;
  color: #6d7178;
  font-size: 15px;
}

.nvc-mobile-search__item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nvc-mobile-search__item-price {
  font-size: 14px;
  font-weight: 700;
  color: #1f1f1f;
}

.nvc-mobile-search__item-meta {
  font-size: 13px;
  color: #6d7178;
}

.nvc-mobile-search__all {
  display: block;
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: #f5f6f8;
  color: #1f1f1f;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.nvc-mobile-search__shimmer {
  margin-top: 8px;
}

.nvc-logo__text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.nvc-mainbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 100px;
  margin-left: 8px;
}

.nvc-mainbar__icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nvc-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #eceef2;
  border-radius: 14px;
  background: #f8f9fb;
  color: #1f1f1f;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nvc-icon-btn:hover {
  background: #fff;
  border-color: rgba(239, 138, 50, 0.35);
  color: #ef8a32;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 20, 32, 0.07);
}

.nvc-icon-btn--wish:hover {
  border-color: rgba(255, 107, 138, 0.35);
  color: #ff5f86;
}

.nvc-icon-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.nvc-icon-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nvc-icon-btn__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.nvc-icon-btn__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef8a32;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 0 5px;
  position: absolute;
  right: -4px;
  top: -6px;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 20, 32, 0.12);
}

.nvc-icon-btn--wish .nvc-icon-btn__count {
  background: #ff5f86;
}

.nvc-icon-btn--cart .nvc-icon-btn__count {
  background: #ef8a32;
}

.nvc-subbar {
  background: #fff;
}

.nvc-subbar__inner {
  min-height: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding-top: 10px;
  padding-bottom: 14px;
}

.nvc-quick-links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 3px 0 7px;
  margin: -3px 0 -7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nvc-quick-links::-webkit-scrollbar {
  display: none;
}

.nvc-quick-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #eceef2;
  border-radius: 12px;
  background: #f8f9fb;
  font-size: 13px;
  font-weight: 600;
  color: #1f1f1f;
  white-space: nowrap;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nvc-quick-link:hover {
  background: #fff;
  border-color: rgba(239, 138, 50, 0.35);
  color: #ef8a32;
  transform: none;
  box-shadow: 0 6px 16px rgba(15, 20, 32, 0.07);
}

.nvc-quick-link:active {
  transform: translateY(0);
  box-shadow: none;
}

.nvc-mainbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nvc-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #eceef2;
  border-radius: 12px;
  background: #f8f9fb;
  color: #1f1f1f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.nvc-social-link:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 20, 32, 0.07);
}

.nvc-social-link--max:hover {
  border-color: rgba(108, 92, 231, 0.35);
  color: #6c5ce7;
}

.nvc-social-link--tg:hover {
  border-color: rgba(42, 171, 238, 0.35);
  color: #2aabee;
}

.nvc-social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.nvc-social-link img {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.nvc-social-link__label {
  line-height: 1;
}

.nvc-catalog-popup {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 52;
  background: rgba(247, 245, 242, 0.985);
  border-top: 1px solid #eee9e4;
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  box-shadow: none;
}

.nvc-catalog-popup:not([hidden]) {
  max-height: calc(100vh - var(--nvc-catalog-popup-top, 120px));
  overflow-y: auto;
}

.nvc-catalog-popup[hidden] {
  display: none !important;
}

.nvc-catalog-popup__container {
  padding-top: 4px;
  padding-bottom: 6px;
}

.nvc-catalog-popup__inner {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nvc-catalog-popup .nvc-catalog-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  gap: 3px;
  background: linear-gradient(180deg, #fffdfb 0%, #f1ece6 100%);
  border-right: 0;
  border-radius: 18px;
  padding: 16px 12px;
  position: static;
  top: auto;
}

.nvc-catalog-sidebar__head {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
  padding: 0 12px 12px;
  border-bottom: 1px solid rgba(104, 90, 76, 0.1);
  color: #252525;
}

.nvc-catalog-sidebar__head strong {
  font-size: 17px;
  line-height: 1.2;
}

.nvc-catalog-sidebar__eyebrow,
.nvc-catalog-pane__eyebrow {
  color: #a06f47;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nvc-catalog-sidebar__item {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  min-height: 44px;
  padding: 0 13px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.2;
  color: #2b2b2b;
  border-radius: 11px;
  display: grid;
  grid-template-columns: 32px 1fr 12px;
  align-items: center;
  gap: 14px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nvc-catalog-sidebar__item:hover {
  background: rgba(255, 255, 255, 0.72);
}

.nvc-catalog-sidebar__item.is-active {
  background: linear-gradient(135deg, #ef8a32 0%, #e87422 100%);
  font-weight: 600;
  color: #fff;
  box-shadow: none;
}

.nvc-catalog-sidebar__item.is-active::before {
  display: none;
}

.nvc-catalog-sidebar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #efeff1;
  color: #747982;
  flex-shrink: 0;
}

.nvc-catalog-sidebar__icon img,
.nvc-catalog-sidebar__icon > svg {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.nvc-catalog-sidebar__item.is-active .nvc-catalog-sidebar__icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.nvc-catalog-sidebar__icon--apple {
  background: linear-gradient(135deg, #ef8a32, #f4b34c);
  color: #fff;
}

.nvc-catalog-sidebar__icon--xiaomi {
  width: 32px;
  height: 32px;
  margin-left: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #7a5697, #a878bf);
  color: #fff;
}

.nvc-catalog-sidebar__icon--samsung {
  width: 32px;
  height: 32px;
  margin-left: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #277ea8, #49a7c5);
  color: #fff;
}

.nvc-catalog-sidebar__item.is-active .nvc-catalog-sidebar__icon--apple {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.nvc-catalog-sidebar__item.is-active .nvc-catalog-sidebar__icon--xiaomi {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.nvc-catalog-sidebar__item.is-active .nvc-catalog-sidebar__icon--samsung {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.nvc-catalog-sidebar__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.nvc-catalog-sidebar__label {
  min-width: 0;
}

.nvc-catalog-sidebar__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #a9a9a9;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nvc-catalog-sidebar__item.is-active .nvc-catalog-sidebar__arrow {
  color: #fff;
  transform: translateX(2px);
}

.nvc-catalog-content {
  position: relative;
  min-width: 0;
  min-height: 402px;
  padding: 28px 30px 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  border: 1px solid #eee9e4;
}

.nvc-catalog-content::before {
  position: absolute;
  top: 0;
  left: 30px;
  width: 92px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #ef8a32 0 34%, #8d62a4 34% 67%, #2f97c7 67% 100%);
  content: "";
}

.nvc-catalog-pane {
  display: none;
  animation: nvc-catalog-fade 0.24s ease;
}

.nvc-catalog-pane.is-active {
  display: block;
}

@keyframes nvc-catalog-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nvc-catalog-pane__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.nvc-catalog-pane__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.nvc-catalog-pane__title {
  margin: 0;
  font-size: clamp(30px, 2.3vw, 36px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-catalog-pane__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 36px;
  padding: 0 14px;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: #b85e16;
  background: #fff1e5;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nvc-catalog-pane__go:hover {
  border-color: #ef8a32;
  color: #ef8a32;
  transform: translateX(2px);
  box-shadow: none;
}

.nvc-catalog-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nvc-catalog-group {
  min-width: 0;
  padding: 18px;
  border: 0;
  border-radius: 16px;
  background: #fff7ef;
  box-shadow: none;
}

.nvc-catalog-group:nth-child(2) {
  background: #f7f2fa;
}

.nvc-catalog-group:nth-child(3) {
  background: #eef7fb;
}

.nvc-catalog-group__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.nvc-catalog-group__title::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef8a32;
  content: "";
  flex: 0 0 auto;
}

.nvc-catalog-group:nth-child(2) .nvc-catalog-group__title::before {
  background: #8d62a4;
}

.nvc-catalog-group:nth-child(3) .nvc-catalog-group__title::before {
  background: #2f97c7;
}

.nvc-catalog-group--conversion {
  padding: 18px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #fff7ef;
  box-shadow: none;
}

.nvc-catalog-group--conversion .nvc-catalog-group__title {
  color: #1f1f1f;
}

.nvc-catalog-group--conversion .nvc-catalog-group__list a {
  color: #363636;
  font-weight: 400;
}

.nvc-catalog-group__list,
.nvc-catalog-direct {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nvc-catalog-group__list li,
.nvc-catalog-direct li {
  margin: 0 0 14px;
}

.nvc-catalog-group__list a,
.nvc-catalog-direct a {
  color: #363636;
  font-size: 14.5px;
  line-height: 1.3;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.nvc-catalog-group__list a:hover,
.nvc-catalog-direct a:hover {
  color: #ef8a32;
  transform: translateX(2px);
}

.nvc-catalog-direct {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 48px;
}

.nvc-catalog-overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(24, 28, 36, 0.3);
  backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 45;
}

.nvc-catalog-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nvc-catalog-sidebar__item:focus-visible,
.nvc-catalog-pane__go:focus-visible,
.nvc-catalog-group__list a:focus-visible,
.nvc-catalog-direct a:focus-visible {
  outline: 2px solid #ef8a32;
  outline-offset: 2px;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nvc-catalog-popup__inner {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
  }

  .nvc-catalog-content {
    padding: 30px 30px 34px;
  }

  .nvc-catalog-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nvc-catalog-overlay[hidden] {
  display: none !important;
}

body.nvc-catalog-open {
  overflow: hidden;
}

.nvc-main {
  min-height: 56vh;
}

.nvc-content ul,
.nvc-content ol {
  padding-left: 18px;
}

.nvc-page-head {
  padding: 14px 0 10px;
}

.nvc-page-title {
  margin: 8px 0 0;
  font-size: 40px;
  line-height: 1.05;
}

.nvc-content {
  padding-bottom: 44px;
}

.nvc-footer {
  margin-top: 12px;
  color: #e8eaee;
  background: #171a21;
}

.nvc-footer__cta {
  padding: 28px 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(135deg, #f29a3f 0%, #ef8a32 52%, #e67a22 100%);
  color: #fff;
}

.nvc-footer__cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nvc-footer__cta-title {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-footer__cta-text {
  margin: 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.92;
}

.nvc-footer__cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nvc-footer__cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nvc-footer__cta-phone:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.nvc-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #ef8a32;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nvc-footer__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 20, 32, 0.18);
}

.nvc-footer__main {
  padding: 42px 0 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 138, 50, 0.08), transparent 34%),
    radial-gradient(circle at 0% 100%, rgba(20, 153, 223, 0.06), transparent 30%),
    #171a21;
}

.nvc-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 28px 36px;
  align-items: start;
}

.nvc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nvc-footer__logo {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
}

.nvc-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

.nvc-footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.nvc-footer__tagline {
  margin: 0;
  max-width: 320px;
  color: #a8adb6;
  font-size: 14px;
  line-height: 1.6;
}

.nvc-footer__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nvc-footer__feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d2d6dc;
  font-size: 13px;
  line-height: 1.3;
}

.nvc-footer__feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(239, 138, 50, 0.14);
  color: #ef8a32;
  flex-shrink: 0;
}

.nvc-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.nvc-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.nvc-footer__social-link:hover {
  transform: translateY(-2px);
  background: rgba(239, 138, 50, 0.18);
  border-color: rgba(239, 138, 50, 0.35);
}

.nvc-footer__social-link--vk:hover {
  background: rgba(76, 117, 163, 0.28);
  border-color: rgba(76, 117, 163, 0.45);
}

.nvc-footer__col {
  min-width: 0;
}

.nvc-footer__title {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

a.nvc-footer__title:hover {
  color: #ef8a32;
}

.nvc-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nvc-footer__list li {
  margin: 0 0 9px;
}

.nvc-footer__list li:last-child {
  margin-bottom: 0;
}

.nvc-footer__list a {
  color: #a8adb6;
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.nvc-footer__list a:hover {
  color: #fff;
  transform: translateX(2px);
}

.nvc-footer__bottom {
  padding: 16px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #12151b;
}

.nvc-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.nvc-footer__copy {
  color: #8d929a;
  font-size: 13px;
  line-height: 1.4;
}

.nvc-footer__payments img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 28px;
  height: auto;
  border-radius: 6px;
  opacity: 0.92;
}

.nvc-footer__legal {
  color: #a8adb6;
  font-size: 13px;
  transition: color 0.2s ease;
}

.nvc-footer__legal:hover {
  color: #ef8a32;
}

@media (max-width: 1100px) {
  .nvc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nvc-footer__brand {
    grid-column: 1 / -1;
  }

  .nvc-footer__cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nvc-footer__cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .nvc-footer__main {
    padding: 32px 0 28px;
  }

  .nvc-footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nvc-footer__cta {
    padding: 22px 0;
  }

  .nvc-footer__cta-phone,
  .nvc-footer__cta-btn {
    width: 100%;
  }

  .nvc-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1280px) {
  .nvc-social-link__label {
    display: none;
  }

  .nvc-social-link {
    width: 40px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .nvc-mainbar__inner {
    grid-template-columns: auto 1fr;
  }

  .nvc-mainbar__right {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 991px) {
  .nvc-topbar__nav {
    display: none;
  }

  .nvc-mainbar__inner {
    min-height: 66px;
    grid-template-columns: 1fr;
  }

  .nvc-logo {
    font-size: 26px;
  }

  .nvc-search-row {
    padding-bottom: 10px;
  }

  .nvc-subbar__inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding-bottom: 8px;
  }

  .nvc-mainbar__social {
    grid-column: 2;
    width: auto;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .nvc-catalog-popup__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nvc-catalog-sidebar {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nvc-catalog-sidebar::-webkit-scrollbar {
    display: none;
  }

  .nvc-catalog-sidebar__item {
    min-width: 210px;
  }

  .nvc-catalog-groups {
    grid-template-columns: 1fr;
  }

  .nvc-page-title {
    font-size: 34px;
  }
}

/* Main page hero banners */
.nvc-content > .nvc-hero {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.nvc-hero:not([data-nvc-hero-multiple]) {
  --nvc-hero-slide-width: calc(100% - 36px);
}

.nvc-hero {
  --nvc-hero-gap: 18px;
  --nvc-hero-slide-width: 78%;
  --nvc-hero-slide-height: 430px;
  padding: 24px 0 12px;
}

.nvc-hero__shell {
  width: 100%;
}

.nvc-hero__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  touch-action: pan-y pinch-zoom;
}

.nvc-hero__track {
  display: flex;
  align-items: stretch;
  gap: var(--nvc-hero-gap);
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nvc-hero__slide {
  position: relative;
  flex: 0 0 var(--nvc-hero-slide-width);
  height: var(--nvc-hero-slide-height);
  border-radius: 28px;
  overflow: hidden;
}

.nvc-hero__dim {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.54);
  opacity: 1;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.nvc-hero__slide.is-active .nvc-hero__dim {
  opacity: 0;
}

.nvc-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.nvc-hero__nav {
  position: absolute;
  top: 50%;
  z-index: 12;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 18, 22, 0.62);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
  transition:
    background-color 0.22s ease,
    transform 0.22s ease;
}

.nvc-hero__nav:hover {
  background: rgba(18, 18, 22, 0.84);
}

.nvc-hero__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.nvc-hero__nav.is-prev {
  left: max(10px, calc((100% - var(--nvc-hero-slide-width)) / 2 - 56px));
}

.nvc-hero__nav.is-next {
  right: max(10px, calc((100% - var(--nvc-hero-slide-width)) / 2 - 56px));
}

.nvc-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.22) 42%,
    rgba(0, 0, 0, 0.04) 100%
  );
  pointer-events: none;
}

.nvc-hero__content {
  position: absolute;
  left: 40px;
  bottom: 36px;
  z-index: 2;
  max-width: 560px;
  color: #fff;
}

.nvc-hero__slide:not(.nvc-hero__slide--text) .nvc-hero__content {
  color: #1f1f1f;
}

.nvc-hero__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.nvc-hero__slide:not(.nvc-hero__slide--text) .nvc-hero__title {
  text-shadow: none;
}

.nvc-hero__subtitle {
  margin: 0 0 20px;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.4;
  font-weight: 400;
  opacity: 0.94;
}

.nvc-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 40px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  background: rgba(28, 28, 28, 0.78);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  backdrop-filter: blur(6px);
  transition:
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.nvc-hero__btn-text {
  display: block;
  line-height: 1;
  transform: translateY(0.5px);
}

.nvc-hero__slide--text .nvc-hero__btn {
  background: transparent;
  border-color: #fff;
}

.nvc-hero__btn:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 20, 32, 0.18);
}

.nvc-hero__btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.nvc-hero__footer {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .nvc-hero__footer {
    padding: 0 20px;
  }
}

@media (min-width: 1200px) {
  .nvc-hero__footer {
    padding: 0 24px;
  }
}

.nvc-hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.nvc-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d5d8de;
  cursor: pointer;
  transition:
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.22s ease,
    transform 0.22s ease;
}

.nvc-hero__dot:hover {
  background: #bec3cb;
  transform: scale(1.15);
}

.nvc-hero__dot.is-active {
  width: 28px;
  background: #ef8a32;
}

.nvc-hero__dot.is-active:hover {
  transform: none;
}

@media (max-width: 991px) {
  .nvc-hero {
    --nvc-hero-slide-width: 86%;
    --nvc-hero-slide-height: 300px;
    --nvc-hero-gap: 14px;
  }

  .nvc-hero__nav {
    width: 40px;
    height: 40px;
  }

  .nvc-hero__nav.is-prev {
    left: 8px;
  }

  .nvc-hero__nav.is-next {
    right: 8px;
  }

  .nvc-hero__content {
    left: 22px;
    right: 22px;
    bottom: 24px;
    max-width: none;
  }

  .nvc-hero__subtitle {
    margin-bottom: 16px;
  }

  .nvc-hero__btn {
    height: 38px;
    min-width: 118px;
    padding: 0 20px;
    font-size: 13px;
  }

  .nvc-mobile-bar__icon,
  .nvc-mobile-bar__burger {
    width: 38px;
    height: 38px;
  }

  .nvc-interesting__tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .nvc-interesting__tabs::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 575px) {
  .nvc-hero {
    --nvc-hero-slide-width: 90%;
    --nvc-hero-slide-height: 240px;
    --nvc-hero-gap: 12px;
  }

  .nvc-hero__nav {
    width: 36px;
    height: 36px;
  }

  .nvc-hero__nav svg {
    width: 18px;
    height: 18px;
  }

  .nvc-mobile-bar__actions {
    gap: 4px;
  }

  .nvc-mobile-bar__icon,
  .nvc-mobile-bar__burger {
    width: 36px;
    height: 36px;
  }

  .nvc-mobile-bar .nvc-logo img {
    max-width: 118px;
    height: auto;
  }
}

/* Mobile header + burger menu */
.nvc-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nvc-mobile-bar .nvc-logo {
  min-width: 0;
  flex: 1 1 auto;
}

.nvc-mobile-bar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-right: 0;
}

.nvc-mobile-bar__icon,
.nvc-mobile-bar__burger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nvc-mobile-bar__burger {
  flex-direction: column;
  gap: 4px;
}

.nvc-mobile-bar__icon--wish,
.nvc-mobile-bar__icon--cart {
  border: 1px solid #eceef2;
  border-radius: 12px;
  background: #f8f9fb;
}

.nvc-mobile-bar__icon--wish:hover,
.nvc-mobile-bar__icon--cart:hover {
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 20, 32, 0.07);
}

.nvc-mobile-bar__icon--wish:hover {
  border-color: rgba(255, 107, 138, 0.35);
  color: #ff5f86;
}

.nvc-mobile-bar__icon--cart:hover {
  border-color: rgba(239, 138, 50, 0.35);
  color: #ef8a32;
}

.nvc-mobile-bar__icon:hover,
.nvc-mobile-bar__burger:hover {
  color: #ef8a32;
}

.nvc-mobile-bar__badge,
.nvc-mobile-menu__badge {
  position: absolute;
  right: -3px;
  top: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef8a32;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 20, 32, 0.12);
}

.nvc-mobile-bar__icon--wish .nvc-mobile-bar__badge {
  background: #ff5f86;
}

.nvc-mobile-bar__burger-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease, width 0.22s ease;
}

.nvc-mobile-bar__burger.is-open .nvc-mobile-bar__burger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nvc-mobile-bar__burger.is-open .nvc-mobile-bar__burger-line:nth-child(2) {
  opacity: 0;
}

.nvc-mobile-bar__burger.is-open .nvc-mobile-bar__burger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nvc-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nvc-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.nvc-mobile-menu[hidden] {
  display: none !important;
}

.nvc-mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nvc-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 8px 18px;
  border-bottom: 1px solid #f0f2f5;
  flex-shrink: 0;
}

.nvc-mobile-menu__logo img {
  max-height: 34px;
  width: auto;
}

.nvc-mobile-menu__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nvc-mobile-menu__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nvc-mobile-menu__icon:hover {
  color: #ef8a32;
}

.nvc-mobile-menu__viewport {
  flex: 1;
  overflow: hidden;
}

.nvc-mobile-menu__stack {
  display: flex;
  height: 100%;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.nvc-mobile-menu__level {
  flex: 0 0 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nvc-mobile-menu__body {
  padding: 8px 18px 28px;
}

.nvc-mobile-menu__row {
  width: 100%;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 28px 1fr 12px;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  text-align: left;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
  transition: color 0.2s ease;
}

a.nvc-mobile-menu__row {
  text-decoration: none;
}

.nvc-mobile-menu__row--plain {
  grid-template-columns: 1fr 12px;
}

.nvc-mobile-menu__row--static {
  grid-template-columns: 1fr;
  cursor: default;
}

.nvc-mobile-menu__row:hover {
  color: #ef8a32;
}

.nvc-mobile-menu__row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #3a3a3a;
}

.nvc-mobile-menu__row-icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nvc-mobile-menu__row-icon > svg {
  display: block;
  width: 20px;
  height: 20px;
}

.nvc-mobile-menu__row-icon.nvc-catalog-sidebar__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.nvc-mobile-menu__row-label {
  min-width: 0;
}

.nvc-mobile-menu__row-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0b5bd;
}

.nvc-mobile-menu__divider {
  height: 1px;
  background: #eceef2;
  margin: 6px 0 8px;
}

.nvc-mobile-menu__subhead {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding-top: 4px;
}

.nvc-mobile-menu__back {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4a4a4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nvc-mobile-menu__back:hover {
  background: #e9ebf0;
  transform: translateX(-2px);
}

.nvc-mobile-menu__subhead-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f1f1f;
}

.nvc-mobile-menu__section-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 16px;
  color: #ef8a32;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  transition: opacity 0.2s ease;
}

.nvc-mobile-menu__section-link:hover {
  opacity: 0.85;
}

.nvc-mobile-menu__section-link .nvc-mobile-menu__row-arrow {
  color: #ef8a32;
}

.nvc-mobile-menu__contacts {
  margin-top: 22px;
}

.nvc-mobile-menu__contacts-title {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.nvc-mobile-menu__contacts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nvc-mobile-menu__contacts-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 15px;
  color: #4a4a4a;
}

.nvc-mobile-menu__contacts-list a {
  color: inherit;
  transition: color 0.2s ease;
}

.nvc-mobile-menu__contacts-list a:hover {
  color: #ef8a32;
}

.nvc-mobile-menu__contacts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #6d7178;
}

.nvc-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 24px;
  min-height: 50px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.nvc-mobile-menu__cta:hover {
  background: #eceef2;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 20, 32, 0.08);
}

button.nvc-mobile-menu__cta {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.nvc-mobile-menu__cta--callback {
  margin-top: 10px;
  background: rgba(239, 138, 50, 0.12);
  color: #ef8a32;
  font-weight: 600;
}

.nvc-mobile-menu__cta--callback:hover {
  background: #ef8a32;
  color: #fff;
}

.nvc-mobile-menu__cta--callback:hover .nvc-mobile-menu__cta-icon {
  color: #fff;
}

.nvc-mobile-menu__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ef8a32;
}

body.nvc-mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .nvc-topbar,
  .nvc-mainbar__desktop,
  .nvc-subbar,
  .nvc-header-sticky,
  .nvc-catalog-popup,
  .nvc-catalog-overlay {
    display: none !important;
  }

  .nvc-mobile-bar {
    display: flex;
  }

  .nvc-header {
    box-shadow: 0 1px 0 rgba(15, 20, 32, 0.06);
  }

  .nvc-header.is-catalog-open {
    box-shadow: 0 1px 0 rgba(15, 20, 32, 0.06);
  }
}

@media (min-width: 992px) {
  .nvc-mobile-menu {
    display: none !important;
  }

  .nvc-mobile-search {
    display: none !important;
  }
}

/* Mobile search overlay */
.nvc-mobile-search {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #fff;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.nvc-mobile-search.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nvc-mobile-search[hidden] {
  display: block !important;
}

.nvc-mobile-search[hidden]:not(.is-open) {
  display: none !important;
}

.nvc-mobile-search__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nvc-mobile-search__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 12px;
  flex-shrink: 0;
}

.nvc-mobile-search__back {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4a4a4a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nvc-mobile-search__back:hover {
  background: #e9ebf0;
  transform: translateX(-2px);
}

.nvc-mobile-search__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f1f1f;
}

.nvc-mobile-search__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 18px 24px;
}

.nvc-mobile-search__form {
  position: relative;
  margin-bottom: 18px;
}

.nvc-mobile-search__form-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #8d929a;
  pointer-events: none;
}

.nvc-mobile-search__input {
  width: 100%;
  height: 52px;
  border: 1px solid #e3e6ec;
  border-radius: 16px;
  background: #fff;
  padding: 0 48px 0 46px;
  font-size: 16px;
  line-height: 1.2;
  color: #1f1f1f;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nvc-mobile-search__mic {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8d929a;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nvc-mobile-search__mic:hover,
.nvc-mobile-search__mic.is-listening {
  color: #ef8a32;
  background: rgba(239, 138, 50, 0.08);
}

.nvc-mobile-search__mic.is-listening svg {
  animation: nvc-voice-pulse 1.1s ease-in-out infinite;
}

.nvc-mobile-search__mic[hidden] {
  display: none !important;
}

@keyframes nvc-voice-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
}

.nvc-mobile-search__input:focus {
  border-color: #ef8a32;
  box-shadow: 0 0 0 3px rgba(239, 138, 50, 0.12);
}

.nvc-mobile-search__categories-wrap {
  margin: 0 -18px 22px;
  padding: 0 18px;
  overflow: hidden;
}

.nvc-mobile-search__categories {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.nvc-mobile-search__categories::-webkit-scrollbar {
  display: none;
}

.nvc-mobile-search__category {
  flex: 0 0 168px;
  min-height: 92px;
  border: 1px solid #eceef2;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  scroll-snap-align: start;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nvc-mobile-search__category:hover {
  border-color: #ef8a32;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 20, 32, 0.08);
}

.nvc-mobile-search__category-title {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #1f1f1f;
}

.nvc-mobile-search__category-count {
  font-size: 13px;
  line-height: 1.2;
  color: #8d929a;
}

.nvc-mobile-search__section {
  margin-top: 4px;
}

.nvc-mobile-search__section-title {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #1f1f1f;
}

.nvc-mobile-search__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nvc-mobile-search__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 8px;
  border-radius: 16px;
  background: #f5f6f8;
  color: #1f1f1f;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nvc-mobile-search__item:hover {
  background: #eceef2;
  transform: translateY(-1px);
}

.nvc-mobile-search__item-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.nvc-mobile-search__item-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nvc-mobile-search__item-title {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
}

.nvc-mobile-search__empty {
  margin: 12px 0 0;
  font-size: 15px;
  color: #8d929a;
}

.nvc-mobile-search__results .nvc-mobile-search__item {
  animation: nvc-search-item-in 0.24s ease both;
}

@keyframes nvc-search-item-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.nvc-mobile-search-open {
  overflow: hidden;
}

/* Interesting products block */
.nvc-interesting {
  padding: 28px 0 42px;
}

.nvc-interesting__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.nvc-interesting__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-interesting__tabs {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nvc-interesting__tab {
  border: 0;
  background: transparent;
  padding: 0;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nvc-interesting__tab.is-active {
  color: #1499df;
  font-weight: 600;
}

.nvc-interesting__tab:hover {
  color: #ef8a32;
}

.nvc-interesting__panel[hidden] {
  display: none !important;
}

.nvc-interesting__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.nvc-interesting__grid .nvc-product-card {
  flex: none;
  width: auto;
}

.nvc-interesting__empty {
  margin: 0;
  color: #8d929a;
  font-size: 15px;
}

.nvc-product-card {
  position: relative;
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
}

.nvc-product-card:hover {
  border-color: #e3e6ec;
  box-shadow: 0 16px 36px rgba(15, 20, 32, 0.1);
  transform: translateY(-3px);
}

.nvc-product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 8px;
}

.nvc-product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nvc-product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.nvc-product-card__badge.is-hit {
  background: linear-gradient(135deg, #8d63ff 0%, #6d45e8 100%);
}

.nvc-product-card__badge.is-recommend {
  background: linear-gradient(135deg, #3aa0ff 0%, #1d7fe8 100%);
}

.nvc-product-card__badge.is-new {
  background: linear-gradient(135deg, #34c759 0%, #24a646 100%);
}

.nvc-product-card__badge.is-sale {
  background: linear-gradient(135deg, #ff7a45 0%, #ef5d24 100%);
}

.nvc-product-card__wish {
  border: 0;
  background: transparent;
  color: #222;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nvc-product-card__wish:hover {
  color: #ef8a32;
  transform: scale(1.06);
}

.nvc-product-card__wish.is-active {
  color: #ef8a32;
}

.nvc-product-card__wish.is-active svg path {
  fill: #ef8a32;
  stroke: #ef8a32;
}

.nvc-product-card__wish:disabled {
  opacity: 0.55;
  cursor: wait;
}

.nvc-icon-btn__count[hidden],
.nvc-mobile-bar__badge[hidden],
.nvc-mobile-menu__badge[hidden] {
  display: none !important;
}

.nvc-product-detail__gallery-wrap {
  position: relative;
}

.nvc-product-detail__wish {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 20, 32, 0.08);
}

.nvc-product-card__gallery {
  position: relative;
  height: 180px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvc-product-card__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.18s ease, transform 0.28s ease;
}

.nvc-product-card:hover .nvc-product-card__gallery img {
  transform: none;
}

.nvc-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-top: 10px;
}

.nvc-product-card__delivery {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #8d929a;
  font-size: 13px;
  line-height: 1.2;
}

.nvc-product-card__delivery.is-today {
  color: #ef8a32;
}

.nvc-product-card__title {
  color: #1f1f1f;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}

.nvc-product-card__title:hover {
  color: #ef8a32;
}

.nvc-product-card__price {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-product-card__buy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  border: 0;
  border-radius: 10px;
  background: #ef8a32;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.nvc-product-card:hover .nvc-product-card__buy {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nvc-product-card__buy:hover {
  background: #e07d28;
  box-shadow: 0 10px 22px rgba(239, 138, 50, 0.24);
}

.nvc-basket-accessories__grid .nvc-product-card__buy,
.nvc-product-card__buy--add {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nvc-product-card__buy--add.is-added {
  background: #24a646;
  box-shadow: none;
}

.nvc-product-card__buy--add:disabled {
  cursor: default;
  opacity: 0.9;
}

@media (max-width: 1300px) {
  .nvc-product-card {
    flex-basis: calc((100% - 48px) / 4);
  }
}

@media (max-width: 1100px) {
  .nvc-product-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 1399px) {
  .nvc-interesting__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .nvc-interesting__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nvc-interesting__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nvc-interesting__tabs {
    gap: 16px;
  }

  .nvc-interesting__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nvc-product-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .nvc-product-card__buy {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 575px) {
  .nvc-interesting__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nvc-interesting__grid .nvc-product-card {
    flex-basis: auto;
  }

  .nvc-product-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .nvc-product-card__gallery {
    height: 140px;
  }
}

/* Middle promo banners */
.nvc-promo-banners {
  padding: 8px 0 34px;
}

.nvc-promo-banners__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nvc-promo-banners__item {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eceef2;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nvc-promo-banners__item:hover {
  transform: translateY(-3px);
  border-color: #e3e6ec;
  box-shadow: 0 16px 34px rgba(15, 20, 32, 0.1);
}

.nvc-promo-banners__item img {
  display: block;
  width: 100%;
  height: auto;
}

/* Company block */
.nvc-company {
  padding: 12px 0 52px;
}

.nvc-company__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding: 34px 36px;
  border: 1px solid #eceef2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(239, 138, 50, 0.1), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(20, 153, 223, 0.08), transparent 38%),
    linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  box-shadow: 0 18px 48px rgba(15, 20, 32, 0.06);
  overflow: hidden;
}

.nvc-company__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(239, 138, 50, 0.06);
  transform: translate(-38%, -42%);
  pointer-events: none;
}

.nvc-company__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.nvc-company__logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  padding: 22px;
  border-radius: 50%;
}

.nvc-company__logo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.nvc-company__since {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(239, 138, 50, 0.1);
  color: #ef8a32;
}

.nvc-company__since-value {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.nvc-company__since-label {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

.nvc-company__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.nvc-company__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #6d7178;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nvc-company__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1f1f1f;
}

.nvc-company__lead {
  margin: 0 0 22px;
  max-width: 720px;
  color: #5d636b;
  font-size: 15px;
  line-height: 1.7;
}

.nvc-company__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.nvc-company__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 118px;
  padding: 14px 14px 12px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nvc-company__stat:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 138, 50, 0.28);
  box-shadow: 0 12px 28px rgba(15, 20, 32, 0.06);
}

.nvc-company__stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(239, 138, 50, 0.1);
  color: #ef8a32;
}

.nvc-company__stat-value {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f1f1f;
  letter-spacing: -0.02em;
}

.nvc-company__stat-label {
  color: #8d929a;
  font-size: 12px;
  line-height: 1.35;
}

.nvc-company__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.nvc-company__brand {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid #e7e9ee;
  border-radius: 999px;
  background: #fff;
  color: #4d535c;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.nvc-company__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ef8a32;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.nvc-company__more:hover {
  color: #d97728;
  gap: 12px;
}

@media (max-width: 1199px) {
  .nvc-company__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .nvc-company__stats {
    grid-template-columns: 1fr;
  }

  .nvc-company__stat {
    min-height: 0;
  }

  .nvc-company__visual {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Brands slider */
.nvc-brands {
  padding: 0 0 52px;
}

.nvc-brands__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.nvc-brands__head-main {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 18px;
  min-width: 0;
}

.nvc-brands__title {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-brands__all {
  color: #ef8a32;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nvc-brands__all:hover {
  color: #d97728;
}

.nvc-brands__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nvc-brands__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e7e9ee;
  border-radius: 50%;
  background: #fff;
  color: #1f1f1f;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.nvc-brands__nav-btn:hover:not(:disabled) {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-brands__nav-btn:disabled {
  opacity: 0.38;
  cursor: default;
}

.nvc-brands__viewport {
  overflow: hidden;
}

.nvc-brands__track {
  display: flex;
  gap: 14px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.nvc-brands__slide {
  flex: 0 0 calc((100% - 56px) / 5);
  min-width: 0;
  text-decoration: none;
}

.nvc-brands__slide-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  padding: 16px 18px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nvc-brands__slide:hover .nvc-brands__slide-inner {
  border-color: rgba(239, 138, 50, 0.35);
  box-shadow: 0 12px 28px rgba(15, 20, 32, 0.06);
  transform: translateY(-2px);
}

.nvc-brands__slide img {
  display: block;
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.12);
  transition: filter 0.2s ease;
}

.nvc-brands__slide:hover img {
  filter: none;
}

@media (max-width: 1399px) {
  .nvc-brands__slide {
    flex-basis: calc((100% - 42px) / 4);
  }
}

@media (max-width: 1199px) {
  .nvc-brands__slide {
    flex-basis: calc((100% - 28px) / 3);
  }
}

@media (max-width: 991px) {
  .nvc-promo-banners__grid {
    grid-template-columns: 1fr;
  }

  .nvc-company__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .nvc-company__visual {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }

  .nvc-company__logo-frame {
    max-width: 120px;
    padding: 14px;
    flex-shrink: 0;
  }

  .nvc-company__since {
    align-items: flex-start;
  }

  .nvc-company__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nvc-brands__slide {
    flex-basis: calc((100% - 14px) / 2);
  }

  .nvc-brands__head {
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .nvc-brands__slide {
    flex-basis: 100%;
  }

  .nvc-brands__slide-inner {
    height: 88px;
  }
}

/* Catalog */
.nvc-catalog-page {
  padding: 18px 0 56px;
}

.nvc-catalog-page--root {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.nvc-catalog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #9aa0a8;
  font-size: 13px;
}

.nvc-catalog-breadcrumbs a:hover {
  color: #ef8a32;
}

.nvc-catalog-page--section {
  scroll-margin-top: calc(var(--nvc-sticky-header-height, 88px) + 12px);
}

.nvc-catalog-title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-catalog-lead {
  margin: 0 0 28px;
  color: #6d7178;
  font-size: 15px;
}

.nvc-catalog-sections-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.nvc-catalog-section-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #eceef2;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nvc-catalog-section-card:hover {
  transform: translateY(-3px);
  border-color: #e3e6ec;
  box-shadow: 0 16px 34px rgba(15, 20, 32, 0.1);
}

.nvc-catalog-section-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
}

.nvc-catalog-section-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.nvc-catalog-section-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5cad3;
}

.nvc-catalog-section-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 18px;
}

.nvc-catalog-section-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.nvc-catalog-section-card__count {
  color: #9aa0a8;
  font-size: 13px;
}

.nvc-catalog-subsections {
  position: relative;
  margin: 0 0 22px;
  overflow: hidden;
}

.nvc-catalog-subsections__viewport {
  overflow: hidden;
  width: 100%;
}

.nvc-catalog-subsections__track {
  display: flex;
  gap: 10px;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nvc-catalog-subsections__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border: 1px solid #e3e6ec;
  border-radius: 50%;
  background: #fff;
  color: #222;
  box-shadow: 0 6px 16px rgba(15, 20, 32, 0.08);
  cursor: pointer;
}

.nvc-catalog-subsections__nav.is-prev {
  left: 0;
}

.nvc-catalog-subsections__nav.is-next {
  right: 0;
}

.nvc-catalog-subsections__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.nvc-catalog-subsections.has-nav .nvc-catalog-subsections__viewport {
  margin: 0 42px;
}

.nvc-catalog-subsection-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 148px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nvc-catalog-subsection-chip:hover {
  border-color: #ef8a32;
  box-shadow: 0 8px 18px rgba(239, 138, 50, 0.12);
}

.nvc-catalog-subsection-chip__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #f5f6f8;
  overflow: hidden;
}

.nvc-catalog-subsection-chip__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nvc-catalog-subsection-chip__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.nvc-catalog-filter-trigger {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 14px 18px;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  background: #f5f6f8;
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.nvc-catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.nvc-catalog-layout > .nvc-catalog-sidebar {
  position: sticky;
  top: 108px;
}

.nvc-catalog-toolbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.nvc-catalog-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nvc-catalog-sort__label {
  color: #6d7178;
  font-size: 14px;
  white-space: nowrap;
}

.nvc-catalog-sort__control {
  position: relative;
  z-index: 1;
  min-width: 220px;
}

.nvc-catalog-sort__control.is-open {
  z-index: 30;
}

.nvc-catalog-sort__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  background: #fff;
  color: #1f1f1f;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nvc-catalog-sort__trigger:hover {
  border-color: #dfe3ea;
  background: #fafbfc;
}

.nvc-catalog-sort__trigger:focus-visible {
  outline: none;
  border-color: #ef8a32;
  box-shadow: 0 0 0 3px rgba(239, 138, 50, 0.14);
}

.nvc-catalog-sort__control.is-open .nvc-catalog-sort__trigger {
  border-color: #ef8a32;
  box-shadow: 0 0 0 3px rgba(239, 138, 50, 0.12);
}

.nvc-catalog-sort__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nvc-catalog-sort__chevron {
  flex: 0 0 auto;
  color: #9aa0a8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nvc-catalog-sort__control.is-open .nvc-catalog-sort__chevron {
  transform: rotate(180deg);
  color: #ef8a32;
}

.nvc-content .nvc-catalog-sort__list,
.nvc-catalog-sort__list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  width: 100%;
  z-index: 40;
  box-sizing: border-box;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid #eceef2;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 20, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nvc-catalog-sort__control.is-open .nvc-catalog-sort__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nvc-catalog-sort__option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #1f1f1f;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.16s ease, color 0.16s ease;
}

.nvc-catalog-sort__option:hover,
.nvc-catalog-sort__option:focus-visible {
  outline: none;
  background: #f6f7f9;
  color: #1f1f1f;
}

.nvc-catalog-sort__option.is-active {
  background: rgba(239, 138, 50, 0.1);
  color: #d97716;
  font-weight: 600;
}

.nvc-catalog-sort__option.is-active:hover,
.nvc-catalog-sort__option.is-active:focus-visible {
  background: rgba(239, 138, 50, 0.14);
}

.nvc-catalog-products {
  position: relative;
}

.nvc-catalog-products__content.is-hidden {
  visibility: hidden;
}

.nvc-shimmer-zone {
  position: relative;
}

.nvc-shimmer-zone--absolute [data-nvc-shimmer-overlay],
.nvc-home-shimmer[data-nvc-shimmer-overlay] {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fff;
  pointer-events: none;
}

html.nvc-page-loading .nvc-home-shimmer[data-nvc-shimmer-overlay],
html.nvc-page-loading .nvc-shimmer-zone--absolute [data-nvc-shimmer-overlay] {
  display: block;
}

.nvc-promo-banners-shimmer__item {
  min-height: 180px;
  border-radius: 18px;
}

@media (max-width: 991px) {
  .nvc-promo-banners-shimmer__item {
    min-height: 140px;
  }
}

.nvc-shimmer {
  border-radius: 12px;
  background: linear-gradient(90deg, #f0f2f5 0%, #f8f9fb 50%, #f0f2f5 100%);
  background-size: 200% 100%;
  animation: nvc-shimmer 1.2s ease-in-out infinite;
}

.nvc-hero-shimmer {
  padding: 24px 0 12px;
}

.nvc-hero-shimmer__slide {
  width: calc(100% - 36px);
  height: 430px;
  margin: 0 auto;
  border-radius: 28px;
}

.nvc-section-shimmer__card {
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  padding: 12px;
}

.nvc-section-shimmer__media {
  width: 100%;
  height: 140px;
  margin-bottom: 12px;
  border-radius: 14px;
}

.nvc-section-shimmer__line {
  height: 14px;
  margin-bottom: 8px;
}

.nvc-section-shimmer__line--sm {
  width: 42%;
}

.nvc-subsection-shimmer__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #eceef2;
  border-radius: 999px;
  background: #fff;
}

.nvc-subsection-shimmer__img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nvc-subsection-shimmer__label {
  width: 72px;
  height: 12px;
}

.nvc-filter-shimmer {
  padding: 4px 0;
}

.nvc-filter-shimmer__group {
  margin-bottom: 22px;
}

.nvc-filter-shimmer__title {
  width: 58%;
  height: 16px;
  margin-bottom: 14px;
}

.nvc-filter-shimmer__item {
  height: 14px;
  margin-bottom: 10px;
}

.nvc-filter-shimmer__item:nth-child(odd) {
  width: 88%;
}

.nvc-filter-shimmer__item:nth-child(even) {
  width: 72%;
}

.nvc-filter-shimmer__button {
  width: 100%;
  height: 44px;
  border-radius: 14px;
  margin-top: 8px;
}

.nvc-product-detail-shimmer {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.nvc-product-detail-shimmer__gallery-main {
  width: 100%;
  min-height: 420px;
  border-radius: 22px;
}

.nvc-product-detail-shimmer__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.nvc-product-detail-shimmer__thumb {
  width: 74px;
  height: 74px;
  border-radius: 14px;
}

.nvc-product-detail-shimmer__line {
  height: 14px;
  margin-bottom: 12px;
}

.nvc-product-detail-shimmer__line--sm {
  width: 34%;
}

.nvc-product-detail-shimmer__line--lg {
  width: 88%;
  height: 28px;
}

.nvc-product-detail-shimmer__chip-row {
  width: 72%;
  height: 38px;
  margin-top: 8px;
  border-radius: 14px;
}

.nvc-product-detail-shimmer__buy {
  padding: 22px;
  border: 1px solid #eceef2;
  border-radius: 22px;
  background: #fff;
}

.nvc-product-detail-shimmer__price {
  width: 62%;
  height: 34px;
  margin-bottom: 14px;
}

.nvc-product-detail-shimmer__button {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  border-radius: 14px;
}

.nvc-product-detail-shimmer__button--ghost {
  height: 44px;
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .nvc-product-detail-shimmer {
    grid-template-columns: 1fr 1fr;
  }

  .nvc-product-detail-shimmer__buy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991px) {
  .nvc-product-detail-shimmer {
    grid-template-columns: 1fr;
  }

  .nvc-hero-shimmer__slide {
    width: 90%;
    height: 240px;
  }
}

.nvc-catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.nvc-catalog-shimmer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #fff;
}

.nvc-catalog-shimmer[hidden] {
  display: none !important;
}

.nvc-product-card--shimmer {
  pointer-events: none;
}

.nvc-product-card--shimmer .nvc-shimmer {
  border-radius: 12px;
}

.nvc-product-card--shimmer .nvc-shimmer--badge {
  width: 64px;
  height: 22px;
  margin: 12px 0 0 12px;
}

.nvc-product-card--shimmer .nvc-shimmer--img {
  width: calc(100% - 24px);
  height: 180px;
  margin: 12px auto 0;
}

.nvc-product-card--shimmer .nvc-shimmer--line {
  height: 14px;
  margin: 12px 16px 0;
}

.nvc-product-card--shimmer .nvc-shimmer--line-sm {
  width: 42%;
}

.nvc-product-card--shimmer .nvc-shimmer--line-md {
  width: 58%;
}

@keyframes nvc-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.nvc-catalog-empty {
  padding: 48px 20px;
  border: 1px dashed #e0e4ea;
  border-radius: 18px;
  text-align: center;
  color: #6d7178;
}

.nvc-catalog-empty__link {
  display: inline-block;
  margin-top: 10px;
  color: #ef8a32;
  font-weight: 500;
}

.nvc-catalog-pagination {
  margin-top: 28px;
}

.nvc-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nvc-pager__pages {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nvc-pager__page,
.nvc-pager__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e7e9ee;
  border-radius: 12px;
  background: #fff;
  color: #1f1f1f;
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nvc-pager__page:hover,
.nvc-pager__btn:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-pager__page.is-current {
  border-color: #ef8a32;
  background: #ef8a32;
  color: #fff;
}

.nvc-pager__dots {
  color: #9aa0a8;
  padding: 0 2px;
}

.nvc-filter__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 18px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
}

.nvc-filter__title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.nvc-filter__price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.nvc-filter__price-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nvc-filter__price-label {
  color: #9aa0a8;
  font-size: 12px;
}

.nvc-filter__input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #e7e9ee;
  border-radius: 12px;
  background: #f5f6f8;
  font-size: 14px;
}

.nvc-filter__input:focus {
  outline: none;
  border-color: #ef8a32;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 138, 50, 0.12);
}

.nvc-filter__slider {
  overflow: visible;
  padding: 4px 0 2px;
}

.nvc-filter__slider-track,
.nvc-filter .bx-ui-slider-track {
  position: relative;
  height: 4px;
  margin: 18px 8px 8px;
  border-radius: 999px;
  background: #eceef2;
}

.nvc-filter .bx-ui-slider-range,
.nvc-filter .bx-ui-slider-pricebar-vd,
.nvc-filter .bx-ui-slider-pricebar-vn,
.nvc-filter .bx-ui-slider-pricebar-v {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: 999px;
}

.nvc-filter .bx-ui-slider-range {
  z-index: 50;
}

.nvc-filter .bx-ui-slider-pricebar-vd {
  z-index: 60;
  background: #d5d8de;
}

.nvc-filter .bx-ui-slider-pricebar-vn {
  z-index: 70;
  background: rgba(239, 138, 50, 0.28);
}

.nvc-filter .bx-ui-slider-pricebar-v {
  z-index: 80;
  background: #ef8a32;
}

.nvc-filter .bx-ui-slider-handle {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #ef8a32;
  box-shadow: 0 4px 10px rgba(239, 138, 50, 0.28);
  cursor: grab;
  z-index: 90;
  touch-action: none;
  user-select: none;
}

.nvc-filter .bx-ui-slider-handle:hover {
  box-shadow: 0 6px 14px rgba(239, 138, 50, 0.34);
}

.nvc-filter .bx-ui-slider-handle:active {
  cursor: grabbing;
}

.nvc-filter .bx-ui-slider-handle.left {
  left: 0;
  margin-left: -9px;
}

.nvc-filter .bx-ui-slider-handle.right {
  right: 0;
  margin-right: -9px;
}

.nvc-filter__values {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nvc-filter__check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #1f1f1f;
  font-size: 14px;
}

.nvc-filter__check.is-collapsed {
  display: none;
}

.nvc-filter__group.is-expanded .nvc-filter__check.is-collapsed {
  display: flex;
}

.nvc-filter__check.is-disabled {
  opacity: 0.45;
  cursor: default;
}

.nvc-filter__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nvc-filter__check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid #cfd5df;
  border-radius: 5px;
  background: #fff;
  flex: 0 0 auto;
}

.nvc-filter__check input:checked + .nvc-filter__check-box {
  border-color: #ef8a32;
  background: #ef8a32;
  box-shadow: inset 0 0 0 2px #fff;
}

.nvc-filter__more {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: #ef8a32;
  font-size: 14px;
  cursor: pointer;
}

.nvc-filter__group.is-expanded .nvc-filter__more {
  display: none;
}

.nvc-filter__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nvc-filter__result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff7ef;
  color: #6d7178;
  font-size: 13px;
}

.nvc-filter__result-link {
  color: #ef8a32;
  font-weight: 600;
  white-space: nowrap;
}

.nvc-filter__result-link:hover {
  text-decoration: underline;
}

.bx-filter-container-modef {
  display: none;
}

.nvc-filter__apply,
.nvc-filter__reset {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.nvc-filter__apply:disabled {
  opacity: 0.6;
  cursor: wait;
}

.nvc-filter__apply {
  border: 0;
  background: #ef8a32;
  color: #fff;
}

.nvc-filter__reset {
  border: 0;
  background: #f0f2f5;
  color: #1f1f1f;
}

.nvc-catalog-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.nvc-catalog-filter-modal[hidden] {
  display: none !important;
}

.nvc-catalog-filter-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 28, 36, 0.46);
}

.nvc-catalog-filter-modal__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  border-radius: 22px 22px 0 0;
  background: #fff;
  animation: nvc-filter-slide-up 0.28s ease;
}

@keyframes nvc-filter-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.nvc-catalog-filter-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 10px;
}

.nvc-catalog-filter-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.nvc-catalog-filter-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #f5f6f8;
  cursor: pointer;
}

.nvc-catalog-filter-modal__body {
  overflow: auto;
  padding: 0 18px 24px;
}

.nvc-catalog-filter-modal__body .nvc-filter__form {
  border: 0;
  padding: 0;
}

body.nvc-filter-open {
  overflow: hidden;
}

@media (max-width: 1399px) {
  .nvc-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .nvc-catalog-sections-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nvc-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nvc-catalog-sections-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nvc-catalog-layout {
    grid-template-columns: 1fr;
  }

  .nvc-catalog-layout > .nvc-catalog-sidebar {
    display: none;
  }

  .nvc-catalog-filter-trigger {
    display: inline-flex;
  }

  .nvc-catalog-toolbar {
    justify-content: stretch;
  }

  .nvc-catalog-sort {
    width: 100%;
  }

  .nvc-catalog-sort__control {
    flex: 1;
    min-width: 0;
  }

  .nvc-catalog-sort__trigger {
    width: 100%;
  }

  .nvc-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nvc-catalog-sections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .nvc-catalog-sections-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nvc-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nvc-catalog-grid .nvc-product-card__gallery {
    height: 140px;
  }
}

/* Product detail */
.nvc-product-detail {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 8px 0 56px;
  box-sizing: border-box;
  overflow-x: clip;
}

@media (max-width: 991px) {
  .nvc-product-detail {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.nvc-product-detail__main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
  margin-bottom: 72px;
  min-width: 0;
}

.nvc-product-detail__gallery-wrap {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  max-width: 100%;
}

.nvc-product-detail__info {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.nvc-product-detail__buy {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: stretch;
  position: relative;
  min-height: 0;
  min-width: 0;
}

.nvc-product-detail__sections {
  grid-column: 1 / 3;
  grid-row: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.nvc-product-detail__sections .nvc-product-detail__section {
  margin-bottom: 0;
}

.nvc-product-detail__sections .nvc-product-detail__section:last-child {
  margin-bottom: 0;
}

.nvc-product-detail__gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 420px;
  border: 1px solid #eceef2;
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.nvc-product-detail__gallery-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 380px;
  padding: 28px;
  cursor: zoom-in;
}

.nvc-product-detail__gallery-main img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  cursor: zoom-in;
}

.nvc-product-detail__gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e7e9ee;
  border-radius: 50%;
  background: #fff;
  color: #1f1f1f;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 20, 32, 0.08);
}

.nvc-product-detail__gallery-nav.is-prev {
  left: 14px;
}

.nvc-product-detail__gallery-nav.is-next {
  right: 14px;
}

.nvc-product-detail__thumbs {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.nvc-product-detail__thumbs-viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}

.nvc-product-detail__thumbs-track {
  display: flex;
  gap: 10px;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nvc-product-detail__thumbs-nav {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #e3e6ec;
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
}

.nvc-product-detail__thumbs-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.nvc-product-detail__thumb {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  padding: 6px;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.nvc-product-detail__thumb.is-active {
  border-color: #1499df;
  box-shadow: 0 0 0 2px rgba(20, 153, 223, 0.12);
}

.nvc-product-detail__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nvc-product-detail__article {
  margin-bottom: 10px;
  color: #9aa0a8;
  font-size: 13px;
}

.nvc-product-detail__title {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-product-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 18px;
}

.nvc-product-detail__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid #e2e5e9;
  border-radius: 999px;
  background: #f3f4f6;
  color: #656b74;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.nvc-product-detail__mods {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}

.nvc-product-detail__mod-label {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.nvc-product-detail__mod-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nvc-product-detail__color {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid transparent;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f6f8;
}

.nvc-product-detail__color.is-active {
  border-color: #ef8a32;
  box-shadow: 0 0 0 2px rgba(239, 138, 50, 0.16);
}

.nvc-product-detail__color img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nvc-product-detail__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 14px;
  border: 1px solid #e7e9ee;
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.nvc-product-detail__chip.is-active,
.nvc-product-detail__chip:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-product-detail__lead {
  margin-bottom: 22px;
  color: #4d535c;
  font-size: 14px;
  line-height: 1.65;
}

.nvc-product-detail__help-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  background: #f5f6f8;
  font-size: 14px;
  font-weight: 500;
}

.nvc-product-detail__buy-card {
  position: sticky;
  top: 108px;
  z-index: 2;
  padding: 22px;
  border: 1px solid #eceef2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 20, 32, 0.06);
}

html.nvc-sticky-header-visible .nvc-product-detail__buy-card {
  top: calc(var(--nvc-sticky-header-height, 88px) + 20px);
}

.nvc-product-detail__price {
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
}

.nvc-product-detail__service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.nvc-product-detail__service-card {
  padding: 22px 24px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
}

.nvc-product-detail__service-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.nvc-product-detail__service-card-icon {
  display: inline-flex;
  color: #ef8a32;
}

.nvc-product-detail__service-card-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.nvc-product-detail__service-lead {
  margin: 0 0 12px;
  color: #4d535c;
  font-size: 14px;
  line-height: 1.6;
}

.nvc-product-detail__service-list {
  margin: 0;
  padding-left: 18px;
  color: #4d535c;
  font-size: 14px;
  line-height: 1.6;
}

.nvc-product-detail__service-list li + li {
  margin-top: 8px;
}

.nvc-product-detail__service-link {
  display: inline-block;
  margin-top: 14px;
  color: #ef8a32;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nvc-product-detail__service-link:hover {
  text-decoration: underline;
}

.nvc-product-detail__delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #1499df;
  font-size: 14px;
}

.nvc-product-detail__delivery.is-today {
  color: #ef8a32;
}

.nvc-product-detail__order {
  width: 100%;
  padding: 16px 18px;
  border: 0;
  border-radius: 14px;
  background: #ef8a32;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.nvc-product-detail__cart {
  width: 100%;
  margin-top: 10px;
  padding: 14px 18px;
  border: 1px solid #e3e6ec;
  border-radius: 14px;
  background: #fff;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nvc-product-detail__cart:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-product-detail__legal {
  margin: 14px 0 0;
  color: #9aa0a8;
  font-size: 12px;
  line-height: 1.55;
}

.nvc-product-detail__section {
  margin-bottom: 64px;
}

.nvc-product-detail__section-title {
  margin: 0 0 22px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.nvc-product-detail__section-title--with-note {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nvc-product-detail__section--specs {
  padding: 30px 32px 34px;
  border: 1px solid #e9ebef;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(15, 20, 32, 0.045);
}

.nvc-product-detail__section--specs .nvc-product-detail__section-title {
  margin-bottom: 26px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
}

.nvc-product-detail__section-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: 2px;
  border-radius: 12px;
  background: #f4f5f7;
  color: #9aa0a8;
  flex: 0 0 auto;
}

.nvc-product-detail__spec-notice {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.nvc-product-detail__spec-notice-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dfe2e7;
  color: #737982;
  font: 700 12px/1 Arial, sans-serif;
  cursor: help;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.nvc-product-detail__spec-notice-trigger:hover,
.nvc-product-detail__spec-notice-trigger:focus-visible {
  background: #cfd3d9;
  color: #333941;
  outline: none;
}

.nvc-product-detail__spec-notice-trigger:focus-visible {
  box-shadow: 0 0 0 3px rgba(115, 121, 130, 0.18);
}

.nvc-product-detail__spec-notice-tooltip {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 10px);
  width: max-content;
  max-width: 270px;
  padding: 9px 12px;
  border-radius: 9px;
  background: #5f646c;
  box-shadow: 0 8px 24px rgba(22, 27, 34, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  transform: translate(-50%, 4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nvc-product-detail__spec-notice-tooltip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: #5f646c;
  content: "";
  transform: translateX(-50%);
}

.nvc-product-detail__spec-notice:hover .nvc-product-detail__spec-notice-tooltip,
.nvc-product-detail__spec-notice:focus-within .nvc-product-detail__spec-notice-tooltip {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .nvc-product-detail__spec-notice-tooltip {
    right: -20px;
    left: auto;
    max-width: min(260px, calc(100vw - 32px));
    transform: translateY(4px);
  }

  .nvc-product-detail__spec-notice-tooltip::after {
    right: 20px;
    left: auto;
    transform: none;
  }

  .nvc-product-detail__spec-notice:hover .nvc-product-detail__spec-notice-tooltip,
  .nvc-product-detail__spec-notice:focus-within .nvc-product-detail__spec-notice-tooltip {
    transform: translateY(0);
  }
}

.nvc-product-detail__description {
  color: #4d535c;
  font-size: 15px;
  line-height: 1.7;
}

.nvc-product-detail__description img {
  width: 100%;
  border: 1px solid #f3f3f3;
  border-radius: 30px;
}

.nvc-product-detail__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  padding: 4px;
  border-radius: 14px;
  background: #f0f2f5;
  max-width: 100%;
}

.nvc-product-detail__section--specs .nvc-product-detail__tabs {
  margin-bottom: 28px;
  background: #f3f4f6;
}

.nvc-product-detail__tab {
  padding: 10px 16px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #6d7178;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.nvc-product-detail__section--specs .nvc-product-detail__tab {
  min-height: 42px;
  padding: 0 18px;
  font-size: 15px;
}

.nvc-product-detail__tab.is-active {
  background: #fff;
  color: #1f1f1f;
  box-shadow: 0 4px 12px rgba(15, 20, 32, 0.06);
}

.nvc-product-detail__spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 56px;
}

.nvc-product-detail__spec-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nvc-product-detail__spec-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 48px;
  padding: 8px 0;
  font-size: 16px;
  line-height: 1.4;
}

.nvc-product-detail__spec-name {
  flex: 0 1 auto;
  max-width: 54%;
  color: #8b9097;
}

.nvc-product-detail__spec-dots {
  flex: 1 1 auto;
  min-width: 16px;
  height: 0;
  border-bottom: 1px solid #e2e5e9;
  transform: translateY(-4px);
}

.nvc-product-detail__spec-value {
  flex: 0 0 42%;
  max-width: 42%;
  color: #1f1f1f;
  font-weight: 500;
  text-align: left;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .nvc-product-detail__section--specs {
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .nvc-product-detail__section--specs .nvc-product-detail__section-title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .nvc-product-detail__section-arrow {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .nvc-product-detail__section--specs .nvc-product-detail__tabs {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
  }

  .nvc-product-detail__section--specs .nvc-product-detail__tab {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 12px;
  }

  .nvc-product-detail__spec-grid {
    gap: 0;
  }

  .nvc-product-detail__spec-row {
    min-height: 0;
    padding: 11px 0;
    font-size: 14px;
  }

  .nvc-product-detail__spec-name {
    max-width: 52%;
  }

  .nvc-product-detail__spec-value {
    flex-basis: 44%;
    max-width: 44%;
  }
}

.nvc-product-detail__media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.nvc-product-detail__media-nav {
  display: flex;
  gap: 8px;
}

.nvc-product-detail__media-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e7e9ee;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.nvc-product-detail__media-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.nvc-product-detail__media-track {
  display: flex;
  gap: 16px;
  transition: transform 0.28s ease;
  max-width: 100%;
}

.nvc-product-detail__media-slide {
  flex: 0 0 calc(50% - 8px);
  display: block;
  border: 1px solid #e6e8ed;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f6f8;
  box-sizing: border-box;
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}

.nvc-product-detail__media-slide img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.nvc-product-detail__media-slide:hover img {
  transform: scale(1.02);
}

.nvc-product-detail__media-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.nvc-product-detail__media-dot {
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  padding: 0;
  margin: 0;
  flex: 0 0 8px;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 50%;
  background: #d7dbe3;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.nvc-product-detail__media-dot.is-active {
  background: #ef8a32;
}

html.nvc-fancybox-open,
html.nvc-fancybox-open body {
  overflow: hidden;
}

.nvc-fancybox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvc-fancybox[hidden] {
  display: none !important;
}

.nvc-fancybox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.88);
}

.nvc-fancybox__stage {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nvc-fancybox__img {
  display: block;
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: #111;
}

.nvc-fancybox__close,
.nvc-fancybox__nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #1f1f1f;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.nvc-fancybox__close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.nvc-fancybox__nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
}

.nvc-fancybox__nav.is-prev {
  left: 18px;
}

.nvc-fancybox__nav.is-next {
  right: 18px;
}

.nvc-fancybox__counter {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .nvc-fancybox__nav {
    width: 40px;
    height: 40px;
  }

  .nvc-fancybox__nav.is-prev {
    left: 8px;
  }

  .nvc-fancybox__nav.is-next {
    right: 8px;
  }

  .nvc-fancybox__close {
    top: 10px;
    right: 10px;
  }
}

.nvc-catalog-grid--related {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1399px) {
  .nvc-product-detail__main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 280px;
  }

  .nvc-catalog-grid--related {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  .nvc-product-detail__main {
    grid-template-columns: 1fr 1fr;
  }

  .nvc-product-detail__gallery-wrap,
  .nvc-product-detail__info,
  .nvc-product-detail__buy,
  .nvc-product-detail__sections {
    grid-column: auto;
    grid-row: auto;
  }

  .nvc-product-detail__buy {
    grid-column: 1 / -1;
  }

  .nvc-product-detail__buy-card {
    position: static;
  }

  .nvc-product-detail__spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nvc-product-detail__main {
    grid-template-columns: 1fr;
  }

  .nvc-product-detail__gallery {
    min-height: 280px;
  }

  .nvc-product-detail__gallery-main {
    min-height: 240px;
    padding: 18px;
  }

  .nvc-product-detail__gallery-main img {
    max-height: 280px;
  }

  .nvc-product-detail__spec-grid {
    grid-template-columns: 1fr;
  }

  .nvc-catalog-grid--related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nvc-product-detail__media-slide {
    flex-basis: 100%;
  }

  .nvc-product-detail__service-grid {
    grid-template-columns: 1fr;
  }

  .nvc-product-detail__order,
  .nvc-product-detail__cart {
    width: 100%;
  }
}

/* Basket page + floating popup */
.nvc-basket-page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 8px 0 48px;
}

.nvc-basket-page .nvc-catalog-breadcrumbs {
  margin-bottom: 12px;
}

.nvc-content .nvc-basket-list {
  padding-left: 0;
  margin-left: 0;
}

.nvc-basket-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.nvc-basket-page__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
}

.nvc-basket-page__tabs {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border-radius: 12px;
  background: #f3f4f6;
}

.nvc-basket-page__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  background: transparent;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.nvc-basket-page__tab.is-active {
  background: #fff;
  color: #222;
  box-shadow: 0 4px 14px rgba(15, 20, 32, 0.08);
}

.nvc-basket-page__tab-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef8a32;
  color: #fff;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.nvc-basket-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.nvc-basket-page__panel[hidden] {
  display: none !important;
}

.nvc-basket-page__summary[hidden] {
  display: none !important;
}

.nvc-basket-page__summary-card,
.nvc-basket-popup__foot {
  padding: 22px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 20, 32, 0.06);
}

.nvc-basket-page__summary-row,
.nvc-basket-popup__total,
.nvc-basket-popup__discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: #666;
  font-size: 14px;
}

.nvc-basket-popup__discount {
  color: #ef8a32;
  font-weight: 600;
}

.nvc-basket-popup__discount[hidden] {
  display: none !important;
}

.nvc-basket-coupon--popup {
  margin: 0 0 14px;
}

.nvc-basket-page__summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
}

.nvc-basket-coupon {
  margin: 4px 0 16px;
}

.nvc-basket-coupon__label {
  display: block;
  margin-bottom: 8px;
  color: #6d7178;
  font-size: 13px;
  font-weight: 600;
}

.nvc-basket-coupon__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.nvc-basket-coupon__input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #e7e9ee;
  border-radius: 12px;
  background: #f8f9fb;
  font-size: 14px;
  color: #1f1f1f;
}

.nvc-basket-coupon__input:focus {
  outline: none;
  border-color: #ef8a32;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(239, 138, 50, 0.12);
}

.nvc-basket-coupon__apply {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: #1f1f1f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.nvc-basket-coupon__apply:hover {
  background: #333;
}

.nvc-basket-coupon__apply:disabled {
  opacity: 0.7;
  cursor: default;
}

.nvc-basket-coupon__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.nvc-basket-coupon__list[hidden] {
  display: none !important;
}

.nvc-basket-coupon__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 0 8px 0 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4a4a4a;
  font-size: 13px;
  font-weight: 600;
}

.nvc-basket-coupon__chip.is-applied {
  background: rgba(36, 166, 70, 0.12);
  color: #1f8a3a;
}

.nvc-basket-coupon__remove {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 20, 32, 0.08);
  color: inherit;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.nvc-basket-coupon__message {
  margin-top: 8px;
  font-size: 13px;
  color: #6d7178;
}

.nvc-basket-coupon__message.is-error {
  color: #d14343;
}

.nvc-basket-coupon__message.is-success {
  color: #1f8a3a;
}

.nvc-basket-coupon__message[hidden] {
  display: none !important;
}

.nvc-basket-page__summary-discount {
  color: #1f8a3a;
}

.nvc-basket-page__summary-discount[hidden] {
  display: none !important;
}

.nvc-basket-page__summary-total strong,
.nvc-basket-popup__total strong {
  font-size: 28px;
  line-height: 1.1;
  color: #222;
  font-variant-numeric: tabular-nums;
  transition: transform 0.22s ease, color 0.22s ease;
}

.nvc-basket-page__summary-total strong.is-animating {
  color: #ef8a32;
  transform: scale(1.04);
}

.nvc-basket-page__checkout,
.nvc-basket-popup__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: #ef8a32;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.nvc-basket-page__checkout:hover,
.nvc-basket-popup__checkout:hover {
  background: #e07d28;
}

.nvc-basket-page__continue,
.nvc-basket-popup__full {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.nvc-basket-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nvc-basket-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #eceef2;
  border-radius: 16px;
  background: #fff;
}

.nvc-basket-item__media {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f8fa;
}

.nvc-basket-item__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nvc-basket-item__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f1f3f6 0%, #e8ebf0 100%);
}

.nvc-basket-item__title {
  display: block;
  margin-bottom: 6px;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.nvc-basket-item__price {
  color: #666;
  font-size: 14px;
}

.nvc-basket-item__sum {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.nvc-basket-item__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.nvc-basket-item__meta {
  margin-top: 8px;
  color: #8d929a;
  font-size: 13px;
}

.nvc-basket-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e3e6ec;
  border-radius: 10px;
  overflow: hidden;
}

.nvc-basket-qty__btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #f7f8fa;
  color: #222;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.nvc-basket-qty__input {
  width: 42px;
  height: 34px;
  border: 0;
  border-left: 1px solid #e3e6ec;
  border-right: 1px solid #e3e6ec;
  text-align: center;
  font-size: 14px;
  -moz-appearance: textfield;
}

.nvc-basket-qty__input::-webkit-outer-spin-button,
.nvc-basket-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nvc-basket-item__remove {
  border: 0;
  background: transparent;
  color: #8d929a;
  font-size: 13px;
  cursor: pointer;
}

.nvc-basket-item__remove:hover {
  color: #ef5d24;
}

.nvc-basket-accessories {
  margin-top: 48px;
  padding-top: 8px;
}

.nvc-basket-accessories__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.nvc-basket-accessories__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.nvc-basket-accessories__link {
  color: #ef8a32;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nvc-basket-accessories__link:hover {
  opacity: 0.85;
}

.nvc-basket-accessories__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.nvc-basket-accessories__grid .nvc-product-card {
  flex: none;
  width: auto;
}

.nvc-basket-empty,
.nvc-basket-popup__empty {
  padding: 40px 20px;
  border: 1px dashed #dfe3ea;
  border-radius: 18px;
  text-align: center;
  color: #666;
}

.nvc-basket-empty__link,
.nvc-basket-popup__catalog {
  display: inline-flex;
  margin-top: 12px;
  color: #ef8a32;
  font-weight: 600;
  text-decoration: none;
}

.nvc-basket-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.nvc-basket-popup[hidden] {
  display: none !important;
}

.nvc-basket-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 32, 0.42);
}

.nvc-basket-popup__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -18px 0 48px rgba(15, 20, 32, 0.14);
  animation: nvcBasketSlideIn 0.24s ease;
}

@keyframes nvcBasketSlideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.nvc-basket-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 12px;
  border-bottom: 1px solid #eceef2;
}

.nvc-basket-popup__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.nvc-basket-popup__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #222;
  cursor: pointer;
}

.nvc-basket-popup__body {
  flex: 1;
  overflow: auto;
  padding: 16px 20px;
}

.nvc-basket-popup__foot {
  margin: 0 20px 20px;
}

.nvc-basket-popup__foot[hidden] {
  display: none !important;
}

body.nvc-basket-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .nvc-basket-page__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .nvc-basket-page__layout {
    grid-template-columns: 1fr;
  }

  .nvc-basket-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .nvc-basket-item__sum {
    grid-column: 2;
    justify-self: start;
  }

  .nvc-basket-accessories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .nvc-basket-accessories__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .nvc-basket-accessories__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Quick order popup */
.nvc-order-popup {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nvc-order-popup[hidden] {
  display: none !important;
}

.nvc-order-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 32, 0.48);
}

.nvc-order-popup__dialog {
  position: relative;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 20, 32, 0.18);
}

.nvc-order-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #222;
  cursor: pointer;
}

.nvc-order-popup__title {
  margin: 0 0 10px;
  padding-right: 36px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

.nvc-order-popup__lead {
  margin: 0 0 20px;
  color: #8d929a;
  font-size: 14px;
  line-height: 1.5;
}

.nvc-order-popup__product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid #eceef2;
  border-radius: 16px;
  background: #fafbfc;
}

.nvc-order-popup__product[hidden] {
  display: none !important;
}

.nvc-order-popup__product.is-multi {
  grid-template-columns: 110px minmax(0, 1fr);
}

.nvc-order-popup__product-media {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.nvc-order-popup__product-media.is-fan {
  width: 96px;
  height: 78px;
  overflow: visible;
  background: transparent;
}

.nvc-order-popup__product-media.is-fan .nvc-order-popup__fan-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  margin: -29px 0 0 -29px;
  object-fit: contain;
  border-radius: 12px;
  border: 2px solid #fff;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 20, 32, 0.14);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nvc-order-popup__product-media.is-fan[data-fan-count="2"] .nvc-order-popup__fan-img.is-1 {
  z-index: 2;
  transform: translate(-14px, 2px) rotate(-12deg);
}

.nvc-order-popup__product-media.is-fan[data-fan-count="2"] .nvc-order-popup__fan-img.is-2 {
  z-index: 3;
  transform: translate(14px, -2px) rotate(10deg);
}

.nvc-order-popup__product-media.is-fan[data-fan-count="3"] .nvc-order-popup__fan-img.is-1 {
  z-index: 1;
  transform: translate(-20px, 4px) rotate(-16deg);
}

.nvc-order-popup__product-media.is-fan[data-fan-count="3"] .nvc-order-popup__fan-img.is-2 {
  z-index: 3;
  transform: translate(0, -4px) rotate(0deg);
}

.nvc-order-popup__product-media.is-fan[data-fan-count="3"] .nvc-order-popup__fan-img.is-3 {
  z-index: 2;
  transform: translate(20px, 4px) rotate(14deg);
}

.nvc-order-popup__product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nvc-order-popup__product-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.nvc-order-popup__product-name {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
}

.nvc-order-popup__product-price {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 700;
}

.nvc-order-popup__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nvc-order-popup__field {
  display: block;
}

.nvc-order-popup__input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: #f3f4f6;
  color: #222;
  font-size: 15px;
}

.nvc-order-popup__input:focus {
  outline: 2px solid rgba(239, 138, 50, 0.28);
  background: #fff;
  box-shadow: inset 0 0 0 1px #ef8a32;
}

.nvc-order-popup__input::placeholder {
  color: #9aa0a8;
}

.nvc-order-popup__submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 0;
  border-radius: 12px;
  background: #ef8a32;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.nvc-order-popup__submit:hover {
  background: #e07d28;
}

.nvc-order-popup__submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.nvc-order-popup__legal {
  margin: 14px 0 0;
  color: #9aa0a8;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.nvc-order-popup__legal a {
  color: #ef8a32;
  text-decoration: none;
}

.nvc-order-popup__success {
  text-align: center;
}

.nvc-order-popup__success[hidden] {
  display: none !important;
}

.nvc-order-popup__success-text {
  margin: 0 0 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

body.nvc-order-open {
  overflow: hidden;
}

/* Callback popup */
.nvc-callback-popup {
  position: fixed;
  inset: 0;
  z-index: 10060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nvc-callback-popup[hidden] {
  display: none !important;
}

.nvc-callback-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 28, 0.52);
}

.nvc-callback-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 20, 32, 0.28);
}

.nvc-callback-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f4f7;
  color: #555;
  cursor: pointer;
}

.nvc-callback-popup__title {
  margin: 0 0 10px;
  padding-right: 36px;
  color: #1f1f1f;
  font-size: 24px;
  line-height: 1.25;
}

.nvc-callback-popup__lead {
  margin: 0 0 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

.nvc-callback-popup__form {
  display: grid;
  gap: 12px;
}

.nvc-callback-popup__field {
  display: block;
}

.nvc-callback-popup__input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #e4e7ee;
  border-radius: 12px;
  background: #fff;
  color: #1f1f1f;
  font: inherit;
  font-size: 15px;
}

.nvc-callback-popup__input:focus {
  outline: none;
  border-color: #ef8a32;
  box-shadow: 0 0 0 3px rgba(239, 138, 50, 0.16);
}

.nvc-callback-popup__input::placeholder {
  color: #9aa0ad;
}

.nvc-callback-popup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #ef8a32;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.nvc-callback-popup__submit:hover {
  filter: brightness(0.96);
}

.nvc-callback-popup__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.nvc-callback-popup__legal {
  margin: 14px 0 0;
  color: #8a8f9c;
  font-size: 12px;
  line-height: 1.45;
}

.nvc-callback-popup__legal a {
  color: #ef8a32;
  text-decoration: underline;
}

.nvc-callback-popup__success {
  text-align: left;
}

.nvc-callback-popup__success[hidden] {
  display: none !important;
}

.nvc-callback-popup__success-text {
  margin: 0 0 20px;
  color: #666;
  font-size: 15px;
  line-height: 1.55;
}

body.nvc-callback-open {
  overflow: hidden;
}

/* About / company page */
.nvc-about-page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 8px 0 56px;
}

.nvc-about-page .nvc-catalog-breadcrumbs {
  margin-bottom: 18px;
}

.nvc-about-page__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.nvc-about-page__eyebrow {
  margin: 0 0 10px;
  color: #ef8a32;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nvc-about-page__title {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-about-page__lead {
  margin: 0;
  max-width: 720px;
  color: #6d7178;
  font-size: 16px;
  line-height: 1.55;
}

.nvc-about-page__since {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 18px 20px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff7ef 0%, #fff 100%);
}

.nvc-about-page__since-value {
  color: #ef8a32;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.nvc-about-page__since-label {
  margin-top: 6px;
  color: #9aa0a8;
  font-size: 12px;
  text-align: center;
}

.nvc-about-page__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.nvc-about-page__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nvc-about-page__stat:hover {
  border-color: #f0d2b0;
  box-shadow: 0 12px 28px rgba(239, 138, 50, 0.08);
}

.nvc-about-page__stat-icon {
  display: inline-flex;
  color: #ef8a32;
}

.nvc-about-page__stat-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.nvc-about-page__stat-label {
  color: #6d7178;
  font-size: 13px;
  line-height: 1.35;
}

.nvc-about-page__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 42px;
}

.nvc-content .nvc-about-page__prose,
.nvc-about-page__prose {
  color: #3a3f47;
  font-size: 16px;
  line-height: 1.7;
}

.nvc-about-page__prose p {
  margin: 0 0 16px;
}

.nvc-about-page__prose p:last-child {
  margin-bottom: 0;
}

.nvc-about-page__prose blockquote {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-left: 3px solid #ef8a32;
  border-radius: 0 14px 14px 0;
  background: #fff7ef;
  color: #1f1f1f;
  font-weight: 500;
}

.nvc-about-page__video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 40px rgba(15, 20, 32, 0.12);
}

.nvc-about-page__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.nvc-about-page__section-title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-about-page__stores {
  margin-bottom: 42px;
}

.nvc-about-page__cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nvc-about-page__city {
  padding: 22px 22px 18px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: #fff;
}

.nvc-about-page__city-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.nvc-content .nvc-about-page__city-list,
.nvc-about-page__city-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nvc-about-page__city-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid #f1f3f6;
  color: #3a3f47;
  font-size: 14px;
  line-height: 1.45;
}

.nvc-about-page__city-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.nvc-about-page__city-list li::before {
  content: "";
  position: absolute;
  top: 1.05em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef8a32;
}

.nvc-about-page__city-list li:first-child::before {
  top: 0.55em;
}

.nvc-about-page__contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.nvc-about-page__contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nvc-about-page__contact-card:hover {
  border-color: #ef8a32;
  box-shadow: 0 12px 28px rgba(239, 138, 50, 0.1);
}

.nvc-about-page__contact-label {
  color: #9aa0a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nvc-about-page__contact-value {
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.nvc-about-page__contact-note {
  color: #6d7178;
  font-size: 13px;
  line-height: 1.4;
}

.nvc-about-page__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nvc-about-page__social-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #e7e9ee;
  border-radius: 999px;
  background: #fff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.nvc-about-page__social-link:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-about-page__social-link--accent {
  border-color: #ef8a32;
  background: #ef8a32;
  color: #fff;
}

.nvc-about-page__social-link--accent:hover {
  background: #e07b24;
  color: #fff;
}

@media (max-width: 991px) {
  .nvc-about-page__hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .nvc-about-page__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nvc-about-page__body,
  .nvc-about-page__cities,
  .nvc-about-page__contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .nvc-about-page__stats {
    grid-template-columns: 1fr;
  }

  .nvc-about-page__title {
    font-size: 30px;
  }
}

/* Contacts page */
.nvc-contacts-page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 8px 0 56px;
}

.nvc-contacts-page .nvc-catalog-breadcrumbs {
  margin-bottom: 18px;
}

.nvc-contacts-page__hero {
  margin-bottom: 28px;
}

.nvc-contacts-page__eyebrow {
  margin: 0 0 10px;
  color: #ef8a32;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nvc-contacts-page__title {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-contacts-page__lead {
  margin: 0;
  max-width: 640px;
  color: #6d7178;
  font-size: 16px;
  line-height: 1.55;
}

.nvc-contacts-page__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 40px;
}

.nvc-contacts-page__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 22px 20px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nvc-contacts-page__card:hover {
  border-color: #ef8a32;
  box-shadow: 0 14px 32px rgba(239, 138, 50, 0.1);
  transform: translateY(-2px);
}

.nvc-contacts-page__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  border-radius: 12px;
  background: #fff7ef;
  color: #ef8a32;
}

.nvc-contacts-page__card-label {
  color: #9aa0a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nvc-contacts-page__card-value {
  color: #1f1f1f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.nvc-contacts-page__card-note {
  color: #6d7178;
  font-size: 13px;
  line-height: 1.4;
}

.nvc-contacts-page__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.nvc-contacts-page__section-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-contacts-page__section-link {
  color: #ef8a32;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.nvc-contacts-page__section-link:hover {
  text-decoration: underline;
}

.nvc-contacts-page__stores {
  margin-bottom: 36px;
}

.nvc-contacts-page__cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nvc-contacts-page__city {
  padding: 22px 22px 18px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: #fff;
}

.nvc-contacts-page__city-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.nvc-content .nvc-contacts-page__city-list,
.nvc-contacts-page__city-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nvc-contacts-page__city-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid #f1f3f6;
  color: #3a3f47;
  font-size: 14px;
  line-height: 1.45;
}

.nvc-contacts-page__city-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.nvc-contacts-page__city-list li::before {
  content: "";
  position: absolute;
  top: 1.05em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef8a32;
}

.nvc-contacts-page__city-list li:first-child::before {
  top: 0.55em;
}

.nvc-contacts-page__extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nvc-contacts-page__extra-card {
  padding: 24px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 138, 50, 0.08), transparent 42%),
    #fff;
}

.nvc-contacts-page__extra-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.nvc-contacts-page__extra-text {
  margin: 0 0 18px;
  color: #6d7178;
  font-size: 14px;
  line-height: 1.5;
}

.nvc-contacts-page__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nvc-contacts-page__social-link,
.nvc-contacts-page__cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nvc-contacts-page__social-link {
  border: 1px solid #e7e9ee;
  background: #fff;
  color: #1f1f1f;
}

.nvc-contacts-page__social-link:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-contacts-page__cta {
  border: 0;
  background: #ef8a32;
  color: #fff;
}

.nvc-contacts-page__cta:hover {
  background: #e07b24;
  color: #fff;
}

@media (max-width: 991px) {
  .nvc-contacts-page__cards,
  .nvc-contacts-page__cities,
  .nvc-contacts-page__extra {
    grid-template-columns: 1fr;
  }

  .nvc-contacts-page__section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 575px) {
  .nvc-contacts-page__title {
    font-size: 30px;
  }

  .nvc-contacts-page__card-value {
    font-size: 18px;
  }
}

/* Help pages: delivery / warranty */
.nvc-help-page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0 72px;
}

.nvc-help-page .nvc-catalog-breadcrumbs {
  margin-bottom: 18px;
}

.nvc-help-page__hero {
  margin-bottom: 28px;
  padding: 28px 32px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(239, 138, 50, 0.12), transparent 55%),
    linear-gradient(160deg, #fff 0%, #f7f8fa 100%);
  border: 1px solid #eceef2;
}

.nvc-help-page__eyebrow {
  margin: 0 0 10px;
  color: #ef8a32;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nvc-help-page__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-help-page__lead {
  margin: 0;
  max-width: 640px;
  color: #6d7178;
  font-size: 16px;
  line-height: 1.55;
}

.nvc-help-page__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.nvc-help-page__nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #e3e6ec;
  border-radius: 999px;
  background: #fff;
  color: #4d535c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nvc-help-page__nav-link:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

.nvc-help-page__nav-link.is-active {
  border-color: #ef8a32;
  background: #ef8a32;
  color: #fff;
}

.nvc-help-page__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.nvc-help-page__highlight {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
}

.nvc-help-page__highlight-label {
  color: #9aa0a8;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nvc-help-page__highlight-value {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.nvc-help-page__blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.nvc-help-page__block {
  padding: 26px 28px;
  border: 1px solid #eceef2;
  border-radius: 22px;
  background: #fff;
}

.nvc-help-page__block-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(239, 138, 50, 0.1);
  color: #ef8a32;
}

.nvc-help-page__block-title {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.nvc-help-page__block-text {
  margin: 0 0 14px;
  color: #4d535c;
  font-size: 15px;
  line-height: 1.65;
}

.nvc-help-page__list {
  margin: 0;
  padding-left: 18px;
  color: #4d535c;
  font-size: 14px;
  line-height: 1.6;
}

.nvc-help-page__list li + li {
  margin-top: 8px;
}

.nvc-help-page__steps {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nvc-help-page__step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid #eceef2;
  border-radius: 20px;
  background: #fff;
}

.nvc-help-page__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ef8a32;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.nvc-help-page__step-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.nvc-help-page__step-text {
  margin: 0;
  color: #4d535c;
  font-size: 15px;
  line-height: 1.65;
}

.nvc-help-page__panel {
  margin-bottom: 28px;
  padding: 26px 28px;
  border: 1px solid #eceef2;
  border-radius: 22px;
  background: #fafbfc;
}

.nvc-help-page__panel-head {
  margin-bottom: 16px;
}

.nvc-help-page__panel-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.nvc-help-page__panel-lead {
  margin: 0;
  color: #6d7178;
  font-size: 15px;
  line-height: 1.55;
}

.nvc-help-page__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.nvc-help-page__checklist li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border: 1px solid #eceef2;
  border-radius: 14px;
  background: #fff;
  color: #4d535c;
  font-size: 14px;
  line-height: 1.55;
}

.nvc-help-page__checklist li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #ef8a32;
  box-shadow: inset 0 0 0 3px #fff;
  background: #ef8a32;
}

.nvc-help-page__note {
  margin-bottom: 28px;
  padding: 18px 22px;
  border-left: 3px solid #ef8a32;
  border-radius: 0 16px 16px 0;
  background: rgba(239, 138, 50, 0.08);
  color: #4d535c;
  font-size: 15px;
  line-height: 1.6;
}

.nvc-help-page__note a {
  color: #ef8a32;
  font-weight: 600;
  text-decoration: none;
}

.nvc-help-page__note a:hover {
  text-decoration: underline;
}

.nvc-help-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nvc-help-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  background: #ef8a32;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nvc-help-page__btn:hover {
  background: #e07b24;
  color: #fff;
}

.nvc-help-page__btn--ghost {
  border: 1px solid #e3e6ec;
  background: #fff;
  color: #222;
}

.nvc-help-page__btn--ghost:hover {
  border-color: #ef8a32;
  background: #fff;
  color: #ef8a32;
}

@media (max-width: 991px) {
  .nvc-help-page__highlights,
  .nvc-help-page__blocks {
    grid-template-columns: 1fr;
  }

  .nvc-help-page__hero {
    padding: 22px 20px;
  }
}

@media (max-width: 575px) {
  .nvc-help-page__step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .nvc-help-page__step-num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .nvc-help-page__actions {
    flex-direction: column;
  }

  .nvc-help-page__btn {
    width: 100%;
  }
}

.nvc-help-page__service-link {
  display: inline-block;
  margin-top: 4px;
  color: #ef8a32;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nvc-help-page__service-link:hover {
  text-decoration: underline;
}

/* 404 page */
.nvc-error-page {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0 72px;
}

.nvc-error-page .nvc-catalog-breadcrumbs {
  margin-bottom: 24px;
}

.nvc-error-page__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px 40px;
  align-items: center;
  margin-bottom: 28px;
  padding: 40px 44px;
  border: 1px solid #eceef2;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(239, 138, 50, 0.12), transparent 55%),
    linear-gradient(160deg, #fff 0%, #f7f8fa 100%);
}

.nvc-error-page__code {
  font-size: clamp(96px, 14vw, 160px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: #ef8a32;
  text-align: center;
  user-select: none;
}

.nvc-error-page__eyebrow {
  margin: 0 0 10px;
  color: #ef8a32;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nvc-error-page__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-error-page__text {
  margin: 0 0 24px;
  max-width: 420px;
  color: #6d7178;
  font-size: 16px;
  line-height: 1.55;
}

.nvc-error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nvc-error-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 14px;
  background: #ef8a32;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nvc-error-page__btn:hover {
  background: #e07b24;
  color: #fff;
}

.nvc-error-page__btn--ghost {
  border: 1px solid #e3e6ec;
  background: #fff;
  color: #222;
}

.nvc-error-page__btn--ghost:hover {
  border-color: #ef8a32;
  background: #fff;
  color: #ef8a32;
}

.nvc-error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nvc-error-page__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #e3e6ec;
  border-radius: 999px;
  background: #fff;
  color: #4d535c;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nvc-error-page__link:hover {
  border-color: #ef8a32;
  color: #ef8a32;
}

@media (max-width: 767px) {
  .nvc-error-page__card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px;
    text-align: center;
  }

  .nvc-error-page__text {
    margin-left: auto;
    margin-right: auto;
  }

  .nvc-error-page__actions {
    justify-content: center;
  }

  .nvc-error-page__links {
    justify-content: center;
  }

  .nvc-error-page__btn {
    flex: 1 1 auto;
  }
}

/* Brands pages */
.nvc-brands-page,
.nvc-brand-page {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 8px 0 64px;
}

.nvc-brands-page .nvc-catalog-breadcrumbs,
.nvc-brand-page .nvc-catalog-breadcrumbs {
  margin-bottom: 18px;
}

.nvc-brands-page__hero,
.nvc-brand-page__hero {
  margin-bottom: 28px;
}

.nvc-brands-page__eyebrow,
.nvc-brand-page__eyebrow {
  margin: 0 0 10px;
  color: #ef8a32;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nvc-brands-page__title,
.nvc-brand-page__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nvc-brands-page__lead,
.nvc-brand-page__lead {
  margin: 0;
  max-width: 640px;
  color: #6d7178;
  font-size: 16px;
  line-height: 1.55;
}

.nvc-brands-page__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.nvc-brands-page__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid #eceef2;
  border-radius: 18px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nvc-brands-page__card:hover {
  border-color: #ef8a32;
  box-shadow: 0 12px 28px rgba(15, 20, 32, 0.06);
  transform: translateY(-2px);
}

.nvc-brands-page__card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.4;
  padding: 12px;
  border-radius: 14px;
  background: #f7f8fa;
}

.nvc-brands-page__card-media img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.nvc-brands-page__card-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(239, 138, 50, 0.12);
  color: #ef8a32;
  font-size: 20px;
  font-weight: 700;
}

.nvc-brands-page__card-name {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.nvc-brands-page__empty {
  color: #6d7178;
}

.nvc-brand-page__hero {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 32px;
  border: 1px solid #eceef2;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 120% at 0% 0%, rgba(239, 138, 50, 0.1), transparent 55%),
    linear-gradient(160deg, #fff 0%, #f7f8fa 100%);
}

.nvc-brand-page__logo {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  min-height: 0;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #eceef2;
}

.nvc-brand-page__logo img {
  display: block;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.nvc-brand-page__section-title {
  margin: 36px 0 20px;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .nvc-brands-page__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nvc-brands-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nvc-brand-page__hero {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }
}
