
.subawoo-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}
.subawoo-review-card {
  background: var(--subawoo-bg, #241f1b);
  color: var(--subawoo-font, #efe7dc);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subawoo-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 10px;
}
.swiper-pagination {
  margin-top: 10px;
}
/* THEME */
.theme-dark .subawoo-review-card {
  background: #241f1b;
  color: #efe7dc;
}
.theme-light .subawoo-review-card {
  background: #ffffff;
  color: #222;
}
.theme-minimal .subawoo-review-card {
  background: #f7f7f7;
  color: #333;
  border: 1px solid #ddd;
}
.theme-elegant .subawoo-review-card {
  background: #1a1a1a;
  color: #f2c97d;
  font-style: italic;
}

/* ====== DARK ====== */
.layout-dark .subawoo-review-card {
  background: var(--subawoo-bg, #241f1b);
  color: var(--subawoo-font, #efe7dc);
  text-align: center;
}

/* ====== LIGHT ====== */
.layout-light .subawoo-review-card {
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.layout-light .subawoo-thumb {
  width: 60px; height: 60px;
  flex-shrink: 0;
}

/* LIGHT layout special */
.layout-light-item {
  background: #fff;
  color: #222;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.subawoo-light-left img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.subawoo-light-right {
  flex: 1;
}

.subawoo-author-line {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.subawoo-author-line strong {
  font-weight: 600;
}

.layout-light-item .subawoo-stars {
  color: #f5a623;
  font-size: 14px;
}


/* ====== ELEGANT ====== */
.layout-elegant .subawoo-review-card {
  background: #1b1a19;
  color: #f6d68b;
  font-family: 'Georgia', serif;
  font-style: italic;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.layout-elegant .subawoo-stars {
  color: #f6d68b;
  font-size: 20px;
}

/* ===== Elegant layout ===== */
.layout-elegant-item {
  background: #1a1a1a;
  color: #f2c97d;
  font-family: 'Georgia', serif;
  font-style: italic;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.subawoo-quote-mark {
  font-size: 60px;
  line-height: 0.6;
  color: #f2c97d;
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 25px;
}

.layout-elegant-item .subawoo-comment {
  font-size: 17px;
  line-height: 1.6;
  margin: 40px 0 20px;
  z-index: 2;
  position: relative;
}

.subawoo-author-elegant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.subawoo-author-elegant img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.layout-elegant-item .subawoo-stars {
  color: #f2c97d;
  font-size: 18px;
  letter-spacing: 1px;
}


/* ====== MINIMAL ====== */
.layout-minimal .subawoo-review-card {
  background: transparent;
  border: 1px solid #ddd;
  color: #444;
  padding: 15px;
  border-radius: 6px;
  font-size: 14px;
}
/* ===== Minimal layout ===== */
.layout-minimal-item {
  background: transparent;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}

.layout-minimal-item:hover {
  border-color: #bbb;
  transform: translateY(-3px);
}

.layout-minimal-item .subawoo-comment {
  margin-bottom: 15px;
  font-style: normal;
}

.subawoo-author-minimal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.subawoo-author-minimal img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.layout-minimal-item .subawoo-stars {
  color: #999;
  font-size: 13px;
  letter-spacing: 1px;
}


