/** Shopify CDN: Minification failed

Line 124:8 Expected ":"

**/
/* ==========================================================
   CART DRAWER (CLEAN) — matchar nuvarande cart-drawer.liquid
   ========================================================== */

/* Drawer shell */
.drawer {
  position: fixed;
  z-index: 10000;
  inset: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  transition: visibility var(--duration-default) ease;
}

/* Desktop: blur bakom */
@media screen and (min-width: 750px) {
  .drawer {
    background-color: transparent;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
}

.drawer.active {
  visibility: visible;
}

/* Click-overlay */
cart-drawer {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100%;
}

.cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgb(255 255 255 / 8%);
  display: block !important;
}

/* Panel */
.drawer__inner {
  height: 100%;
  width: 44rem;
  max-width: calc(100vw - 3rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #1d1d1f;

  transform: translateX(100%);
  transition: transform var(--duration-default) ease;
}

.drawer.active .drawer__inner {
  transform: translateX(0);
}

/* Full width på mobil */
@media screen and (max-width: 749px) {
  .drawer__inner {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
}

/* Empty state wrapper */
.drawer__inner-empty {
  height: 100%;
  padding: 0 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cart-drawer__warnings {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

/* När cart är empty */
cart-drawer.is-empty .drawer__inner {
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 0;
}

cart-drawer.is-empty .drawer__header {
  display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
  display: none;
}

/* Header / top */
.cart-drawer__top {
  margin-bottom: 0;
}

.drawer__header {
  position: relative;
  padding: 1.5rem 0 30px 0rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  column; gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-drawer__title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.drawer__close {
  display: inline-block;
  padding: 0;
  min-width: 27px;
  min-height: 27px;
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}

.drawer__close .svg-wrapper {
  height: 1.3rem;
  width: 1.3rem;
  margin-top: 2px;
}

.cart-drawer__divider {
  margin-top: 0.65rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
}

/* Main layout: items + summary + upsell */
.cart-drawer__main {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

cart-drawer-items {
  flex: 0 0 auto;
  padding: 0 15px;
  overflow: visible;
}

.cart-drawer__form {
  display: flex;
  flex-direction: column;
}

.drawer__contents {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-top: 0.75rem;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Item */
.cart-drawer__items .cart-drawer-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  column-gap: 20px;
  align-items: flex-start;
  padding: 0;
  border-radius: 0.9rem;
  background: transparent;
  overflow: visible;
}

.cart-drawer-item__media {
  width: 73px;
  flex-shrink: 0;
  padding: 0;
  border-radius: 8px;
}

.cart-drawer-item__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

.cart-drawer-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.cart-drawer-item__top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.cart-drawer-item__title {
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-item__subtext {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.7);
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-item__options {
  margin: 0;
}

.cart-drawer-item__options .product-option {
  font-size: 12px;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.7);
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

/* Prices + remove */
.cart-drawer-item__prices {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.cart-drawer-item__prices-left {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.cart-drawer-item__price--current {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-item__price--compare {
  text-decoration: line-through;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  opacity: 0.5;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-item__remove {
  border: none;
  background: none;
  padding: 0;
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  color: #b4b4b4;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

/* Qty + remove row */
.cart-drawer-item__bottom-row {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-drawer-qty {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-drawer-qty-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 2.8rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #00000024;
  background: #fff;
  cursor: pointer;
  color: #0000005c;
  line-height: 1;
}

.cart-drawer-qty-label {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-qty-icon svg {
  width: 9px;
  height: 5px;
}

.cart-drawer-qty-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.35rem;
  min-width: 3.2rem;
  max-height: 12rem;
  overflow-y: auto;
  padding: 0.25rem 0;
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.cart-drawer-qty-menu.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cart-drawer-qty-option {
  display: block;
  width: 100%;
  padding: 0.45rem 0.8rem;
  border: 0;
  background: #ffffff;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-qty-option:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* Summary */
.cart-drawer__summary-card {
  margin-top: 3rem;
  padding: 23px 24px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  flex: 0 0 auto;
}

.cart-drawer__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 400;
  color: #b4b4b4;
  line-height: 1.3;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__summary-value {
  font-weight: 600;
  font-size: 17px !important;
  color: #fff;
}

.cart-drawer__checkout-button {
  margin-top: 0.65rem;
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 18px 5px;
  border-radius: 8px;
  font-size: 18px;
  background: #4c19d8;
  color: #fff;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__checkout-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Upsell (sitter längst ner) */
.cart-drawer__upsell {
  margin-top: auto;
  flex: 0 0 auto;
  transition: opacity 0.22s ease, transform 0.22s ease;
  opacity: 1;
  transform: translateY(0);
}

.cart-drawer__upsell.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
}

.cart-drawer__upsell.is-prep-in {
  opacity: 0;
  transform: translateY(10px);
}

.cart-drawer__upsell-label {
  padding: 0.4rem 1.5rem;
  text-align: center;
  font-size: 15px;
  background: rgb(153 102 255 / 20%);
  color: #fff;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__upsell-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 20px;
  align-items: center;
  padding: 4rem 1.5rem;
  background: #272727;
}

.cart-drawer__upsell-media img {
  width: 73px;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
}

.cart-drawer__upsell-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-drawer__upsell-title {
  font-size: 14px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  margin: 0px;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__upsell-prices {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.cart-drawer__upsell-price,
.cart-drawer__upsell-compare {
  font-size: 13px;
  line-height: 1.3;
  color: #fff;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__upsell-compare {
  text-decoration: line-through;
  opacity: 0.5;
}

.cart-drawer__upsell-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 21px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  background: rgb(153 102 255 / 75%);
  color: #fff;
  width: 100%;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__upsell-button:hover {
  filter: brightness(1.05);
}

/* Errors (du reloadar ändå i JS) */
#CartDrawer-CartErrors {
  display: none;
}

/* Scroll lock */
html.overflow-hidden,
body.overflow-hidden {
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 749px) {
  body.overflow-hidden {
    position: fixed;
    width: 100%;
    inset: 0;
  }
}


/* === Cart drawer checkout button: match license-card button style === */
.cart-drawer__checkout-button.license-card__btn{
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: 18px 16px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;

  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.cart-drawer__checkout-button.license-card__btn--primary{
  background: #96f;
  color: #fff;
}

.cart-drawer__checkout-button.license-card__btn:disabled{
  opacity: .55;
  cursor: not-allowed;
}

/* Shimmer layer */
.cart-drawer__checkout-button.license-card__btn::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 22%,
    rgba(255,255,255,0) 45%
  );
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}

/* Soft inner highlight */
.cart-drawer__checkout-button.license-card__btn::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}

/* Hover */
.cart-drawer__checkout-button.license-card__btn:hover:not(:disabled){
  transform: translateY(-2px);
  filter: saturate(1.12) brightness(1.04);
  box-shadow:
    0 0 0 1px rgba(153,102,255,0.35),
    0 14px 36px rgba(153,102,255,0.42),
    0 10px 22px rgba(0,0,0,0.28);
}

.cart-drawer__checkout-button.license-card__btn:hover:not(:disabled)::before{
  transform: translateX(120%);
}

.cart-drawer__checkout-button.license-card__btn:hover:not(:disabled)::after{
  opacity: 1;
}

/* Active (click) */
.cart-drawer__checkout-button.license-card__btn:active:not(:disabled){
  transform: translateY(0px);
  box-shadow:
    0 0 0 1px rgba(153,102,255,0.30),
    0 10px 24px rgba(153,102,255,0.30),
    0 8px 18px rgba(0,0,0,0.25);
}

.cart-drawer-item__delivery-note {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: #b4b4b4;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__checkout-note{
  margin-top: 10px;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  color: #b4b4b4;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer-item__remove{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.cart-drawer-item__remove-icon{
  display: inline-flex;
  width: 14px;
  height: 14px;
}

.cart-drawer-item__remove-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.cart-drawer-item__remove-icon svg path{
  fill: #b4b4b4;
  opacity: 0.4;
}

.cart-drawer-item__remove:hover .cart-drawer-item__remove-icon svg path{
  opacity: 1;
}

.cart-drawer__upsell-subtext{
  margin: 0px;
  font-size: 12px;
  line-height: 1.3;
  color: #b4b4b4;
  font-weight: 400;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}

.cart-drawer__subtitle{
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
  color: #b4b4b4;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, Poppins, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  letter-spacing: 0px;
}
