/* Scoped runtime styles for shop content-block plugin. */

:root {
  --mg-shop-accent: #db0e77;
  --mg-shop-accent-hover: #c40b6b;
  --mg-shop-accent-shadow: rgba(219, 14, 119, 0.22);
  --mg-shop-accent-soft: rgba(219, 14, 119, 0.12);
}

.shop-page-hero {
  padding: 0 0 28px;
}

.shop-page-hero__media {
  position: relative;
  min-height: 300px;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: #0e1016;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 20px 44px rgba(10, 14, 24, 0.18);
}

.shop-page-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 18, 0.24) 0%, rgba(9, 11, 18, 0.58) 100%),
    linear-gradient(90deg, rgba(9, 11, 18, 0.72) 0%, rgba(9, 11, 18, 0.18) 38%, rgba(9, 11, 18, 0.76) 100%);
}

.shop-page-hero__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--mg-shop-accent) 0%, #ff2f97 100%);
}

.shop-page-hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(219, 14, 119, 0.22) 0%, rgba(219, 14, 119, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 76px);
  opacity: 0.82;
  pointer-events: none;
}

.shop-page-hero__container--full {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.shop-page-hero__inner {
  position: relative;
  overflow: hidden;
  padding: 30px 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(6, 8, 14, 0.82) 0%, rgba(16, 18, 26, 0.92) 58%, rgba(16, 18, 26, 0.98) 100%),
    radial-gradient(circle at top right, rgba(219, 14, 119, 0.28) 0%, rgba(219, 14, 119, 0) 34%);
  box-shadow: 0 28px 60px rgba(10, 14, 24, 0.22);
}

.shop-page-hero__content {
  width: 100%;
}

.shop-page-hero__content--contained {
  width: 100%;
}

.shop-page-hero__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--mg-shop-accent) 0%, #ff2f97 100%);
}

.shop-page-hero__container--full .shop-page-hero__inner {
  display: flex;
  align-items: center;
  min-height: 420px;
  padding: 0;
}

.shop-page-hero__container--full .shop-page-hero__content--contained {
  padding-top: 44px;
  padding-bottom: 44px;
}

.shop-page-hero__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .shop-page-hero__media {
    min-height: 184px;
  }

  .shop-page-hero__inner {
    padding: 26px 24px 24px;
  }

  .shop-page-hero__container--full .shop-page-hero__inner {
    min-height: 0;
    padding: 0;
  }

  .shop-page-hero__container--full .shop-page-hero__content--contained {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.shop-page-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.shop-page-hero__subtitle {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.shop-page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.shop-page-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.shop-page-hero__badge:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.shop-page-hero__badge.is-active {
  border-color: var(--mg-shop-accent);
  background: var(--mg-shop-accent);
  color: #fff;
}

.shop-product-hero {
  padding: 40px 0 28px;
}

.shop-product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
  align-items: start;
}

.shop-product-hero__gallery {
  position: sticky;
  top: 110px;
}

.shop-product-hero__main-image {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.shop-product-hero__image-trigger,
.shop-product-hero__thumb-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.shop-product-hero__main-image img,
.shop-product-hero__thumbs img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.shop-product-hero__thumbs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shop-product-hero__thumb-button {
  border-radius: 18px;
  overflow: hidden;
}

.shop-product-hero__thumbs img {
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f3f6fb;
}

.shop-product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(7, 10, 17, 0.9);
}

.shop-product-lightbox__dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: 100%;
}

.shop-product-lightbox__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 24px;
  border-radius: 28px;
  background: #0f131c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.shop-product-lightbox__frame img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  width: auto;
  height: auto;
  border-radius: 20px;
}

.shop-product-lightbox__close,
.shop-product-lightbox__arrow {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.shop-product-lightbox__close {
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.shop-product-lightbox__arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border-radius: 50%;
  font-size: 36px;
  line-height: 1;
}

.shop-product-lightbox__arrow--prev {
  left: 12px;
}

.shop-product-lightbox__arrow--next {
  right: 12px;
}

.shop-product-lightbox__counter {
  margin-top: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.shop-product-lightbox-open {
  overflow: hidden;
}

.shop-product-hero__content {
  position: relative;
}

.shop-product-hero__content h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.shop-product-hero__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  color: #8a90a3;
}

.shop-product-hero__subtitle {
  margin: 0 0 18px;
  color: #5f667a;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
}

.shop-product-hero__meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.shop-product-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #eef3f8;
  color: #2d364d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.shop-product-hero__chip--dark {
  background: #171b24;
  color: #fff;
}

.shop-product-hero__summary-card {
  padding: 22px;
  border: 1px solid #e5eaf2;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 20px 44px rgba(18, 25, 38, 0.06);
  margin-bottom: 18px;
}

.shop-product-hero__price {
  margin: 0 0 18px;
  font-size: 34px;
  font-weight: 700;
  color: var(--mg-shop-accent);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-price-old {
  color: #8b93a7;
  font-size: 14px;
  font-weight: 600;
  text-decoration: line-through;
}

.shop-product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 16px;
  color: #5f667a;
  font-size: 13px;
}

.shop-product-hero__variants {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.shop-product-hero__variants label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #3f4558;
  margin-bottom: 4px;
}

.shop-product-hero__variants select {
  width: 100%;
  border: 1px solid #d8deea;
  background: #fff;
  min-height: 52px;
  border-radius: 0;
  padding: 0 12px;
}

.shop-product-hero__variant-note,
.shop-product-card__variant-note {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.shop-box .products-list.products-carousel .product .shop-product-card__variant-note {
  display: block;
  margin: 2px 0 0;
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  text-transform: none;
}

.shop-product-hero__actions {
  margin: 4px 0 18px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product-hero__quantity-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: #3f4558;
  flex: 0 0 120px;
}

.shop-product-hero__quantity {
  width: 100%;
  border: 1px solid #d8deea;
  border-radius: 0;
  min-height: 52px;
  padding: 0 14px;
  font-size: 24px;
  font-weight: 600;
  font-family: Teko, sans-serif;
  color: #1d2335;
}

.shop-product-hero__actions .btn.btn-primary {
  height: 52px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}

.shop-product-hero__cart-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 34px 0 0;
}

.shop-product-hero__cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 58px;
  min-width: 320px;
  padding: 0 28px;
  background: var(--mg-shop-accent);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 24px var(--mg-shop-accent-shadow);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.shop-product-hero__cart-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(219, 14, 119, 0.26);
  background: #de0495;
}

