.vsf-front-comments-wrap {
	margin: 28px 0 36px;
}

.vsf-front-comments-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 20px;
}

.vsf-front-comments-title {
	margin: 0;
	font-size: 23px;
	line-height: 1.35;
	font-weight: 700;
	flex: 1;
	min-width: 0;
}

.vsf-front-comments-sort {
	flex: 0 0 auto;
}

.vsf-front-sort-select {
	min-width: 165px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	background: #fff;
	font-size: 14px;
}

.vsf-front-comments-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vsf-front-comment-item {
	border: 1px solid #e4e4e4;
	background: #fff;
	padding: 22px 24px;
}

.vsf-front-comment-item.is-extra-hidden {
	display: none;
}

.vsf-front-comment-main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}

.vsf-front-comment-left {
	flex: 1;
	min-width: 0;
}

.vsf-front-comment-name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
}

.vsf-front-stars {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-bottom: 14px;
}

.vsf-star {
	font-size: 15px;
	line-height: 1;
	color: #cfcfcf;
}

.vsf-star.is-filled {
	color: #f5c518;
}

.vsf-front-comment-content {
	font-size: 15px;
	line-height: 1.7;
	color: #111;
}

.vsf-front-comment-content p {
	margin: 0 0 10px;
}

.vsf-front-comment-images {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
}

.vsf-front-comment-image-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 132px;
	height: 132px;
	border: 1px solid #ddd;
	overflow: hidden;
	background: #fff;
	padding: 0;
	cursor: pointer;
}

.vsf-front-comment-image-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vsf-front-comment-date {
	width: 180px;
	flex: 0 0 180px;
	text-align: right;
	font-size: 14px;
	color: #222;
	white-space: nowrap;
	padding-top: 4px;
}

.vsf-front-comments-more-wrap {
	margin-top: 18px;
	text-align: center;
}

.vsf-front-comments-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 46px;
	padding: 0 18px;
	border: 1px solid #111;
	background: #fff;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}

.vsf-front-comments-toggle:hover {
	background: #111;
	color: #fff;
}

.vsf-front-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.vsf-front-lightbox.is-open {
	display: block;
}

.vsf-front-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.vsf-front-lightbox-dialog {
	position: relative;
	z-index: 2;
	width: fit-content;
	max-width: min(78vw, 860px);
	max-height: 60vh;
	margin: 8vh auto 0;
	padding: 14px;
	background: #fff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.vsf-front-lightbox-image {
	display: block;
	max-width: 100%;
	max-height: calc(78vh - 28px);
	width: auto;
	height: auto;
}

.vsf-front-lightbox-close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 36px;
	height: 36px;
	border: none;
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

