.ars-wrapper {
	--ars-brand: #F76C00;
	--ars-brand-dark: #d95c00;
	--ars-brand-light: #FFF3E9;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 15px;
	font-family: inherit;
}

.ars-slider-viewport {
	overflow: hidden;
	width: 100%;
}

.ars-slider-track {
	display: flex;
	transition: transform 0.4s ease;
}

.ars-slide {
	flex: 0 0 calc(100% / var(--ars-per-view, 4));
	box-sizing: border-box;
	padding: 0 10px;
}

.ars-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 20px;
	height: 100%;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	min-height: 180px;
}

.ars-stars {
	color: var(--ars-brand);
	font-size: 18px;
	margin-bottom: 10px;
}

.ars-text {
	flex: 1;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	margin: 0 0 12px;
}

.ars-author {
	font-weight: 600;
	font-size: 13px;
	color: #666;
}

.ars-controls {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 15px;
}

.ars-prev, .ars-next {
	background: #fff;
	border: 2px solid var(--ars-brand);
	color: var(--ars-brand);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 20px;
	cursor: pointer;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease;
}
.ars-prev:hover, .ars-next:hover {
	background: var(--ars-brand);
	color: #fff;
}

.ars-cta {
	text-align: center;
	margin-top: 25px;
}

.ars-open-popup-btn, .ars-submit-btn {
	background: var(--ars-brand);
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}
.ars-open-popup-btn:hover, .ars-submit-btn:hover {
	background: var(--ars-brand-dark);
}
.ars-open-popup-btn:active, .ars-submit-btn:active {
	transform: scale(0.98);
}
.ars-submit-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.ars-empty { text-align: center; color: #888; }

/* Popup */
.ars-popup-overlay {
	--ars-brand: #F76C00;
	--ars-brand-dark: #d95c00;
	--ars-brand-light: #FFF3E9;
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 15px;
}
.ars-popup-overlay.ars-active {
	display: flex;
}

.ars-popup {
	background: #fff;
	border-radius: 12px;
	padding: 32px 30px;
	max-width: 420px;
	width: 100%;
	position: relative;
	border-top: 4px solid var(--ars-brand);
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.ars-popup-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
	color: #999;
	transition: color 0.2s ease;
}
.ars-popup-close:hover { color: var(--ars-brand); }

.ars-popup h3 {
	margin-top: 0;
	color: #222;
	position: relative;
	padding-bottom: 10px;
}
.ars-popup h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 3px;
	background: var(--ars-brand);
	border-radius: 3px;
}

#ars-review-form label {
	display: block;
	margin-bottom: 14px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ars-brand);
}

#ars-review-form input[type=text],
#ars-review-form select,
#ars-review-form textarea {
	width: 100%;
	margin-top: 6px;
	padding: 9px 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 14px;
	box-sizing: border-box;
	font-weight: normal;
	color: #333;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#ars-review-form input[type=text]:focus,
#ars-review-form select:focus,
#ars-review-form textarea:focus {
	outline: none;
	border-color: var(--ars-brand);
	box-shadow: 0 0 0 3px var(--ars-brand-light);
}

.ars-hp { display: none !important; }

.ars-form-message {
	font-size: 13px;
	margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
	.ars-slide { flex: 0 0 50%; }
}
@media (max-width: 560px) {
	.ars-slide { flex: 0 0 100%; }
}