.shop-product-hero__cart-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.shop-product-hero__cart-link span {
  color: inherit;
  font-size: 18px;
  font-weight: 700;
}

.shop-product-hero__trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-product-hero__trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #5f667a;
  font-size: 12px;
  font-weight: 700;
}

.shop-product-hero__description {
  color: #485065;
  line-height: 1.55;
  max-width: 760px;
}

.shop-product-buy-bar {
  position: sticky;
  bottom: 18px;
  z-index: 30;
  margin-top: 26px;
}

.shop-product-buy-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(10, 13, 19, 0.92);
  box-shadow: 0 18px 38px rgba(10, 13, 19, 0.22);
  backdrop-filter: blur(10px);
}

.shop-product-buy-bar__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.shop-product-buy-bar__identity strong {
  color: #fff;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-product-buy-bar__identity span {
  color: #ff4ab0;
  font-size: 18px;
  font-weight: 800;
}

.shop-product-buy-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-product-buy-bar__quantity {
  width: 84px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 10px;
}

.shop-product-media-banner {
  position: relative;
  margin: 12px 0 24px;
}

.shop-product-media-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-product-media-banner__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .58) 100%);
  color: #fff;
}

.shop-product-media-banner__overlay h2 {
  margin: 0 0 4px;
  color: #fff;
}

.shop-product-media-banner__overlay p {
  margin: 0;
  opacity: .9;
}

.shop-product-specs {
  padding: 16px 0 28px;
}

.shop-product-specs__accordion details {
  border-top: 1px solid #e6e9f1;
  padding: 12px 0;
}

.shop-product-specs__accordion summary {
  cursor: pointer;
  font-weight: 700;
  color: #1f2638;
}

.shop-product-specs__accordion div {
  margin-top: 10px;
  color: #586178;
}

.shop-product-link {
  color: inherit;
  text-decoration: none;
}

.shop-product-link:hover {
  text-decoration: none;
}

.shop-product-hero__variants,
.shop-product-card__variants {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-product-hero__variants label,
.shop-product-card__variants label {
  margin: 0;
  color: #52607a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-product-hero .shop-voucher-select,
.shop-product-card .shop-voucher-select {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  height: 54px;
  padding: 14px 48px 14px 16px;
  border: 1px solid #d8deea;
  border-radius: 0;
  background: #fff !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23677289' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #16303a;
  line-height: 24px;
  box-shadow: none;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.shop-product-hero .shop-voucher-select:focus,
.shop-product-hero .shop-voucher-select:focus-visible,
.shop-product-card .shop-voucher-select:focus,
.shop-product-card .shop-voucher-select:focus-visible {
  border: 1px solid rgba(219, 14, 119, 0.45);
  box-shadow: none;
  outline: none;
}

.shop-product-hero .shop-voucher-select option,
.shop-product-card .shop-voucher-select option {
  background: #fff;
  color: #16303a;
}

.btn.btn-primary:focus,
.btn.btn-primary:active,
.btn.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary.active {
  background: var(--mg-shop-accent);
  border-color: var(--mg-shop-accent);
  color: #fff;
  box-shadow: none;
  outline: none;
}

.btn.btn-primary:focus-visible {
  background: var(--mg-shop-accent);
  border-color: var(--mg-shop-accent);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(247, 5, 166, 0.22);
  outline: none;
}

.is-hidden {
  display: none !important;
}

.js-cart-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.js-cart-quick-link .js-cart-count {
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--mg-shop-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.shop-empty-actions {
  margin-top: 14px;
}

.shop-single-product-widget {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid #e6e9f1;
  border-radius: 12px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.shop-single-product-widget::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 5, 166, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.shop-single-product-widget__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

.shop-single-product-widget__image {
  position: relative;
  overflow: hidden;
}

.shop-single-product-widget__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.26) 50%, transparent 70%);
  transform: translateX(-135%);
  transition: transform .55s ease;
  pointer-events: none;
}

.shop-single-product-widget__body h4 {
  margin: 0 0 8px;
  transition: transform .22s ease, color .22s ease;
}

.shop-single-product-widget__price {
  margin: 0 0 12px;
  color: var(--mg-shop-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  transition: transform .22s ease, color .22s ease;
}

.shop-single-product-widget:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 14, 119, 0.22);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.shop-single-product-widget:hover::after {
  opacity: 1;
}

.shop-single-product-widget:hover .shop-single-product-widget__image img {
  transform: scale(1.04);
}

.shop-single-product-widget:hover .shop-single-product-widget__image::after {
  transform: translateX(135%);
}

.shop-single-product-widget:hover .shop-single-product-widget__body h4 {
  transform: translateY(-2px);
  color: #111827;
}

.shop-single-product-widget:hover .shop-single-product-widget__price {
  transform: translateY(-1px);
  color: #c90778;
}

.shop-single-product-widget:hover .btn.btn-primary {
  box-shadow: 0 12px 22px rgba(219, 14, 119, 0.22);
}

.shop-cart-summary-widget {
  margin-top: 16px;
  border: 1px solid #e6e9f1;
  border-radius: 12px;
  background: #fff;
}

.shop-cart-summary-widget__head {
  padding: 14px 18px 0;
}

.shop-cart-summary-widget__head h3 {
  margin: 0;
  font-size: 18px;
}

.shop-cart-summary-widget__content {
  padding: 12px 18px 18px;
}

.shop-cart-summary-widget__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.shop-cart-summary-widget__row strong {
  color: #1f2638;
}

.shop-cart-summary-widget__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.shop-basket-page {
  padding: 0 0 36px;
}

.shop-basket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.shop-basket-main__title {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.shop-basket-main__progress {
  border-radius: 12px;
  background: #06080d;
  color: #fff;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.shop-basket-main__progress p {
  margin: 0 0 10px;
  font-size: 13px;
}

.shop-basket-main__progress-track {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.shop-basket-main__progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f90aaf, #ff3cc1);
}

.shop-basket-table {
  border: 0;
}

.shop-basket-table tbody tr {
  border: 0;
}

.shop-basket-table tbody tr td {
  border: 0;
  padding: 0 0 14px;
}

.shop-basket-item {
  border: 1px solid #e9edf5;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-columns: 120px minmax(320px, 1fr) 172px;
  gap: 16px;
  align-items: start;
}

.shop-basket-item__thumb {
  min-width: 0;
}

.shop-basket-item__thumb-link {
  display: block;
  width: 120px;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  float: none;
}

.shop-basket-item__thumb img,
.shop-basket-item__thumb-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.shop-basket-item__thumb-placeholder {
  background: #edf1f8;
}

.shop-basket-item__body {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-basket-item__name-link {
  display: block;
  width: auto;
  max-width: none;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  float: none;
  align-self: stretch;
}

.shop-basket-item__name-link:hover,
.shop-basket-item__thumb-link:hover {
  color: inherit;
  text-decoration: none;
}

.shop-basket-item__name {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #1d2335;
  font-weight: 700;
  line-height: 1.2;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
  text-decoration: none;
}

.shop-basket-table .shop-basket-item__thumb-link,
.shop-basket-table .shop-basket-item__name-link,
.shop-basket-table .shop-basket-item__body {
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  text-align: left !important;
}

.shop-basket-table a.shop-basket-item__name,
.shop-basket-table a.shop-basket-item__name:visited,
.shop-basket-table a.shop-basket-item__name:focus {
  color: #1d2335 !important;
  text-decoration: none !important;
}

.shop-basket-table a.shop-basket-item__name:hover {
  color: #1d2335 !important;
  text-decoration: underline !important;
}

.shop-basket-table td.name a.shop-basket-item__name-link,
.shop-basket-table td.name a.shop-basket-item__thumb-link {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  background-image: none !important;
  background-repeat: initial !important;
  background-size: initial !important;
  display: block !important;
}

.shop-basket-item__variants {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-basket-item__variants span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef2fa;
  padding: 4px 10px;
  font-size: 12px;
  color: #4c556f;
}

.shop-basket-item__variant-editors {
  display: grid;
  gap: 10px;
  margin: 10px 0;
}

.shop-basket-item__variant-editor {
  display: grid;
  gap: 4px;
}

.shop-basket-item__variant-editor span {
  color: #6b738a;
  font-size: 12px;
  font-weight: 700;
}

.shop-basket-item__variant-editor select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8deea;
  background: #fff;
  padding: 0 12px;
  color: #1f2638;
  font-size: 14px;
}

.shop-basket-item__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  min-height: 100%;
}

.shop-basket-item__aside-footer {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: end;
  justify-content: end;
  gap: 14px;
  width: 100%;
  margin-top: auto;
  justify-self: end;
}

.shop-basket-item__quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e7f1;
  border-radius: 8px;
  overflow: hidden;
}

.shop-basket-item__qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #f8fafe;
  color: #d90b79;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.shop-basket-item__quantity input[name=\"quantity\"] {
  width: 52px;
  height: 34px;
  border: 0;
  text-align: center;
  font-weight: 700;
  color: #1f273d;
  -moz-appearance: textfield;
}

