/* Start Set Artsani Colors */
.artsaniDarkGreen {
    color: #368735;
}

.artsaniLightGreen {
    color: #B0CB1F;
}

.artsaniRed {
    color: #DC452B;
}

.artsaniOrange {
    color: #F39314;
}
/* End Set Artsani Colors */

.max-width-650 {
  max-width: 650px !important;
}

/* Start Feedback Widget */
.feedback-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
}

.feedback-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: #368735;
  color: #fff;
  border-radius: 50px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  max-width: 48px;
}

.feedback-btn:hover {
  max-width: 200px;
  gap: 8px;
  padding: 10px 18px 10px 12px;
}

.feedback-btn-icon {
  flex-shrink: 0;
  border-radius: 4px;
}

.feedback-btn-text {
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feedback-btn:hover .feedback-btn-text {
  opacity: 1;
}

.feedback-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
}

.feedback-modal {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.feedback-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.feedback-modal-close:hover {
  background: #f0f0f0;
}

.feedback-modal-body {
  padding: 32px 28px 20px;
}

.feedback-modal-title {
  color: #368735;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feedback-modal-text {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.feedback-modal-footer {
  display: flex;
  gap: 12px;
  padding: 16px 28px 24px;
}

.feedback-modal-btn-later {
  flex: 1;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 16px;
}

.feedback-modal-btn-send {
  flex: 1;
  background: #F39314;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 16px;
  transition: background 0.2s;
}

.feedback-modal-btn-send:hover {
  background: #e0850f;
  color: #fff;
}
/* End Feedback Widget */