.orisensce-slider-wrapper {
  max-width: 700px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
}

.orisensce-slider {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.orisensce-review-card {
  min-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.orisensce-review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.orisensce-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009b4d, #00b870);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}

.orisensce-name {
  margin: 0;
  font-weight: 600;
  color: #222;
}

.orisensce-stars {
  color: #ddd;
  font-size: 17px;
  margin-top: 2px;
}

.orisensce-stars .filled {
  color: #f8c100;
}

.orisensce-review-text {
  margin: 12px 0;
  font-size: 16px;
  color: #444;
  font-style: italic;
  line-height: 1.6;
}

.orisensce-badges {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.verified, .trusted {
  background: #f6f6f6;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 13px;
  color: #1b7b38;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.orisensce-review-form {
  margin-top: 35px;
  text-align: center;
  background: #fafafa;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.orisensce-review-form h3 {
  margin-bottom: 10px;
}

.orisensce-review-form input,
.orisensce-review-form textarea {
  width: 90%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.rating-label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #333;
}

.orisensce-star-input {
  direction: rtl;
  display: inline-flex;
}

.orisensce-star-input input {
  display: none;
}

.orisensce-star-input label {
  font-size: 24px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.orisensce-star-input input:checked ~ label,
.orisensce-star-input label:hover,
.orisensce-star-input label:hover ~ label {
  color: #f8c100;
}

.orisensce-review-form button {
  background: #009b4d;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.orisensce-review-form button:hover {
  background: #007a3b;
}

.orisensce-success-msg {
  color: #009b4d;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .orisensce-review-card {
    padding: 18px;
  }
}
