/*
 * VESPR premium interaction layer
 * Reuses the motion, commerce and accessibility behavior of Better while
 * deliberately inheriting VESPR's typography, palette and page layouts.
 */

:root {
  --sunday-motion: cubic-bezier(.22, 1, .36, 1);
  --sunday-fast: 220ms;
  --sunday-medium: 520ms;
  --sunday-olive: #302b35;
  --sunday-peach: #8043c4;
  --sunday-blue: #173b67;
  --sunday-blue-soft: #3f78ad;
  --sunday-mint: #f3edf9;
  --sunday-paper: #f3eff7;
  --sunday-line: rgba(48,43,53, .18);
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

body.sunday-overlay-open {
  overflow: hidden !important;
}

body.sunday-search-open {
  overflow: hidden !important;
}

body.sunday-search-open #tbp_header,
body.sunday-search-open #research-warning-bar.sunday-announcement {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

#tbp_header :is(a[href*="search"], .sunday-search-toggle) {
  position: relative;
  z-index: 12;
  pointer-events: auto !important;
  cursor: pointer;
  touch-action: manipulation;
}

/* Global floating product search */
.sunday-search-overlay[hidden] {
  display: none !important;
}

.sunday-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147481800;
  display: block;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.sunday-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sunday-search-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(24,22,27, .54);
  backdrop-filter: blur(8px);
}

.sunday-search-panel {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  top: var(--sunday-search-top, 148px);
  left: var(--sunday-search-left, max(16px, calc((100vw - 1165px) / 2)));
  width: var(--sunday-search-width, min(1165px, calc(100vw - 32px)));
  max-height: calc(100vh - var(--sunday-search-top, 148px) - 18px);
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(48,43,53, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(24,21,28, .24);
  color: var(--sunday-olive);
  transform: translate3d(0, -18px, 0) scale(.985);
  transition: transform 360ms var(--sunday-motion);
}

.sunday-search-overlay.is-open .sunday-search-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.sunday-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px 50px;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.sunday-search-form input[type="search"] {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 20px;
  border: 1px solid var(--sunday-peach);
  border-radius: 999px;
  background: #fff;
  color: var(--sunday-olive);
  font: 500 14px/1.2 "IBM Plex Mono", monospace;
  box-shadow: none;
  appearance: none;
}

.sunday-search-form input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.sunday-search-form input[type="search"]:is(:focus, :focus-visible) {
  border: 1px solid var(--sunday-peach) !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.sunday-search-submit,
.sunday-search-close {
  display: inline-grid;
  place-items: center;
  height: 50px;
  margin: 0;
  border: 1px solid var(--sunday-olive);
  cursor: pointer;
  transition:
    background-color var(--sunday-fast) ease,
    border-color var(--sunday-fast) ease,
    color var(--sunday-fast) ease,
    transform var(--sunday-fast) var(--sunday-motion);
}

.sunday-search-submit {
  padding: 0 22px;
  border-radius: 999px;
  background: var(--sunday-olive);
  color: #fff;
  font: 700 12px/1 "IBM Plex Mono", monospace;
  text-transform: uppercase;
}

.sunday-search-close {
  box-sizing: border-box;
  display: grid !important;
  min-width: 50px;
  min-height: 50px;
  width: 50px;
  aspect-ratio: 1 / 1;
  place-items: center !important;
  align-self: center;
  justify-self: center;
  padding: 0;
  border-color: transparent;
  border-radius: 50%;
  background: #f1eff4;
  color: var(--sunday-olive);
  font-size: 0;
  line-height: 0;
}

.sunday-search-close svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

@media (hover: hover) {
  .sunday-search-submit:hover {
    border-color: var(--sunday-peach);
    background: #111;
  }

  .sunday-search-close:hover {
    border-color: var(--sunday-peach);
    background: #111;
    color: #fff;
    transform: rotate(4deg);
  }
}

.sunday-search-eyebrow {
  margin: 24px 2px 13px;
  color: var(--sunday-peach);
  font: 700 12px/1.2 "IBM Plex Mono", monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.sunday-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.sunday-search-result {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 78px;
  padding: 8px 14px 8px 8px;
  overflow: hidden;
  border: 1px solid rgba(48,43,53, .13);
  border-radius: 15px;
  background: #fff;
  color: var(--sunday-olive);
  text-decoration: none;
  transition:
    border-color var(--sunday-fast) ease,
    background-color var(--sunday-fast) ease,
    transform var(--sunday-fast) var(--sunday-motion);
}

.sunday-search-result img {
  width: 62px;
  height: 62px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 420ms var(--sunday-motion);
}

.sunday-search-result span,
.sunday-search-result strong,
.sunday-search-result small {
  display: block;
  min-width: 0;
}

.sunday-search-result strong {
  overflow: hidden;
  color: var(--sunday-olive);
  font: 600 14px/1.3 "IBM Plex Mono", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sunday-search-result small {
  margin-top: 4px;
  color: rgba(48,43,53, .68);
  font: 500 11px/1.25 "IBM Plex Mono", monospace;
}

.sunday-search-result i {
  color: var(--sunday-peach);
  font-style: normal;
  font-size: 18px;
  transition: transform var(--sunday-fast) var(--sunday-motion);
}

@media (hover: hover) {
  .sunday-search-result:hover {
    border-color: var(--sunday-peach);
    background: #f7f4fb;
    transform: translateY(-2px);
  }

  .sunday-search-result:hover img {
    transform: scale(1.06);
  }

  .sunday-search-result:hover i {
    transform: translateX(3px);
  }
}

.sunday-search-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(48,43,53, .24);
  border-radius: 14px;
  color: rgba(48,43,53, .72);
  font: 500 13px/1.6 "IBM Plex Mono", monospace;
  text-align: center;
}

@media (max-width: 700px) {
  .sunday-search-overlay {
    padding: 0;
  }

  .sunday-search-panel {
    max-height: calc(100vh - var(--sunday-search-top, 124px) - 12px);
    padding: 16px;
    border-radius: 18px;
  }

  .sunday-search-form {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .sunday-search-submit {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .sunday-search-close {
    grid-column: 2;
    grid-row: 1;
    width: 48px;
    height: 48px;
  }

  .sunday-search-results {
    grid-template-columns: 1fr;
  }
}

/* Announcement + sticky chrome */
#research-warning-bar.sunday-announcement {
  position: fixed !important;
  inset: 0 0 auto !important;
  width: 100% !important;
  height: 38px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: var(--sunday-mint) !important;
  color: var(--sunday-olive) !important;
  z-index: 2147483000 !important;
  white-space: nowrap;
  border-bottom: 1px solid rgba(48,43,53, .08);
}

.sunday-announcement-sr,
.sunday-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sunday-announcement-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: sunday-announcement-marquee 28s linear infinite;
  will-change: transform;
}

#research-warning-bar.sunday-announcement:hover .sunday-announcement-track,
#research-warning-bar.sunday-announcement:focus-within .sunday-announcement-track {
  animation-play-state: paused !important;
}

.sunday-announcement-group {
  display: flex;
  flex: none;
  align-items: center;
  min-width: max-content;
  height: 100%;
}

.sunday-announcement-group span {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding-inline: clamp(24px, 4vw, 72px);
  font-family: var(--sunday-mono, "IBM Plex Mono", monospace) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase;
}

.sunday-announcement-group i {
  color: var(--sunday-peach);
  font-size: 7px;
  font-style: normal;
}

@keyframes sunday-announcement-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

#tbp_header {
  position: fixed !important;
  top: 54px !important;
  left: 50% !important;
  right: auto !important;
  width: min(1165px, calc(100vw - 32px)) !important;
  max-width: none !important;
  box-sizing: border-box !important;
  z-index: 2147482000 !important;
  transform: translate3d(-50%, 0, 0) !important;
  will-change: transform;
  animation: none !important;
  transition: none !important;
}

#tbp_header *,
#tbp_header *::before,
#tbp_header *::after {
  animation: none !important;
}

body.sunday-header-ready #tbp_header {
  transition:
    box-shadow var(--sunday-fast) ease,
    transform var(--sunday-medium) var(--sunday-motion),
    background-color var(--sunday-fast) ease !important;
}

body.sunday-scrolled #tbp_header {
  transform: translate3d(-50%, -5px, 0) !important;
  box-shadow: 0 12px 32px rgba(31,27,35, .12);
}

#pagewrap {
  padding-top: 132px !important;
}

body.sunday-scrolled #tbp_header > .themify_builder_content > .module_row:not(:first-child) {
  transition: min-height var(--sunday-fast) ease, padding var(--sunday-fast) ease;
}

#tbp_header .tb_iywl685 {
  display: none !important;
}

/* Home promotion hero */
body.home .module_row.tb_zvs8154 {
  position: relative !important;
  isolation: isolate;
  width: min(1165px, calc(100vw - 32px)) !important;
  max-width: 1165px !important;
  min-height: 0 !important;
  aspect-ratio: 1.87 / 1;
  margin: 20px auto clamp(58px, 7vw, 96px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: clamp(24px, 2.5vw, 34px);
  background:
    linear-gradient(90deg, #102d50 0%, var(--sunday-blue) 44%, var(--sunday-blue-soft) 100%) !important;
  box-shadow: 0 24px 68px rgba(18,48,82, .16);
}

body.home .module_row.tb_zvs8154::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,31,56, .96) 0%, rgba(17,52,89, .88) 38%, rgba(27,67,108, .34) 65%, rgba(40,83,124, .08) 100%);
  content: "";
  pointer-events: none;
}