@media (max-width: 1024px) {
	.vsf-front-comments-title {
		font-size: 18px;
	}

	.vsf-front-comment-name,
	.vsf-front-comment-content {
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	.vsf-front-comments-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.vsf-front-comment-main {
		flex-direction: column;
		gap: 12px;
	}

	.vsf-front-comment-date {
		width: 100%;
		flex: none;
		text-align: left;
		padding-top: 0;
	}

	.vsf-front-comment-image-link {
		width: 108px;
		height: 108px;
	}

	.vsf-front-lightbox-dialog {
		max-width: 82vw;
		max-height: 68vh;
		margin: 11vh auto 0;
		padding: 10px;
	}

	.vsf-front-lightbox-image {
		max-height: calc(50vh - 20px);
	}
}
.vsf-front-rating-summary {
	margin-bottom: 30px;
	padding: 0;
	background: transparent;
	border: none;
}

.vsf-front-rating-summary-inner {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 30px 34px;
	background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
	border: 1px solid #e8e8e8;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.vsf-front-rating-summary-score {
	text-align: center;
	padding-right: 10px;
	border-right: 1px solid #efefef;
}

.vsf-front-rating-summary-number {
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -1px;
	color: #111;
	margin-bottom: 12px;
}

.vsf-front-rating-summary-stars .vsf-front-stars {
	justify-content: center;
	gap: 4px;
	margin-bottom: 10px;
}

.vsf-front-rating-summary-stars .vsf-star {
	font-size: 22px;
}

.vsf-front-rating-summary-count {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
}

.vsf-front-rating-summary-bars {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.vsf-front-rating-bar-row {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 36px;
	align-items: center;
	gap: 14px;
}

.vsf-front-rating-bar-label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 15px;
	font-weight: 600;
	color: #222;
	white-space: nowrap;
}

.vsf-front-rating-star-text {
	display: inline-block;
	min-width: 10px;
}

.vsf-front-rating-star-icon {
	color: #f5c518;
	font-size: 14px;
	line-height: 1;
	position: relative;
	top: -1px;
}

.vsf-front-rating-bar-track {
	position: relative;
	height: 10px;
	background: #ececec;
	border-radius: 999px;
	overflow: hidden;
}

.vsf-front-rating-bar-fill {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #111 0%, #444 100%);
}

.vsf-front-rating-bar-count {
	text-align: right;
	font-size: 14px;
	font-weight: 600;
	color: #555;
}

@media (max-width: 768px) {
	.vsf-front-rating-summary-inner {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 22px 18px;
		border-radius: 14px;
	}

	.vsf-front-rating-summary-score {
		padding-right: 0;
		padding-bottom: 18px;
		border-right: none;
		border-bottom: 1px solid #efefef;
	}

	.vsf-front-rating-summary-number {
		font-size: 50px;
	}

	.vsf-front-rating-summary-stars .vsf-star {
		font-size: 18px;
	}

	.vsf-front-rating-bar-row {
		grid-template-columns: 42px minmax(0, 1fr) 28px;
		gap: 10px;
	}

	.vsf-front-rating-bar-label {
		font-size: 14px;
	}

	.vsf-front-rating-bar-count {
		font-size: 13px;
	}
}

.vsf-review-summary-link{
	display:flex;
	align-items:center;
	gap:6px;
	flex-wrap:nowrap;
	text-decoration:none;
	color:#444;
	line-height:1;
}

.vsf-review-summary-stars-wrap{
	display:inline-flex;
	align-items:center;
}

.vsf-review-precise-stars{
	display:inline-flex;
	align-items:center;
	gap:1px;
	line-height:1;
}

.vsf-review-star{
	position:relative;
	display:inline-block;
	font-size:15px;
	line-height:1;
	width:0.95em;
	height:1em;
	font-style:normal;
}

.vsf-review-star.is-full{
	color:#f5c518;
}

.vsf-review-star.is-empty{
	color:#d6d6d6;
}

.vsf-review-star.is-half{
	color:#d6d6d6;
}

.vsf-review-star.is-half::after{
	content:'★';
	position:absolute;
	left:0;
	top:0;
	width:50%;
	overflow:hidden;
	color:#f5c518;
}

.vsf-review-summary-score{
	font-size:14px;
	font-weight:500;
	color:#7a5a2b;
	line-height:1;
}

.vsf-review-count{
	color:#7a5a2b;
	font-size:14px;
	line-height:1;
	white-space:nowrap;
}

.vsf-review-submit-wrap{
	margin-top:40px;
	padding:25px;
	border:1px solid #e5e5e5;
	background:#fff;
}

.vsf-review-submit-wrap h3{
	margin-bottom:20px;
	font-size:22px;
	font-weight:700;
}

.vsf-review-field{
	margin-bottom:18px;
}

.vsf-review-field label{
	display:block;
	margin-bottom:6px;
	font-weight:600;
}

.vsf-review-field input,
.vsf-review-field textarea,
.vsf-review-field select{
	width:100%;
	padding:10px;
	border:1px solid #ddd;
	font-size:14px;
}

.vsf-review-row{
	display:flex;
	gap:20px;
}

.vsf-review-submit-btn{
	margin-top:10px;
	padding:12px 28px;
	background:#111;
	color:#fff;
	border:none;
	cursor:pointer;
	font-weight:600;
}

.vsf-review-submit-btn:hover{
	background:#333;
}
.vsf-review-submit-btn{
	margin-top: 6px;
	padding: 9px 22px;
	min-width: 92px;
	height: 42px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.vsf-review-submit-btn:hover{
	background: #333;
}

.vsf-review-alert{
	margin: 0 0 22px;
	padding: 20px 22px;
	border-radius: 10px;
	border: 1px solid;
	box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.vsf-review-alert-title{
	font-size: 22px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
}

.vsf-review-alert-text{
	font-size: 17px;
	line-height: 1.85;
}

.vsf-review-alert.is-success{
	background: #edf9f0;
	border-color: #9ed9ae;
	color: #1b5e2e;
}

.vsf-review-alert.is-error{
	background: #fff2f2;
	border-color: #f0b4b4;
	color: #8b1c1c;
}

.vsf-home-comment-product {
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 600;
}

.vsf-home-comment-product a {
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all .2s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vsf-home-comment-product a:hover {
	color: #8c6a2f;
	border-bottom-color: #8c6a2f;
}

.vsf-home-comment-thumb-link {
	display: block;
	width: 100%;
	height: 100%;
}

