body.amha-fav-open {
  overflow: hidden;
}

.xoo-wsc-product,
.sccp-custom-product-card {
  position: relative;
}

.xoo-wsc-product.is-updating,
.sccp-custom-product-card.is-updating {
  pointer-events: none;
}

.amha-fav-card__updating {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 16;
}

.amha-fav-card__updating span {
  font-size: 12px;
  color: #777;
}

.xoo-wsc-product.is-loading,
.sccp-custom-product-card.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.xoo-wsc-product.is-loading::after,
.sccp-custom-product-card.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--sccp-border-color, #e0e0e0);
  border-top-color: var(--sccp-text-color, #333);
  border-radius: 50%;
  animation: amha-spin 0.6s linear infinite;
  z-index: 3;
}

.amha-fav-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--sccp-text-color, #333);
  cursor: pointer;
  transition: color 0.2s ease;
}
.amha-fav-header:hover {
  color: #e63946;
}
.amha-fav-header__icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}
.amha-fav-header:hover .amha-fav-header__icon {
  transform: scale(1.1);
}
.amha-fav-header__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #e63946;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.amha-fav-header__count.is-visible {
  opacity: 1;
  transform: scale(1);
}

.favourites-icon-shortcode {
  height: 1.25rem;
}

.amha-fav-product {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.amha-fav-product:hover {
  transform: scale(1.1);
}
.amha-fav-product__icon {
  width: 20px;
  height: 20px;
  color: #777;
  transition: all 0.2s ease;
}
.amha-fav-product__icon--empty {
  display: block;
}
.amha-fav-product__icon--filled {
  display: none;
  color: #e63946;
}
.amha-fav-product:hover .amha-fav-product__icon--empty {
  color: #e63946;
}
.amha-fav-product.is-active .amha-fav-product__icon--empty {
  display: none;
}
.amha-fav-product.is-active .amha-fav-product__icon--filled {
  display: block;
  animation: amha-fav-heartbeat 0.4s ease;
}
.amha-fav-product--small {
  width: 28px;
  height: 28px;
}
.amha-fav-product--small .amha-fav-product__icon {
  width: 16px;
  height: 16px;
}

@keyframes amha-fav-heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes amha-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.amha-fav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.amha-fav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.amha-fav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 95%;
  max-width: 420px;
  height: 100%;
  background: var(--sccp-bg-color, #fff);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
}
.amha-fav-drawer.is-active {
  transform: translateX(0);
}
.amha-fav-drawer *::-webkit-scrollbar {
  width: 8px;
}
.amha-fav-drawer *::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f0f0f0;
}
.amha-fav-drawer *::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background: #d1d1d1;
}
.amha-fav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 15px 15px 20px;
  border-bottom: 0;
  background: var(--sccp-bg-color, #fff);
}
.amha-fav-drawer__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: var(--sccp-text-color, #333);
}
.amha-fav-drawer__close {
  width: 19.999998px;
  height: 19.999998px;
  border: 1px solid #0b0b0b;
  border-radius: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.316px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.amha-fav-drawer__close svg {
  width: 16.842px;
  height: 16.842px;
  stroke: currentColor;
}
.amha-fav-drawer__close:hover {
  background: #0b0b0b;
  color: #ffffff;
}
.amha-fav-drawer__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
}
.amha-fav-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  color: #777;
}
.amha-fav-drawer__empty-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  opacity: 0.3;
}
.amha-fav-drawer__empty p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--sccp-text-color, #333);
}
.amha-fav-drawer__empty span {
  font-size: 13px;
  font-weight: 350;
  letter-spacing: -0.26px;
  color: #777;
}
.amha-fav-drawer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px solid var(--sccp-border-color, #e0e0e0);
  position: relative;
  transition: opacity 0.2s ease;
}
.amha-fav-drawer__item-image {
  width: 69.635px;
  height: 76px;
  flex-shrink: 0;
  border-radius: var(--sccp-button-radius, 4px);
  overflow: hidden;
  position: relative;
}
.amha-fav-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.amha-fav-drawer__item-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee 0%, #ddd 100%);
}
.amha-fav-drawer__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amha-fav-drawer__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.amha-fav-drawer__item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: var(--sccp-text-color, #333);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.amha-fav-drawer__item-title:hover {
  color: #777;
}
.amha-fav-drawer__item-price {
  font-size: 13px;
  font-weight: 350;
  line-height: 1.3;
  letter-spacing: -0.26px;
  color: var(--sccp-text-color, #333);
}
.amha-fav-drawer__item-price .woocommerce-Price-amount {
  font-family: inherit;
  font-weight: inherit;
}
.amha-fav-drawer__item-price del {
  color: #777;
  font-weight: 350;
  margin-right: var(--space-sm);
}
.amha-fav-drawer__item-price ins {
  text-decoration: none;
  color: var(--sccp-text-color, #333);
}
.amha-fav-drawer__item-cart {
  margin-top: auto;
  padding: 14px 20px;
  border: none;
  border-radius: var(--sccp-button-radius, 4px);
  background: var(--sccp-button-color, #000);
  color: var(--sccp-button-text-color, #ffffff);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
  line-height: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
}
.amha-fav-drawer__item-cart svg {
  width: 18.667px;
  height: 18.667px;
}
.amha-fav-drawer__item-cart:hover:not(:disabled) {
  background: var(--sccp-button-hover-color, #333);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.amha-fav-drawer__item-cart:disabled {
  background: #d1cfe0;
  color: #777;
  cursor: not-allowed;
}
.amha-fav-drawer__item-remove {
  width: 19.999998px;
  height: 19.999998px;
  border: 1px solid #0b0b0b;
  border-radius: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.316px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.amha-fav-drawer__item-remove:hover {
  background: #0b0b0b;
  color: #ffffff;
}
.amha-fav-drawer__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.amha-fav-drawer.is-updating {
  pointer-events: none;
}
.amha-fav-drawer.is-updating::before {
  content: "";
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 100%, 0.7);
  z-index: 10;
}
.amha-fav-drawer .amha-fav-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sccp-border-color, #e0e0e0);
  border-top-color: var(--sccp-text-color, #333);
  border-radius: 50%;
  animation: amha-spin 0.6s linear infinite;
}
.amha-fav-drawer__updating {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 11;
  padding: 24px 32px;
  border-radius: var(--sccp-border-radius, 8px);
}
.amha-fav-drawer__updating span {
  font-size: 12px;
  color: #777;
}
.amha-fav-drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--sccp-border-color, #e0e0e0);
  background: var(--sccp-bg-color, #fff);
}
.amha-fav-drawer__btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: var(--sccp-button-radius, 4px);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
  line-height: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
}
.amha-fav-drawer__btn--primary {
  background: var(--sccp-button-color, #000);
  color: var(--sccp-button-text-color, #ffffff);
}
.amha-fav-drawer__btn--primary:hover:not(:disabled) {
  background: var(--sccp-button-hover-color, #333);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.amha-fav-drawer__btn--primary:disabled {
  background: #d1cfe0;
  color: #777;
  cursor: not-allowed;
}

.amha-fav-checkout {
  margin: 20px 0;
  padding: 20px;
  background: #fafafa;
  border-radius: var(--sccp-border-radius, 8px);
}
.amha-fav-checkout__title {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.32px;
  color: var(--sccp-text-color, #333);
}
.amha-fav-checkout__grid {
  display: grid;
  grid-template-columns: repeat(var(--columns, 4), 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .amha-fav-checkout__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .amha-fav-checkout__grid {
    grid-template-columns: 1fr;
  }
}
.amha-fav-checkout__item {
  display: flex;
  flex-direction: column;
  background: var(--sccp-bg-color, #fff);
  border-radius: var(--sccp-button-radius, 4px);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}
.amha-fav-checkout__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.amha-fav-checkout__item-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
}
.amha-fav-checkout__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.amha-fav-checkout__item-image:hover img {
  transform: scale(1.05);
}
.amha-fav-checkout__item-info {
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.amha-fav-checkout__item-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.26px;
  color: var(--sccp-text-color, #333);
  text-decoration: none;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.amha-fav-checkout__item-title:hover {
  color: #777;
}
.amha-fav-checkout__item-price {
  font-size: 13px;
  font-weight: 350;
  letter-spacing: -0.26px;
  color: var(--sccp-text-color, #333);
  margin-top: auto;
}
.amha-fav-checkout__item-price del {
  color: #777;
  font-weight: 350;
}
.amha-fav-checkout__item-price ins {
  text-decoration: none;
  color: var(--sccp-text-color, #333);
}
.amha-fav-checkout__item-add {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: var(--sccp-button-color, #000);
  color: var(--sccp-button-text-color, #ffffff);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.amha-fav-checkout__item-add svg {
  width: 16px;
  height: 16px;
}
.amha-fav-checkout__item-add:hover:not(:disabled) {
  background: var(--sccp-button-hover-color, #333);
  transform: scale(1.1);
}
.amha-fav-checkout__item-add:disabled {
  background: #d1cfe0;
  cursor: not-allowed;
}
.amha-fav-checkout__item-add.is-added {
  background: #4CAF50;
}
.amha-fav-checkout__item-add.is-added svg {
  animation: amha-fav-check 0.3s ease;
}

@keyframes amha-fav-check {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.amha-fav-variation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 15px;
}
.amha-fav-variation-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.amha-fav-variation-modal__content {
  background: var(--sccp-bg-color, #f7f7f6);
  border-radius: var(--sccp-border-radius, 8px);
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: amha-fav-modal-slide-up 0.3s ease;
}
.amha-fav-variation-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.amha-fav-variation-modal__close svg {
  width: 16px;
  height: 16px;
}
.amha-fav-variation-modal__close:hover {
  background: #fff;
  transform: scale(1.1);
}
.amha-fav-variation-modal__attribute {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.amha-fav-variation-modal__label {
  font-size: 13px;
  font-weight: 350;
  line-height: 1.3;
  letter-spacing: -0.26px;
  color: #777;
  margin: 0;
}
.amha-fav-variation-modal__options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 5px;
}
.amha-fav-variation-modal__options--flex {
  display: flex;
  flex-wrap: wrap;
}
.amha-fav-variation-modal__option {
  border: 0.8px solid var(--sccp-border-color, #d1cfe0);
  background: transparent;
  color: var(--sccp-text-color, #333);
  padding: 2px 8px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 350;
  letter-spacing: -0.33px;
  text-align: center;
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex: 1 0 auto;
}
.amha-fav-variation-modal__option:hover:not(:disabled) {
  background: var(--sccp-bg-color, #fff);
  border-color: var(--sccp-text-color, #333);
}
.amha-fav-variation-modal__option.is-selected {
  background: var(--sccp-text-color, #333);
  color: var(--sccp-bg-color, #fff);
  border-color: var(--sccp-text-color, #333);
}
.amha-fav-variation-modal__option:disabled {
  border-color: #777;
  color: #777;
  opacity: 0.6;
  cursor: not-allowed;
}
.amha-fav-variation-modal__add-btn {
  background: var(--sccp-button-color, #000);
  color: var(--sccp-button-text-color, #ffffff);
  border: none;
  border-radius: var(--sccp-button-radius, 4px);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.28px;
  line-height: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  transition: all 0.2s ease;
  width: 100%;
}
.amha-fav-variation-modal__add-btn svg {
  width: 18.667px;
  height: 18.667px;
}
.amha-fav-variation-modal__add-btn:hover:not(:disabled) {
  background: var(--sccp-button-hover-color, #333);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.amha-fav-variation-modal__add-btn:disabled {
  background: #d1cfe0;
  color: #777;
  cursor: not-allowed;
}
.amha-fav-variation-modal__error {
  padding: 10px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: var(--sccp-button-radius, 4px);
  color: #856404;
  font-size: 13px;
  text-align: center;
}

@keyframes amha-fav-modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.amha-fav-variation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--sccp-bg-color, #f7f7f6);
  padding: 15px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  justify-content: space-between;
}
.amha-fav-variation-overlay.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.amha-fav-variation-overlay--loading {
  align-items: center;
  justify-content: center;
}
.amha-fav-variation-overlay__spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.amha-fav-var__close {
  position: absolute;
  top: 20px;
  right: 0px;
  display: inline-flex;
  width: 25.263px;
  height: 20px;
  padding: 7.368px 6.316px;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 0.526px solid #D1CFE0;
  color: #D1CFE0;
  background: transparent;
}
.amha-fav-var__close:hover {
  background: #0b0b0b;
  color: #ffffff;
}
.amha-fav-var__group {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: var(--space-sm);
}
.amha-fav-var__label {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.24px;
  color: #777;
  text-transform: capitalize;
  margin: 0;
}
.amha-fav-var__opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
}
.amha-fav-var__opt {
  /*border: 0.8px solid var(--sccp-border-color, #d1cfe0);
  background: transparent;
  color: var(--sccp-text-color, #333);
  padding: 6px 12px;
  border-radius: $amha-fav-radius-pill;
  cursor: pointer;
  font-size: $amha-fav-font-size-xs;
  font-weight: $amha-fav-font-weight-light;
  letter-spacing: -0.22px;
  text-align: center;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all $amha-fav-transition-fast;
  white-space: nowrap;*/
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 2px var(--space-sm);
  min-height: 22px;
  border: 0.8px solid var(--color-grey-dark);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-tags);
  line-height: var(--line-height-small);
  text-transform: uppercase;
  color: var(--color-black);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.amha-fav-var__opt:hover:not(:disabled) {
  border-color: var(--sccp-text-color, #333);
}
.amha-fav-var__opt.is-selected {
  /*background: var(--sccp-text-color, #333);
  color: var(--sccp-bg-color, #fff);
  border-color: var(--sccp-text-color, #333);*/
  font-weight: 600;
  background: var(--color-primary-100);
  border-color: var(--color-primary-100);
  color: var(--color-white);
}
.amha-fav-var__opt:disabled {
  border-color: #777;
  color: #777;
  opacity: 0.6;
  cursor: not-allowed;
}
.amha-fav-var__add:disabled {
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .amha-fav-variation-modal {
    padding: 10px;
  }
  .amha-fav-variation-modal__content {
    max-width: 400px;
  }
  .amha-fav-variation-modal__options {
    grid-template-columns: repeat(3, 1fr);
  }
  .amha-fav-variation-overlay {
    gap: 10px;
  }
  .amha-fav-var__opts {
    gap: 4px;
  }
  .amha-fav-var__opt {
    padding: 4px 8px;
    font-size: 10px;
    min-height: 24px;
  }
}
.amha-fav-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: 20px;
}
.amha-fav-confirm-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.amha-fav-confirm-dialog {
  background: var(--sccp-bg-color, #fff);
  border-radius: var(--sccp-border-radius, 8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  width: 100%;
  padding: 20px;
  transform: translateY(-10px);
  transition: transform 0.2s ease;
}
.amha-fav-confirm-overlay.is-active .amha-fav-confirm-dialog {
  transform: translateY(0);
}

.amha-fav-confirm-message {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--sccp-text-color, #333);
  text-align: center;
  margin: 0 0 20px 0;
}

.amha-fav-confirm-buttons {
  display: flex;
  gap: 10px;
}

.amha-fav-confirm-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--sccp-button-radius, 4px);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}
.amha-fav-confirm-btn--cancel {
  background: transparent;
  border: 1px solid var(--sccp-border-color, #e0e0e0);
  color: var(--sccp-text-color, #333);
}
.amha-fav-confirm-btn--cancel:hover {
  background: #f5f5f5;
  border-color: var(--sccp-text-color, #333);
}
.amha-fav-confirm-btn--confirm {
  background: #dc3545;
  color: #ffffff;
}
.amha-fav-confirm-btn--confirm:hover {
  background: #c82333;
}

.xoo-wsc-header,
.amha-fav-drawer .xoo-wsc-header {
  padding: 40px 15px 15px 20px;
  border-bottom: 0;
}

.xoo-wsch-text {
  color: #0B0B0B;
  font-feature-settings: "swsh" on;
  font-size: 23px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.23px;
  margin: 0;
}

.xoo-wsc-cart-active .xoo-wsc-container,
.xoo-wsc-slider-active .xoo-wsc-slider,
.xoo-wsc-body,
.amha-fav-drawer {
  background: #f0f0ef;
}

.xoo-wsc-body,
.amha-fav-drawer__body {
  padding: 0 20px;
}

.xoo-wsc-container .sccp-remaining-text,
.xoo-wsc-container .sccp-completed-message,
.amha-fav-drawer .sccp-remaining-text,
.amha-fav-drawer .sccp-completed-message {
  color: #0B0B0B;
  font-size: 13px;
  font-weight: 350;
  line-height: 1.3;
  letter-spacing: -0.26px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.xoo-wsc-container .sccp-progress-container,
.amha-fav-drawer .sccp-progress-container {
  padding: 0;
  margin: 0;
}

.xoo-wsc-container .sccp-progress-bar-wrapper,
.amha-fav-drawer .sccp-progress-bar-wrapper {
  position: relative;
  padding-top: 0.9375rem;
  padding-bottom: 0 !important;
}

.xoo-wsc-container .sccp-progress-fill,
.xoo-wsc-container .sccp-progress-track,
.amha-fav-drawer .sccp-progress-fill,
.amha-fav-drawer .sccp-progress-track {
  border-radius: 0;
}

.amha-fav-drawer .sccp-progress-track {
  height: var(--sccp-bar-height, 8px);
  background-color: var(--sccp-empty-color, #e0e0e0);
  overflow: hidden;
  position: relative;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-product,
.amha-fav-drawer .xoo-wsc-product {
  display: flex;
  padding: 11px 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-bottom: 1px solid #D1CFE0;
  border-radius: 0;
  background: none;
  flex-wrap: wrap;
}

.xoo-wsc-pattern-card,
.xoo-wsc-img-col img,
.xoo-wsc-img-col,
.xoo-wsc-sm-back-cont,
.amha-fav-drawer .xoo-wsc-img-col img,
.amha-fav-drawer .xoo-wsc-img-col {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-img-col,
.amha-fav-drawer .xoo-wsc-img-col {
  width: 28%;
  max-width: 70px;
}

.sccp-delete-btn {
  width: 19.999998px;
  height: 19.999998px;
  border: 1px solid #0b0b0b;
  border-radius: 100px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.316px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sccp-delete-btn:hover {
  background: #0b0b0b;
  color: #ffffff;
}

.xoo-wsc-footer,
.amha-fav-drawer__footer {
  box-shadow: none !important;
  border-top: none !important;
  background: transparent;
}

.xoo-wsc-footer .button,
.xoo-wsc-footer .xoo-wsc-btn,
.xoo-wsc-btn-checkout,
.amha-fav-drawer__footer .button,
.amha-fav-drawer__btn {
  width: 100%;
  border: 0;
  border-radius: 999px !important;
  padding: 1rem 1.5rem;
  background: var(--color-primary-100);
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-h6);
  line-height: var(--line-height-h6);
  letter-spacing: var(--letter-spacing-h6);
  cursor: pointer;
  transition: transform 120ms ease, filter 120ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-transform: none;
  box-shadow: none !important;
}

.sccp-attribute-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.sccp-attribute-select select.sccp-size-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  padding-right: 34px;
  cursor: pointer;
  font: inherit;
  color: #0B0B0B;
}
.sccp-attribute-select select.sccp-size-select:focus {
  outline: none;
}

.xoo-wsch-new .xoo-wsch-basket,
.xoo-wsch-new .xoo-wsch-close,
.xoo-wsch-new .xoo-wsch-text {
  margin: 0;
}

.amha-fav-product-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}
.amha-fav-product-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.amha-fav-product-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.amha-fav-product-overlay__content {
  position: relative;
  background: var(--sccp-bg-color, #fff);
  border-radius: var(--sccp-border-radius, 8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  max-width: 400px;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.amha-fav-product-overlay.is-active .amha-fav-product-overlay__content {
  transform: scale(1);
}
.amha-fav-product-overlay__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--sccp-text-color, #333);
  margin: 0 0 10px 0;
  padding-right: 32px;
}
.amha-fav-product-overlay .amha-fav-var__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.amha-fav-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.amha-fav-loading-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.amha-fav-loading-overlay__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}
.amha-fav-loading-overlay__spinner {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .amha-fav-product-overlay {
    padding: 15px;
  }
  .amha-fav-product-overlay__content {
    padding: 20px;
    max-width: calc(100% - 32px);
  }
  .amha-fav-product-overlay__title {
    font-size: 14px;
  }
}
.xoo-wsc-action-col {
  width: 100%;
}
.xoo-wsc-action-col button {
  flex: 1;
}

.amha-fav-drawer__body .xoo-wsc-sum-col {
  align-self: flex-start;
}

.amha-fav-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sccp-border-color, #e0e0e0);
  border-top-color: var(--sccp-text-color, #333);
  border-radius: 50%;
  animation: amha-spin 0.6s linear infinite;
  display: block;
}

.amha-fav-card__updating .amha-fav-spinner {
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
}

.amha-fav-card__updating .amha-fav-spinner,
.amha-fav-drawer__updating .amha-fav-spinner,
.amha-fav-variation-overlay .amha-fav-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.85);
  border-radius: 50%;
  animation: amha-spin 0.6s linear infinite;
}

.xoo-wsc-product del {
  font-size: 13px;
  margin-right: var(--space-sm);
}

ins {
  text-decoration: none;
}

/*# sourceMappingURL=favorites.css.map */
