/* Cart Alert Popup Styles */
.cart-alert-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  padding-bottom: 40px;
}

.cart-alert-popup.show {
  display: flex !important;
}

.cart-alert-content {
  background-color: #fff;
  padding: 20px 25px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  max-width: 100%;
  width: 100%;
  max-width: 800px;
  animation: slideIn 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-alert-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-alert-product-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.cart-alert-body {
  flex: 1;
}

.cart-alert-text {
  flex: 1;
}

.cart-alert-message {
  margin: 0;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.cart-alert-product-name {
  color: #000;
  font-weight: 600;
}

.cart-alert-view-cart-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1976d2;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.cart-alert-view-cart-btn:hover {
  background-color: #1565c0;
  color: white;
}

.cart-alert-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .cart-alert-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    border-left: none;
  }

  .cart-alert-body {
    width: 100%;
  }

  .cart-alert-view-cart-btn {
    width: 100%;
    display: block;
  }

  .cart-alert-product-image {
    width: 60px;
    height: 60px;
  }
}
