.gcf-cart-recovery-toast {
  position: fixed;
  z-index: 100000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    visibility 0.4s;
  transform: translateY(20px) scale(0.95);
  width: calc(100vw - 40px);
  max-width: 380px;
}
.gcf-cart-recovery-toast.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.gcf-cart-recovery-toast.is-bottom-right {
  bottom: 115px;
  right: 30px;
}
.gcf-cart-recovery-toast.is-bottom-left {
  bottom: 115px;
  left: 30px;
}
.gcf-cart-recovery-toast.is-top-right {
  top: 115px;
  right: 30px;
}
.gcf-cart-recovery-toast.is-top-left {
  top: 115px;
  left: 30px;
}
.gcf-cart-recovery-toast.is-left-vertical-center {
  bottom: calc(50% + 42.5px);
  left: 40px;
}
.gcf-cart-recovery-toast.is-right-vertical-center {
  bottom: calc(50% + 42.5px);
  right: 40px;
}
.gcf-cart-recovery-toast.is-mobile-nav {
  transform: translateX(-50%) translateY(20px) scale(0.95);
}
.gcf-cart-recovery-toast.is-mobile-nav.active {
  transform: translateX(-50%) translateY(0) scale(1);
}
@media (max-width: 991.98px) {
  .gcf-cart-recovery-toast.is-mobile-nav {
    bottom: 100px;
    left: 50%;
    max-width: 320px;
  }
}
.gcf-cart-recovery-toast-container::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
.is-bottom-right .gcf-cart-recovery-toast-container::after,
.is-right-vertical-center .gcf-cart-recovery-toast-container::after {
  bottom: -10px;
  right: 30px;
  border-top: 10px solid #fff;
}
.is-bottom-left .gcf-cart-recovery-toast-container::after,
.is-left-vertical-center .gcf-cart-recovery-toast-container::after {
  bottom: -10px;
  left: 30px;
  border-top: 10px solid #fff;
}
.is-top-right .gcf-cart-recovery-toast-container::after {
  top: -10px;
  right: 30px;
  border-bottom: 10px solid #fff;
}
.is-top-left .gcf-cart-recovery-toast-container::after {
  top: -10px;
  left: 30px;
  border-bottom: 10px solid #fff;
}
.is-mobile-nav .gcf-cart-recovery-toast-container::after {
  bottom: -10px;
  left: 62.5%;
  border-top: 10px solid #fff;
  transform: translateX(-50%);
}
.gcf-cart-recovery-toast-container {
  position: relative;
  background: #fff;
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 15px 45px rgba(0, 0, 0, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.gcf-cart-recovery-toast-content {
  padding: 15px 20px;
}
.gcf-cart-recovery-toast-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.gcf-cart-recovery-toast-header .toast-icon {
  width: 36px;
  height: 36px;
  background: #f3f4f6;
  color: #3849b7;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.gcf-cart-recovery-toast-heading {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.2;
  flex-grow: 1;
}
.gcf-cart-recovery-toast-products {
  margin-bottom: 15px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 5px;
}
.gcf-cart-recovery-toast-products::-webkit-scrollbar {
  width: 3px;
}
.gcf-cart-recovery-toast-products::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 10px;
}
.gcf-cart-recovery-toast-product {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 14px;
  background: #f9fafb;
  margin-bottom: 10px;
}
.gcf-cart-recovery-toast-product .product-thumbnail {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
}
.gcf-cart-recovery-toast-product .product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gcf-cart-recovery-toast-product .product-details {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex-grow: 1;
}
.gcf-cart-recovery-toast-product .product-name {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 3px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gcf-cart-recovery-toast-product .product-price {
  font-size: 14px;
  font-weight: 700;
  color: #3849b7;
}
.gcf-cart-recovery-remove {
  background: transparent;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #9ca3af;
  transition: all 0.2s ease;
  padding: 0;
  text-decoration: none;
  margin-left: auto;
}
.gcf-cart-recovery-remove:hover {
  color: #111827;
}
.gcf-cart-recovery-remove i {
  font-size: 14px;
}
.gcf-cart-recovery-toast-product.is-removing {
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.gcf-cart-recovery-toast-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gcf-cart-recovery-toast-actions .btn {
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.gcf-cart-recovery-toast-actions .btn-view-cart {
  background: #fff;
  border: 1px solid #d1d5db;
  color: #374151;
}
.gcf-cart-recovery-toast-actions .btn-checkout {
  background: #3849b7;
  border: 1px solid #3849b7;
  color: #fff;
}
.gcf-cart-recovery-toast-close {
  background: #f3f4f6;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
  padding: 0;
}
.gcf-cart-recovery-toast-close:hover {
  background: #e5e7eb;
  color: #111827;
  transform: rotate(90deg);
}
.gcf-cart-recovery-more {
  text-align: center;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: #f9fafb;
  border-radius: 10px;
  margin-bottom: 10px;
}
.gcf-cart-recovery-toast.is-empty {
  display: none !important;
}
