/** Shopify CDN: Minification failed

Line 536:0 Expected "*/" to terminate multi-line comment

**/
/* Root drawer container (hidden by default) */
.wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;           /* hidden until JS opens it */
}

/* When JS opens the drawer */
.wishlist-drawer.is-open {
  display: block;
}

/* Dark background overlay */
.wishlist-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* gray overlay */
  border: 0;
  padding: 0;
  margin: 0;
}

/* Slide-in panel */
.wishlist-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #ffffff;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.25);
  transform: translateX(100%);
  transition: transform 0.25s ease-out;
}

/* Panel visible when open */
.wishlist-drawer.is-open .wishlist-drawer__panel {
  transform: translateX(0);
}

/* Optional basic layout / typography */
.wishlist-drawer__header,
.wishlist-drawer__footer {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
}

.wishlist-drawer__footer {
  border-top: 1px solid #eee;
  border-bottom: 0;
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
}

.wishlist-drawer__body {
  padding: 1rem 1.25rem;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.wishlist-drawer__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.wishlist-drawer__close {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* When drawer is open, prevent page from scrolling */
html.wishlist-open {
  overflow: hidden;
}
.wishlist-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wishlist-item__media img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.wishlist-item__main {
  flex: 1 1 auto;
  min-width: 0;
}

.wishlist-item__title {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-decoration: none;
}

.wishlist-item__title:hover {
  text-decoration: underline;
}

.wishlist-item__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.25rem;
  align-items: center;
}

.wishlist-item__field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
}

.wishlist-item__variant-select,
.wishlist-item__qty {
  min-width: 120px;
  max-width: 180px;
}

.wishlist-item__qty {
  width: 80px;
}

.wishlist-item__remove {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.wishlist-item__price {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
/* More spacing + nicer layout for wishlist items */

.wishlist-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space between items */
}

.wishlist-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eeeeee;
}

.wishlist-item__controls {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.wishlist-item__field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8rem;
}

.wishlist-item__variant-select,
.wishlist-item__qty {
  min-width: 120px;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #dddddd;
  font-size: 0.9rem;
}

.wishlist-item__qty {
  max-width: 70px;
}

.wishlist-item__price {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.95rem;
  color: #037439;
}

.wishlist-item__remove {
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.85rem;
  color: #b91c1c;
  text-decoration: underline;
  cursor: pointer;
}

/* Make sure body doesn't scroll when drawer is open */
html.wishlist-no-scroll {
  overflow: hidden;
}
/* Drawer positioning / overlay */
.wishlist-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.wishlist-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  border: 0;
}

.wishlist-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.12);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
}

.wishlist-drawer.is-open {
  pointer-events: auto;
}

.wishlist-drawer.is-open .wishlist-drawer__overlay {
  opacity: 1;
  pointer-events: auto;
}

.wishlist-drawer.is-open .wishlist-drawer__panel {
  transform: translateX(0);
}

