/* VapeAndMore — shop CRO hubs + hot strip */
.oc-shop-cro {
  margin: 0 0 28px;
}

.oc-shop-cro__intro {
  margin: 0 0 14px;
}

.oc-shop-cro__kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.55);
}

.oc-shop-cro__title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1.2;
}

.oc-shop-hubs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
}

@media (min-width: 768px) {
  .oc-shop-hubs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

.oc-shop-hub {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  min-height: 92px;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #111;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 8px 24px rgba(0, 0, 0, 0.07);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.oc-shop-hub.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--oc-hub-img);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  pointer-events: none;
}

.oc-shop-hub.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.82) 70%);
  pointer-events: none;
}

.oc-shop-hub:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 12px 28px rgba(0, 0, 0, 0.12);
  color: #111;
  text-decoration: none;
}

.oc-shop-hub__label,
.oc-shop-hub__sub {
  position: relative;
  z-index: 1;
}

.oc-shop-hub__label {
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.oc-shop-hub__sub {
  font-size: 12px;
  font-weight: 550;
  color: rgba(17, 17, 17, 0.6);
}

.oc-shop-hot {
  margin: 0 0 16px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.oc-shop-hot__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  margin: 0 0 12px;
}

.oc-shop-hot__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.oc-shop-hot__social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #0b6b4a;
  font-size: 12px;
  font-weight: 650;
}

.oc-shop-hot__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: oc-shop-live 1.6s ease-out infinite;
  flex: 0 0 auto;
}

.oc-shop-hot__count {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

@keyframes oc-shop-live {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.oc-shop-hot__grid {
  margin: 0;
}

.oc-shop-trust {
  margin: 0 0 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.72);
  text-align: center;
}

.oc-shop-trust a {
  color: inherit;
  text-decoration: none;
  font-weight: 750;
}

.oc-shop-trust a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-transparency: reduce) {
  .oc-shop-hub,
  .oc-shop-hot {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fafafa;
  }
}