body.home .module_row.tb_zvs8154 > .row_inner {
  position: absolute !important;
  z-index: auto !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

body.home .module_row.tb_zvs8154 .tb_bqw1154 {
  position: relative !important;
  z-index: 3;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  width: min(72%, 950px) !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: clamp(48px, 6vw, 88px) 0 clamp(48px, 6vw, 88px) clamp(46px, 7vw, 98px) !important;
  box-sizing: border-box;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  color: #fff !important;
}

body.home .module_row.tb_zvs8154 .tb_bqw1154::before,
body.home .module_row.tb_zvs8154 .tb_bqw1154::after {
  display: none !important;
  content: none !important;
}

body.home .module_row.tb_zvs8154 .tb_1t9b154 p {
  margin: 0 0 20px !important;
  color: #c4a8e3 !important;
  font: 600 11px/1.2 var(--sunday-mono, "IBM Plex Mono", monospace) !important;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.home .module_row.tb_zvs8154 .tb_2ymx154 h1 {
  max-width: 820px;
  margin: 0 !important;
  color: #f9f6fc !important;
  font-family: "Besley", Georgia, serif !important;
  font-size: clamp(46px, 5.35vw, 76px) !important;
  font-weight: 500 !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
  text-wrap: balance;
}

body.home .module_row.tb_zvs8154 .tb_bc8w154 {
  width: 150px !important;
  margin: 26px 0 24px !important;
  border-color: rgba(249,246,252, .75) !important;
}

body.home .module_row.tb_zvs8154 .tb_zsyc154 {
  max-width: 510px;
}

body.home .module_row.tb_zvs8154 .tb_zsyc154 p {
  margin: 0 !important;
  color: rgba(249,246,252, .9) !important;
  font-size: clamp(13px, 1.25vw, 16px) !important;
  line-height: 1.65 !important;
}

body.home .module_row.tb_zvs8154 .tb_ch3t154 {
  margin-top: 30px !important;
}

body.home .module_row.tb_zvs8154 .tb_ch3t154 a {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  justify-content: center !important;
  width: fit-content !important;
  min-width: 0 !important;
  padding: 15px 26px !important;
  border: 1px solid rgba(255,255,255, .16) !important;
  border-radius: 999px !important;
  background: var(--sunday-peach) !important;
  color: #fff !important;
  transition:
    background-color .24s ease,
    border-color .24s ease,
    color .24s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  body.home .module_row.tb_zvs8154 .tb_ch3t154 a:hover {
    border-color: #fff !important;
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}

body.home .module_row.tb_zvs8154 .tb_ch3t154 a:focus-visible {
  border-color: #fff !important;
  background: transparent !important;
  color: #fff !important;
  outline: 2px solid #fff !important;
  outline-offset: 3px;
}

a.ui.builder_button[href$="shop/index.html"],
a.ui.builder_button.sunday-shop-now-cta {
  border: 1px solid transparent !important;
  transition:
    background-color .24s ease,
    border-color .24s ease,
    color .24s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  a.ui.builder_button[href$="shop/index.html"]:hover,
  a.ui.builder_button.sunday-shop-now-cta:hover {
    border-color: var(--sunday-peach) !important;
    background: #111 !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}

a.ui.builder_button[href$="shop/index.html"]:focus-visible,
a.ui.builder_button.sunday-shop-now-cta:focus-visible {
  border-color: var(--sunday-peach) !important;
  background: #111 !important;
  color: #fff !important;
  outline: 2px solid var(--sunday-peach) !important;
  outline-offset: 3px;
}

/* Shared FAQ: identical presentation and one open answer across Home and Shop. */
.sunday-faq-section {
  font-size: 13px !important;
  line-height: 1.7 !important;
}

.sunday-faq-section .fancy-heading {
  margin-bottom: .4em !important;
  font-size: 31.2px !important;
  line-height: 1.15 !important;
}

.sunday-faq-section .fancy-heading .sub-head {
  font-size: inherit !important;
  line-height: inherit !important;
}

.sunday-exclusive-accordion > li > .accordion-content {
  display: grid !important;
  grid-template-rows: 0fr;
  padding-block: 0 !important;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition:
    grid-template-rows .34s cubic-bezier(.22, 1, .36, 1),
    padding-block .34s cubic-bezier(.22, 1, .36, 1),
    opacity .22s ease,
    visibility 0s linear .34s;
}

.sunday-exclusive-accordion > li.is-open > .accordion-content {
  grid-template-rows: 1fr;
  padding-block: 20px 28px !important;
  opacity: 1;
  visibility: visible;
  transition:
    grid-template-rows .34s cubic-bezier(.22, 1, .36, 1),
    padding-block .34s cubic-bezier(.22, 1, .36, 1),
    opacity .28s ease .06s,
    visibility 0s linear 0s;
}

.sunday-exclusive-accordion > li > .accordion-content > * {
  min-height: 0;
  overflow: hidden;
}

.sunday-exclusive-accordion > li:not(.is-open) .accordion-active-icon,
.sunday-exclusive-accordion > li.is-open .accordion-icon {
  display: none !important;
}

.sunday-exclusive-accordion > li.is-open .accordion-active-icon,
.sunday-exclusive-accordion > li:not(.is-open) .accordion-icon {
  display: inline-flex !important;
}

.sunday-exclusive-accordion .tb_title_accordion:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -5px;
}

@media (prefers-reduced-motion: reduce) {
  .sunday-exclusive-accordion > li > .accordion-content {
    transition: none !important;
  }
}

/* Commerce flow v2 — keep the shared announcement/header and checkout in one visual system */
body.sunday-commerce-ready #pagewrap > #tbp_header + .sunday-commerce-page {
  display: block;
}

body.sunday-commerce-ready .sunday-commerce-page {
  scroll-margin-top: 132px;
}

.sunday-commerce-main {
  min-width: 0;
}

.sunday-checkout-reward > b small {
  display: block;
  margin-top: 3px;
  font: 600 9px/1.1 var(--sunday-sans, Arial, sans-serif);
  letter-spacing: .02em;
  text-transform: none;
}

.sunday-checkout-details {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.sunday-checkout-detail-card {
  display: grid;
  grid-template-columns: 46px minmax(180px, .62fr) minmax(240px, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid #dbd7df;
  border-radius: 25px;
  background: rgba(255,255,255, .94);
  box-shadow: 0 16px 42px rgba(46,38,56, .04);
}

.sunday-checkout-step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #8349c5;
  background: #f4eefa;
  font: 700 10px/1 var(--sunday-sans, Arial, sans-serif);
}

.sunday-checkout-detail-card h2 {
  margin: 1px 0 5px !important;
  color: #2e2638 !important;
  font-family: var(--sunday-sans, Arial, sans-serif) !important;
  font-size: 21px !important;
  font-weight: 700 !important;
  letter-spacing: -.02em;
}

.sunday-checkout-detail-card > div > p {
  margin: 0;
  color: #738078;
  font-size: 13px;
  line-height: 1.5;
}

.sunday-checkout-detail-card label,
.sunday-checkout-fields label {
  display: grid;
  gap: 8px;
  color: #4b4354;
  font-size: 12px;
  font-weight: 700;
}

.sunday-checkout-detail-card input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #d3cfd8;
  border-radius: 14px;
  outline: 0;
  color: #2e2638;
  background: #fbfafc;
  font: 500 15px/1.2 var(--sunday-sans, Arial, sans-serif);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.sunday-checkout-detail-card input:focus {
  border-color: #3f265c;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(63,38,92, .10);
}

.sunday-checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sunday-checkout-detail-card > .sunday-commerce-primary {
  grid-column: 3;
  margin-top: 0;
}

.sunday-checkout-status {
  grid-column: 3;
  margin: 0;
  color: #3f265c;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .sunday-checkout-detail-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .sunday-checkout-detail-card > label,
  .sunday-checkout-detail-card > .sunday-checkout-fields,
  .sunday-checkout-detail-card > .sunday-commerce-primary,
  .sunday-checkout-status {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .sunday-checkout-detail-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
    border-radius: 20px;
  }

  .sunday-checkout-step {
    width: 32px;
    height: 32px;
  }

  .sunday-checkout-fields {
    grid-template-columns: 1fr;
  }

  .sunday-checkout-reward > b {
    min-width: 58px;
    min-height: 58px;
  }
}

/* Cart and checkout — unified premium purchase flow */
body.sunday-commerce-ready { background: #f3f1f5 !important; }
body.sunday-commerce-ready #research-warning-bar { position: relative !important; inset: auto !important; z-index: 2147481901 !important; }
body.sunday-commerce-ready #tbp_header {
  position: sticky !important; top: 0 !important; left: auto !important; right: auto !important;
  width: 100% !important; margin: 0 !important; border-radius: 0 !important; transform: none !important;
  box-shadow: 0 1px 0 rgba(43,35,52, .11) !important;
}
body.sunday-commerce-ready #pagewrap { padding-top: 0 !important; }
body.sunday-commerce-ready .sunday-commerce-page { width: min(1240px, calc(100% - 64px)); margin: 72px auto 110px; }

.sunday-commerce-header { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 42px; }
.sunday-commerce-header > div:first-child { min-width: 0; }
.sunday-commerce-header h1 {
  max-width: 760px; margin: 8px 0 0 !important; color: #2e2638 !important;
  font-family: Georgia, "Times New Roman", serif !important; font-size: clamp(54px, 7vw, 94px) !important;
  font-weight: 400 !important; line-height: .94 !important; letter-spacing: -.055em !important;
}
.sunday-commerce-header > p { max-width: 410px; margin: 0 0 8px !important; color: #6c776e; font-size: 16px; line-height: 1.55; }
.sunday-commerce-layout { grid-template-columns: minmax(0, 1.58fr) minmax(340px, .72fr); gap: 32px; }
.sunday-commerce-items { display: grid; gap: 14px; }
.sunday-commerce-items .sunday-cart-item {
  min-height: 190px; grid-template-columns: 126px minmax(0, 1fr) auto; gap: 20px; padding: 20px;
  border: 1px solid #dbd7df; border-radius: 25px; background: rgba(255,255,255,.92);
  box-shadow: 0 15px 40px rgba(46,38,56,.035);
}
.sunday-commerce-items .sunday-cart-item img { width: 126px !important; height: 150px !important; border-radius: 17px; object-fit: cover !important; }
.sunday-commerce-summary { top: 160px; padding: 28px; border-color: #dbd7df; border-radius: 25px; box-shadow: 0 22px 55px rgba(46,38,56,.06); }
.sunday-commerce-summary h2 {
  color: #2e2638 !important; font-family: Georgia, "Times New Roman", serif !important;
  font-size: 42px !important; font-weight: 400 !important; letter-spacing: -.04em;
}
.sunday-commerce-summary .sunday-promo-progress {
  margin-top: 18px; border: 1px solid #d9d2e1; border-left: 4px solid #7745af;
  border-radius: 18px; background: #efe9f6;
}
.sunday-commerce-primary {
  display: flex !important; align-items: center; justify-content: space-between; width: 100%; min-height: 64px;
  margin-top: 16px; padding: 0 24px !important; border: 0 !important; border-radius: 999px !important;
  box-sizing: border-box !important; max-width: 100%; gap: 18px; overflow: visible;
  color: #fff !important; background: #3f265c !important; font-family: var(--sunday-sans, Arial, sans-serif) !important;
  font-size: 15px !important; font-weight: 700 !important; letter-spacing: 0 !important; text-transform: none !important;
  text-decoration: none !important; transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease !important;
}
.sunday-commerce-primary > span:last-child {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  min-width: 1em; line-height: 1; font-family: Arial, sans-serif; font-size: 18px;
}
.sunday-commerce-primary:hover, .sunday-commerce-primary:focus-visible {
  color: #fff !important; background: #8349c5 !important; box-shadow: 0 14px 28px rgba(59,35,87,.17) !important; transform: translateY(-2px);
}

.sunday-checkout-hero { padding-bottom: 36px; border-bottom: 1px solid #dad6df; }
.sunday-checkout-reward {
  display: grid; grid-template-columns: 145px minmax(0, 1fr) auto; align-items: center; gap: 28px;
  min-height: 140px; margin: 0 0 30px; padding: 26px 30px; overflow: hidden;
  border: 1px solid #dad5df; border-radius: 25px; color: #2e2638; background: #fff;
  box-shadow: 0 18px 45px rgba(46,38,56,.045);
}
.sunday-checkout-reward > span {
  align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 14px; border-radius: 17px;
  color: #fff; background: #8349c5; font: 700 10px/1.3 var(--sunday-mono, monospace);
  letter-spacing: .12em; text-align: center; text-transform: uppercase;
}
.sunday-checkout-reward div strong { display: block; margin-bottom: 7px; font-size: 23px; line-height: 1.15; }
.sunday-checkout-reward div p { max-width: 610px; margin: 0; color: #6c776e; font-size: 14px; line-height: 1.5; }
.sunday-checkout-reward > b {
  display: grid; place-items: center; min-width: 62px; min-height: 62px; padding: 12px; border-radius: 50%;
  color: #3f265c; background: #ede5f5; font: 700 13px/1.2 var(--sunday-mono, monospace); text-align: center;
}
.sunday-checkout-reward.is-applied { border-color: #c3b7d1; background: linear-gradient(110deg, #eee7f5 0%, #f7f4fa 58%, #fff 100%); }
.sunday-checkout-reward.is-applied > span { background: #3f265c; }
.sunday-checkout-reward.is-applied > b { color: #fff; background: #3f265c; font-size: 22px; }
.sunday-checkout-reward .sunday-action { min-width: 190px; border-radius: 999px !important; background: #3f265c !important; }

.sunday-checkout-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(370px, .82fr); gap: 30px; align-items: start; }
.sunday-checkout-form, .sunday-checkout-summary {
  border: 1px solid #dbd7df; border-radius: 27px; background: #fff; box-shadow: 0 22px 55px rgba(46,38,56,.055);
}
.sunday-checkout-form { padding: clamp(25px, 4vw, 44px); }
.sunday-checkout-form > section + section { margin-top: 36px; padding-top: 34px; border-top: 1px solid #e2dfe5; }
.sunday-checkout-form section > header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.sunday-checkout-form section > header > span {
  display: grid; place-items: center; flex: 0 0 37px; width: 37px; height: 37px; border-radius: 50%;
  color: #8349c5; background: #f5f0fa; font: 700 10px/1 var(--sunday-mono, monospace);
}
.sunday-checkout-form h2 {
  margin: 0 0 3px !important; color: #2e2638 !important; font-family: var(--sunday-sans, Arial, sans-serif) !important;
  font-size: 22px !important; font-weight: 700 !important;
}
.sunday-checkout-form header p { margin: 0; color: #7a847c; font-size: 13px; }
.sunday-checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.sunday-checkout-field { display: grid; gap: 8px; }
.sunday-checkout-field--wide { grid-column: 1 / -1; }
.sunday-checkout-field > span { color: #4b4354; font-size: 12px; font-weight: 700; }
.sunday-checkout-field :is(input, select) {
  width: 100%; min-height: 54px; padding: 0 16px; border: 1px solid #d3cfd8; border-radius: 13px; outline: 0;
  color: #2e2638; background: #fbfafc; font: 500 15px/1.2 var(--sunday-sans, Arial, sans-serif);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.sunday-checkout-field :is(input, select):focus { border-color: #3f265c; background: #fff; box-shadow: 0 0 0 4px rgba(63,38,92,.10); }
.sunday-checkout-confirmation > label {
  display: flex; align-items: flex-start; gap: 12px; padding: 17px; border-radius: 15px;
  color: #595260; background: #f3f1f6; font-size: 13px; line-height: 1.5;
}
.sunday-checkout-confirmation input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 1px; accent-color: #3f265c; }
.sunday-checkout-submit {
  display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 68px; margin-top: 22px;
  padding: 0 24px; border: 0; border-radius: 999px; color: #fff; background: #3f265c; font-size: 16px; font-weight: 700;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.sunday-checkout-submit:not(:disabled):hover, .sunday-checkout-submit:not(:disabled):focus-visible {
  background: #8349c5; box-shadow: 0 14px 28px rgba(59,35,87,.17); transform: translateY(-2px);
}
.sunday-checkout-submit:disabled { color: #778078; background: #e5e2e8; cursor: not-allowed; }
.sunday-checkout-form__status { min-height: 22px; margin: 17px 0 -8px; color: #64319d; font-size: 13px; font-weight: 700; }
.sunday-checkout-form.is-complete .sunday-checkout-form__status { color: #3f265c; }
.sunday-checkout-assurance { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-top: 16px; color: #738078; font: 10px/1.4 var(--sunday-mono, monospace); }
.sunday-checkout-assurance span::before { content: "✓"; margin-right: 6px; color: #6c3da1; font-weight: 700; }

.sunday-checkout-summary { position: sticky; top: 160px; padding: 28px; }
.sunday-checkout-summary > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid #e2dfe5; }
.sunday-checkout-summary > header span { color: #2e2638; font-family: Georgia, "Times New Roman", serif; font-size: 31px; line-height: 1; }
.sunday-checkout-summary > header a { color: #3f265c; font-size: 12px; font-weight: 700; text-underline-offset: 4px; }
.sunday-checkout-lines { display: grid; }
.sunday-checkout-line {
  position: relative; display: grid; grid-template-columns: 72px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid #e5e3e8;
}
.sunday-checkout-line__image { position: relative; width: 72px; height: 78px; }
.sunday-checkout-line__image img { width: 100% !important; height: 100% !important; border-radius: 12px; object-fit: cover !important; }
.sunday-checkout-line__image b { position: absolute; top: -7px; right: -7px; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; color: #fff; background: #2e2638; font-size: 10px; }
.sunday-checkout-line__copy { display: grid; gap: 3px; }
.sunday-checkout-line__copy small { color: #8349c5; font: 700 8px/1.2 var(--sunday-mono, monospace); letter-spacing: .09em; text-transform: uppercase; }
.sunday-checkout-line__copy strong { color: #2e2638; font-size: 15px; }
.sunday-checkout-line__copy > span { color: #7b867e; font-size: 12px; }
.sunday-checkout-line__price { display: grid; justify-items: end; gap: 3px; color: #2e2638; font: 700 12px/1.2 var(--sunday-mono, monospace); }
.sunday-checkout-line__price em { color: #3f265c; font-style: normal; }
.sunday-checkout-line__price s { color: #8b938d; font-size: 9px; font-weight: 400; }
.sunday-checkout-line > button { grid-column: 2 / -1; justify-self: end; margin-top: -8px; padding: 0; border: 0; color: #7d867f; background: transparent; font-size: 10px; text-decoration: underline; text-underline-offset: 3px; }
.sunday-checkout-totals { display: grid; gap: 13px; padding-top: 21px; }
.sunday-checkout-totals > div { display: flex; justify-content: space-between; gap: 18px; color: #657168; font-size: 12px; }
.sunday-checkout-totals strong { color: #2e2638; }
.sunday-checkout-totals .is-total { margin-top: 4px; padding-top: 18px; border-top: 1px solid #dbd7df; color: #2e2638; font-size: 15px; }
.sunday-checkout-totals .is-total strong { font-family: var(--sunday-mono, monospace); font-size: 18px; }
.sunday-checkout-summary__note { display: flex; gap: 11px; margin-top: 22px; padding: 15px; border-radius: 15px; background: #eee8f5; }
.sunday-checkout-summary__note > span { display: grid; place-items: center; flex: 0 0 25px; width: 25px; height: 25px; border-radius: 50%; color: #fff; background: #3f265c; font-size: 11px; }
.sunday-checkout-summary__note p { margin: 0; color: #66736a; font-size: 11px; line-height: 1.5; }
.sunday-checkout-summary__note strong { display: block; color: #2e2638; }

@media (max-width: 900px) {
  body.sunday-commerce-ready .sunday-commerce-page { width: min(100% - 36px, 1240px); margin-top: 48px; }
  .sunday-commerce-header { align-items: start; flex-direction: column; gap: 16px; }
  .sunday-commerce-header > p { max-width: 620px; }
  .sunday-checkout-layout { grid-template-columns: 1fr; }
  .sunday-checkout-summary { position: static; order: -1; }
}

@media (max-width: 600px) {
  body.sunday-commerce-ready #tbp_header { top: 0 !important; left: 0 !important; right: 0 !important; }
  body.sunday-commerce-ready .sunday-commerce-page { width: min(100% - 24px, 1240px); margin: 36px auto 72px; }
  .sunday-commerce-header { margin-bottom: 28px; }
  .sunday-commerce-header h1 { font-size: clamp(48px, 15vw, 68px) !important; }
  .sunday-commerce-items .sunday-cart-item { min-height: 0; grid-template-columns: 82px minmax(0, 1fr); padding: 13px; border-radius: 19px; }
  .sunday-commerce-items .sunday-cart-item img { width: 82px !important; height: 100px !important; }
  .sunday-commerce-summary { padding: 20px; border-radius: 20px; }
  .sunday-checkout-reward { grid-template-columns: 1fr auto; gap: 18px; padding: 19px; border-radius: 20px; }
  .sunday-checkout-reward > span { grid-column: 1 / -1; align-self: auto; justify-self: start; min-height: 34px; padding: 0 13px; }
  .sunday-checkout-reward .sunday-action { grid-column: 1 / -1; width: 100%; }
  .sunday-checkout-form, .sunday-checkout-summary { padding: 20px; border-radius: 21px; }
  .sunday-checkout-fields { grid-template-columns: 1fr; }
  .sunday-checkout-field--wide { grid-column: auto; }
  .sunday-checkout-summary > header span { font-size: 27px; }
  .sunday-checkout-line { grid-template-columns: 64px minmax(0, 1fr) auto; gap: 11px; }
  .sunday-checkout-line__image { width: 64px; height: 72px; }
  .sunday-checkout-assurance { align-items: flex-start; flex-direction: column; }
}

body.home .module_row.tb_zvs8154 .tb_diu0154 {
  position: absolute !important;
  z-index: 0;
  inset: 0 0 0 auto;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sunday-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.sunday-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,38,68, .14), transparent 58%);
  content: "";
  pointer-events: none;
}

.sunday-hero-media :where(img, video) {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: transform 900ms var(--sunday-motion), filter var(--sunday-medium) ease !important;
}

@media (min-width: 901px) {
  .sunday-hero-media video {
    width: 106% !important;
    max-width: none !important;
    object-position: left center;
  }
}

@media (hover: hover) and (pointer: fine) {
  .sunday-hero-media:hover :where(img, video) {
    transform: scale(1.065);
    filter: saturate(1.04) contrast(1.025);
  }
}

/* Continuous native marquees */
.sunday-inline-marquee,
.marquee-wrap,
.marquee-container,
.sunday-static-carousel,
.tf_swiper-container,
.swiper-container {
  overflow: hidden !important;
}

.sunday-inline-marquee-track,
.marquee-track {
  display: flex !important;
  width: max-content !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  animation: sunday-content-marquee 34s linear infinite !important;
  will-change: transform;
}

.sunday-inline-marquee-track {
  display: inline-block !important;
}

@keyframes sunday-content-marquee {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Unified button system, preserving VESPR's colors and typography */
:where(
  a.button,
  button.button,
  .ui.builder_button,
  .module-buttons a,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .single_add_to_cart_button,
  .add_to_cart_button,
  .sunday-action
) {
  position: relative !important;
  isolation: isolate;
  overflow: hidden;
  transition:
    box-shadow var(--sunday-fast) ease,
    color var(--sunday-fast) ease,
    background-color var(--sunday-fast) ease,
    border-color var(--sunday-fast) ease !important;
}

:where(
  a.button,
  button.button,
  .ui.builder_button,
  .module-buttons a,
  .woocommerce a.button,
  .woocommerce button.button,
  .single_add_to_cart_button,
  .add_to_cart_button,
  .sunday-action
)::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: rgba(255,255,255, .18);
  transform: translate3d(-105%, 0, 0) skewX(-18deg);
  transition: transform 460ms var(--sunday-motion);
  pointer-events: none;
}

:where(
  a.button,
  button.button,
  .ui.builder_button,
  .module-buttons a,
  .woocommerce a.button,
  .woocommerce button.button,
  .single_add_to_cart_button,
  .add_to_cart_button,
  .sunday-action
):is(:hover, :focus-visible) {
  box-shadow: 0 10px 24px rgba(48,43,53, .18) !important;
}

:where(
  a.button,
  button.button,
  .ui.builder_button,
  .module-buttons a,
  .woocommerce a.button,
  .woocommerce button.button,
  .single_add_to_cart_button,
  .add_to_cart_button,
  .sunday-action
):is(:hover, :focus-visible)::after {
  transform: translate3d(105%, 0, 0) skewX(-18deg);
}

:where(
  .outline,
  .outlined,
  .secondary,
  .module-buttons-item a[style*="transparent"],
  .sunday-action--outline
):is(:hover, :focus-visible) {
  background: var(--sunday-olive) !important;
  border-color: var(--sunday-olive) !important;
  color: #fff !important;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--sunday-peach) !important;
  outline-offset: 3px !important;
}

/* Images, products, collection cards, Journal and banners */
:where(
  .product,
  .post,
  .tf_swiper-slide,
  .sunday-premium-card,
  .module-image,
  .module-feature,
  .module-callout,
  .module-portfolio
) {
  transition:
    transform var(--sunday-medium) var(--sunday-motion),
    box-shadow var(--sunday-medium) var(--sunday-motion),
    border-color var(--sunday-fast) ease !important;
}

:where(
  .products .product,
  .woocommerce ul.products li.product,
  .tf_swiper-slide .product,
  .sunday-premium-card
):is(:hover, :focus-within) {
  transform: none;
  border-color: rgba(48,43,53, .32) !important;
  box-shadow: 0 12px 30px rgba(48,43,53, .09);
}

:where(
  .product,
  .post,
  .module-image,
  .module-feature,
  .module-callout,
  .module-portfolio,
  .woocommerce-product-gallery
) :where(figure, a, .image-wrap) {
  overflow: hidden;
}

:where(
  .product,
  .post,
  .module-image,
  .module-feature,
  .module-callout,
  .module-portfolio,
  .woocommerce-product-gallery
) img {
  transition:
    transform 760ms var(--sunday-motion),
    filter var(--sunday-medium) ease !important;
}

:where(
  figure,
  .image-wrap,
  .module-image,
  .module-product-image,
  .product-image,
  .post-image,
  .woocommerce-product-gallery
):is(:hover, :focus-within) img {
  transform: scale(1.075);
  filter: saturate(1.02) contrast(1.02);
}

.single-product :where(.woocommerce-product-gallery, .module-product-image):is(:hover, :focus-within) img {
  transform: scale(1.085);
}

:where(
  .acoplw-badge,
  .onsale,
  .sale-badge,
  .sunday-promo-label,
  .sunday-cart-count
) {
  transition:
    box-shadow var(--sunday-fast) ease !important;
}

.sunday-promo-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 10px 0;
  padding: 7px 11px;
  border: 1px solid rgba(128,67,196, .28);
  border-radius: 999px;
  background: rgba(128,67,196, .09);
  color: var(--sunday-peach);
  font: 600 10px/1.25 var(--sunday-mono, "IBM Plex Mono", monospace) !important;
  letter-spacing: .045em;
  text-transform: uppercase;
  transform: none !important;
  animation: none !important;
}

/* Clean catalog cards: image-led, with an explicit purchase action. */
:where(.products .product, .woocommerce ul.products li.product, .tf_swiper-slide .product) {
  cursor: default !important;
}

:where(.products .product, .woocommerce ul.products li.product, .tf_swiper-slide .product)
  :where(.woocommerce-loop-product__title, .tbp_title, .module-product-title h2) {
  margin: 0 0 10px !important;
  font-size: clamp(20px, 2vw, 25px) !important;
  line-height: 1.12 !important;
}

:where(.products .product, .woocommerce ul.products li.product, .tf_swiper-slide .product)
  :where(.price, .module-product-price, .woocommerce-Price-amount) {
  font-size: 13px !important;
  line-height: 1.4 !important;
}

:where(.products .product, .woocommerce ul.products li.product, .tf_swiper-slide .product)
  .sunday-promo-label {
  margin: 12px 18px 10px !important;
  padding: 7px 10px !important;
  font-size: 9px !important;
}

.sunday-card-add {
  align-self: center;
  box-sizing: border-box;
  width: calc(100% - 36px);
  max-width: calc(100% - 36px);
  min-height: 46px;
  margin: 4px 18px 18px !important;
}

:where(.products .product, .woocommerce ul.products li.product, .tf_swiper-slide .product)
  :where(figure, .module-product-image, .product-image) {
  cursor: pointer;
}

/* Prevent the theme's lazy-loader dots from lingering over loaded product cards. */
:where(.products, .woocommerce ul.products) .tf_lazy::before,
:where(.products, .woocommerce ul.products) .tf_lazy::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

body:not(.home) :where(main, #tbp_content) > :where(h1, .page-title),
body:not(.home) :where(main, #tbp_content) h1 {
  font-size: clamp(38px, 6vw, 68px) !important;
  line-height: 1.05 !important;
}

body:not(.home) :where(main, #tbp_content) h2:not(.tbp_title):not(.woocommerce-loop-product__title) {
  font-size: clamp(28px, 4vw, 46px) !important;
  line-height: 1.1 !important;
}

body:not(.home) :where(main, #tbp_content) h3 {
  font-size: clamp(21px, 3vw, 34px) !important;
  line-height: 1.15 !important;
}

body.single-product #tbp_content :where(.module-product-title h1, .module-product-title h2, .product_title) {
  font-size: clamp(38px, 5vw, 58px) !important;
}

/* Shared product-size system. */
body.single-product .sunday-product-sizes {
  margin: 18px 0 20px;
  min-height: 65px;
  contain: layout;
}

body.single-product .bb-real-price {
  min-height: 41px;
  font-variant-numeric: tabular-nums;
}

body.single-product
  .woocommerce-variation-add-to-cart.variations_button {
  min-height: 48px;
}

/* Keep every product photograph above purchase-control effects. */
body.single-product #tbp_content
  .module_row:has(.module-product-image) {
  position: relative !important;
  isolation: isolate !important;
}

body.single-product #tbp_content .module-product-image,
body.single-product #tbp_content .woocommerce-product-gallery,
body.single-product #tbp_content .woocommerce-product-gallery__wrapper,
body.single-product #tbp_content .woocommerce-product-gallery__image,
body.single-product #tbp_content .woocommerce-product-gallery__image > a,
body.single-product #tbp_content .woocommerce-product-gallery__image img {
  position: relative !important;
  z-index: 100 !important;
  isolation: isolate !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  backface-visibility: hidden;
}

body.single-product #tbp_content
  .module_row:has(.module-product-image)
  > .row_inner
  > .module_column:has(.module-product-image) {
  position: relative !important;
  z-index: 100 !important;
  isolation: isolate !important;
  transform: translateZ(0);
}

body.single-product #tbp_content
  .module_row:has(.module-product-image)
  > .row_inner
  > .module_column:not(:has(.module-product-image)) {
  position: relative !important;
  z-index: 1 !important;
}

body.single-product #tbp_content
  :is(.woocommerce-product-gallery__image, .woocommerce-product-gallery__image > a)::before,
body.single-product #tbp_content
  :is(.woocommerce-product-gallery__image, .woocommerce-product-gallery__image > a)::after {
  display: none !important;
  content: none !important;
}

body.single-product #tbp_content .single_add_to_cart_button {
  contain: paint;
  isolation: isolate;
  overflow: hidden !important;
}

body.single-product #tbp_content .single_add_to_cart_button::before,
body.single-product #tbp_content .single_add_to_cart_button::after {
  display: none !important;
  content: none !important;
}

body.single-product .sunday-product-sizes .bb-label {
  margin-bottom: 9px;
  color: #596057;
  font: 500 13px/1.4 "IBM Plex Mono", monospace;
}

body.single-product .sunday-product-sizes .bb-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  position: relative;
  z-index: 2;
}

body.single-product .sunday-product-sizes .bb-swatches button {
  min-width: 62px;
  min-height: 38px;
  padding: 8px 13px !important;
  border: 1px solid rgba(48,43,53, .22) !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #302b35 !important;
  font: 500 12px/1 "IBM Plex Mono", monospace !important;
  box-shadow: none !important;
  cursor: pointer;
  transition:
    background-color .22s ease,
    border-color .22s ease,
    color .22s ease,
    transform .22s ease !important;
}

body.single-product .sunday-product-sizes .bb-swatches button::before,
body.single-product .sunday-product-sizes .bb-swatches button::after {
  display: none !important;
  content: none !important;
}

body.single-product .sunday-product-sizes .bb-swatches button.active {
  border-color: #302b35 !important;
  background: #302b35 !important;
  color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  body.single-product .sunday-product-sizes .bb-swatches button:not(.active):hover {
    border-color: var(--sunday-peach) !important;
    transform: translateY(-2px);
  }
}

body.single-product .sunday-product-sizes .bb-swatches button:focus-visible {
  outline: 2px solid var(--sunday-peach);
  outline-offset: 2px;
}

/* My account: compact page opening and consistent VESPR button states. */
body.woocommerce-account #body {
  padding-top: 0 !important;
}

body.woocommerce-account #body > #layout {
  padding-top: clamp(28px, 3.5vw, 44px) !important;
}

body.woocommerce-account #content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.woocommerce-account #content > .type-page > .page-title {
  margin-top: 0 !important;
}

body.woocommerce-account #customer_login button.button {
  border: 1px solid transparent !important;
  background: var(--sunday-peach) !important;
  color: #fff !important;
  transition:
    background-color .24s ease,
    border-color .24s ease,
    color .24s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  body.woocommerce-account #customer_login button.button:hover {
    border-color: var(--sunday-peach) !important;
    background: #111 !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}

body.woocommerce-account #customer_login button.button:focus-visible {
  border-color: var(--sunday-peach) !important;
  background: #111 !important;
  color: #fff !important;
  outline: 2px solid var(--sunday-peach) !important;
  outline-offset: 3px;
}

/* Search page: keep the form visually connected to the floating header. */
body.page-id-99 #body {
  margin-top: -35px !important;
}

body.page-id-99 .tb_9yh3639 {
  margin-top: 0 !important;
  padding-top: clamp(49px, 5.2vw, 67px) !important;
  padding-bottom: clamp(49px, 5.2vw, 67px) !important;
}

/* Shop archive: keep the catalog title visually connected to the floating header. */
body.woocommerce-shop .themify_builder_content-174 .tb_hbqe396 {
  margin-top: 0 !important;
  padding-top: clamp(42px, 4.5vw, 58px) !important;
}

@media (max-width: 600px) {
  body.woocommerce-shop .themify_builder_content-174 .tb_hbqe396 {
    padding-top: 30px !important;
  }
}

/* Reliable navigation without depending on the original WordPress scripts. */
#menu-menu > li {
  position: relative;
}

#menu-menu > li.sunday-menu-open > .sub-menu,
#menu-menu > li:focus-within > .sub-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) !important;
}

#menu-menu > li > .sub-menu {
  transition: opacity var(--sunday-fast) ease, transform var(--sunday-fast) var(--sunday-motion) !important;
}

@media (max-width: 820px) {
  #tbp_header .module-menu-container.is-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #tbp_header .module-menu-container.is-open #menu-menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
  }

  #menu-menu > li.sunday-menu-open > .sub-menu {
    position: static !important;
    width: 100% !important;
    margin: 8px 0 0 !important;
    box-shadow: none !important;
  }
}

/* Reveal and section transitions */
.sunday-home-logo {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  color: inherit;
  text-decoration: none;
}

.sunday-home-logo:focus-visible {
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.sunday-home-logo svg {
  display: block;
}

#tbp_header :where(a, button):is(:focus, :active, :focus-visible) {
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

#tbp_header #menu-menu a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.sunday-motion-ready .sunday-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 760ms var(--sunday-motion) var(--sunday-reveal-delay, 0ms),
    transform 760ms var(--sunday-motion) var(--sunday-reveal-delay, 0ms) !important;
}

.sunday-motion-ready .sunday-reveal.sunday-revealed {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0);
}

.sunday-motion-ready .sunday-stagger-item.sunday-reveal {
  transform: translate3d(0, 34px, 0);
}

.sunday-motion-ready .sunday-stagger-item.sunday-reveal.sunday-revealed {
  transform: translate3d(0, 0, 0);
}

.sunday-motion-ready .sunday-reveal.sunday-revealed.sunday-premium-card
  :where(.tbp_title, .woocommerce-loop-product__title, .price, .module-product-price) {
  animation: sunday-card-content-in 620ms var(--sunday-motion) both;
}

.sunday-motion-ready .sunday-reveal.sunday-revealed.sunday-premium-card
  :where(.price, .module-product-price) {
  animation-delay: 90ms;
}

.sunday-value-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transform-origin: center;
  border: 0 !important;
  outline: 0 !important;
  background-image: none !important;
  box-shadow: none !important;
}

.home .card2 {
  --sunday-value-image: url("../vespr/vespr-glass.webp");
  background-image: none !important;
}

.home .card3 {
  --sunday-value-image: url("../vespr/vespr-glass.webp");
  background-image: none !important;
}

.home .card4 {
  --sunday-value-image: url("../vespr/catalog/trz.webp");
  background-image: none !important;
}

.sunday-value-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background-image: var(--sunday-value-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
  transform: scale(1);
  transform-origin: center 44%;
  transition: transform 760ms var(--sunday-motion);
  will-change: transform;
}

.card2.sunday-value-card::before {
  background-image: url("../vespr/vespr-glass.webp") !important;
}

.card3.sunday-value-card::before {
  background-image: url("../vespr/vespr-glass.webp") !important;
}

.card4.sunday-value-card::before {
  background-image: url("../vespr/catalog/trz.webp") !important;
}

.sunday-value-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: inherit;
  background: linear-gradient(
    to top,
    rgba(13,27,43, .9) 0%,
    rgba(18,37,53, .72) 30%,
    rgba(44,35,54, .44) 54%,
    rgba(44,35,54, .1) 76%,
    rgba(44,35,54, 0) 100%
  );
  content: "";
  pointer-events: none;
  transition:
    border-color 420ms ease,
    background 520ms ease;
}

.sunday-value-card > .module {
  position: relative !important;
  z-index: 5 !important;
  opacity: 1 !important;
  visibility: visible !important;
  mix-blend-mode: normal !important;
  filter: none !important;
  transition: transform 580ms var(--sunday-motion);
}

.sunday-value-card .tb_text_wrap,
.sunday-value-card .tb_text_wrap :where(p, span, strong, em, b) {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.sunday-value-card .tb_text_wrap p {
  font: 500 16px/1.45 "IBM Plex Mono", monospace !important;
}

.sunday-value-card .tb_text_wrap .card1 {
  display: inline-block;
  margin-bottom: 18px;
  font: italic 600 27px/1.12 "Besley", Georgia, serif !important;
}

.sunday-motion-ready .sunday-reveal.sunday-revealed.sunday-value-card > .module {
  animation: sunday-card-content-in 640ms var(--sunday-motion) both;
}

.sunday-motion-ready .sunday-reveal.sunday-revealed.sunday-value-card > .module:nth-child(2) {
  animation-delay: 120ms;
}

@media (hover: hover) and (pointer: fine) {
  .sunday-value-card:is(:hover, :focus-within) {
    transform: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .sunday-value-card:is(:hover, :focus-within)::before {
    transform: scale(1.055);
  }

  .sunday-value-card:is(:hover, :focus-within)::after {
    border: 0;
    box-shadow: none;
  }

  .sunday-value-card:is(:hover, :focus-within) > .module {
    transform: translate3d(0, -4px, 0);
  }

  .sunday-value-card:is(:hover, :focus-within) > .module:first-child {
    transform: translate3d(-3px, 3px, 0);
  }

  .sunday-value-card svg,
  .sunday-value-card img {
    transition: transform 680ms var(--sunday-motion), filter 420ms ease !important;
  }

  .sunday-value-card:is(:hover, :focus-within) svg {
    transform: scale(1.1) rotate(2deg);
    filter: saturate(1.08);
  }
}

@keyframes sunday-card-content-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.sunday-motion-ready .sunday-reveal[data-sunday-direction="left"] {
  transform: translate3d(-30px, 0, 0);
}

.sunday-motion-ready .sunday-reveal[data-sunday-direction="right"] {
  transform: translate3d(30px, 0, 0);
}

.sunday-motion-ready .sunday-reveal[data-sunday-direction="left"].sunday-revealed,
.sunday-motion-ready .sunday-reveal[data-sunday-direction="right"].sunday-revealed {
  transform: translate3d(0, 0, 0);
}

/* Editorial reveals for Learn More / Journal articles */
body.single-post main [data-sunday-reveal-kind="title"].sunday-reveal {
  transform: translate3d(0, 34px, 0);
}

body.single-post main [data-sunday-reveal-kind="heading"].sunday-reveal {
  transform: translate3d(-24px, 0, 0);
}

body.single-post main :where(
  [data-sunday-reveal-kind="copy"],
  [data-sunday-reveal-kind="list"]
).sunday-reveal {
  transform: translate3d(0, 20px, 0);
}

body.single-post main [data-sunday-reveal-kind="media"].sunday-reveal {
  transform: translate3d(0, 30px, 0);
}

body.single-post main [data-sunday-reveal-kind].sunday-reveal.sunday-revealed {
  transform: translate3d(0, 0, 0);
}

body.single-post .sunday-editorial h3 {
  position: relative;
  padding-bottom: 15px;
}

body.single-post .sunday-editorial h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(72px, 22%);
  height: 2px;
  border-radius: 999px;
  background: var(--sunday-peach);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 680ms var(--sunday-motion) 180ms;
}

body.single-post .sunday-editorial h3:is(.sunday-revealed, .sunday-reveal-complete)::after {
  transform: scaleX(1);
}

/* Shared research banner */
.home .tb_t25a154,
.sunday-research-banner-section > .row_inner > .module_column {
  background-image: url("../vespr/vespr-glass.webp") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  transition: background-position 760ms var(--sunday-motion) !important;
}

@media (hover: hover) and (pointer: fine) {
  .home .tb_t25a154:hover,
  .sunday-research-banner-section > .row_inner > .module_column:hover {
    background-position: center 48% !important;
  }
}

/* About hero */
.tb_puht717 {
  position: relative !important;
  overflow: hidden !important;
  background-image: url("../vespr/catalog/klow.webp") !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  transition: none !important;
}

.tb_puht717::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(23,59,103, .82) 0%,
      rgba(38,57,66, .68) 34%,
      rgba(48,43,53, .34) 61%,
      rgba(48,43,53, .08) 100%
    );
}

.tb_puht717:hover {
  background-position: center center !important;
}

.tb_puht717 > .row_inner {
  position: relative !important;
  z-index: 1 !important;
}

.tb_puht717 .tb_9xdh717 .sub-head {
  color: #fff !important;
  font-size: clamp(44px, 5.2vw, 68px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.035em !important;
  text-shadow: 0 3px 22px rgba(12,25,37, .24);
}

.tb_puht717 .tb_9xdh717 .sub-head::before,
.tb_puht717 .tb_9xdh717 .sub-head::after {
  border-color: rgba(255,255,255, .82) !important;
  background-color: rgba(255,255,255, .82) !important;
}

.tb_u1fl717 .tb_1lhg717 .sub-head {
  font-size: clamp(38px, 4vw, 52px) !important;
  line-height: 1.08 !important;
}

.tb_u1fl717 .tb_fwwi717 > .module_column {
  will-change: opacity, transform;
}

.tb_u1fl717 .tb_fwwi717 .module-fancy-heading .main-head {
  font-size: clamp(19px, 1.65vw, 23px) !important;
  line-height: 1.18 !important;
}

.tb_u1fl717 .tb_fwwi717 .module-fancy-heading .sub-head {
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.tb_1qym717 .tb_svct717 {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.tb_1qym717 .tb_svct717::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at center,
      rgba(251,250,253, .68) 0%,
      rgba(251,250,253, .52) 48%,
      rgba(241,235,248, .38) 100%
    );
}

.tb_1qym717 .tb_svct717 > .module {
  position: relative !important;
  z-index: 1 !important;
}

.tb_1qym717 .tb_tx77717 .sub-head,
.tb_1qym717 .tb_ti1m717 {
  color: #2d2931 !important;
  text-shadow: 0 1px 0 rgba(255,255,255, .48);
}

/* Contact: compact the opening beneath the floating header. */
body.page-id-7 .tb_ruks616 {
  padding-top: clamp(62px, 6.5vw, 88px) !important;
}

body.page-id-7 .tb_pq9n616 {
  margin-bottom: 10px !important;
}

body.page-id-7 .tb_w9wk616 {
  margin-bottom: 24px !important;
}

@media (max-width: 600px) {
  .tb_puht717::before {
    background: linear-gradient(
      90deg,
      rgba(23,59,103, .84),
      rgba(48,43,53, .38)
    );
  }

  .tb_puht717 .tb_9xdh717 .sub-head {
    font-size: clamp(38px, 12vw, 50px) !important;
  }

  body.page-id-7 .tb_ruks616 {
    padding-top: 42px !important;
  }
}

body.single-post .sunday-editorial ul {
  border-left: 1px solid rgba(128,67,196, .25);
  padding-left: clamp(20px, 3vw, 34px);
}

body.single-post .sunday-editorial li {
  transition:
    opacity 680ms var(--sunday-motion) var(--sunday-reveal-delay, 0ms),
    transform 680ms var(--sunday-motion) var(--sunday-reveal-delay, 0ms),
    color var(--sunday-fast) ease !important;
}

body.sunday-page-leaving {
  pointer-events: none;
}

body.sunday-page-leaving :where(#body, .tbp_template_footer) {
  opacity: 0;
  transform: none !important;
  transition: opacity 150ms ease-out;
}

/* Cart drawer, promotion progress and vial selector */
.sunday-cart-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483300 !important;
  background: rgba(31,27,35, .56) !important;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 280ms ease !important;
}

.sunday-premium-cart {
  position: fixed;
  inset: 0;
  z-index: 2147483400;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 520ms;
}

.sunday-premium-cart.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.sunday-premium-cart.is-open .sunday-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

.sunday-premium-cart .sunday-cart-overlay {
  z-index: 0 !important;
}

.sunday-cart-panel {
  position: absolute !important;
  inset: 0 0 0 auto !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto !important;
  width: min(460px, 100vw) !important;
  max-width: 100vw !important;
  height: 100dvh !important;
  background: var(--sunday-paper) !important;
  color: var(--sunday-olive) !important;
  transform: translate3d(102%, 0, 0) !important;
  transition: transform 520ms var(--sunday-motion) !important;
  z-index: 1 !important;
  box-shadow: -24px 0 70px rgba(31,27,35, .2) !important;
}

.sunday-premium-cart.is-open .sunday-cart-panel {
  transform: translate3d(0, 0, 0) !important;
}

.sunday-cart-panel > header {
  display: flex !important;
  align-items: center !important;
  height: auto !important;
  min-height: 86px;
  padding: 20px 24px !important;
  gap: 16px;
  background: #fff !important;
  border-bottom: 1px solid var(--sunday-line) !important;
}

.sunday-cart-panel > header > div {
  min-width: 0;
}

.sunday-cart-panel > header h2 {
  margin: 2px 0 0 !important;
  color: var(--sunday-olive) !important;
  font-family: var(--sunday-serif, Besley, serif) !important;
  font-size: 27px !important;
  line-height: 1.05 !important;
}

.sunday-cart-eyebrow {
  color: var(--sunday-peach);
  font: 600 10px/1.2 var(--sunday-mono, "IBM Plex Mono", monospace);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sunday-icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--sunday-line);
  border-radius: 50%;
  background: transparent;
  color: var(--sunday-olive);
  font-size: 25px;
  cursor: pointer;
  transition: background var(--sunday-fast) ease, box-shadow var(--sunday-fast) ease;
}

.sunday-icon-button:is(:hover, :focus-visible) {
  background: var(--sunday-mint);
  box-shadow: 0 8px 18px rgba(48,43,53, .12);
}

.sunday-cart-scroll {
  overflow: auto;
  overscroll-behavior: contain;
  padding: 18px 20px 28px;
}

.sunday-cart-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid rgba(48,43,53, .1);
  border-radius: 10px;
  transition: transform var(--sunday-fast) var(--sunday-motion), box-shadow var(--sunday-fast) ease;
}

.sunday-cart-item:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 10px 24px rgba(48,43,53, .08);
}

.sunday-cart-item.is-promo {
  border-color: rgba(128,67,196, .35);
}

.sunday-cart-item.is-invalid {
  opacity: .68;
}

.sunday-cart-item img {
  width: 82px !important;
  height: 82px !important;
  border-radius: 7px;
  object-fit: cover !important;
  background: #eae7ee;
}

.sunday-cart-item h3 {
  margin: 0 0 4px !important;
  font-family: var(--sunday-serif, Besley, serif) !important;
  font-size: 16px !important;
  line-height: 1.15 !important;
}

.sunday-cart-item p,
.sunday-cart-item small {
  display: block;
  margin: 0 !important;
  font: 11px/1.45 var(--sunday-mono, "IBM Plex Mono", monospace) !important;
}

.sunday-cart-item-price {
  align-self: start;
  font: 600 12px/1.3 var(--sunday-mono, "IBM Plex Mono", monospace);
}

.sunday-cart-item-actions {
  grid-column: 2 / 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sunday-quantity {
  display: inline-grid !important;
  grid-template-columns: 36px 38px 36px !important;
  align-items: stretch !important;
  width: 110px !important;
  min-width: 110px !important;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 !important;
  border: 1px solid rgba(48,43,53, .2) !important;
  border-radius: 999px;
  overflow: hidden !important;
  background: #f8f6fb !important;
  color: var(--sunday-olive) !important;
  box-sizing: border-box !important;
}

.sunday-quantity .sunday-quantity-button {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--sunday-olive) !important;
  font: 500 17px/1 var(--sunday-mono, "IBM Plex Mono", monospace) !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: pointer !important;
  appearance: none !important;
  transition: background-color .2s ease, color .2s ease !important;
}

.sunday-quantity .sunday-quantity-button::before {
  display: block !important;
  color: currentColor !important;
  font: inherit !important;
  line-height: 1 !important;
}

.sunday-quantity .sunday-quantity-button.is-minus::before {
  content: "−" !important;
}

.sunday-quantity .sunday-quantity-button.is-plus::before {
  content: "+" !important;
}

.sunday-quantity .sunday-quantity-value {
  display: grid !important;
  place-items: center !important;
  width: 38px !important;
  height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-inline: 1px solid rgba(48,43,53, .11) !important;
  color: var(--sunday-olive) !important;
  font: 600 11px/1 var(--sunday-mono, "IBM Plex Mono", monospace) !important;
  text-align: center !important;
}

@media (hover: hover) {
  .sunday-quantity .sunday-quantity-button:hover {
    background: var(--sunday-olive) !important;
    color: #fff !important;
  }
}

.sunday-quantity .sunday-quantity-button:active {
  background: #854bc6 !important;
  color: #fff !important;
}

.sunday-quantity .sunday-quantity-button:focus-visible {
  z-index: 1;
  outline: 2px solid #854bc6 !important;
  outline-offset: -2px !important;
}

.sunday-remove {
  border: 0;
  background: transparent;
  color: var(--sunday-olive);
  font: 500 10px/1 var(--sunday-mono, "IBM Plex Mono", monospace);
  text-decoration: underline;
  cursor: pointer;
}

.sunday-cart-empty {
  padding: 42px 18px;
  text-align: center;
}

.sunday-cart-empty h3 {
  font-size: 26px !important;
}

.sunday-promo-progress {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(128,67,196, .24);
  border-radius: 11px;
  background: #f9f7fc;
}

.sunday-promo-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--sunday-olive);
  font: 600 10px/1.3 var(--sunday-mono, "IBM Plex Mono", monospace);
  text-transform: uppercase;
  letter-spacing: .045em;
}

.sunday-promo-track {
  height: 7px;
  margin: 11px 0 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(48,43,53, .12);
}

.sunday-promo-track > span {
  display: block;
  height: 100%;
  min-width: 4px;
  border-radius: inherit;
  background: var(--sunday-peach);
  transform-origin: left;
  transition: width 620ms var(--sunday-motion);
}

.sunday-promo-progress p {
  margin: 0 0 12px !important;
  font: 11px/1.55 var(--sunday-mono, "IBM Plex Mono", monospace) !important;
}

.sunday-promo-progress .sunday-promo-warning {
  color: #5c2e90;
  font-weight: 600 !important;
}

.sunday-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--sunday-peach);
  border-radius: 999px;
  background: var(--sunday-peach);
  color: #fff;
  font: 600 11px/1.2 var(--sunday-mono, "IBM Plex Mono", monospace);
  letter-spacing: .045em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.sunday-action[disabled] {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
}

.sunday-action--outline {
  background: transparent;
  color: var(--sunday-olive);
  border-color: var(--sunday-olive);
}

.sunday-cart-footer {
  padding: 17px 20px 20px;
  background: #fff;
  border-top: 1px solid var(--sunday-line);
}

.sunday-cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  font: 600 13px/1.3 var(--sunday-mono, "IBM Plex Mono", monospace);
}

.sunday-cart-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sunday-cart-footer-actions .sunday-action:first-child {
  grid-column: 1 / -1;
}

.sunday-vial-picker {
  position: fixed;
  inset: 0;
  z-index: 2147483500;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.sunday-vial-picker[hidden] {
  display: none !important;
}

#sunday-vial-picker[hidden],
#sunday-vial-picker[aria-hidden="true"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.sunday-vial-picker.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.sunday-vial-picker-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31,27,35, .65);
  backdrop-filter: blur(5px);
}

.sunday-vial-picker-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1140px, 100%);
  height: min(850px, calc(100dvh - 48px));
  max-height: calc(100dvh - 44px);
  overflow: hidden;
  border: 1px solid rgba(60,41,82, .08);
  border-radius: 30px;
  background: #f8f6fa;
  box-shadow: 0 30px 90px rgba(31,27,35, .3);
  transform: translate3d(0, 22px, 0) scale(.985);
  transition: transform 520ms var(--sunday-motion);
}

.sunday-vial-picker.is-open .sunday-vial-picker-panel {
  transform: none;
}

.sunday-vial-picker-panel > header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 168px;
  padding: 32px 108px 24px 38px;
  box-sizing: border-box;
  background: #faf9fc;
  border-bottom: 1px solid var(--sunday-line);
}

.sunday-vial-picker-panel > header > div {
  min-width: 0;
}

.sunday-vial-picker-panel > header .sunday-icon-button {
  position: absolute !important;
  top: 34px !important;
  right: 34px !important;
  display: grid !important;
  place-items: center !important;
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 5px solid #e1dce7 !important;
  border-radius: 50% !important;
  color: var(--sunday-olive) !important;
  background: #f8f6fa !important;
  font: 500 18px/1 Arial, sans-serif !important;
  box-shadow: none !important;
}

.sunday-vial-picker-panel > header .sunday-icon-button::before,
.sunday-vial-picker-panel > header .sunday-icon-button::after {
  display: none !important;
  content: none !important;
}

.sunday-vial-picker-panel h2 {
  margin: 14px 0 6px !important;
  color: #301d46 !important;
  font-family: var(--sunday-sans, Arial, sans-serif) !important;
  font-size: clamp(34px, 4.2vw, 50px) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -.045em !important;
}

.sunday-vial-picker-panel header p {
  margin: 0 !important;
  color: #696370 !important;
  font: 14px/1.5 var(--sunday-sans, Arial, sans-serif) !important;
}

.sunday-vial-picker-panel .sunday-cart-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: #4d3568;
  background: #e9e3f0;
  font: 700 10px/1 var(--sunday-mono, "IBM Plex Mono", monospace);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sunday-vial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  align-items: stretch;
  gap: 15px;
  overflow: auto;
  padding: 22px 36px;
  overscroll-behavior: contain;
  scrollbar-color: #9f91ae transparent;
  scrollbar-width: thin;
}

.sunday-vial-picker .sunday-vial-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  min-height: 252px;
  margin: 0 !important;
  padding: 10px;
  border: 1px solid #dfdae4 !important;
  border-radius: 18px !important;
  color: #2d1b41 !important;
  background: #fff !important;
  text-align: left;
  cursor: pointer;
  appearance: none;
  box-shadow: 0 5px 14px rgba(41,29,55, .035) !important;
  transition: transform var(--sunday-medium) var(--sunday-motion), border-color var(--sunday-fast) ease, background var(--sunday-fast) ease, box-shadow var(--sunday-fast) ease;
}

.sunday-vial-picker .sunday-vial-option:hover {
  transform: translate3d(0, -3px, 0);
  border-color: #a69ab4 !important;
  box-shadow: 0 15px 30px rgba(59,47,73, .11) !important;
}

.sunday-vial-picker .sunday-vial-option.is-selected {
  border-color: #684f85 !important;
  background: #efe9f6 !important;
  box-shadow: 0 0 0 2px rgba(104,79,133, .12), 0 15px 30px rgba(59,47,73, .1) !important;
}

.sunday-vial-option__media {
  position: relative;
  display: block;
  width: 100%;
  height: 176px;
  overflow: hidden;
  border-radius: 13px;
  background: #edecef;
}

.sunday-vial-option__media img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  object-fit: cover !important;
  object-position: center 52% !important;
  transform: scale(1.16);
  transition: transform 500ms var(--sunday-motion);
}

.sunday-vial-option:hover .sunday-vial-option__media img {
  transform: scale(1.21);
}

.sunday-vial-option__check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(55,39,74, .12);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  box-shadow: 0 2px 8px rgba(29,20,40, .08);
}

.sunday-vial-option.is-selected .sunday-vial-option__check {
  color: #fff;
  background: #4c316b;
}

.sunday-vial-option.is-selected .sunday-vial-option__check::before {
  content: "\2713";
  font: 700 15px/1 Arial, sans-serif;
}

.sunday-vial-option__name {
  margin: 12px 2px 2px;
  font: 750 14px/1.15 var(--sunday-sans, Arial, sans-serif);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.sunday-vial-option__detail {
  margin: 0 2px 3px;
  color: #655e6d;
  font: 10px/1.4 var(--sunday-mono, "IBM Plex Mono", monospace);
}

.sunday-vial-picker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  padding: 18px 36px;
  border-top: 1px solid #e1dce6;
  background: rgba(250,249,252,.98);
  box-sizing: border-box;
}

.sunday-vial-selected {
  display: flex;
  align-items: center;
  min-width: 160px;
  min-height: 60px;
  padding: 7px 14px 7px 7px;
  border: 1px solid #dcd5e3;
  border-radius: 14px;
  background: #f2eef6;
}

.sunday-vial-selected img {
  width: 45px !important;
  height: 45px !important;
  margin-right: 10px;
  border-radius: 9px;
  object-fit: cover !important;
}

.sunday-vial-selected span,
.sunday-vial-selected small,
.sunday-vial-selected strong {
  display: block;
}

.sunday-vial-selected small {
  margin-bottom: 4px;
  color: #78867b;
  font: 700 8px/1 var(--sunday-mono, "IBM Plex Mono", monospace);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sunday-vial-selected strong {
  color: #2d1b41;
  font: 700 13px/1.2 var(--sunday-sans, Arial, sans-serif);
}

.sunday-vial-picker-footer [data-confirm-free-vial] {
  display: grid;
  place-items: center;
  width: min(290px, 100%);
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: #482d66;
  font: 700 13px/1 var(--sunday-sans, Arial, sans-serif);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(72,45,102, .17);
}

.sunday-vial-picker-footer [data-confirm-free-vial]:hover {
  background: #331e4a;
}

/* Commerce pages keep the closing campaign banner and complete footer visible. */
.sunday-commerce-final-cta {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(560px, 56vw, 760px);
  overflow: hidden;
  color: #fff;
  background-color: #8247c5;
  background-image: var(--sunday-commerce-cta-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sunday-commerce-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(1440px, calc(100% - 72px));
  min-height: inherit;
  margin: 0 auto;
}

.sunday-commerce-final-cta__copy {
  width: min(520px, 42vw);
  margin-right: clamp(20px, 5vw, 90px);
}

.sunday-commerce-final-cta__copy > span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  font: 700 10px/1 var(--sunday-mono, "IBM Plex Mono", monospace);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sunday-commerce-final-cta h2 {
  max-width: 12ch;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-family: var(--sunday-serif, Besley, Georgia, serif) !important;
  font-size: clamp(48px, 5vw, 76px) !important;
  font-weight: 500 !important;
  line-height: .94 !important;
  letter-spacing: -.05em !important;
}

.sunday-commerce-final-cta p {
  max-width: 48ch;
  margin: 0 0 24px !important;
  color: rgba(255,255,255,.94) !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.sunday-commerce-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #301d46 !important;
  background: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.sunday-commerce-final-cta small {
  display: block;
  margin-top: 30px;
  color: rgba(255,255,255,.9);
  font-size: 10px;
}

body.sunday-commerce-ready #tbp_footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  min-height: 1px !important;
  clear: both !important;
}

body.sunday-commerce-ready .sunday-commerce-final-cta,
body.sunday-commerce-ready .sunday-final-cta {
  display: none !important;
}

/* Full cart and checkout prototype surfaces */
.sunday-commerce-page {
  width: min(1180px, calc(100% - 40px));
  margin: 54px auto 90px;
  color: var(--sunday-olive);
}

.sunday-shipping-bar {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: min(1165px, calc(100vw - 32px)) !important;
  max-width: calc(100vw - 32px) !important;
  margin: 12px auto 0 !important;
}

.sunday-freebie-btn,
.sunday-modal-backdrop {
  display: none !important;
}

.sunday-commerce-header {
  margin-bottom: 30px;
}

.sunday-commerce-header h1 {
  margin: 6px 0 !important;
  font-size: clamp(38px, 7vw, 72px) !important;
}

.sunday-commerce-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.sunday-commerce-items .sunday-cart-item {
  grid-template-columns: 112px minmax(0, 1fr) auto;
  padding: 16px;
}

.sunday-commerce-items .sunday-cart-item img {
  width: 112px !important;
  height: 112px !important;
}

.sunday-commerce-summary {
  position: sticky;
  top: 130px;
  padding: 22px;
  border: 1px solid var(--sunday-line);
  border-radius: 12px;
  background: #fff;
}

.sunday-commerce-summary h2 {
  margin: 0 0 18px !important;
  font-size: 28px !important;
}

.sunday-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--sunday-line);
  font: 12px/1.4 var(--sunday-mono, "IBM Plex Mono", monospace);
}

.sunday-checkout-message {
  padding: 17px;
  margin-bottom: 18px;
  border-left: 3px solid var(--sunday-peach);
  background: #f9f7fc;
  font: 12px/1.6 var(--sunday-mono, "IBM Plex Mono", monospace);
}

/* Floating cart uses VESPR's existing placement and visual language */
.sunday-floating-stack {
  z-index: 2147483200 !important;
}

.sunday-floating-stack .sunday-float-btn {
  transition: box-shadow var(--sunday-fast) ease, filter var(--sunday-fast) ease !important;
}

.sunday-floating-stack .sunday-float-btn:is(:hover, :focus-visible) {
  box-shadow: 0 14px 28px rgba(31,27,35, .24) !important;
  filter: brightness(1.035);
}

.sunday-cart-count.sunday-count-pop {
  animation: sunday-count-pop 420ms var(--sunday-motion);
}

@keyframes sunday-count-pop {
  50% { transform: scale(1.28); }
}

@media (max-width: 900px) {
  body.home .module_row.tb_zvs8154 {
    width: calc(100% - 32px) !important;
    min-height: 680px !important;
    aspect-ratio: auto;
    margin-top: 14px !important;
  }

  body.home .module_row.tb_zvs8154::before {
    background:
      linear-gradient(180deg, rgba(18,54,93, .14) 0%, rgba(18,54,93, .54) 45%, rgba(10,31,56, .98) 82%);
  }

  body.home .module_row.tb_zvs8154 .tb_bqw1154 {
    justify-content: flex-end;
    width: 100% !important;
    max-width: 640px;
    min-height: 680px !important;
    padding: 48px clamp(30px, 7vw, 58px) !important;
  }

  body.home .module_row.tb_zvs8154 .tb_diu0154 {
    width: 100% !important;
  }

  .sunday-hero-media :where(img, video) {
    object-position: center;
  }

  .sunday-vial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sunday-commerce-layout {
    grid-template-columns: 1fr;
  }

  .sunday-commerce-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  body.home .module_row.tb_zvs8154 {
    width: calc(100% - 32px) !important;
    min-height: 640px !important;
    margin: 12px auto 54px !important;
    border-radius: 22px;
  }

  body.home .module_row.tb_zvs8154 .tb_bqw1154 {
    min-height: 640px !important;
    padding: 34px 24px !important;
  }

  body.home .module_row.tb_zvs8154 .tb_1t9b154 p {
    margin-bottom: 14px !important;
    font-size: 9px !important;
  }

  body.home .module_row.tb_zvs8154 .tb_2ymx154 h1 {
    font-size: clamp(38px, 11vw, 48px) !important;
    line-height: 1 !important;
    letter-spacing: -.04em !important;
  }

  body.home .module_row.tb_zvs8154 .tb_bc8w154 {
    margin: 20px 0 18px !important;
  }

  body.home .module_row.tb_zvs8154 .tb_zsyc154 p {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  body.home .module_row.tb_zvs8154 .tb_ch3t154 {
    margin-top: 22px !important;
  }

  #research-warning-bar.sunday-announcement {
    height: 34px !important;
  }

  #tbp_header {
    top: 50px !important;
    left: 16px !important;
    right: 16px !important;
    width: auto !important;
    transform: translate3d(0, 0, 0) !important;
  }

  body.sunday-scrolled #tbp_header {
    transform: translate3d(0, -4px, 0) !important;
  }

  #pagewrap {
    padding-top: 112px !important;
  }

  .sunday-announcement-group span {
    padding-inline: 22px;
    font-size: 9px !important;
  }

  .sunday-cart-panel > header {
    min-height: 76px;
    padding: 16px 18px !important;
  }

  .sunday-cart-scroll {
    padding: 12px 12px 22px;
  }

  .sunday-cart-item {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 9px;
  }

  .sunday-cart-item img {
    width: 68px !important;
    height: 68px !important;
  }

  .sunday-cart-footer {
    padding: 13px 12px max(14px, env(safe-area-inset-bottom));
  }

  .sunday-vial-picker {
    padding: 10px;
  }

  .sunday-vial-picker-panel {
    width: 100%;
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 22px;
  }

  .sunday-vial-picker-panel > header {
    min-height: 144px;
    padding: 22px 72px 18px 20px;
  }

  .sunday-vial-picker-panel > header .sunday-icon-button {
    top: 20px !important;
    right: 18px !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 46px !important;
    min-height: 46px !important;
  }

  .sunday-vial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 10px;
  }

  .sunday-vial-picker .sunday-vial-option {
    min-height: 220px;
    padding: 7px;
  }

  .sunday-vial-option__media {
    height: 142px;
  }

  .sunday-vial-picker-footer {
    min-height: 92px;
    padding: 12px;
  }

  .sunday-vial-selected {
    min-width: 0;
    max-width: 45%;
  }

  .sunday-vial-picker-footer [data-confirm-free-vial] {
    width: 55%;
    padding: 0 12px;
    font-size: 11px;
  }

  .sunday-commerce-final-cta {
    min-height: 680px;
    background-position: 35% center;
  }

  .sunday-commerce-final-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(25,19,32,.03) 20%, rgba(28,22,34,.78) 100%);
  }

  .sunday-commerce-final-cta__inner {
    position: relative;
    z-index: 1;
    align-items: flex-end;
    width: calc(100% - 40px);
    padding-bottom: 42px;
    box-sizing: border-box;
  }

  .sunday-commerce-final-cta__copy {
    width: 100%;
    margin: 0;
  }

  .sunday-commerce-final-cta h2 {
    font-size: clamp(42px, 12vw, 58px) !important;
  }

  .sunday-commerce-page {
    width: min(100% - 24px, 1180px);
    margin-top: 34px;
  }

  .sunday-commerce-items .sunday-cart-item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    padding: 10px;
  }

  .sunday-commerce-items .sunday-cart-item img {
    width: 76px !important;
    height: 76px !important;
  }
}