.shop-basket-item__quantity input[name=\"quantity\"]::-webkit-outer-spin-button,
.shop-basket-item__quantity input[name=\"quantity\"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-basket-item__quantity-static {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #e2e7f1;
  background: #f8fafe;
  color: #1f273d;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  justify-self: end;
}

.shop-basket-item__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  white-space: nowrap;
}

.shop-basket-item__pricing strong {
  font-size: 18px;
  color: #1e2539;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.shop-basket-item__remove {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 24px !important;
  height: 24px !important;
  padding: 0;
  border: 0;
  margin: 0 !important;
  background: transparent !important;
  background-image: none !important;
  color: var(--mg-shop-accent);
  text-decoration: none;
  line-height: 1;
  transition: color .2s ease, transform .2s ease, opacity .2s ease;
  box-shadow: none;
  outline: none;
}

.shop-basket-item__remove:hover {
  color: var(--mg-shop-accent);
  text-decoration: none;
  transform: translateY(-1px);
  opacity: 0.85;
}

.shop-basket-item__remove-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.shop-basket-item__remove-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  overflow: visible;
}

.shop-basket-item__note {
  margin: 10px 0 0;
  color: #7a8298;
  font-size: 13px;
  line-height: 1.45;
}

.shop-basket-side {
  background: #090b10;
  color: #fff;
  border-radius: 14px;
  padding: 18px 16px 16px;
}

.shop-basket-side__title {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 800;
}

.shop-basket-side__recommendations {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 14px;
}

.shop-basket-side__empty {
  margin: 0;
  color: #67708a;
  font-size: 13px;
}

.shop-basket-side__product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.shop-basket-side__product + .shop-basket-side__product {
  border-top: 1px solid #edf1f8;
}

.shop-basket-side__product-image img,
.shop-basket-side__product-image-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.shop-basket-side__product-image-placeholder {
  background: #eef2f8;
}

.shop-basket-side__product-name {
  display: block;
  color: #1d2437;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.shop-basket-side__product-price {
  display: block;
  margin-top: 4px;
  color: #151b2b;
  font-size: 13px;
}

.shop-basket-side__product-add {
  color: #ef0a97;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.shop-basket-side__summary {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}

.shop-basket-side__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #d3d7e2;
  margin-bottom: 8px;
}

.shop-basket-side__summary-row strong {
  font-size: 15px;
  color: #fff;
}

