.vosta-review-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: 'Work Sans', sans-serif;
  color: #271466;
}

.vosta-review-summary,
.vosta-review-form {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.vosta-review-summary h3,
.vosta-review-form h3,
.vosta-review-list h3{
  font-weight: 500;
  color: #191919;
}

strong.vosta-summary-header-number {
  font-weight: 500;
  color: #271466;
}

.vosta-summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.vosta-summary-header strong {
  font-size: 24px;
  color: #271466;
}
.vosta-summary-header span {
  font-weight: normal;
  font-size: 14px;
  color: #606060;
}

.vosta-stars-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
}

span.vosta-stars-bar-number {
  color: #191919;
  font-weight: 500;
  font-size: 20px;
}

span.vosta-stars-bar-number-2 {
  font-weight: 300;
  color: #AFAFAF;
}

@media (max-width: 768px) {
  span.vosta-stars-bar-number {
    font-size: 14px;
  }
}

.vosta-bar-bg {
  background: #ddd;
  height: 10px;
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
}
.vosta-bar-fill {
  background: #9289FE;
  height: 100%;
  border-radius: 5px;
}

.vosta-review-form input,
.vosta-review-form textarea {
  width: 100%;
  margin: 6px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #f9f9f9;
}

.vosta-star-select {
  margin: 10px 0;
}
.vosta-star-select i {
  font-style: normal;
  color: #ccc;
  font-size: 24px;
  cursor: pointer;
}
.vosta-star-select i.selected {
  color: #fbc02d;
}

.vosta-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: all 0.2s;
  margin-top: 10px;
  text-align: center;
}
.vosta-upload-label:hover {
  background: #e6e6e6;
}
.vosta-upload-label input {
  display: none;
}

.vosta-review-form button {
  margin-top: 10px;
  background: #271466;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 5px;
  cursor: pointer;
  width: auto;
  font-weight: 500;
}

#vosta-review-message {
  margin-top: 8px;
  color: green;
  font-weight: 500;
}

input.vosta-review-input-name,
input.vosta-review-input-email {
  height: 45px;
  border: transparent !important;
  border-radius: 5px;
  padding-left: 15px !important;
}
input.vosta-review-input-name:focus,
input.vosta-review-input-email:focus,
textarea.vosta-review-input-content:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

input.vosta-review-input-name::placeholder,
input.vosta-review-input-email::placeholder,
textarea.vosta-review-input-content::placeholder {
  font-size: 15px;
  font-weight: 300;
  font-family: 'Work Sans';
}

textarea.vosta-review-input-content {
  border: transparent !important;
  border-radius: 5px;
  padding-left: 15px !important;
  height: 120px;
  resize: none;
}

.vosta-review-list {
  margin-top: 30px;
}


.vosta-review-item {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
  border: 0.5px solid #EFEFEF;
  margin-top: 15px;
  border-radius: 5px;
}


.vosta-review-left {
  flex: 1 1 25%;
  max-width: 200px;
}
.vosta-review-right {
  flex: 1 1 70%;
}

p.vosta-review-right-content {
    margin: 0;
	padding-left: 5px
}

.vosta-review-left .name-stars {
  font-weight: 600;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

.name-stars strong {
	font-weight: 700;
}

.vosta-review-left .time {
  font-size: 13px;
  color: #AFAFAF;
}

.vosta-review-stars {
  color: #fbc02d;
}

.vosta-review-images img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  margin: 5px;
  transition: transform 0.2s;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.vosta-review-images img:hover {
  transform: scale(1.05);
}

.vosta-pagination {
  text-align: center;
  margin-top: 20px;
}
.vosta-pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #271466;
  text-decoration: none;
}
.vosta-pagination .page-numbers.current {
  background: #271466;
  color: white;
  border-color: #271466;
  font-weight: bold;
}
.vosta-pagination .page-numbers:hover {
  background: #ddd;
}

.vosta-form-upload {
  display: flex;
  margin-top: 10px;
}

.upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-icon svg {
  display: block;
}

.upload-text {
  font-weight: 400;
  color: 606060;
}

.vosta-form-submit {
  margin-top: 10px;
  display: block;
}

.vosta-image-preview {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}

.preview-wrapper {
  position: relative;
}

.preview-wrapper img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.remove-preview {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: #e74c3c;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  cursor: pointer;
  box-shadow: 0 0 0 2px white;
  z-index: 2;
}


/* Honeypot field - ẩn khỏi người dùng */
.honeypot-field {
  position: absolute !important;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}