@media (hover: none) {
  :where(
    .products .product,
    .woocommerce ul.products li.product,
    .tf_swiper-slide .product,
    .sunday-premium-card
  ):hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .sunday-motion-ready .sunday-reveal {
    opacity: 1 !important;
    transform: none !important;
  }

}

/* Product detail refinements: one hero image, verified badges, aligned purchase controls. */
body.single-product #tbp_content .module-product-image
  .woocommerce-product-gallery__wrapper
  > .woocommerce-product-gallery__image:not(:first-child),
body.single-product #tbp_content .module-product-image .flex-control-nav,
body.single-product #tbp_content .module-product-image .flex-control-thumbs {
  display: none !important;
}

body.single-product #tbp_content .module-icon:has(img[alt*="Purity Verified"]) {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 18px 0 20px !important;
}

body.single-product #tbp_content
  .module-icon:has(img[alt*="Purity Verified"])
  .module-icon-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 8px 13px !important;
  border: 1px solid rgba(48,43,53, .18) !important;
  border-radius: 999px !important;
  background: #f1edf6 !important;
  color: #302b35 !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: .015em !important;
  box-shadow: none !important;
  transition:
    border-color .22s ease,
    background-color .22s ease,
    color .22s ease !important;
}

body.single-product #tbp_content
  .module-icon:has(img[alt*="Purity Verified"])
  .module-icon-item img {
  display: none !important;
}