.shop-basket-side__summary-row--total span {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.shop-basket-side__summary-row--total strong {
  font-size: 28px;
}

.shop-basket-side__voucher {
  margin: 14px 0 10px;
}

.shop-basket-side__shipping-selector {
  margin: 14px 0 10px;
}

.shop-basket-side__shipping-selector label {
  margin: 0 0 6px;
  display: block;
  color: #dbe0ef;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.shop-basket-side__shipping-selector select {
  width: 100%;
  min-width: 0;
  border: 1px solid #3b445e;
  background: #13182a;
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
}

.shop-basket-side__shipping-message {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  min-height: 16px;
}

.shop-basket-side__shipping-message.is-error {
  color: #ff8aa8;
}

.shop-basket-side__shipping-message.is-success {
  color: #8fe3b1;
}

.shop-basket-side__shipping-selector.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.shop-basket-side__voucher label {
  margin: 0 0 6px;
  display: block;
  color: #dbe0ef;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.shop-basket-side__voucher-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.shop-basket-side__voucher-controls input {
  min-width: 0;
  border: 1px solid #3b445e;
  background: #13182a;
  color: #fff;
  border-radius: 6px;
  padding: 10px 12px;
}

.shop-basket-side__voucher-controls button {
  border: 0;
  background: var(--mg-shop-accent);
  color: #fff;
  border-radius: 6px;
  padding: 0 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.shop-basket-side__voucher-meta {
  margin-top: 8px;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: #dbe0ef;
}

.shop-basket-side__voucher-message {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  min-height: 16px;
}

.shop-basket-side__voucher-message.is-error {
  color: #ff8aa8;
}

.shop-basket-side__voucher-message.is-success {
  color: #8fe3b1;
}

.shop-basket-side__voucher.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.shop-cart-summary-widget__voucher,
.shop-cart-summary-widget__voucher-form {
  margin-top: 10px;
}

.shop-cart-summary-widget__voucher {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.shop-cart-summary-widget__voucher-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.shop-cart-summary-widget__voucher-controls input {
  min-width: 0;
}

.shop-cart-summary-widget__voucher-meta {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.shop-cart-summary-widget__voucher-message {
  margin: 6px 0 0;
  min-height: 14px;
  font-size: 12px;
}

.shop-cart-summary-widget__voucher-message.is-error {
  color: #c94063;
}

.shop-cart-summary-widget__voucher-message.is-success {
  color: #178e54;
}

.shop-cart-summary-widget__voucher-form.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.shop-basket-side__voucher-codes,
.shop-cart-summary-widget__voucher-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-voucher-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5d3eb;
  border-radius: 999px;
  padding: 4px 9px;
  background: #fff7fd;
  color: #5f667a;
}

.shop-voucher-chip strong {
  color: #f506a6;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.shop-voucher-chip em {
  font-style: normal;
  font-size: 11px;
  color: #2e3346;
}

.shop-voucher-chip button {
  border: 0;
  background: transparent;
  color: #a5377b;
  font-size: 15px;
  line-height: 1;
  padding: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.shop-basket-side__checkout {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: var(--mg-shop-accent);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 11px 10px;
  margin: 12px 0 10px;
}

.shop-basket-side__checkout:hover {
  color: #fff;
  text-decoration: none;
  background: #df0697;
}

.shop-basket-side__shipping {
  margin: 0;
  color: #cdd1dd;
  font-size: 12px;
  line-height: 1.5;
}

.shop-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
}

.shop-mini-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 12, 22, 0.48);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.shop-mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #fff;
  box-shadow: -16px 0 38px rgba(7, 16, 36, 0.18);
  transform: translateX(102%);
  transition: transform 0.24s ease;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.shop-mini-cart.is-open {
  pointer-events: auto;
}

.shop-mini-cart.is-open .shop-mini-cart__backdrop {
  opacity: 1;
}

.shop-mini-cart.is-open .shop-mini-cart__panel {
  transform: translateX(0);
}

body.shop-mini-cart-open {
  overflow: hidden;
}

.shop-mini-cart__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 14px;
  border-bottom: 1px solid #ebeff7;
}

.shop-mini-cart__bar h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1f2638;
  text-transform: uppercase;
}

.shop-mini-cart__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #f8d8ec;
  color: #d90b79;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.shop-mini-cart__progress {
  padding: 12px 18px;
  border-bottom: 1px solid #ebeff7;
  background: #0f1116;
}

.shop-mini-cart__progress-text {
  margin: 0 0 8px;
  color: #fff;
  font-size: 12px;
}

.shop-mini-cart__progress-track {
  height: 7px;
  border-radius: 999px;
  background: #2e313b;
  overflow: hidden;
}

.shop-mini-cart__progress-bar {
  height: 100%;
  width: 0;
  background: var(--mg-shop-accent);
  transition: width 0.2s ease;
}

.shop-mini-cart__content {
  overflow: auto;
  padding: 12px 18px 8px;
}

.shop-mini-cart__camp-payment {
  margin: 0 18px 12px;
  padding: 16px;
  border: 1px solid rgba(228, 24, 126, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(228, 24, 126, 0.06), rgba(255, 255, 255, 0.96));
}

.shop-mini-cart__camp-payment-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.shop-mini-cart__camp-payment-head strong {
  font-size: 14px;
  line-height: 1.3;
}

.shop-mini-cart__camp-payment-head small {
  color: #7e859f;
  font-size: 11px;
  line-height: 1.45;
}

.shop-mini-cart__camp-payment-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.shop-mini-cart__camp-payment-btn {
  min-height: 40px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.shop-mini-cart__camp-payment-btn.is-active {
  border-color: var(--mg-shop-accent);
  background: var(--mg-shop-accent);
  color: #fff;
}

.shop-mini-cart__camp-payment-note,
.shop-mini-cart__camp-payment-remaining,
.shop-mini-cart__camp-payment-message {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.shop-mini-cart__camp-payment-remaining {
  margin-top: 4px;
  color: #7e859f;
}

.shop-mini-cart__camp-payment-message {
  margin-top: 6px;
}

.shop-mini-cart__camp-payment-message.is-error {
  color: #c2410c;
}

.shop-mini-cart__camp-payment-message.is-success {
  color: #15803d;
}

.shop-mini-cart__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.shop-mini-cart__item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 30px;
  gap: 10px;
  border-bottom: 1px solid #eef2f8;
  padding-bottom: 12px;
}

.shop-mini-cart__item.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.shop-mini-cart__thumb img,
.shop-mini-cart__thumb-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.shop-mini-cart__thumb-placeholder {
  background: #eff3f9;
}

.shop-mini-cart__name {
  margin: 0;
  color: #1f2638;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.shop-mini-cart__unit-price {
  margin: 4px 0 7px;
  color: #6b738a;
  font-size: 12px;
}

.shop-mini-cart__variants {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  color: #8c93a8;
  font-size: 12px;
}

.shop-mini-cart__variant-editors {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.shop-mini-cart__variant-editor {
  display: grid;
  gap: 4px;
}

.shop-mini-cart__variant-editor span {
  color: #6b738a;
  font-size: 11px;
  font-weight: 700;
}

.shop-mini-cart__variant-editor select {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d8deea;
  background: #fff;
  padding: 0 10px;
  color: #1f2638;
  font-size: 13px;
}

.shop-mini-cart__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-mini-cart__qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #f2bddc;
  border-radius: 6px;
  background: #fff;
  color: #d90b79;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.shop-mini-cart__qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #242c42;
}

.shop-mini-cart__line-total {
  margin-left: auto;
  font-size: 13px;
  color: #242c42;
}

.shop-mini-cart__remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #e70573;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.shop-mini-cart__empty {
  margin: 24px 0;
  color: #6b738a;
  font-size: 14px;
}

