.hb-navbar.navbar {
  position: relative;
  --accent: var(--mono-accent, #ffffff);
  --bg: rgba(14, 14, 16, 0.82);
  --stroke: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 42%, transparent 100%),
    var(--bg);
  width: min(1180px, calc(100% - 28px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  min-height: auto;
  border-radius: var(--nav-island-radius, 9999px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: visible;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: border-radius 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.hb-navbar.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  background-size: 200% 100%;
  animation: hbTopline 10s linear infinite;
  opacity: 0.35;
  mask: linear-gradient(#000, #000) top / 100% 2px no-repeat;
  -webkit-mask: linear-gradient(#000, #000) top / 100% 2px no-repeat;
}

@keyframes hbTopline {
  to { background-position: -200% 0; }
}

.hb-navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: var(--nav-height);
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 4px;
  padding-right: 4px;
}

.hb-navbar .navbar-brand {
  margin-right: var(--space-4);
}

.hb-navbar .navbar-collapse {
  align-items: center;
  overflow: visible;
}

.hb-navbar .navbar-nav {
  align-items: center;
  gap: var(--space-1);
}

@media (min-width: 992px) {
  .hb-navbar .navbar-collapse .navbar-nav {
    gap: var(--space-3);
  }

  .hb-navbar .navbar-nav.navbar-actions {
    gap: var(--space-2);
    margin-left: auto;
  }
}

.hb-navbar .navbar-nav > .nav-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.hb-navbar .nav-link,
.hb-navbar .nav-ghost:not(.cart-btn) {
  color: #dedee6;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: var(--nav-action-height);
  padding: 0 var(--space-3);
  margin: 0;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  transition: color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background:
    radial-gradient(140px 60px at var(--mx, 50%) var(--my, 120%), rgba(255, 255, 255, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hb-navbar .navbar-nav-main .nav-link {
  padding: 0 1.125rem;
  background:
    radial-gradient(140px 60px at var(--mx, 50%) var(--my, 120%), rgba(255, 255, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.hb-navbar .navbar-nav-main .nav-link:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(140px 60px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 20px rgba(0, 0, 0, 0.2);
}

.hb-navbar .navbar-nav-main .nav-link.active {
  color: #fff;
  transform: none;
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -2px 0 #ffffff;
}

.hb-navbar .navbar-nav-main .nav-link.active:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -2px 0 #ffffff,
    0 8px 20px rgba(0, 0, 0, 0.22);
}

.hb-navbar .nav-ghost:not(.cart-btn):hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 20px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .hb-navbar .navbar-nav-main .nav-link:hover,
  .hb-navbar .navbar-nav-main .nav-link.active:hover {
    transform: none;
  }
}

.hb-navbar a,
.hb-navbar button,
.hb-navbar .nav-link,
.hb-navbar .nav-ghost,
.hb-navbar .discord-cta,
.hb-navbar .cart-btn {
  text-decoration: none !important;
}

.hb-navbar a:hover,
.hb-navbar a:focus,
.hb-navbar a:active,
.hb-navbar button:hover,
.hb-navbar button:focus {
  text-decoration: none !important;
}

.hb-navbar .discord-cta,
.hb-navbar .discord-cta *,
.hb-navbar .cart-label,
.hb-navbar .discord-label {
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}

.hb-navbar .discord-cta::before,
.hb-navbar .discord-cta::after {
  display: none !important;
}

.hb-navbar .cart-label,
.hb-navbar .discord-label {
  display: none;
}

.hb-navbar .discord-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: var(--nav-action-height);
  padding: 0 var(--space-3);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #101114 !important;
  background: linear-gradient(90deg, #ffffff, var(--mono-accent, #fff)) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hb-navbar .discord-cta i,
.hb-navbar .discord-cta .discord-label {
  color: #101114 !important;
}

.hb-navbar .discord-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.hb-navbar .cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: var(--nav-action-height);
  height: var(--nav-action-height);
  padding: 0;
  border-radius: 999px;
  color: #fff !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    #171719 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hb-navbar .cart-btn i {
  font-size: 1rem;
  line-height: 1;
}

.hb-navbar .currency-picker {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 20;
}

.hb-navbar .navbar-nav > .nav-item:has(.currency-picker) {
  position: relative;
  z-index: 20;
  overflow: visible;
}

.hb-navbar .currency-picker-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 92px;
  height: var(--nav-action-height);
  padding: 0 10px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #171719;
  color: #e4e4e7;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.hb-navbar .currency-picker-trigger:hover,
.hb-navbar .currency-picker-trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hb-navbar .currency-picker-trigger .fi,
.hb-navbar .currency-picker-flag {
  display: block;
  width: 16px;
  height: 12px;
  min-width: 16px;
  border-radius: 2px;
  background-size: cover;
  flex-shrink: 0;
  line-height: 0;
}

.hb-navbar .currency-picker-code {
  min-width: 2.25rem;
  letter-spacing: 0.02em;
  text-align: left;
}

.hb-navbar .currency-picker-chevron {
  width: 14px;
  height: 14px;
  color: #71717a;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.hb-navbar .currency-picker-chevron.is-open {
  transform: rotate(180deg);
}

.hb-navbar .currency-picker-menu {
  position: fixed;
  width: 240px;
  padding: 6px;
  background: #18181b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 1200;
  visibility: hidden;
}

.hb-navbar .currency-picker-search {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 4px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px 8px 0 0;
  background: transparent;
  color: #fafafa;
  font-size: 13px;
  outline: none;
}

.hb-navbar .currency-picker-search::placeholder {
  color: #71717a;
}

.hb-navbar .currency-picker-list {
  max-height: 240px;
  overflow-y: auto;
}

.hb-navbar .currency-picker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 6px 8px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #fafafa;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hb-navbar .currency-picker-item:hover,
.hb-navbar .currency-picker-item.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.hb-navbar .currency-picker-item .fi {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  background-size: cover;
  flex-shrink: 0;
}

.hb-navbar .currency-picker-item-code {
  min-width: 2.25rem;
  font-size: 12px;
  font-weight: 500;
  color: #a1a1aa;
  flex-shrink: 0;
}

.hb-navbar .currency-picker-item-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hb-navbar .currency-picker-empty {
  margin: 0;
  padding: 6px 8px;
  font-size: 13px;
  color: #71717a;
}

@media (max-width: 991px) {
  header.sticky-top {
    padding: 10px 12px 0;
  }

  .hb-navbar.navbar {
    width: calc(100% - 16px);
    border-radius: 24px;
    padding: 8px 10px;
  }

  .hb-navbar.navbar:has(.navbar-collapse.show) {
    border-radius: 24px;
    padding-bottom: 12px;
  }

  .hb-navbar .container {
    min-height: 58px;
    padding-left: 2px;
    padding-right: 2px;
  }

  .hb-navbar .navbar-brand {
    font-size: 1rem;
    margin-right: auto;
  }

  .hb-navbar .navbar-brand img {
    height: 28px;
  }

  .hb-navbar .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    flex-shrink: 0;
  }

  .hb-navbar .navbar-collapse {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 2px;
  }

  .hb-navbar .navbar-collapse.collapsing,
  .hb-navbar .navbar-collapse.show {
    transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hb-navbar .navbar-nav {
    width: 100%;
    gap: 8px;
  }

  .hb-navbar .navbar-nav-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hb-navbar .navbar-nav-main .nav-item {
    width: 100%;
  }

  .hb-navbar .navbar-nav-main .nav-link {
    width: 100%;
    justify-content: center;
    height: 42px;
    padding: 0 12px;
    font-size: 0.875rem;
  }

  .hb-navbar .navbar-nav.navbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hb-navbar .navbar-actions > .nav-item {
    width: 100%;
  }

  .hb-navbar .navbar-actions > .nav-item:has(.currency-picker) {
    grid-column: 1 / -1;
  }

  .hb-navbar .navbar-actions > .nav-item:has(.discord-cta) {
    grid-column: 1 / -1;
  }

  .hb-navbar .nav-link,
  .hb-navbar .nav-ghost,
  .hb-navbar .discord-cta,
  .hb-navbar .cart-btn,
  .hb-navbar .currency-picker-trigger {
    width: 100%;
    justify-content: center;
    height: 42px;
    transform: none !important;
    border-radius: 999px;
  }

  .hb-navbar .navbar-nav-main .nav-link.active {
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      inset 0 -2px 0 #ffffff;
  }

  .hb-navbar .nav-link:hover,
  .hb-navbar .nav-ghost:hover,
  .hb-navbar .nav-link.active {
    transform: none;
  }

  .hb-navbar .discord-cta {
    justify-content: center;
    gap: 8px;
    color: #101114 !important;
    background: linear-gradient(90deg, #ffffff, var(--mono-accent, #fff)) !important;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }

  .hb-navbar .discord-cta i,
  .hb-navbar .discord-cta .discord-label {
    color: #101114 !important;
  }

  .hb-navbar .discord-cta:hover {
    transform: none;
    color: #101114 !important;
  }

  .hb-navbar .cart-btn {
    width: 100%;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    position: relative;
    color: #fff !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
      #171719 !important;
  }

  .hb-navbar .cart-label,
  .hb-navbar .discord-label {
    display: inline;
  }

  .hb-navbar .currency-picker {
    width: 100%;
  }

  .hb-navbar .currency-picker-trigger {
    width: 100%;
    justify-content: center;
  }

  .hb-navbar .currency-picker-menu {
    width: auto;
  }
}

.component .features-head,
.component .benefits-head,
.component .products-head,
.component .why-us-head {
  margin-bottom: var(--space-6) !important;
}

@media (min-width: 992px) {
  .navbar .navbar-collapse .navbar-nav:not(.navbar-actions) {
    gap: var(--space-3);
  }
}

.status-scope .status-cards {
  display: grid !important;
  flex-direction: unset !important;
  gap: 14px;
}

.status-scope .status-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 340px));
  justify-content: center;
}

.status-scope .status-group {
  grid-column: 1 / -1;
}

.status-scope .status-group > .status-cards {
  justify-content: center;
}

.status-scope .status-card-shell {
  width: 100%;
  max-width: 340px;
  justify-self: center;
}

.status-scope .status-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  height: 100%;
  min-height: 108px;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.status-scope .status-card-top {
  flex: 1;
  display: flex;
  align-items: center;
}

.status-scope .status-card h3 {
  font-size: 1rem !important;
  text-align: left;
  width: 100%;
}

.btn {
  --bs-btn-padding-y: 0.4375rem;
  --bs-btn-padding-x: 0.875rem;
  --bs-btn-font-size: 0.875rem;
  --bs-btn-font-weight: 600;
  --bs-btn-line-height: 1.25;
  --bs-btn-border-radius: 8px;
}

.btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.9375rem;
}

.btn-sm {
  --bs-btn-padding-y: 0.3125rem;
  --bs-btn-padding-x: 0.625rem;
  --bs-btn-font-size: 0.8125rem;
}

#customer-login-modal .modal-body {
  padding-top: var(--space-4);
}

#customer-login-modal .form-control {
  min-height: 40px;
  padding: 0.5rem 0.75rem;
}

.shop-card.card {
  --accent: var(--mono-accent, #ffffff);
  --accent-2: #ffffff;
  --ok: #10d28a;
  --ok2: #00b877;
  --out: #ff5a6c;
  --out2: #e04153;
  --unl: #ffffff;
  --unl2: #e9e9e9;
  --info: #7bd4ff;
  --info2: #4da2ff;
  --rx: 0deg;
  --ry: 0deg;
  --mx: -200px;
  --my: -200px;
  background: rgba(20, 17, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, opacity 0.4s;
  position: relative;
  isolation: isolate;
  opacity: 1;
}

.shop-card.card.reveal-init {
  opacity: 0;
  transform: translateY(14px) rotateX(var(--rx)) rotateY(var(--ry));
}

.shop-card.card.reveal {
  opacity: 1;
  transform: translateY(0) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, opacity 0.45s;
}

.shop-card .card-img-top {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0e0b0f;
  overflow: hidden;
}

.shop-card .card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s;
  filter: brightness(0.96) contrast(1.02);
}

.shop-card:hover .card-img-top img {
  transform: scale(1.08);
}

.shop-card .card-img-top::before {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -18%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--accent) 25%, transparent) 0, transparent 60%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
}

.shop-card .card-img-top .spot {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  background:
    radial-gradient(260px 160px at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 60%),
    radial-gradient(200px 140px at calc(var(--mx) + 40px) calc(var(--my) + 20px), rgba(255, 255, 255, 0.22), transparent 60%);
  mix-blend-mode: screen;
}

.shop-card:hover .card-img-top .spot {
  opacity: 1;
}

.shop-card .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  transform: translateY(8px);
  opacity: 0;
  z-index: 2;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}

.shop-card:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.shop-card .btn-cta {
  pointer-events: auto;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #111;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 0.4375rem 0.875rem;
  backdrop-filter: blur(8px);
}

.shop-card .badges {
  position: absolute;
  inset: auto auto 10px 10px;
  display: flex;
  gap: 8px;
  z-index: 2;
  flex-wrap: wrap;
}

.shop-card .pill {
  --p: var(--pill, var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--p) 78%, black 0%);
  color: #0f0b10;
  font-weight: 800;
  font-size: 0.75rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.shop-card .card-body {
  padding: 12px 14px 16px;
}

.shop-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.shop-card .price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.shop-card .price .p-now {
  color: #fff;
  font-weight: 900;
  font-size: 1.05rem;
}

.shop-card .price .p-old {
  color: #c7c7c7;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 0.7;
}

.shop-card .price .p-dash {
  color: #bfbfbf;
  opacity: 0.7;
}

.shop-card .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-card .chip i {
  font-size: 0.75rem;
  line-height: 1;
  width: 14px;
  text-align: center;
}

.shop-card .product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  opacity: 0.45;
}

.shop-card .chip-ok {
  color: #041b12;
  background: linear-gradient(90deg, var(--ok), var(--ok2));
  box-shadow: 0 8px 18px rgba(16, 210, 138, 0.25);
}

.shop-card .chip-out {
  color: #28090d;
  background: linear-gradient(90deg, var(--out), var(--out2));
  box-shadow: 0 8px 18px rgba(255, 90, 108, 0.25);
}

.shop-card .chip-unl {
  color: #111;
  background: linear-gradient(90deg, var(--unl), var(--unl2));
  box-shadow: 0 8px 18px rgba(255, 255, 255, 0.22);
}

.shop-card .chip-info {
  color: #051526;
  background: linear-gradient(90deg, var(--info), var(--info2));
  box-shadow: 0 8px 18px rgba(75, 160, 255, 0.22);
}

.shop-card .card-title {
  color: #fff;
  font-weight: 900;
  margin: 4px 0 0;
  letter-spacing: 0.01em;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

noscript .shop-card.card {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .shop-card.card {
    transform: none !important;
    transition: none !important;
  }
}