body.single-product #tbp_content
  .module-icon:has(img[alt*="Purity Verified"])
  .module-icon-item::before {
  content: "✓" !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 17px !important;
  height: 17px !important;
  flex: 0 0 17px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #5e4e70 !important;
  font: 700 10px/1 "IBM Plex Mono", monospace !important;
}

@media (hover: hover) {
  body.single-product #tbp_content
    .module-icon:has(img[alt*="Purity Verified"])
    .module-icon-item:hover {
    border-color: rgba(48,43,53, .42) !important;
    background: #e8e1f0 !important;
  }
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form)) {
  display: grid !important;
  grid-template-columns: 158px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: stretch !important;
  width: 100% !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .quantity {
  display: grid !important;
  grid-template-columns: 46px 64px 46px !important;
  align-items: stretch !important;
  width: 158px !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(48,43,53, .18) !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .quantity > button:not(.btn-adjust-qty) {
  display: none !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .quantity .btn-adjust-qty {
  display: grid !important;
  place-items: center !important;
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #302b35 !important;
  box-shadow: none !important;
  transform: none !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .quantity .btn-adjust-qty.minus {
  border-right: 1px solid rgba(48,43,53, .12) !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .quantity .btn-adjust-qty.plus {
  border-left: 1px solid rgba(48,43,53, .12) !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .quantity input.qty {
  display: block !important;
  width: 64px !important;
  min-width: 0 !important;
  height: 46px !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #302b35 !important;
  font: 500 16px/46px "IBM Plex Mono", monospace !important;
  text-align: center !important;
  box-shadow: none !important;
  appearance: textfield !important;
}

body.single-product #tbp_content
  :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
  .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border: 1px solid #854bc6 !important;
  border-radius: 7px !important;
  background: #854bc6 !important;
  color: #fff !important;
  box-sizing: border-box !important;
}

@media (hover: hover) {
  body.single-product #tbp_content
    :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
    .quantity .btn-adjust-qty:hover {
    background: #f1edf6 !important;
    color: #302b35 !important;
  }
}

@media (max-width: 480px) {
  body.single-product #tbp_content
    :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form)) {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.single-product #tbp_content
    :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
    .quantity {
    grid-template-columns: 48px minmax(0, 1fr) 48px !important;
    width: 100% !important;
  }

  body.single-product #tbp_content
    :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
    .quantity input.qty {
    width: 100% !important;
  }

  body.single-product #tbp_content
    :is(.woocommerce-variation-add-to-cart.variations_button, form.cart:not(.variations_form))
    .quantity .btn-adjust-qty {
    width: 48px !important;
    min-width: 48px !important;
  }
}

/* Footer cleanup: preserve legal navigation without the decorative image strip. */
html,
body,
#pagewrap,
#tbp_footer {
  margin-bottom: 0 !important;
}

body,
#pagewrap {
  padding-bottom: 0 !important;
}

#tbp_footer {
  position: relative;
  background: var(--sunday-olive) !important;
  box-shadow: 0 50vh 0 50vh var(--sunday-olive);
}

#tbp_footer :is(img, picture, .module-image, .module-gallery) {
  display: none !important;
}