.shop-mini-cart__footer {
  border-top: 1px solid #ebeff7;
  padding: 14px 18px 18px;
  background: #fff;
}

.shop-mini-cart__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.shop-mini-cart__summary strong {
  font-size: 18px;
  color: #1f2638;
}

.shop-mini-cart__checkout {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: var(--mg-shop-accent);
  color: #fff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 10px;
  text-decoration: none;
}

.shop-mini-cart__checkout:hover {
  color: #fff;
  text-decoration: none;
  background: #de0495;
}

.shop-box {
  padding: 28px 0 40px;
}

.shop-box .container {
  max-width: 1240px;
}

.shop-box-subtitle {
  margin: 0 0 18px;
  color: #5f667a;
  font-size: 16px;
  line-height: 1.6;
}

.shop-box .products-list.products-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.shop-box .products-list.products-carousel .product {
  margin: 0;
  padding: 18px;
  border: 1px solid #e7ebf3;
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
}

.shop-box .products-list.products-carousel .product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(247, 5, 166, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.shop-box .products-list.products-carousel .product > .shop-product-link:first-child {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f7fc;
  aspect-ratio: 4 / 4.5;
  position: relative;
}

.shop-box .products-list.products-carousel .product > .shop-product-link:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.26) 50%, transparent 70%);
  transform: translateX(-135%);
  transition: transform .55s ease;
  pointer-events: none;
}

.shop-box .products-list.products-carousel .product > .shop-product-link:first-child img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #f4f7fc;
  transition: transform .32s ease;
}

.shop-box .products-list.products-carousel .product p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #1d2335;
  font-size: 15px;
  line-height: 1.5;
  transition: transform .22s ease, color .22s ease;
}

.shop-box .products-list.products-carousel .product p .shop-product-link {
  font-weight: 700;
  transition: color .22s ease;
}

.shop-box .products-list.products-carousel .product p span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--mg-shop-accent);
  font-size: 24px;
  font-weight: 700;
  transition: transform .22s ease, color .22s ease;
}

.shop-box .products-list.products-carousel .product:hover {
  transform: translateY(-8px);
  border-color: rgba(219, 14, 119, 0.22);
  box-shadow: 0 28px 54px rgba(15, 23, 42, 0.14);
}

.shop-box .products-list.products-carousel .product:hover::after {
  opacity: 1;
}

.shop-box .products-list.products-carousel .product:hover > .shop-product-link:first-child img {
  transform: scale(1.05);
}

.shop-box .products-list.products-carousel .product:hover > .shop-product-link:first-child::after {
  transform: translateX(135%);
}

.shop-box .products-list.products-carousel .product:hover p {
  transform: translateY(-2px);
}

.shop-box .products-list.products-carousel .product:hover p .shop-product-link {
  color: #111827;
}

.shop-box .products-list.products-carousel .product:hover p span {
  transform: translateY(-1px);
  color: #c90778;
}

.shop-box .products-list.products-carousel .product:hover .btn.btn-primary {
  box-shadow: 0 12px 24px rgba(219, 14, 119, 0.24);
}

.shop-product-card__variants {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-product-card__variants label {
  margin: 0;
  color: #6f778b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-product-card__variants select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7deea;
  border-radius: 14px;
  background: #f8faff;
  color: #1f2537;
  font-size: 14px;
  font-weight: 600;
  padding: 0 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.shop-product-card__variants select:focus {
  border-color: rgba(219, 14, 119, 0.48);
  box-shadow: 0 0 0 4px rgba(219, 14, 119, 0.12);
  background: #fff;
}

.shop-box-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.shop-product-related {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eef2f8;
}

.shop-product-related__label {
  display: block;
  margin-bottom: 8px;
  color: #7b8499;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-product-related__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-product-related__item {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f3f6fc;
  color: #2f3850;
  padding: 7px 12px;
  font-size: 12px;
  text-decoration: none;
}

.shop-product-related__item:hover {
  background: #ebf0fa;
  text-decoration: none;
}

.shop-empty {
  margin: 0;
  color: #5f667a;
}

.shop-product-section-head {
  margin: 0 0 22px;
}

.shop-product-section-head p {
  margin: 8px 0 0;
  color: #61697c;
  max-width: 760px;
}

.shop-product-usp-strip,
.shop-product-story-split,
.shop-product-feature-grid,
.shop-product-how-to,
.shop-product-before-after,
.shop-product-comparison,
.shop-product-reviews {
  padding: 22px 0 30px;
}

.shop-product-usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shop-product-usp-strip__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 16px;
  background: #f3f5f8;
}

.shop-product-usp-strip__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #dde3eb;
  color: #202634;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 800;
}

.shop-product-usp-strip__item h3,
.shop-product-feature-grid__card h3,
.shop-product-how-to__body h3 {
  margin: 0 0 6px;
}

.shop-product-usp-strip__item p,
.shop-product-feature-grid__card p,
.shop-product-how-to__body p {
  margin: 0;
  color: #61697c;
  line-height: 1.55;
}

.shop-product-story-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.shop-product-story-split__media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  background: #edf1f6;
}

.shop-product-story-split__eyebrow,
.shop-product-feature-grid__eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  color: #8b93a7;
  font-weight: 800;
}

.shop-product-story-split__content h2 {
  margin: 0 0 12px;
}

.shop-product-story-split__text {
  color: #485065;
  line-height: 1.65;
}

.shop-product-story-split__stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shop-product-story-split__stat {
  padding: 14px 16px;
  border-radius: 16px;
  background: #0e1117;
  color: #fff;
}

.shop-product-story-split__stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.shop-product-story-split__stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.shop-product-feature-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-product-feature-grid__card {
  padding: 18px;
  border: 1px solid #e7ebf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(31, 38, 56, 0.04);
}

.shop-product-feature-grid__image {
  margin: -18px -18px 14px;
}

.shop-product-feature-grid__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  background: #edf1f6;
}

.shop-product-how-to__list {
  display: grid;
  gap: 16px;
}

