.ar-rating-box{
  display: flex;
  width: 94px !important;
  min-width: 94px !important;
  height: 94px !important;
  min-height: 94px !important;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: var(--Neutrals-Zinc-Zinc-800, #27272A);
  justify-items: center;
  text-align: center;
  align-content: center;
  cursor: pointer;
}

.ar-emoji{
  font-size: 40px;
}

.ar-rating{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px !important;
}

input[type=radio]{
  display: none;
}

.ar-send-button{
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #4F4DE1;
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 40px;
  border: none;
  cursor: pointer;
}

.ar-rating-widget{
  justify-items: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ar-rating-box.ar-selected{
  border: 1px solid #C9D5FC !important;
  background: var(--Neutrals-Zinc-Zinc-700, #3F3F46) !important;
}

.ar-rating-message.ar-success{
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ar-rating-message.ar-error{
  margin-top: 20px;
  color: red;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.ar-success-icon {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 34px;
  background-image: url('https://tb.websfv.com/wp-content/uploads/2025/12/Frame-48095360.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 640px){
  .ar-rating{
    flex-wrap: wrap;
    justify-content: center;
  }

  .ar-rating-box{
    width: 70px !important;
    min-width: 70px !important;
    height: 70px !important;
    min-height: 70px !important;
    gap: 6px;
  }

  .ar-emoji{
    font-size: 30px;
  }

  .ar-send-button{
    width: auto;
    padding: 18px 32px;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }

  .ar-rating-message.ar-success{
    font-size: 20px;
  }
}

@media (max-width: 500px){
  .ar-rating{
    gap: 6px !important;
  }

  .ar-rating-box{
    width: 55px !important;
    min-width: 55px !important;
    height: 55px !important;
    min-height: 55px !important;
    gap: 6px;
  }

  .ar-emoji{
    font-size: 25px;
  }

  .ar-send-button{
    width: auto;
    padding: 18px 32px;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
}