.shop-v2-page {
  padding-top: 36px;
  padding-bottom: 56px;
}

.shop-v2-landing,
.shop-v2-hero {
  max-width: 1040px;
  margin: 0 auto 32px;
}

.shop-v2-landing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.shop-v2-kicker {
  margin-bottom: 10px;
  color: var(--shop-v2-main-color, #6b6b6b);
  font-size: var(--shop-v2-font-size-lg);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-v2-title,
.shop-v2-hero__title {
  margin: 0 0 14px;
  color: #3c3f3f;
  font-size: clamp(var(--shop-v2-font-size-10xl), 4.4vw, var(--shop-v2-font-size-13xl));
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.shop-v2-lead,
.shop-v2-hero__content {
  max-width: 760px;
  color: #5a5f63;
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.78;
}

.shop-v2-hero--contrast-safe .shop-v2-kicker,
.shop-v2-hero--contrast-safe .shop-v2-hero__title,
.shop-v2-hero--contrast-safe .shop-v2-hero__content,
.shop-v2-hero--contrast-safe .shop-v2-hero__content a {
  color: var(--shop-v2-intro-text-color, #3c3f3f);
}

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

.shop-v2-layout--no-aside {
  grid-template-columns: minmax(0, 1fr);
}

.shop-v2-layout__aside,
.shop-v2-aside {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 20px;
}

.shop-v2-aside__card {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shop-v2-landing-categories {
  margin-bottom: 24px;
}

.shop-v2-hero-image {
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

.shop-v2-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

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

.shop-v2-catalog-grid--row {
  grid-template-columns: minmax(0, 1fr);
}

.shop-v2-catalog-grid--secondary {
  margin-top: 24px;
}

.shop-v2-restaurants {
  margin-top: 32px;
}

.shop-v2-section-title {
  margin: 0 0 18px;
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-8xl, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.shop-v2-restaurant-card {
  min-width: 0;
  width: 100%;
}

.shop-v2-restaurant-card .btn {
  border-radius: 999px;
}

.shop-v2-restaurant-card .shop-v2-restaurant-card__title a,
.shop-v2-restaurant-card .shop-v2-restaurant-card__media-link {
  color: inherit;
  text-decoration: none;
}

.shop-v2-restaurant-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.shop-v2-restaurant-card--row {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  min-height: 300px;
}

.shop-v2-catalog-grid--row .shop-v2-restaurant-card {
  min-height: 100%;
}

.shop-v2-restaurant-card__media {
  position: relative;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(67, 199, 242, 0.18), rgba(15, 23, 42, 0.85));
}

.shop-v2-restaurant-card--row .shop-v2-restaurant-card__media {
  min-height: 100%;
  aspect-ratio: auto;
}

.shop-v2-restaurant-card__banner,
.shop-v2-restaurant-card__banner--placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-v2-restaurant-card__banner--placeholder {
  min-height: 220px;
  background: linear-gradient(135deg, rgba(67, 199, 242, 0.25), rgba(15, 23, 42, 0.88));
}

.shop-v2-restaurant-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(15, 23, 42, 0.55) 100%);
}

.shop-v2-restaurant-card__logo {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-v2-restaurant-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shop-v2-restaurant-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  flex: 1;
}

.shop-v2-restaurant-card--row .shop-v2-restaurant-card__body {
  display: flex;
}

.shop-v2-restaurant-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.shop-v2-restaurant-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 8px;
}

.shop-v2-restaurant-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
}

.shop-v2-restaurant-card__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-v2-restaurant-card__status.is-open {
  background: rgba(16, 185, 129, 0.12);
  color: #15803d;
}

.shop-v2-restaurant-card__status.is-closed {
  background: rgba(148, 163, 184, 0.18);
  color: #475569;
}

.shop-v2-restaurant-card__description {
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  color: #5a5f63;
}

.shop-v2-restaurant-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shop-v2-restaurant-card__meta strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.shop-v2-restaurant-card__footer {
  margin-top: auto;
}

.shop-v2-restaurant-card__cta {
  width: 100%;
  border-radius: 999px;
  padding: 12px 18px;
}

.shop-v2-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-v2-card--row {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  min-height: 300px;
}

.shop-v2-card--row .shop-v2-card__body {
  display: flex;
  flex-direction: column;
}

.shop-v2-card--row .shop-v2-card__media {
  aspect-ratio: auto;
  min-height: 100%;
}

.shop-v2-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
}

.shop-v2-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dbe7ed, #f7fbfd);
}

