/* Popup Overlay */
.jlessentials-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup Content */
.jlessentials-popup-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: jlessentials-popup-slide-in 0.3s ease-out;
}

@keyframes jlessentials-popup-slide-in {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Popup Header */
.jlessentials-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
  border-radius: 8px 8px 0 0;
}

.jlessentials-popup-header h3 {
  margin: 0;
  color: #2c5530;
  font-size: 1.2em;
}

.jlessentials-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
}

.jlessentials-popup-close:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* Popup Body */
.jlessentials-popup-body {
  padding: 20px;
}

.jlessentials-popup-product {
  display: flex;
  align-items: center;
  gap: 15px;
}

.jlessentials-popup-product img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eee;
}

.jlessentials-popup-details h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 1.1em;
}

.jlessentials-popup-details p {
  margin: 0;
  color: #666;
  font-size: 0.9em;
}

/* Popup Footer */
.jlessentials-popup-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.jlessentials-popup-footer .button {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s;
  border: 1px solid #ddd;
  background: #f7f7f7;
  color: #333;
}

.jlessentials-popup-footer .button:hover {
  background: #e7e7e7;
  transform: translateY(-1px);
}

.jlessentials-popup-footer .button-primary {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

.jlessentials-popup-footer .button-primary:hover {
  background: #005a87;
  border-color: #005a87;
}

.jlessentials-popup-footer .button-alt {
  background: #2c5530;
  color: #fff;
  border-color: #2c5530;
}

.jlessentials-popup-footer .button-alt:hover {
  background: #1e3a21;
  border-color: #1e3a21;
}

/* Responsive Design */
@media (max-width: 600px) {
  .jlessentials-popup-content {
    width: 95%;
    margin: 20px;
  }
  .jlessentials-popup-product {
    flex-direction: column;
    text-align: center;
  }
  .jlessentials-popup-footer {
    flex-direction: column;
  }
  .jlessentials-popup-footer .button {
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=jlessentials-cartitemcount_addedtocart.css.map */