/* hc-pdp-stickybar — sticky tab nav + compact CTA on scroll-out (Sprint15.1) */
.hc-pdp-stickybar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(20px, 3vw, 36px);
  background: rgba(252, 250, 246, 0.96);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 0.5px solid rgba(141, 109, 71, 0.18);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.2, 0.84, 0.3, 1), opacity 0.32s ease;
  pointer-events: none;
}
.hc-pdp-stickybar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.hc-pdp-stickybar__tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hc-pdp-stickybar__tabs::-webkit-scrollbar { display: none; }
.hc-pdp-stickybar__tab {
  position: relative;
  flex: 0 0 auto;
  padding: 14px 0;
  font-family: var(--hc-sans, "Outfit", sans-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--hc-ink-soft, rgba(26, 23, 20, 0.62));
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.hc-pdp-stickybar__tab:hover { color: var(--hc-ink, #1a1714); }
.hc-pdp-stickybar__tab.is-active {
  color: var(--hc-ink, #1a1714);
  font-weight: 600;
}
.hc-pdp-stickybar__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--hc-gold, #d4b896), var(--hc-gold-dark, #b89a6f));
  border-radius: 2px;
}
.hc-pdp-stickybar__buy {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hc-pdp-stickybar__price {
  font-family: var(--hc-serif, "Cormorant Garamond", serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--hc-ink, #1a1714);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hc-pdp-stickybar__price-suffix {
  font-family: var(--hc-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--hc-ink-soft);
  margin-left: 4px;
}
.hc-pdp-stickybar__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--hc-ink, #1a1714);
  color: var(--hc-paper, #ffffff);
  font-family: var(--hc-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s, box-shadow 0.18s;
}
.hc-pdp-stickybar__cart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(40, 30, 15, 0.42);
}
.hc-pdp-stickybar__icons {
  display: flex;
  gap: 8px;
}
.hc-pdp-stickybar__ico {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 0.5px solid rgba(141, 109, 71, 0.18);
  border-radius: 50%;
  color: var(--hc-ink-soft);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, transform 0.18s;
}
.hc-pdp-stickybar__ico:hover {
  color: var(--hc-ink);
  border-color: var(--hc-gold, #d4b896);
  transform: translateY(-1px);
}
.hc-pdp-stickybar__ico.is-active {
  color: var(--hc-danger, #c9433a);
  border-color: var(--hc-danger);
}
.hc-pdp-stickybar__ico svg {
  width: 16px;
  height: 16px;
}

/* On mobile: hide tabs and show only CTA inline */
@media (max-width: 720px) {
  .hc-pdp-stickybar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 14px;
  }
  .hc-pdp-stickybar__tabs { display: none; }
  .hc-pdp-stickybar__price { font-size: 18px; }
  .hc-pdp-stickybar__cart { padding: 9px 18px; font-size: 13px; }
  .hc-pdp-stickybar__icons { display: none; }
}


/* Sprint15.1.fix — force compact height */
.hc-pdp-stickybar {
  max-height: 64px !important;
  height: 64px !important;
  overflow: hidden !important;
  align-items: center !important;
}
.hc-pdp-stickybar__tabs {
  max-height: 48px !important;
  align-self: center !important;
}
.hc-pdp-stickybar__tabs li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.hc-pdp-stickybar__buy {
  align-self: center !important;
  max-height: 48px !important;
}