.shop-v2-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-v2-card__image--placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(85, 117, 132, 0.12), rgba(93, 196, 241, 0.18)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 10px,
      rgba(255, 255, 255, 0.06) 10px,
      rgba(255, 255, 255, 0.06) 20px
    );
}

.shop-v2-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--shop-v2-pop-voucher-background-color, #5dc4f1) 16%, white);
  color: var(--shop-v2-pop-voucher-text-color, #0b6b47);
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--shop-v2-pop-voucher-background-color, #5dc4f1) 20%, transparent);
}

.shop-v2-card__body {
  padding: 18px 18px 20px;
}

.shop-v2-card__eyebrow {
  margin-bottom: 8px;
  color: #557584;
  font-size: var(--shop-v2-font-size-sm);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-v2-card__title {
  margin: 0 0 10px;
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-7xl);
  line-height: 1.08;
  font-weight: 800;
}

.shop-v2-card__title a {
  color: inherit;
  text-decoration: none;
}

.shop-v2-card__description {
  min-height: 72px;
  margin: 0 0 14px;
  color: #5a5f63;
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.6;
}

.shop-v2-card--row .shop-v2-card__description {
  min-height: 0;
}

.shop-v2-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.shop-v2-card__fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #54626b;
  font-size: var(--shop-v2-font-size-base);
  font-weight: 700;
}

.shop-v2-card__fact i {
  color: #557584;
}

.shop-v2-card__price-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.shop-v2-card__price-table {
  display: grid;
  gap: 0;
  margin-top: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 24px;
  background: #ffffff;
}

.shop-v2-card__price-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: #ffffff;
}

.shop-v2-card__price-line + .shop-v2-card__price-line {
  border-top: 1px solid #ececec;
}

.shop-v2-card__price-line--best {
  background: color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 10%, white);
}

.shop-v2-card__price-line-label {
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.shop-v2-card__price-line--best .shop-v2-card__price-line-label {
  color: #008f5b;
}

.shop-v2-card__price-line--best .shop-v2-card__price-line-value {
  color: #008f5b;
}

.shop-v2-card__price-line-value-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  white-space: nowrap;
}

.shop-v2-card__price-line-value {
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.1;
  font-weight: 800;
}

