.rb-product-suggestions {
  margin: 36px 0 0;
  color: var(--rb-text, #f5f7f7);
}

.rb-product-suggestions__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 0;
  padding: 0 4px 18px;
}

.rb-product-suggestions__nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.rb-product-suggestions__nav-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--rb-text, #f5f7f7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.rb-product-suggestions__nav-btn.is-next {
  background: rgba(102, 224, 206, 0.14);
  color: var(--rb-accent, #63e2cf);
  border-color: rgba(102, 224, 206, 0.24);
}

.rb-product-suggestions__nav-btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.rb-product-suggestions__nav-btn:disabled {
  opacity: .38;
  cursor: default;
}

.rb-product-suggestions__eyebrow {
  margin: 0 0 6px;
  color: var(--rb-accent, #63e2cf);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rb-product-suggestions__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--rb-text, #f5f7f7);
}

.rb-product-suggestions__card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  background: #2f2f2f;
  box-shadow: var(--rb-shadow, 0 24px 60px rgba(0,0,0,.22));
  height: 100%;
}

.rb-product-suggestions__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #242424;
}

.rb-product-suggestions__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.rb-product-suggestions__flag {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(10, 12, 13, 0.88);
  border: 1px solid rgba(99, 226, 207, 0.25);
  color: var(--rb-accent, #63e2cf);
  font-size: 0.75rem;
  font-weight: 700;
}

.rb-product-suggestions__body {
  padding: 16px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  align-content: start;
  height: 100%;
}

.rb-product-suggestions__name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.rb-product-suggestions__name a {
  color: var(--rb-text, #f5f7f7);
  text-decoration: none;
}

.rb-product-suggestions__price {
  margin: 0;
  color: var(--rb-accent, #63e2cf);
  font-size: 1.45rem;
  font-weight: 800;
}

.rb-product-suggestions__price * {
  color: inherit !important;
}

.rb-product-suggestions__actions {
  display: flex;
  justify-content: stretch;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: auto;
}

.rb-product-suggestions__btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(102, 224, 206, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 10px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.rb-product-suggestions__btn,
.rb-product-suggestions__btn span,
.rb-product-suggestions__btn svg {
  color: inherit;
}

.rb-product-suggestions__btn:link,
.rb-product-suggestions__btn:visited,
.rb-product-suggestions__btn:hover,
.rb-product-suggestions__btn:focus,
.rb-product-suggestions__btn:active,
.rb-product-suggestions__btn:link span,
.rb-product-suggestions__btn:visited span,
.rb-product-suggestions__btn:hover span,
.rb-product-suggestions__btn:focus span,
.rb-product-suggestions__btn:active span,
.rb-product-suggestions__btn:link svg,
.rb-product-suggestions__btn:visited svg,
.rb-product-suggestions__btn:hover svg,
.rb-product-suggestions__btn:focus svg,
.rb-product-suggestions__btn:active svg {
  color: inherit !important;
}

.rb-product-suggestions__btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rb-product-suggestions__btn--quick {
  background: rgba(102, 224, 206, 0.14);
  color: var(--rb-accent, #63e2cf);
  border-color: rgba(102, 224, 206, 0.34);
}

.rb-product-suggestions__btn--cart {
  background: rgba(255, 255, 255, 0.03);
  color: var(--rb-text, #f5f7f7);
}

.rb-product-suggestions__btn:hover {
  transform: translateY(-1px);
}

.rb-product-suggestions__btn--quick:hover {
  color: var(--rb-accent, #63e2cf) !important;
}

.rb-product-suggestions__btn--quick:link,
.rb-product-suggestions__btn--quick:visited,
.rb-product-suggestions__btn--quick:hover,
.rb-product-suggestions__btn--quick:focus,
.rb-product-suggestions__btn--quick:active {
  color: var(--rb-accent, #63e2cf) !important;
}

.rb-product-suggestions__btn--cart:hover {
  color: var(--rb-text, #f5f7f7) !important;
  border-color: rgba(102, 224, 206, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.rb-product-suggestions__btn--cart:link,
.rb-product-suggestions__btn--cart:visited,
.rb-product-suggestions__btn--cart:hover,
.rb-product-suggestions__btn--cart:focus,
.rb-product-suggestions__btn--cart:active {
  color: var(--rb-text, #f5f7f7) !important;
}

@media (max-width: 640px) {
  .rb-product-suggestions__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .rb-product-suggestions__actions {
    justify-content: stretch;
  }

  .rb-product-suggestions__btn {
    flex: 1 1 0;
    min-width: 0;
  }
}