.shop-product-how-to__step {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(220px, 320px);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

.shop-product-how-to__index {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: #161a23;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
}

.shop-product-how-to__media img {
  width: 100%;
  display: block;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe5ee;
}

.shop-section-product-related {
  background: linear-gradient(180deg, #f6f8fc 0%, #eef2f8 100%);
}

.shop-section-product-related .product {
  border-radius: 22px !important;
  box-shadow: 0 20px 48px rgba(18, 26, 40, 0.08) !important;
}

.shop-section-product-related h2.selected {
  margin-bottom: 18px;
}

.shop-product-before-after__list {
  display: grid;
  gap: 18px;
}

.shop-product-before-after__item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e8edf5;
  box-shadow: 0 20px 44px rgba(18, 25, 38, 0.05);
}

.shop-product-before-after__item h3 {
  margin: 0 0 14px;
}

.shop-product-before-after__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shop-product-before-after__card {
  padding: 18px;
  border-radius: 18px;
}

.shop-product-before-after__card span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.shop-product-before-after__card p {
  margin: 0;
  color: #5f667a;
  line-height: 1.6;
}

.shop-product-before-after__card--before {
  background: #f3f5f8;
}

.shop-product-before-after__card--after {
  background: linear-gradient(180deg, #11151d 0%, #1b2230 100%);
}

.shop-product-before-after__card--after span,
.shop-product-before-after__card--after p {
  color: #fff;
}

.shop-product-before-after__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: #edf1f6;
}

.shop-product-comparison__table {
  display: grid;
  gap: 10px;
}

.shop-product-comparison__row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 220px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
}

.shop-product-comparison__row.is-highlighted {
  background: linear-gradient(180deg, #121721 0%, #1d2533 100%);
  border-color: #121721;
}

.shop-product-comparison__label {
  font-weight: 800;
  color: #202634;
}

.shop-product-comparison__value {
  font-size: 18px;
  font-weight: 900;
  color: #ea0a86;
}

.shop-product-comparison__note {
  color: #5f667a;
}

.shop-product-comparison__row.is-highlighted .shop-product-comparison__label,
.shop-product-comparison__row.is-highlighted .shop-product-comparison__note {
  color: rgba(255, 255, 255, 0.88);
}

.shop-product-comparison__row.is-highlighted .shop-product-comparison__value {
  color: #fff;
}

.shop-product-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-product-reviews__card {
  padding: 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e8edf5;
  box-shadow: 0 18px 40px rgba(18, 25, 38, 0.05);
}

.shop-product-reviews__card.is-highlighted {
  background: linear-gradient(180deg, #121721 0%, #1d2533 100%);
  border-color: #121721;
}

.shop-product-reviews__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #c3cad7;
  font-size: 18px;
}

.shop-product-reviews__rating span.is-active {
  color: #f70b9a;
}

.shop-product-reviews__card blockquote {
  margin: 0 0 18px;
  color: #202634;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.shop-product-reviews__card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-product-reviews__card footer strong {
  color: #202634;
  font-size: 14px;
}

.shop-product-reviews__card footer span {
  color: #6b738a;
  font-size: 13px;
}

.shop-product-reviews__card.is-highlighted blockquote,
.shop-product-reviews__card.is-highlighted footer strong {
  color: #fff;
}

.shop-product-reviews__card.is-highlighted footer span {
  color: rgba(255, 255, 255, 0.72);
}

.mg-toast-stack {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2147483647;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.mg-toast {
  min-width: min(380px, calc(100vw - 32px));
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(210, 49, 103, 0.22);
  background: rgba(20, 27, 45, 0.96);
  color: #fff;
  box-shadow: 0 20px 40px rgba(12, 18, 31, 0.24);
  font-size: 14px;
  line-height: 1.5;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform .2s ease, opacity .2s ease;
}

.mg-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mg-toast--error {
  border-left: 4px solid var(--mg-shop-accent);
}

.shop-checkout-page {
  padding: 0 0 60px;
}

.shop-checkout-layout {
  align-items: start;
  gap: 28px;
}

.shop-checkout-main {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e6ebf3;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 22px 48px rgba(16, 24, 40, 0.06);
}

.shop-checkout-side {
  position: sticky;
  top: 118px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  color: #1d2335;
  border: 1px solid #e5eaf2;
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 22px 48px rgba(16, 24, 40, 0.08);
}

.shop-checkout-side__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.shop-checkout-side .shop-basket-side__title {
  margin-bottom: 0;
  color: #141b2d;
  font-size: 24px;
  line-height: 1;
}

.shop-checkout-side__edit-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--mg-shop-accent);
  background: var(--mg-shop-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 14px 28px var(--mg-shop-accent-shadow);
}

.shop-checkout-side__edit-cart:hover {
  color: #fff;
  background: var(--mg-shop-accent-hover);
  border-color: var(--mg-shop-accent-hover);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(219, 14, 119, 0.24);
}

.shop-checkout-header {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e8edf5;
}

.shop-checkout-header .shop-basket-main__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.shop-checkout-header p {
  margin: 10px 0 0;
  max-width: 760px;
  color: #6c748c;
  font-size: 15px;
  line-height: 1.6;
}

.shop-checkout-form {
  display: grid;
  gap: 18px;
}

.shop-checkout-form .selected,
.order-form__camp-survey .selected {
  margin: 0 0 4px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #151b2d;
}

.shop-checkout-form > .row,
.shop-checkout-form > .form-group,
.shop-checkout-form > .order-form__camp-survey,
.shop-checkout-form > .btn-pay,
.shop-checkout-form > .hide,
.shop-checkout-form > input[type="hidden"] {
  margin-top: 0;
}

.shop-checkout-form .row {
  margin-left: -8px;
  margin-right: -8px;
}

.shop-checkout-form .row > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.shop-checkout-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.shop-checkout-form .form-group > .form-control,
.shop-checkout-form .form-group > input.form-control,
.shop-checkout-form .form-group > select.form-control,
.shop-checkout-form .form-group > textarea.form-control,
.shop-checkout-page .form-group > .form-control,
.shop-checkout-page .form-group > input,
.shop-checkout-page .form-group > select,
.shop-checkout-page .form-group > textarea,
.shop-checkout-form .form-group > input,
.shop-checkout-form .form-group > select,
.shop-checkout-form .form-group > textarea,
.camp-participant-card .form-control,
.camp-participant-card select.form-control,
.camp-participant-card textarea.form-control,
.camp-participant-card input,
.camp-participant-card select,
.camp-participant-card textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  height: 54px;
  line-height: 24px;
  padding: 14px 16px;
  border: 1px solid #d8deea !important;
  border-radius: 0;
  background: #fff !important;
  background-color: #fff !important;
  color: #16303a !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.shop-checkout-form .form-group > select.form-control,
.camp-participant-card select.form-control,
.shop-checkout-form select,
.camp-participant-card select,
.shop-checkout-page select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23677289' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px 18px;
  padding-right: 48px;
  color: #16303a !important;
  border-color: #d8deea !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.shop-checkout-page .mg-select__trigger {
  width: 100%;
  min-height: 54px;
  padding: 14px 48px 14px 16px;
  margin-bottom: 0;
  border: 1px solid #d8deea !important;
  border-radius: 0 !important;
  background: #fff !important;
  background-color: #fff !important;
  color: #16303a !important;
  line-height: 24px;
  box-shadow: none !important;
}