.shop-v2-card__price-discount {
  color: #00915f;
  font-size: var(--shop-v2-font-size-md);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.shop-v2-card__price-label {
  color: #7c7c7c;
  font-size: var(--shop-v2-font-size-base);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-v2-card__price {
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-4xl);
  line-height: 1;
  font-weight: 800;
}

.shop-v2-card__actions {
  display: grid;
  gap: 16px;
}

.shop-v2-card--row .shop-v2-card__actions {
  margin-top: auto;
}

.shop-v2-card__purchase {
  display: grid;
  gap: 18px;
}

.shop-v2-card__purchase-row {
  display: grid;
  grid-template-columns: auto minmax(200px, 220px);
  gap: 22px;
  align-items: center;
}

.shop-v2-card__purchase-price {
  min-width: 0;
}

.shop-v2-card__price-row--purchase {
  margin: 0;
}

.shop-v2-card__purchase-cta {
  display: flex;
  justify-content: flex-end;
}

.shop-v2-card__purchase-row .shop-v2-card__cta--primary {
  width: 100%;
  max-width: 280px;
}

.shop-v2-card__purchase-row .shop-v2-card__cta--with-arrow {
  min-height: 84px;
}

.shop-v2-card__cta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 10px 18px;
  border: 0;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shop-v2-card__cta:hover {
  transform: translateY(-1px);
}

.shop-v2-card__cta--primary {
  background: linear-gradient(
    135deg,
    var(--shop-v2-buy-buttons-bg-color, #f49738) 0%,
    color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #ffb04f) 72%, white) 100%
  );
  color: var(--shop-v2-buy-buttons-text-color, var(--shop-v2-main-color-text-color, #ffffff));
  box-shadow: 0 12px 22px color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #5dc4f1) 24%, transparent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shop-v2-card__cta--with-arrow {
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.shop-v2-card__cta--secondary {
  border: 1px solid color-mix(in srgb, var(--other-buttons-text-color, #557584) 22%, transparent);
  background: color-mix(in srgb, var(--shop-v2-other-buttons-bg-color, #ffffff) 92%, white);
  color: var(--other-buttons-text-color, #3c3f3f);
}

.shop-v2-card__cta--gift {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: start;
  padding-left: 22px;
  padding-right: 22px;
  min-height: 84px;
  border-color: color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 34%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 12%, white), color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 8%, white));
  color: #3c3f3f;
}

.shop-v2-card__cta--gift:hover {
  transform: translateY(-1px);
}

.shop-v2-card__button-copy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.shop-v2-card__button-title {
  font-size: var(--shop-v2-font-size-base);
  line-height: 1;
  font-weight: 800;
}

.shop-v2-card__button-subtitle {
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.12;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.shop-v2-card__cta--gift .shop-v2-card__button-copy {
  align-items: flex-start;
  text-align: left;
  flex-direction: column;
  gap: 2px;
}

.shop-v2-card__cta--gift .shop-v2-card__button-title {
  font-size: var(--shop-v2-font-size-base);
}

.shop-v2-card__cta--gift .shop-v2-card__button-subtitle {
  color: #6e7c86;
}

.shop-v2-card__button-arrow {
  margin-left: 0;
  color: inherit;
  font-size: var(--shop-v2-font-size-5xl);
  line-height: 1;
  font-weight: 700;
}

.shop-v2-card__gift-title {
  font-weight: 800;
  line-height: 1.1;
}

.shop-v2-card__gift-subtitle {
  margin-top: 2px;
  color: #6b6b6b;
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.15;
}

.shop-v2-empty {
  padding: 32px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  color: #5a5f63;
  text-align: center;
}

@media (max-width: 1199px) {
  .shop-v2-layout,
  .shop-v2-landing {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-v2-layout__aside,
  .shop-v2-aside {
    position: static;
  }

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

  .shop-v2-card--row {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-v2-restaurant-card--row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .shop-v2-page {
    padding-top: 18px;
    padding-bottom: 34px;
  }

  .shop-v2-catalog-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .shop-v2-card--row {
    min-height: 0;
  }

  .shop-v2-card__body {
    padding: 16px;
  }

  .shop-v2-card__title {
    font-size: var(--shop-v2-font-size-4xl);
  }

  .shop-v2-card__description {
    min-height: 0;
  }

  .shop-v2-card__actions {
    gap: 12px;
  }

  .shop-v2-card__purchase-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .shop-v2-card__cta--gift {
    min-height: 82px;
  }
}

.shop-catalog-v2 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 32px 80px;
  color: #2e2e2e;
}

/* These surfaces are intentionally always white: keep their content readable
 * even when the shop's theme text color is light. */
body.shop-shell-v2 .shop-catalog-v2__inclusion,
body.shop-shell-v2 .shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-title,
body.shop-shell-v2 .shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-desc,
body.shop-shell-v2 .shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-desc a,
body.shop-shell-v2 .shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-desc strong,
body.shop-shell-v2 .shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-desc em {
  color: #000000;
}

/* The sidebar card is also white; "starting from" must not inherit a light
 * secondary theme color. */
body.shop-shell-v2 .shop-catalog-v2__sidebar-card .shop-catalog-v2__price-label {
  color: #000000;
}

.shop-catalog-v2__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: var(--shop-v2-font-size-base);
  color: #6b6b6b;
}

.shop-catalog-v2__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.shop-catalog-v2__breadcrumb a:hover {
  color: #557584;
}

.shop-catalog-v2__breadcrumb-sep {
  color: currentColor;
  opacity: 0.55;
}

.shop-catalog-v2__hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(135deg, #31414a 0%, #49616d 45%, #7f9cab 100%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.shop-catalog-v2__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.shop-catalog-v2__hero-overlay {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 44px 48px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--shop-v2-product-header-bg-color, #0a0e11) 74%, transparent) 0%,
    color-mix(in srgb, var(--shop-v2-product-header-bg-color, #0a0e11) 34%, transparent) 56%,
    transparent 100%
  );
}

.shop-catalog-v2__eyebrow {
  font-size: var(--shop-v2-font-size-sm);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--shop-v2-main-color, #5dc4f1);
}

.shop-catalog-v2__title {
  margin: 0;
  color: var(--shop-v2-product-header-text-color, var(--shop-v2-main-color-text-color, #fff));
  font-size: clamp(var(--shop-v2-font-size-5xl), 5.2vw, var(--shop-v2-font-size-8xl));
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.shop-catalog-v2__lead {
  max-width: 820px;
  margin: 0;
  color: color-mix(in srgb, var(--shop-v2-product-header-text-color, #fff) 90%, transparent);
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.76;
}

.shop-catalog-v2__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.shop-catalog-v2__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.shop-catalog-v2__stars {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 16px;
  background-size: 18px 16px;
  background-repeat: repeat-x;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 0 26 24'%3E%3Cpath fill='rgba(255,255,255,0.28)' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.shop-catalog-v2__stars::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--pct, 100%);
  background-size: 18px 16px;
  background-repeat: repeat-x;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 0 26 24'%3E%3Cpath fill='%23ffc31b' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.shop-catalog-v2__rating {
  color: var(--shop-v2-product-header-text-color, var(--shop-v2-main-color-text-color, #fff));
  font-weight: 800;
}

.shop-catalog-v2__rating-count {
  color: color-mix(in srgb, var(--shop-v2-product-header-text-color, #fff) 68%, transparent);
  font-size: var(--shop-v2-font-size-md);
}

.shop-catalog-v2__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-catalog-v2__cta,
.shop-catalog-v2__hero-btn,
.shop-catalog-v2__cta-secondary,
.shop-catalog-v2__sidebar-cta,
.shop-catalog-v2__sidebar-gift {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.shop-catalog-v2__cta:hover,
.shop-catalog-v2__hero-btn:hover,
.shop-catalog-v2__cta-secondary:hover,
.shop-catalog-v2__sidebar-cta:hover,
.shop-catalog-v2__sidebar-gift:hover {
  transform: translateY(-1px);
}

.shop-catalog-v2__hero-btn {
  border: 0;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
}

.shop-catalog-v2__hero-btn i {
  font-size: var(--shop-v2-font-size-md);
}

.shop-catalog-v2__hero-btn span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.shop-catalog-v2__hero-btn small {
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 600;
  opacity: 0.92;
  text-transform: none;
  letter-spacing: 0;
}

.shop-catalog-v2__hero-btn--primary {
  color: var(--shop-v2-buy-buttons-text-color, var(--shop-v2-main-color-text-color, #fff));
  background: linear-gradient(
    135deg,
    var(--shop-v2-buy-buttons-bg-color, #f49738) 0%,
    color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #ffb04f) 72%, white) 100%
  );
  box-shadow: 0 14px 28px color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #f49738) 34%, transparent);
}

.shop-catalog-v2__hero-btn--secondary {
  min-height: 72px;
  padding: 14px 18px;
  align-items: center;
  color: var(--shop-v2-other-buttons-text-color, #3c3f3f);
  border: 1px solid color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 28%, white);
  background: linear-gradient(180deg, rgba(245, 248, 250, 0.98), rgba(236, 242, 245, 0.98));
  box-shadow: 0 8px 18px rgba(25, 39, 48, 0.08);
  text-transform: none;
  letter-spacing: 0;
}

.shop-catalog-v2__hero-btn--secondary i {
  color: var(--shop-v2-main-color, #5dc4f1);
  font-size: var(--shop-v2-font-size-base);
  flex: 0 0 auto;
}

.shop-catalog-v2__hero-btn--secondary span {
  gap: 2px;
  align-items: flex-start;
}

.shop-catalog-v2__hero-btn--secondary small {
  color: #6e7c86;
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 700;
  opacity: 1;
}

.shop-catalog-v2__hero-btn--secondary:hover {
  box-shadow: 0 10px 22px rgba(25, 39, 48, 0.1);
}

.shop-catalog-v2__cta {
  color: var(--shop-v2-buy-buttons-text-color, var(--shop-v2-main-color-text-color, #fff));
  background: linear-gradient(
    135deg,
    var(--shop-v2-buy-buttons-bg-color, #f49738) 0%,
    color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #ffb04f) 72%, white) 100%
  );
  box-shadow: 0 14px 28px color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #f49738) 34%, transparent);
}

.shop-catalog-v2__cta-secondary {
  color: var(--shop-v2-other-buttons-text-color, var(--shop-v2-main-color-text-color, #fff));
  border: 1.5px solid color-mix(in srgb, var(--shop-v2-other-buttons-text-color, #fff) 46%, transparent);
  background: color-mix(in srgb, var(--shop-v2-other-buttons-bg-color, transparent) 85%, rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(8px);
}

.shop-catalog-v2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  margin-top: 30px;
}

.shop-catalog-v2__section {
  margin-bottom: 34px;
}

.shop-catalog-v2__section-title {
  margin: 0 0 16px;
  color: var(--shop-v2-product-section-title-color, var(--shop-v2-product-header-text-color, #3c3f3f));
  font-size: var(--shop-v2-font-size-8xl);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.shop-catalog-v2__section--contrast-safe .shop-catalog-v2__section-title,
.shop-catalog-v2__section--contrast-safe .shop-catalog-v2__prose,
.shop-catalog-v2__section--contrast-safe .shop-catalog-v2__prose a,
.shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-title,
.shop-catalog-v2__section--contrast-safe .shop-catalog-v2__inclusion-desc {
  color: var(--shop-v2-content-text-color, #3c3f3f);
}

.shop-catalog-v2__section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--shop-v2-main-color, #5dc4f1);
}

.shop-catalog-v2__prose {
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.78;
}

.shop-catalog-v2__prose p {
  margin: 0 0 14px;
}

.shop-catalog-v2__description-complement {
  margin-top: 14px;
}

.shop-catalog-v2__description-complement:first-child {
  margin-top: 0;
}

.shop-catalog-v2__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.shop-catalog-v2__fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--shop-v2-product-fact-bg-color, #ffffff);
  border: 1px solid rgba(60, 63, 63, 0.08);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-md);
  font-weight: 700;
}

.shop-catalog-v2__fact i {
  color: var(--shop-v2-main-color, #557584);
}

.shop-catalog-v2__inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.shop-catalog-v2__inclusion {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(60, 63, 63, 0.07);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 10px 24px rgba(0, 0, 0, 0.05);
}

.shop-catalog-v2__inclusion-title {
  margin: 0 0 6px;
  color: var(--shop-v2-product-section-title-color, #3c3f3f);
  font-size: var(--shop-v2-font-size-lg);
  font-weight: 800;
}

.shop-catalog-v2__inclusion-desc {
  margin: 0;
  color: #6b6b6b;
  font-size: var(--shop-v2-font-size-md);
  line-height: 1.55;
}

.shop-catalog-v2__sidebar {
  position: sticky;
  top: 90px;
}

.shop-catalog-v2__sidebar-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(60, 63, 63, 0.06);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
}

.shop-catalog-v2__sidebar-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #dce7ec 0%, #f7fbfd 100%);
}

.shop-catalog-v2__sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-catalog-v2__sidebar-body {
  padding: 18px 18px 20px;
}

.shop-catalog-v2__sidebar-kicker {
  margin-bottom: 4px;
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-sm);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-catalog-v2__sidebar-title {
  margin: 0 0 12px;
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-6xl);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.shop-catalog-v2__sidebar-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.shop-catalog-v2__sidebar-rating .shop-catalog-v2__stars {
  width: 76px;
  height: 13px;
  background-size: 15px 13px;
}

.shop-catalog-v2__sidebar-rating-val {
  font-weight: 800;
}

.shop-catalog-v2__sidebar-rating-count {
  color: var(--shop-v2-secondary-color, #6b6b6b);
  font-size: var(--shop-v2-font-size-base);
}

.shop-catalog-v2__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.shop-catalog-v2__price-label {
  color: var(--shop-v2-secondary-color, #6b6b6b);
  font-size: var(--shop-v2-font-size-sm);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-catalog-v2__price {
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-9xl);
  font-weight: 800;
  line-height: 1;
}

.shop-catalog-v2__price small {
  margin-left: 4px;
  color: var(--shop-v2-secondary-color, #6b6b6b);
  font-size: var(--shop-v2-font-size-base);
  font-weight: 700;
}

.shop-catalog-v2__sidebar-cta-row {
  display: grid;
  gap: 10px;
}

.shop-catalog-v2__sidebar-cta {
  width: 100%;
  min-height: 54px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--shop-v2-buy-buttons-text-color, var(--shop-v2-main-color-text-color, #fff));
  background: linear-gradient(
    135deg,
    var(--shop-v2-buy-buttons-bg-color, #f49738) 0%,
    color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #ffb04f) 68%, white) 100%
  );
  box-shadow: 0 12px 24px color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #f49738) 28%, transparent);
  font-size: var(--shop-v2-font-size-base);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.shop-catalog-v2__sidebar-cta-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  line-height: 1;
}

.shop-catalog-v2__sidebar-cta i {
  font-size: var(--shop-v2-font-size-base);
}

.shop-catalog-v2__sidebar-gift {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px 22px;
  text-transform: none;
  border-radius: 20px;
  border-color: color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 34%, transparent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 12%, white), color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 8%, white));
  box-shadow: 0 12px 24px color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 18%, transparent);
}

.shop-catalog-v2__sidebar-gift-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--shop-v2-main-color, #5dc4f1);
  background: rgba(255, 255, 255, 0.88);
  flex: 0 0 auto;
}

.shop-catalog-v2__sidebar-gift-icon i {
  font-size: var(--shop-v2-font-size-lg);
}

.shop-catalog-v2__sidebar-gift-copy {
  align-items: flex-start;
  gap: 3px;
}

.shop-catalog-v2__sidebar-gift .shop-v2-card__gift-title {
  font-size: var(--shop-v2-font-size-md);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.shop-catalog-v2__sidebar-gift .shop-v2-card__gift-subtitle {
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 700;
  line-height: 1.05;
  color: #6e7c86;
}

.shop-catalog-v2__sidebar-gift .shop-v2-card__button-arrow {
  font-size: var(--shop-v2-font-size-xl);
  color: #49545b;
}

.shop-catalog-v2__review-summary {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(60, 63, 63, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 10px 22px rgba(0, 0, 0, 0.04);
}

.shop-catalog-v2__review-score {
  color: var(--shop-v2-main-color, #3c3f3f);
  font-size: var(--shop-v2-font-size-12xl);
  font-weight: 800;
  line-height: 1;
}

.shop-catalog-v2__review-meta {
  display: grid;
  gap: 4px;
}

.shop-catalog-v2__review-meta strong {
  color: #3c3f3f;
}

.shop-catalog-v2__review-bars {
  display: grid;
  gap: 5px;
}

.shop-catalog-v2__review-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color-text-color, #6b6b6b);
  font-size: var(--shop-v2-font-size-sm);
}

.shop-catalog-v2__review-bar-track {
  flex: 1;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(60, 63, 63, 0.08);
}

.shop-catalog-v2__review-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: #ffc31b;
}

.shop-catalog-v2__review-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.shop-catalog-v2__review-card {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(60, 63, 63, 0.06);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.shop-catalog-v2__review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.shop-catalog-v2__review-card-name {
  color: #3c3f3f;
  font-weight: 800;
}

.shop-catalog-v2__review-card-date {
  color: var(--shop-v2-secondary-color, #6b6b6b);
  font-size: var(--shop-v2-font-size-xxs);
}

.shop-catalog-v2__review-card-stars {
  margin-bottom: 8px;
}

.shop-catalog-v2__review-card-text {
  margin: 0;
  color: var(--shop-v2-secondary-color-text-color, #2e2e2e);
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.6;
}

.shop-catalog-v2__review-card-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--shop-v2-opt-products-caption-gradient-color1, var(--shop-v2-main-color, #5dc4f1)) 18%, transparent) 0%,
    color-mix(in srgb, var(--shop-v2-opt-products-caption-gradient-color2, var(--shop-v2-secondary-color, #8cb1c0)) 18%, transparent) 100%
  );
  color: var(--shop-v2-opt-products-caption-title-color, #557584);
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 800;
}

.shop-catalog-v2__event-form {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(60, 63, 63, 0.08);
}

.shop-catalog-v2__event-form-head {
  max-width: 860px;
  margin-bottom: 22px;
}

.shop-catalog-v2__event-form-title {
  margin: 0 0 10px;
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-8xl);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.shop-catalog-v2__event-form-description {
  max-width: 860px;
  color: #5a5f63;
  font-size: var(--shop-v2-font-size-base);
  line-height: 1.78;
}

.shop-catalog-v2__event-form-fields {
  display: grid;
  gap: 18px;
}

.shop-catalog-v2__event-form-fields .event_form_div_title {
  width: auto;
  margin: 0;
  text-align: left;
}

.shop-catalog-v2__event-form-fields .event_form_div_title label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #557584;
  font-size: var(--shop-v2-font-size-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-catalog-v2__event-form-fields .event_form_div_content {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 8px;
}

.shop-catalog-v2__event-form-fields .event_form_input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(60, 63, 63, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: #3c3f3f;
  font-size: var(--shop-v2-font-size-md);
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.shop-catalog-v2__event-form-fields .event_form_input:focus {
  border-color: color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 78%, white);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 14%, transparent);
  background: #ffffff;
}

.shop-catalog-v2__event-form-fields textarea.event_form_input {
  min-height: 140px;
  resize: vertical;
}

.shop-catalog-v2__event-form-fields select.event_form_input {
  cursor: pointer;
}

.shop-catalog-v2__event-form-fields button.btn {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.shop-catalog-v2__event-form-fields button.btn .date-button {
  width: 100%;
}

.shop-catalog-v2__event-form-fields .charNum {
  margin-top: -2px;
  color: #7c7c7c;
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
}

.shop-catalog-v2__event-form-fields #event_form_email_error {
  color: #c44747;
  font-size: var(--shop-v2-font-size-xxs);
  font-weight: 700;
  line-height: 1.3;
}

.shop-catalog-v2__event-form-honeypot {
  display: none !important;
}

.shop-catalog-v2__event-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.shop-catalog-v2__event-form-submit {
  min-width: 220px;
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: var(--shop-v2-buy-buttons-text-color, var(--shop-v2-main-color-text-color, #fff));
  background: linear-gradient(
    135deg,
    var(--shop-v2-buy-buttons-bg-color, #f49738) 0%,
    color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #ffb04f) 72%, white) 100%
  );
  box-shadow: 0 14px 28px color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #f49738) 30%, transparent);
  font-size: var(--shop-v2-font-size-lg);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.shop-catalog-v2__event-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px color-mix(in srgb, var(--shop-v2-buy-buttons-bg-color, #f49738) 34%, transparent);
}

.shop-catalog-v2__event-form-success {
  padding: 18px 20px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 8%, white);
  color: #3c3f3f;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 1100px) {
  .shop-catalog-v2__grid {
    grid-template-columns: 1fr;
  }

  .shop-catalog-v2__sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .shop-catalog-v2 {
    padding: 22px 16px 60px;
  }

  .shop-catalog-v2__hero,
  .shop-catalog-v2__hero-overlay {
    min-height: 320px;
  }

  .shop-catalog-v2__hero-overlay {
    padding: 28px 22px;
  }

  .shop-catalog-v2__hero-actions {
    width: 100%;
  }

  .shop-catalog-v2__hero-btn {
    width: 100%;
  }

  .shop-catalog-v2__inclusions,
  .shop-catalog-v2__review-summary {
    grid-template-columns: 1fr;
  }

  .shop-catalog-v2__review-summary {
    gap: 12px;
  }

  .shop-catalog-v2__event-form {
    margin-top: 28px;
    padding-top: 24px;
  }

  .shop-catalog-v2__event-form-title {
    font-size: var(--shop-v2-font-size-6xl);
  }

  .shop-catalog-v2__event-form-submit {
    width: 100%;
    min-width: 0;
  }
}

/* Cross-selling on catalog detail uses its own V2 cards, but lives outside
 * the checkout scope so it needs its own catalogue-page layout rules. */
body.shop-shell-v2 .shop-catalog-v2 .catalog-cross-selling-bloc--v2 {
  color: var(--shop-v2-cross-selling-text-color, var(--shop-v2-product-section-title-color, #3c3f3f));
  margin: 42px 0 0;
}

body.shop-shell-v2 .shop-catalog-v2 .catalog-cross-selling-bloc__heading {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

body.shop-shell-v2 .shop-catalog-v2 .catalog-cross-selling-bloc__kicker {
  color: var(--shop-v2-cross-selling-text-color, var(--shop-v2-product-section-title-color, #3c3f3f));
  font-family: var(--main-font-family-display);
  font-size: var(--shop-v2-font-size-4xl);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-products-bloc--v2 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(60, 63, 63, .08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .08);
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__media {
  display: block;
  overflow: hidden;
  position: relative;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__media::after {
  background: linear-gradient(to top, rgba(10, 10, 10, .68), rgba(10, 10, 10, .08) 70%, rgba(10, 10, 10, 0));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__placeholder {
  align-items: center;
  color: color-mix(in srgb, var(--shop-v2-main-color, #5dc4f1) 70%, #3c3f3f);
  display: grid;
  font-size: 42px;
  height: 100%;
  justify-content: center;
  min-height: 220px;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__media-title {
  bottom: 14px;
  color: #fff;
  font-family: var(--main-font-family-display);
  font-size: var(--shop-v2-font-size-2xl);
  font-weight: 900;
  left: 16px;
  line-height: 1.05;
  max-width: calc(100% - 32px);
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__body {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 18px 20px;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__body .shop-catalog-v2__sidebar-title,
body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__body .shop-catalog-v2__section-title,
body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__body .shop-catalog-v2__prose,
body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__body .shop-catalog-v2__prose a {
  color: #000;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__title {
  margin: 0;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__title-link,
body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__title-link:hover,
body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__title-link:focus {
  color: inherit;
  text-decoration: none;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__inclusions {
  margin: 0;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__inclusions-title {
  font-size: var(--shop-v2-font-size-xs);
  margin: 0 0 8px;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__inclusions-list {
  margin: 0;
  padding-left: 18px;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__cta-row {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__action {
  min-height: 60px;
  width: 100%;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__action-copy {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__action-label {
  font-size: var(--shop-v2-font-size-sm);
  font-weight: 800;
  line-height: 1.1;
}

body.shop-shell-v2 .shop-catalog-v2 .recommended-product-card__action-price {
  font-size: var(--shop-v2-font-size-xl);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

@media (max-width: 900px) {
  body.shop-shell-v2 .shop-catalog-v2 .recommended-products-bloc--v2 {
    grid-template-columns: 1fr;
  }
}