/* Header / body / footer */
.wishlist-drawer__header,
.wishlist-drawer__footer {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.wishlist-drawer__footer {
  border-bottom: 0;
  border-top: 1px solid #f0f0f0;
}

.wishlist-drawer__body {
  padding: 0.5rem 1rem 0.75rem;
  overflow-y: auto;
  flex: 1 1 auto;
}

/* List + items compact layout */
.wishlist-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wishlist-item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.6rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.wishlist-item:last-child {
  border-bottom: 0;
}

.wishlist-item__image-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.wishlist-item__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wishlist-item__main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wishlist-item__title {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.wishlist-item__link {
  text-decoration: none;
  color: inherit;
}

.wishlist-item__link:hover .wishlist-item__title {
  text-decoration: underline;
}

.wishlist-item__price {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #037439;
}

/* Variant + qty in a tight row */
.wishlist-item__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.wishlist-item__field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.75rem;
}

.wishlist-item__variant-label {
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wishlist-item__variant-select,
.wishlist-item__qty {
  font-size: 0.8rem;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  border: 1px solid #dddddd;
}

.wishlist-item__variant-select {
  min-width: 140px;
  max-width: 200px;
}

.wishlist-item__qty {
  width: 60px;
}

.wishlist-item__remove {
  margin-top: 0.1rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.8rem;
  color: #b91c1c;
  text-decoration: underline;
  cursor: pointer;
}

/* Total row + buttons */
.wishlist-drawer__total-row {
  margin-bottom: 0.35rem;
  min-height: 1.1rem;
}

.wishlist-drawer__total {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.wishlist-drawer__total--empty .wishlist-drawer__total {
  opacity: 0.6;
}

.wishlist-drawer__footer-buttons {
  display: flex;
  gap: 0.5rem;
}

.wishlist-drawer__footer-buttons .button {
  flex: 1 1 0;
}

/* Prevent page scroll when drawer open */
html.wishlist-no-scroll {
  overflow: hidden;
}
/* =========================
   BRAVO Wishlist (Product page)
   Palette from BRAVO guide:
   Green #037439 | Red #CE2B37 | Gray #999999 | Black #000000
========================= */

.product-wishlist {
  /* removes the “boxed” feel: just two clean pills */
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-wishlist .product-wishlist-toggle,
.product-wishlist .product-wishlist-open {
  /* make both controls visually “even” */
  min-height: 44px;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-family: "Arial Narrow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1;
}

/* --- Add to wishlist button (primary outline) --- */
.product-wishlist .product-wishlist-toggle.button {
  background: #ffffff;
  color: #037439;
  border: 2px solid #037439;
  box-shadow: none;
}

/* Dawn buttons often draw borders/shadows with pseudo elements */
.product-wishlist .product-wishlist-toggle.button::before,
.product-wishlist .product-wishlist-toggle.button::after {
  content: none !important;
}

.product-wishlist .product-wishlist-toggle:hover {
  background: #037439;
  color: #ffffff;
}

.product-wishlist .product-wishlist-toggle:focus-visible {
  outline: 3px solid #CE2B37;
  outline-offset: 3px;
}

/* Icon spacing */
.product-wishlist .wishlist-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-size: 1.15em;
  position: relative;
}

/* --- “Added” state support (works if your JS toggles any of these) --- */
.product-wishlist .product-wishlist-toggle.is-active,
.product-wishlist .product-wishlist-toggle[aria-pressed="true"],
.product-wishlist .product-wishlist-toggle[data-added="true"] {
  background: #037439;
  color: #ffffff;
  border-color: #037439;
}

/* swap ♡ to ♥ when active (without needing JS text changes) */
.product-wishlist .product-wishlist-toggle.is-active .wishlist-toggle__icon,
.product-wishlist .product-wishlist-toggle[aria-pressed="true"] .wishlist-toggle__icon,
.product-wishlist .product-wishlist-toggle[data-added="true"] .wishlist-toggle__icon {
  color: transparent;
}

.product-wishlist .product-wishlist-toggle.is-active .wishlist-toggle__icon::after,
.product-wishlist .product-wishlist-toggle[aria-pressed="true"] .wishlist-toggle__icon::after,
.product-wishlist .product-wishlist-toggle[data-added="true"] .wishlist-toggle__icon::after {
  content: "♥";
  color: #ffffff;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* --- View wishlist (secondary pill, softer border) --- */
.product-wishlist .product-wishlist-open.link {
  text-decoration: none;
  background: #ffffff;
  color: #037439;
  border: 2px solid rgba(3, 116, 57, 0.25);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-wishlist .product-wishlist-open:hover {
  border-color: #037439;
  background: rgba(3, 116, 57, 0.06);
  color: #037439;
}

.product-wishlist .product-wishlist-open:focus-visible {
  outline: 3px solid #CE2B37;
  outline-offset: 3px;
}

/* --- Mobile: stac*