#tbp_footer .tb_rife596,
#tbp_footer .tb_rife596 :is(.row_inner, .module_column, .module-menu, .module-menu-container) {
  background: none !important;
  background-image: none !important;
}

#tbp_footer .tb_rife596 .module-menu-container ul {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 22px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
}

#tbp_footer .tb_rife596 .module-menu-container li,
#tbp_footer .tb_rife596 .module-menu-container a {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  background-image: none !important;
  color: rgba(255,255,255, .72) !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 10px !important;
  line-height: 1.5 !important;
  text-indent: 0 !important;
  box-shadow: none !important;
}

#tbp_footer .tb_rife596 .module-menu-container li::before,
#tbp_footer .tb_rife596 .module-menu-container li::after,
#tbp_footer .tb_rife596 .module-menu-container a::before,
#tbp_footer .tb_rife596 .module-menu-container a::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

#tbp_footer .tb_2pae596 .tb_text_wrap {
  max-width: 48ch !important;
}

#tbp_footer .tb_2pae596 .tb_text_wrap p {
  color: rgba(255,255,255, .88) !important;
  font-family: "IBM Plex Mono", monospace !important;
  font-size: 11px !important;
  line-height: 1.62 !important;
  letter-spacing: .005em !important;
}

#tbp_footer .tb_2pae596 .tb_text_wrap strong {
  color: #fff !important;
  font-weight: 700 !important;
}

