/** Shopify CDN: Minification failed

Line 27:0 Unexpected "}"

**/
/* --- Brand-consistent cart notification styles (plum glass minimal) --- */
.cart__tos {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 1em 0 0.5em 0;
}
.cart__tos label, .cart__tos-label {
  text-align: left;
  line-height: 1.6;
  display: block;
}
.cart__tos a, .cart__tos-label a {
  color: #f0d080 !important;
  text-decoration: underline;
  transition: color 0.2s;
}
.cart__tos a:hover, .cart__tos a:focus, .cart__tos-label a:hover, .cart__tos-label a:focus {
  color: #d4a84e !important;
}

}
.cart__tos a {
  color: #f0d080 !important;
  text-decoration: underline;
  transition: color 0.2s;
}
.cart__tos a:hover, .cart__tos a:focus {
  color: #d4a84e !important;
}
.cart__tos input[type='checkbox'] {
  vertical-align: middle;
  accent-color: #f0d080;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
  margin-top: 0;
}
.cart-notification__view-cart {
  background: #f0d080 !important;
  color: #181820 !important;
  border: 1.5px solid #f0d080 !important;
  box-shadow: none;
}
.cart-notification__checkout {
  background: #fff !important;
  color: #181820 !important;
  border: none !important;
  box-shadow: none;
}

.cart-notification-wrapper {
  position: fixed;
  top: var(--header-height, 80px);
  right: 0;
  left: auto;
  z-index: 1000;
  width: 100%;
  max-width: 36.8rem;
  pointer-events: none;
}

.cart-notification-wrapper .cart-notification {
  display: block;
}

.cart-notification {
  background: rgba(40, 30, 46, 0.92);
  border-radius: 18px;
  border: 1.5px solid #f0d080;
  box-shadow: 0 4px 32px 0 #18182033, 0 1.5px 8px 0 #f0d08022;
  padding: 2.2em 2.2em 2em 2.2em;
  font-family: var(--font-body-family), Arial, sans-serif;
  margin-top: 1.2rem;
  margin-right: 2.2rem;
  margin-left: auto;
  max-width: 36.8rem;
  width: 100%;
  position: static;
  right: 0;
  left: auto;
  transform: none;
  visibility: hidden;
  pointer-events: auto;
  z-index: 1001;
  animation: cart-notification-fade-in 0.5s cubic-bezier(0.4,0,0.2,1);
}

.cart-notification.active {
  visibility: visible;
}

@media screen and (max-width: 749px) {
  .cart-notification-wrapper,
  .cart-notification,
  .cart-notification * {
    box-sizing: border-box !important;
  }
  .cart-notification-wrapper {
    right: 0;
    left: 0;
    margin: 0 auto;
    max-width: 98vw;
    width: 100vw;
  }
  .cart-notification {
    margin-right: auto;
    margin-left: auto;
    max-width: 98vw;
    width: 100vw;
    border-radius: 14px;
    padding: 1.2em 1.2em 1em 1.2em;
  }
}

.cart-notification__header {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.cart-notification__heading {
  align-items: center;
  display: flex;
  flex-grow: 1;
  margin-bottom: 0;
  margin-top: 0;
}

.cart-notification__heading .icon-checkmark {
  color: #7be495 !important; /* Brand-appropriate green */
  filter: drop-shadow(0 0 4px #7be49588);
  margin-right: 1rem;
  width: 1.3rem;
}

.cart-notification__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  margin: 0;
  z-index: 2;
  background: none;
  border: none;
  padding: 0.6rem;
  border-radius: 50%;
  transition: background 0.18s;
}
.cart-notification__close:hover, .cart-notification__close:focus {
  background: rgba(240, 208, 128, 0.12);
}

@media screen and (max-width: 749px) {
  .cart-notification__close {
    top: 0.7rem;
    right: 0.7rem;
    padding: 0.7rem;
  }
}

.cart-notification__links {
  text-align: center;
}

.cart-notification__links > * {
  margin-top: 1rem;
}

.cart-notification__links .button {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 auto;
  display: block;
  font-weight: 700;
  font-family: var(--font-body-family), Arial, sans-serif;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #18182022;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
}
.cart-notification__links .button:first-child {
  background: #f0d080;
  color: #2a1a1a;
  border: 1.5px solid #f0d080;
}
.cart-notification__links .button:first-child:hover {
  background: #ffe9b3;
  color: #181820;
  box-shadow: 0 4px 16px #f0d08044;
}
.cart-notification__links .button:last-child {
  background: #fffbe6;
  color: #2a1a1a;
  border: 1.5px solid #f0d080;
}
.cart-notification__links .button:last-child:hover {
  background: #f0d080;
  color: #181820;
  box-shadow: 0 4px 16px #f0d08044;
}
.cart-notification__links .link.button-label {
  color: #f0d080;
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 2px;
  transition: color 0.18s, text-decoration-color 0.18s;
  background: none;
  border: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
}
.cart-notification__links .link.button-label:hover {
  color: #fffbe6;
  text-decoration-color: #fffbe6;
}

.cart-notification-product {
  align-items: flex-start;
  display: flex;
  padding-bottom: 3rem;
  padding-top: 2rem;
}

.cart-notification-product dl {
  margin-bottom: 0;
  margin-top: 0;
}

.cart-notification-product__image {
  display: inline-flex;
  margin-right: 1.5rem;
  margin-top: 0.5rem;
}

.cart-notification-product__image:after {
  content: none;
}

.cart-notification-product__name {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

@keyframes cart-notification-fade-in {
  0% { opacity: 0; transform: translateY(-16px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
