.shop-catalog {
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(59, 130, 246, 0.12), transparent 55%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  overflow-x: hidden;
}
.shop-catalog > .container {
  padding-bottom: 32px;
}

.shop-page-head {
  position: relative;
  margin: 0;
  padding: 56px 0 48px;
  min-height: 280px;
  background: transparent;
}
.shop-page-head__copy {
  position: relative;
  z-index: 1;
  max-width: min(640px, calc(100% - 540px));
}
.shop-page-head__title {
  margin: 0 0 14px;
  max-width: 720px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}
.shop-page-head__desc {
  margin: 0;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: #4b5563;
}
.shop-page-head__art {
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: min(520px, 54%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  overflow: visible;
}
.shop-world-map {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: visible;
}
.shop-world-map__img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  border-radius: 6px;
  clip-path: inset(0 round 6px);
}
.shop-map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
}
.shop-map-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #3b82f6;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 4px rgba(59, 130, 246, .35);
  z-index: 2;
}
.shop-map-ripple {
  display: none;
}
.shop-map-label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 4px 8px;
  border-radius: 6px;
  background: #3b82f6;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(59, 130, 246, .28);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.shop-map-pin.is-on .shop-map-label {
  opacity: 1;
  visibility: visible;
}
.shop-map-label::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 0;
  margin-left: -6px;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #3b82f6 transparent transparent transparent;
}
@media (prefers-reduced-motion: reduce) {
  .shop-map-label { transition: none; }
}
@media (max-width: 1199.98px) {
  .shop-page-head__copy { max-width: min(560px, calc(100% - 360px)); }
  .shop-page-head__art { width: min(400px, 48%); }
}
@media (max-width: 768px) {
  .shop-page-head {
    padding: 48px 0 40px;
    margin-bottom: 14px;
    min-height: 0;
  }
  .shop-page-head__copy { max-width: 100%; }
  .shop-page-head__title { font-size: 30px; }
  .shop-page-head__desc { font-size: 15px; }
  .shop-page-head__art { display: none; }
  .firstgroup_box.cart-tip-yellow,
  .cart-tip-yellow { margin-top: 0; }
}

.firstgroup_box.cart-tip-yellow,
.cart-tip-yellow {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 0;
  margin-top: -32px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #fde68a;
  border-radius: 10px;
  background: #fffbeb;
  box-shadow: none;
  color: #92400e;
  font-size: 13px;
  line-height: 1.65;
}
.cart-tip-yellow .cart-tip-ico {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: #d97706;
}
.cart-tip-yellow .cart-tip-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}
.cart-tip-yellow .cart-tip-body {
  flex: 1;
  min-width: 0;
  font-weight: 500;
}
.cart-tip-yellow .cart-tip-body strong,
.cart-tip-yellow .cart-tip-body b {
  font-weight: 700;
}

.cart-shop-panel {
  --cart-nav-label-w: 96px;
  --cart-nav-gap: 16px;
  --cart-nav-pad-x: 22px;
  background: #fff;
  border: 1px solid #eef2f8;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 55, 120, 0.06);
  overflow: hidden;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .cart-shop-panel-nav {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0;
  }
  .cart-shop-products {
    background: #fff;
    border: 1px solid #eef2f8;
    border-top: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(15, 55, 120, 0.06);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .cart-shop-products .product-wrap {
    padding: 18px 22px;
    box-sizing: border-box;
  }
}

.cart-nav-row {
  display: flex;
  align-items: flex-start;
  gap: var(--cart-nav-gap, 16px);
  padding: 18px var(--cart-nav-pad-x, 22px);
  margin: 0;
  background: transparent;
  border-bottom: 1px solid #eef2f8;
}
.cart-nav-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: var(--cart-nav-label-w, 96px);
  min-width: var(--cart-nav-label-w, 96px);
  height: 46px;
  padding: 0;
  color: #5b6b86;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.cart-nav-label i.bx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  color: #3b82f6;
}
.cart-nav-label i.bx::before {
  display: block;
  line-height: 1;
}
.cart-nav-label span {
  display: inline-block;
  line-height: 16px;
}
.cart-nav-group {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.cart-type-item,
.cart-region-item {
  margin: 0;
  flex: 0 0 auto;
}
.cart-type-item a,
.cart-region-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  width: 172px;
  min-width: 172px;
  max-width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid #dce3ef;
  background: #fff;
  color: #3d4a63 !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
  transition: border-color .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease;
}
.cart-type-ico {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  font-size: 16px;
  line-height: 16px;
  color: #7a8ba6;
}
.cart-type-ico::before {
  display: block;
  line-height: 1;
}
.cart-type-item a span,
.cart-region-item a span {
  display: inline-block;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-region-item a img {
  display: block;
  width: auto;
  height: 14px;
  margin: 0 !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.12);
  border-radius: 2px;
  flex: 0 0 auto;
}
.cart-type-item:hover a,
.cart-region-item:hover a {
  border-color: #3b82f6;
  background: #f3f8ff;
  color: #3b82f6 !important;
}
.cart-type-item:hover .cart-type-ico {
  color: #3b82f6;
}
.cart-type-item.active a,
.cart-type-item.active:hover a {
  background: #3b82f6;
  border-color: #3b82f6;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(14, 98, 255, 0.22);
}
.cart-type-item.active .cart-type-ico,
.cart-type-item.active:hover .cart-type-ico {
  color: #fff;
}
.cart-region-item.active a,
.cart-region-item.active:hover a {
  background: #f3f8ff;
  border-color: #3b82f6;
  color: #3b82f6 !important;
  font-weight: 700;
  box-shadow: none;
}

.cart-nav-desc {
  align-items: flex-start;
}
.cart-nav-desc .cart-nav-label {
  height: auto;
  min-height: 21px;
  padding-top: 0;
  align-items: center;
}
.cart-nav-desc .cart-nav-group {
  display: block;
}
.cart-desc-body,
.cart-desc-empty {
  width: 100%;
  margin: 0;
  color: #5b6b86;
  font-size: 13px;
  line-height: 1.65;
}
.cart-desc-body > *:first-child { margin-top: 0 !important; }
.cart-desc-body > *:last-child { margin-bottom: 0 !important; }
.cart-desc-body p { margin: 0 0 8px; }
.cart-desc-body p:last-child { margin-bottom: 0; }
.cart-desc-body a { color: #3b82f6; }
.cart-desc-body img { max-width: 100%; height: auto; }
.cart-desc-body h4 { display: none !important; }

@media (max-width: 991.98px) {
  .cart-shop-panel-nav {
    margin-bottom: 12px;
  }
  .cart-shop-products {
    background: transparent;
    border: 0;
    box-shadow: none;
    margin: 0;
    overflow: visible;
  }
  .cart-shop-products .product-wrap {
    padding: 0;
  }
  .cart-nav-row {
    flex-direction: column;
    gap: 10px;
    padding: 14px 12px;
  }
  .cart-nav-label { padding-top: 0; }
  .cart-nav-type .cart-nav-group,
  .cart-nav-region .cart-nav-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }
  .cart-nav-desc .cart-nav-group {
    display: block;
    width: 100%;
  }
  .cart-type-item,
  .cart-region-item {
    min-width: 0;
    width: auto;
  }
  .cart-type-item a,
  .cart-region-item a {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }
}
