.bbb-shop-drop {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.bbb-shop-drop[hidden] {
  display: none;
}

.bbb-shop-drop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(5px);
}

.bbb-shop-drop__dialog {
  position: absolute;
  right: clamp(14px, 4vw, 42px);
  bottom: clamp(14px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(116px, 168px) minmax(0, 1fr);
  gap: 16px;
  width: min(560px, calc(100vw - 28px));
  padding: 14px;
  border: 1px solid rgba(255, 138, 199, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 138, 199, 0.18), transparent 18rem),
    #0d0d0d;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  color: #f6f1eb;
  opacity: 0;
  text-transform: lowercase;
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition: opacity 220ms ease, transform 260ms ease;
}

.bbb-shop-drop.is-visible .bbb-shop-drop__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.bbb-shop-drop__media {
  display: grid;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid rgba(246, 241, 235, 0.13);
  border-radius: 6px;
  background: #151515;
  color: #ff8ac7;
  font: 700 58px/1 "Cormorant Garamond", Georgia, serif;
  place-items: center;
  text-decoration: none;
}

.bbb-shop-drop__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bbb-shop-drop__copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 8px 36px 8px 0;
}

.bbb-shop-drop__kicker {
  margin: 0;
  color: #ff8ac7;
  font: 900 12px/1.2 Assistant, system-ui, sans-serif;
}

.bbb-shop-drop h2 {
  margin: 0;
  color: #f6f1eb;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: lowercase;
}

.bbb-shop-drop p {
  margin: 0;
  color: rgba(246, 241, 235, 0.72);
  font: 800 14px/1.45 Assistant, system-ui, sans-serif;
}

.bbb-shop-drop__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  padding: 11px 16px;
  border: 1px solid #ff8ac7;
  border-radius: 4px;
  background: #ff8ac7;
  color: #080808;
  font: 900 13px/1 Assistant, system-ui, sans-serif;
  text-decoration: none;
  text-transform: lowercase;
}

.bbb-shop-drop__button:hover,
.bbb-shop-drop__button:focus-visible {
  background: #fff;
  color: #080808;
  outline: none;
}

.bbb-shop-drop__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(246, 241, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f6f1eb;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .bbb-shop-drop__dialog {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 12px;
    width: auto;
    padding: 12px;
  }

  .bbb-shop-drop__media {
    min-height: 144px;
  }

  .bbb-shop-drop__copy {
    padding-right: 28px;
  }

  .bbb-shop-drop h2 {
    font-size: 25px;
  }

  .bbb-shop-drop__button {
    min-height: 38px;
    padding: 10px 12px;
  }
}
