.boc-showcase {
  --boc-gap: clamp(8px, 1vw, 12px);
  --boc-columns: 4;
  --boc-card-radius: 22px;
  --boc-surface-color: #0b0237;
  --boc-surface-color-end: #09002c;
  --boc-surface-rgb: 11, 2, 55;
  --boc-nav-opacity: 0.75;
  --boc-card-bg: linear-gradient(180deg, var(--boc-surface-color) 0%, var(--boc-surface-color-end) 100%);
  --boc-shadow: none;
  --boc-shadow-hover: none;
  --boc-text: #ffffff;
  --boc-muted: rgba(226, 224, 245, 0.62);
  --boc-accent: #f1b403;
  --boc-button-top: #67e367;
  --boc-button-bottom: #2cc040;
  --boc-shell-gutter: clamp(10px, 1.8vw, 22px);
  --boc-nav-zone: clamp(34px, 4.5vw, 54px);
  --boc-nav-zone-mobile: 44px;
  --boc-max-width: 1440px;
  --boc-hover-space-y: clamp(10px, 1vw, 16px);
  --boc-hover-space-x: clamp(8px, 0.9vw, 12px);
  --boc-nav-opacity-hover: 0.87;

  position: relative;
  width: 100%;
  max-width: min(100%, var(--boc-max-width));
  margin-inline: auto;
  min-width: 0;
  box-sizing: border-box;
  padding: var(--boc-hover-space-y) calc(var(--boc-nav-zone) + var(--boc-shell-gutter)) calc(var(--boc-hover-space-y) + 2px);
  isolation: isolate;
}

.boc-showcase,
.boc-showcase * {
  box-sizing: border-box;
}

.boc-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: var(--boc-hover-space-y) var(--boc-hover-space-x);
  margin: calc(var(--boc-hover-space-y) * -1) 0;
}

.boc-is-static .boc-track {
  justify-content: center;
}

.boc-is-static .boc-card {
  flex: 0 1 clamp(260px, 30vw, 360px);
  max-width: 360px;
}

.boc-track {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: stretch;
  gap: var(--boc-gap);
  transition: transform 0.55s ease;
  will-change: transform;
}

.boc-track.boc-no-anim {
  transition: none;
}

.boc-card {
  flex: 0 0 calc((100% - (var(--boc-gap) * (var(--boc-columns) - 1))) / var(--boc-columns));
  min-width: 0;
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
}

.boc-card:hover,
.boc-card:focus-visible {
  z-index: 4;
}

.boc-card-inner {
  min-height: 100%;
  position: relative;
  background: var(--boc-card-bg);
  border: 0;
  border-radius: var(--boc-card-radius);
  box-shadow: var(--boc-shadow);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  overflow: hidden;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.boc-card:hover .boc-card-inner,
.boc-card:focus-visible .boc-card-inner {
  box-shadow: var(--boc-shadow-hover);
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.boc-card:focus-visible {
  outline: none;
}

.boc-card-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  margin: 0 0 10px;
  width: 100%;
}

.boc-star {
  font-size: 15px;
  line-height: 1;
  color: rgba(241, 180, 3, 0.28);
  text-shadow: none;
}

.boc-star.is-filled {
  color: var(--boc-accent);
}

.boc-card-logo-wrap {
  width: 100%;
  min-height: 64px;
  height: clamp(60px, 5.5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 0 10px;
}

.boc-card-logo-image {
  display: block;
  max-width: min(78%, 180px);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.boc-card-body {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.boc-card-title-only {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.16;
  font-weight: 800;
  color: var(--boc-text);
  overflow-wrap: anywhere;
}

.boc-card-offer-main {
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.16;
  font-weight: 800;
  color: var(--boc-text);
  margin: 0;
  overflow-wrap: anywhere;
  white-space: normal;
  text-wrap: balance;
}

.boc-card-offer-sub {
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.15;
  color: var(--boc-muted);
  margin: 2px 0 0;
}

.boc-card-offer-sub strong {
  font-weight: 700;
  color: rgba(226, 224, 245, 0.82);
}

.boc-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 4px 18px;
  margin-top: 6px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--boc-button-top) 0%, var(--boc-button-bottom) 100%);
  box-shadow: none;
}

.boc-card-cta-text {
  display: block;
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.14;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.08em 0;
  text-shadow: 0 1px 1px rgba(9, 0, 28, 0.24);
}

.boc-card-cta-text,
.boc-card-offer-main,
.boc-card-offer-sub {
  position: relative;
  z-index: 1;
}

.boc-nav {
  position: absolute;
  top: 50%;
  bottom: auto;
  width: clamp(44px, 3.8vw, 54px);
  height: clamp(44px, 3.8vw, 54px);
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--boc-surface-rgb), var(--boc-nav-opacity));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
  z-index: 2;
  transform: translateY(-50%);
  transition: background 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.boc-nav:hover,
.boc-nav:focus-visible {
  background: rgba(var(--boc-surface-rgb), var(--boc-nav-opacity-hover));
  outline: none;
}

.boc-nav:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.boc-nav-prev {
  left: var(--boc-shell-gutter);
}

.boc-nav-next {
  right: var(--boc-shell-gutter);
}

.boc-nav-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.boc-nav-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  box-sizing: border-box;
}

.boc-nav-icon.boc-dir-right::before {
  transform: rotate(45deg);
}

.boc-nav-icon.boc-dir-left::before {
  transform: rotate(-135deg);
}

.boc-nav-icon.boc-dir-up::before {
  transform: rotate(-45deg);
}

.boc-nav-icon.boc-dir-down::before {
  transform: rotate(135deg);
}

@media (max-width: 767px) {
  .boc-showcase {
    --boc-shell-gutter: 12px;
    --boc-hover-space-x: 0px;
    --boc-hover-space-y: 0px;
    padding: calc(var(--boc-nav-zone-mobile) + 8px) var(--boc-shell-gutter);
  }

  .boc-track {
    flex-direction: column;
  }

  .boc-card {
    flex: 0 0 auto;
    width: 100%;
  }

  .boc-card-inner {
    padding: 14px 14px 12px;
    min-height: 240px;
  }

  .boc-card-rating {
    margin-bottom: 10px;
  }

  .boc-star {
    font-size: 15px;
  }

  .boc-card-logo-wrap {
    min-height: 62px;
    height: 62px;
    margin-bottom: 10px;
  }

  .boc-card-logo-image {
    max-width: min(74%, 170px);
  }

  .boc-card-body {
    gap: 8px;
  }

  .boc-card-offer-main {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.14;
  }

  .boc-card-offer-sub {
    font-size: clamp(12px, 3.6vw, 15px);
  }

  .boc-card-cta {
    min-height: 54px;
    padding: 4px 14px;
    margin-top: 6px;
  }

  .boc-card-cta-text {
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.14;
  }

  .boc-nav {
    left: var(--boc-shell-gutter);
    right: var(--boc-shell-gutter);
    width: auto;
    height: var(--boc-nav-zone-mobile);
    top: auto;
    bottom: auto;
    border-radius: 14px;
    transform: none;
  }

  .boc-nav-prev {
    top: 0;
  }

  .boc-nav-next {
    bottom: 0;
  }

  .boc-nav-prev .boc-nav-icon::before {
    transform: rotate(-45deg);
  }

  .boc-nav-next .boc-nav-icon::before {
    transform: rotate(135deg);
  }

  .boc-is-static .boc-card {
    flex-basis: 100%;
    max-width: none;
  }

  .boc-nav-icon {
    width: 16px;
    height: 16px;
  }
}

.boc-empty-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 14px;
  line-height: 1.4;
}