.shop-checkout-page .mg-select__trigger:focus,
.shop-checkout-page .mg-select__trigger:focus-visible,
.shop-checkout-page .mg-select.open .mg-select__trigger {
  border: 1px solid rgba(219, 14, 119, 0.45) !important;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
}

.shop-checkout-page .mg-select__value,
.shop-checkout-page .mg-select__placeholder {
  color: #16303a !important;
  font-size: 15px;
  line-height: 24px;
}

.shop-checkout-page .mg-select__trigger .mg-select__arrow,
.shop-checkout-page .mg-select__trigger svg {
  color: #677289 !important;
  fill: #677289 !important;
}

.shop-checkout-form .form-group > select.form-control option,
.camp-participant-card select.form-control option,
.shop-checkout-form select option,
.camp-participant-card select option,
.shop-checkout-page select option {
  background: #fff;
  color: #16303a;
}

.shop-checkout-form .form-group > textarea.form-control,
.camp-participant-card textarea.form-control {
  min-height: 132px;
  height: auto;
  line-height: 1.5;
  resize: vertical;
}

.shop-checkout-form .form-group > .form-control:focus,
.shop-checkout-form .form-group > input.form-control:focus,
.shop-checkout-form .form-group > select.form-control:focus,
.shop-checkout-form .form-group > textarea.form-control:focus,
.shop-checkout-form .form-group > input:focus,
.shop-checkout-form .form-group > select:focus,
.shop-checkout-form .form-group > textarea:focus,
.camp-participant-card .form-control:focus,
.camp-participant-card select.form-control:focus,
.camp-participant-card textarea.form-control:focus,
.camp-participant-card input:focus,
.camp-participant-card select:focus,
.camp-participant-card textarea:focus {
  border: 1px solid rgba(219, 14, 119, 0.45) !important;
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

.shop-checkout-form .form-group > .form-control.is-invalid,
.shop-checkout-form .form-group > input.form-control.is-invalid,
.shop-checkout-form .form-group > select.form-control.is-invalid,
.shop-checkout-form .form-group > textarea.form-control.is-invalid,
.camp-participant-card .form-control.is-invalid,
.camp-participant-card select.form-control.is-invalid,
.camp-participant-card textarea.form-control.is-invalid {
  border-color: #d23167 !important;
  background-color: #fff7fa !important;
}

.shop-checkout-form .form-group > label:not(.checkbox-custom):not(.form-group__label),
.camp-participant-card .form-group > label:not(.checkbox-custom):not(.form-group__label) {
  position: static;
  display: block;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1f273d;
  pointer-events: auto;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  background: transparent !important;
}

.shop-checkout-form .form-group .checkbox-custom {
  position: relative;
  display: block;
  padding-left: 38px;
  line-height: 1.55;
  color: #41506a;
  min-height: 24px;
}

.shop-checkout-form__rules-link {
  color: var(--mg-shop-accent, #db0e77);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.shop-checkout-form__rules-link:hover,
.shop-checkout-form__rules-link:focus {
  color: var(--mg-shop-accent-hover, #b80d65);
  text-decoration-thickness: 2px;
}

.shop-checkout-form .form-group .checkbox-custom .checkbox {
  position: absolute;
  top: 2px;
  left: 0;
}

.shop-checkout-form .form-group.form-group-checkbox {
  margin-top: 4px;
}

.shop-checkout-form .form-group.form-group-checkbox.is-invalid-group .checkbox-custom {
  color: #d23167;
}

.shop-checkout-form .form-group.form-group-checkbox.is-invalid-group .checkbox-custom .checkbox {
  border-color: #d23167 !important;
  background: #fff7fa !important;
  box-shadow: 0 0 0 0.2rem rgba(210, 49, 103, 0.14);
}

.shop-checkout-form .form-group.form-group-checkbox.is-invalid-group .checkbox-custom a {
  color: #d23167;
}

.order-form .shop-checkout-form .btn.btn-primary.btn-pay,
.shop-checkout-form .btn-pay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 0;
  box-shadow: 0 16px 34px var(--mg-shop-accent-shadow);
  justify-self: center;
  min-width: 0;
  margin-top: 8px;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  max-width: 100%;
}

.shop-checkout-side__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.shop-basket-side__product--summary {
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e7ebf3;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.shop-basket-side__product--summary + .shop-basket-side__product--summary {
  border-top: 1px solid #e7ebf3;
}

.shop-basket-side__product--summary .shop-basket-side__product-image {
  pointer-events: none;
}

.shop-basket-side__product--summary .shop-basket-side__product-image img,
.shop-basket-side__product--summary .shop-basket-side__product-image-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #f3f6fb;
}

.shop-checkout-side .shop-basket-side__product-body {
  min-width: 0;
}

.shop-checkout-side .shop-basket-side__product-name {
  color: #1b2237;
  font-size: 14px;
  line-height: 1.3;
}

.shop-basket-side__product--summary small {
  display: block;
  margin-top: 4px;
  color: #6d7590;
  font-size: 12px;
  line-height: 1.4;
}

.shop-checkout-side .shop-basket-side__product-price {
  color: #141b2d;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.shop-checkout-side .shop-basket-side__summary {
  border-top: 1px solid #e8edf5;
  padding-top: 16px;
}

.shop-checkout-side__footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #e8edf5;
}

.shop-checkout-side__edit-cart--bottom {
  width: 100%;
  min-height: 46px;
  font-size: 13px;
  border-radius: 14px;
}

.shop-checkout-side .shop-basket-side__summary-row {
  color: #667089;
}

.shop-checkout-side .shop-basket-side__summary-row strong {
  color: #141b2d;
}

.shop-checkout-side .shop-basket-side__summary-row--total span,
.shop-checkout-side .shop-basket-side__summary-row--total strong {
  color: #141b2d;
}

.shop-checkout-side .shop-basket-side__summary-row--total {
  align-items: flex-end;
  gap: 10px;
}

.shop-checkout-side .shop-basket-side__summary-row--total span {
  max-width: 96px;
  line-height: 1.15;
}

.shop-checkout-side .shop-basket-side__summary-row--total strong {
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.order-form__camp-survey {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e8edf5;
}

.camp-participants-builder__hint {
  margin: 0 0 16px;
  color: #6b7389;
  font-size: 14px;
  line-height: 1.6;
}

.camp-participants-builder__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.shop-basket-side__camp-payment {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid var(--mg-shop-accent-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7fc 0%, #ffffff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.shop-basket-side__camp-payment-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.shop-basket-side__camp-payment-head strong {
  font-size: 16px;
  line-height: 1.3;
}

.shop-basket-side__camp-payment-head small {
  color: #7e859f;
  font-size: 12px;
  line-height: 1.45;
}

.shop-basket-side__camp-payment-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.shop-basket-side__camp-payment-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  padding: 12px 14px;
  transition: .2s ease;
}

.shop-basket-side__camp-payment-btn.is-active {
  border-color: var(--mg-shop-accent);
  background: var(--mg-shop-accent);
  color: #ffffff;
  box-shadow: 0 14px 28px var(--mg-shop-accent-shadow);
}

.shop-basket-side__camp-payment-note,
.shop-basket-side__camp-payment-remaining {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.shop-basket-side__camp-payment-remaining {
  margin-top: 6px;
  color: #7e859f;
}

.shop-basket-side__camp-payment-remaining.is-hidden {
  display: none;
}

.shop-checkout-side .shop-basket-side__shipping-message {
  color: #5d667f;
}

.shop-checkout-side .shop-basket-side__shipping-message.is-error {
  color: #d23167;
}

.shop-checkout-side .shop-basket-side__shipping-message.is-success {
  color: #178e54;
}

.camp-participant-card {
  padding: 0 0 8px;
}

.camp-participant-card + .camp-participant-card {
  padding-top: 22px;
  border-top: 1px solid #e8edf5;
}

.camp-participant-card h4 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  color: #1f2433;
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.camp-participant-card .form-group {
  gap: 6px;
  margin-bottom: 14px;
}

.camp-participant-card .checkbox-multiple {
  margin-top: 4px;
  padding-top: 4px;
}

.camp-participant-card .checkbox-custom {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
  color: #41506a;
}

@media (max-width: 1199px) {
  .shop-checkout-main {
    padding: 24px;
  }

  .shop-checkout-form .selected,
  .order-form__camp-survey .selected {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .shop-basket-layout {
    grid-template-columns: 1fr;
  }

  .shop-basket-main__title {
    font-size: 30px;
  }

  .shop-basket-item {
    grid-template-columns: 1fr;
  }

  .shop-basket-item__thumb-link {
    width: 100%;
  }

  .shop-basket-item__thumb img,
  .shop-basket-item__thumb-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .shop-basket-item__aside {
    align-items: flex-start;
    padding-top: 4px;
  }

  .shop-basket-item__aside-footer {
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 12px;
  }

  .shop-basket-item__pricing {
    align-items: flex-start;
  }

  .shop-basket-item__remove {
    left: 0;
    right: auto;
    justify-content: flex-start;
  }

  .shop-product-hero__grid {
    grid-template-columns: 1fr;
  }

  .shop-product-hero__gallery {
    position: static;
  }

  .shop-product-lightbox {
    padding: 16px;
  }

  .shop-product-lightbox__frame {
    padding: 16px;
    border-radius: 18px;
  }

  .shop-product-lightbox__close {
    top: 8px;
    right: 8px;
  }

  .shop-product-lightbox__arrow {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    font-size: 28px;
  }

  .shop-product-buy-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-product-buy-bar__actions {
    width: 100%;
  }

  .shop-product-buy-bar__actions .btn {
    flex: 1 1 auto;
  }

  .shop-product-usp-strip__grid,
  .shop-product-feature-grid__grid,
  .shop-product-story-split__stats,
  .shop-product-story-split__grid,
  .shop-product-before-after__item,
  .shop-product-before-after__columns,
  .shop-product-comparison__row,
  .shop-product-reviews__grid,
  .shop-product-how-to__step {
    grid-template-columns: 1fr;
  }

  .shop-single-product-widget {
    grid-template-columns: 1fr;
  }

  .shop-box .products-list.products-carousel {
    grid-template-columns: 1fr;
  }

  .shop-checkout-page {
    padding: 0 0 42px;
  }

  .shop-checkout-main {
    padding: 20px;
  }

  .shop-checkout-side {
    position: static;
    top: auto;
  }

  .order-form__camp-survey {
    padding-top: 22px;
  }
}

@media (max-width: 640px) {
  .shop-product-hero__content h1 {
    font-size: 36px;
  }

  .shop-product-hero__summary-card {
    padding: 18px;
    border-radius: 18px;
  }

  .shop-product-hero__quantity-label {
    flex-basis: 100%;
  }

  .shop-product-hero__actions .btn.btn-primary,
  .shop-product-hero__cart-link {
    width: 100%;
  }

  .shop-product-buy-bar {
    bottom: 10px;
  }

  .shop-product-usp-strip__grid,
  .shop-product-feature-grid__grid,
  .shop-product-story-split__stats {
    grid-template-columns: 1fr;
  }

  .shop-mini-cart__panel {
    width: 100vw;
  }

  .shop-checkout-main {
    padding: 18px;
    border-radius: 18px;
  }

  .shop-checkout-header .shop-basket-main__title {
    font-size: 30px;
  }

  .shop-checkout-form .selected,
  .order-form__camp-survey .selected {
    font-size: 24px;
  }

  .shop-checkout-form .btn-pay {
    width: 100%;
    justify-self: stretch;
  }

  .shop-checkout-side__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-checkout-side__edit-cart {
    width: 100%;
  }
}
