/* Site-wide floating Buy Now CTA — yellow pill (image + link title), Lucozade pattern */
.schweppes-buy-now-cta {
  position: fixed;
  right: 16px;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 99990;
  display: inline-flex;
  max-width: calc(100vw - 32px);
  text-decoration: none;
  transition: transform 0.2s ease;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.schweppes-buy-now-cta:hover,
.schweppes-buy-now-cta:focus-visible {
  text-decoration: none;
  transform: translateY(-2px) translateZ(0);
}

.schweppes-buy-now-cta__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 12px 28px 12px 20px;
  border-radius: 999px;
  background: #ffdd04;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.schweppes-buy-now-cta__img {
  display: block;
  width: 22px;
  height: 22px;
  max-width: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.schweppes-buy-now-cta__label {
  font-family: "Futura PT Book", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0F1129;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 899.9px) {
  .schweppes-buy-now-cta {
    right: 12px;
    left: auto;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 99990;
    max-width: calc(100vw - 24px);
  }

  .schweppes-buy-now-cta__inner {
    gap: 0;
    padding: 14px;
  }

  .schweppes-buy-now-cta__img {
    width: 24px;
    height: 24px;
    max-width: 24px;
  }

  /* Cart icon only — hide label text on mobile / tablet */
  .schweppes-buy-now-cta__label {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
  }
}