/* Keep product content close to the floating header. */
body.single-product #tbp_content {
  margin-top: 0 !important;
}

body.single-product #tbp_content
  > .themify_builder_content
  > .module_row:has(.module-product-image) {
  margin-top: 0 !important;
  padding-top: 32px !important;
}

@media (max-width: 900px) {
  body.single-product #tbp_content {
    margin-top: 0 !important;
  }

  body.single-product #tbp_content
    > .themify_builder_content
    > .module_row:has(.module-product-image) {
    padding-top: 24px !important;
  }
}

@media (max-width: 600px) {
  body.single-product #tbp_content
    > .themify_builder_content
    > .module_row:has(.module-product-image) {
    padding-top: 18px !important;
  }
}

/* Blog comments: keep consent rows and submit action in normal document flow. */
.comment-form .comment-form-cookies-consent,
.comment-form .comment-subscription-form {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 26px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 12px !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-height: 26px !important;
  margin: 16px 0 0 !important;
  padding: 0 !important;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"],
.comment-form .comment-subscription-form input[type="checkbox"] {
  position: static !important;
  grid-column: 1 !important;
  width: 22px !important;
  min-width: 22px !important;
  height: 22px !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  float: none !important;
  transform: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: 1px solid rgba(48,43,53, .42) !important;
  border-radius: 5px !important;
  background: #fff !important;
  box-shadow: none !important;
  cursor: pointer;
  transition:
    background-color var(--sunday-fast) ease,
    border-color var(--sunday-fast) ease;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]::after,
.comment-form .comment-subscription-form input[type="checkbox"]::after {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  margin: 3px auto 0;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(.7);
  transition: opacity var(--sunday-fast) ease, transform var(--sunday-fast) ease;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]:checked,
.comment-form .comment-subscription-form input[type="checkbox"]:checked {
  border-color: var(--sunday-peach) !important;
  background: var(--sunday-peach) !important;
}

.comment-form .comment-form-cookies-consent input[type="checkbox"]:checked::after,
.comment-form .comment-subscription-form input[type="checkbox"]:checked::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.comment-form .comment-form-cookies-consent label,
.comment-form .comment-subscription-form label {
  position: static !important;
  grid-column: 2 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  color: #697068 !important;
  font-family: var(--sunday-mono, "IBM Plex Mono", monospace) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.comment-form .form-submit {
  position: static !important;
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-height: 48px !important;
  margin: 26px 0 0 !important;
  padding: 0 !important;
}

.comment-form .form-submit input.submit {
  position: static !important;
  inset: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  min-width: 190px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 28px !important;
  transform: none !important;
}

/* Product FAQ: match the Home full-width section and its larger proportions. */
body.single-product .sunday-product-faq {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  min-height: 0 !important;
  margin-bottom: 0 !important;
  margin-right: -50vw !important;
  margin-left: -50vw !important;
  padding: clamp(60px, 6vw, 78px) max(24px, calc((100vw - 1165px) / 2)) !important;
  box-sizing: border-box !important;
  background-color: var(--sunday-mint) !important;
  background-image: url("../vespr/vespr-glass.webp") !important;
  background-position: left center !important;
  background-size: auto 100% !important;
  background-repeat: repeat-x !important;
}

body.single-product .sunday-product-faq > .row_inner {
  width: min(1165px, calc(100vw - 48px)) !important;
  max-width: 1165px !important;
  margin: 0 auto !important;
  column-gap: clamp(42px, 6vw, 92px) !important;
}

body.single-product
  .sunday-product-faq
  .fancy-heading
  .sub-head {
  font-family: var(--sunday-serif, serif) !important;
  font-size: 31.2px !important;
  line-height: 1.15 !important;
  letter-spacing: -.025em !important;
}

body.single-product .sunday-product-faq .module-accordion {
  width: 100% !important;
}

body.single-product
  .sunday-product-faq
  .module-accordion
  .accordion-title-wrap {
  font-size: 13px !important;
  line-height: 1.45 !important;
}

@media (max-width: 760px) {
  body.single-product .sunday-product-faq {
    min-height: 0 !important;
    padding: 54px 20px !important;
  }

  body.single-product .sunday-product-faq > .row_inner {
    width: 100% !important;
    row-gap: 34px !important;
  }

  body.single-product
    .sunday-product-faq
    .fancy-heading
    .sub-head {
    font-size: clamp(34px, 9vw, 42px) !important;
  }
}

body.single-product #body,
body.single-product #layout,
body.single-product #content,
body.single-product #tbp_content,
body.single-product #tbp_content > .themify_builder_content,
body.single-product #tbp_content > .themify_builder_content > .sunday-product-faq:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.single-product #tbp_footer {
  margin-top: 0 !important;
}

/* Scrolling article tools must stay below the fixed announcement and header. */
#research-warning-bar.sunday-announcement {
  z-index: 2147482000 !important;
}

#tbp_header {
  z-index: 2147481900 !important;
  isolation: isolate;
}

body.single-post #tbp_content,
body.single-post .module-social-share {
  position: relative !important;
  z-index: 1 !important;
}

/* Keep the cart's secondary actions on the same rounded button system. */
.sunday-cart-footer-actions button.sunday-action[data-close-sunday-cart] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 10px 18px !important;
  border: 1px solid #263b55 !important;
  border-radius: 999px !important;
  background: #263b55 !important;
  color: #fff !important;
}

/* Use one continuous VESPR green across every footer row. */
#tbp_footer,
#tbp_footer > .themify_builder_content,
#tbp_footer .module_row,
#tbp_footer .row_inner,
#tbp_footer .module_column {
  background-color: var(--sunday-olive) !important;
  background-image: none !important;
}
