.cart-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 99999;
  max-width: 320px;
  min-width: 280px;
  animation: slideInUp 0.3s ease-out;
}

.cart-popup.hidden {
  display: none !important;
}

.cart-popup-content {
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-popup-message {
  flex: 1;
  margin-right: 15px;
}

.cart-popup-text {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #333333;
  font-weight: 300;
  line-height: 1.4;
}

.cart-items-count {
  color: #0073e6;
  font-weight: 700;
}

.cart-popup-button {
  display: inline-block;
  padding: 10px 20px;
  background: #0073e6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.2s;
}

.cart-popup-button:hover {
  background: #005bb5;
  color: white;
  text-decoration: none;
}

.cart-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666666;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-popup-close:hover {
  color: #333333;
  background: #f5f5f5;
  border-radius: 50%;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .cart-popup {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

.cart-popup-message a {
  margin-left: 0 !important;
  color: #ffffff !important;
  display: inline-block !important;
  background-color: #001B72 !important;
  line-height: 1 !important;
}
.cart-popup-message a:hover {
  background-color: #000000 !important;
}