/* Star Reviews plugin styles */

.swr-form-wrap,
.swr-list-wrap {
	max-width: 640px;
	margin: 0 auto;
	font-family: inherit;
}

.swr-notice {
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 16px;
	font-size: 14px;
}
.swr-notice-success {
	background: #eafaf0;
	border: 1px solid #34a853;
	color: #1e7e34;
}
.swr-notice-error {
	background: #fdecea;
	border: 1px solid #d93025;
	color: #a52714;
}

/* Form */
.swr-form .swr-field {
	margin-bottom: 14px;
}
.swr-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 4px;
	font-size: 14px;
}
.swr-form label span {
	font-weight: 400;
	color: #777;
	font-size: 12px;
}
.swr-form input[type="text"],
.swr-form input[type="email"],
.swr-form textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
}
.swr-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Star picker (radio inputs, right-to-left trick for full-star hover) */
.swr-star-picker {
	display: inline-flex;
	flex-direction: row-reverse;
	font-size: 30px;
	gap: 4px;
}
.swr-star-picker input {
	display: none;
}
.swr-star-picker label {
	display: inline-block;
	margin: 0;
	color: #d9d9d9;
	cursor: pointer;
	transition: color 0.15s ease;
}
.swr-star-picker input:checked ~ label,
.swr-star-picker label:hover,
.swr-star-picker label:hover ~ label {
	color: #fbbc04;
}

.swr-submit-btn {
	background: #1a73e8;
	color: #fff;
	border: none;
	padding: 10px 22px;
	border-radius: 6px;
	font-size: 15px;
	cursor: pointer;
}
.swr-submit-btn:hover {
	background: #1558b3;
}

/* Display list */
.swr-summary {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid #eee;
}
.swr-summary-stars {
	font-size: 22px;
}
.swr-summary-text {
	font-size: 14px;
	color: #444;
}
.swr-google-btn {
	margin-left: auto;
	background: #fff;
	border: 1px solid #dadce0;
	color: #3c4043;
	padding: 8px 14px;
	border-radius: 6px;
	font-size: 13px;
	text-decoration: none;
	white-space: nowrap;
}
.swr-google-btn:hover {
	background: #f8f9fa;
}

.swr-stars .swr-star-full,
.swr-stars .swr-star-half {
	color: #fbbc04;
}
.swr-stars .swr-star-empty {
	color: #d9d9d9;
}

.swr-review-card {
	padding: 16px 0;
	border-bottom: 1px solid #eee;
}
.swr-review-header {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 6px;
}
.swr-review-author {
	font-weight: 600;
	font-size: 14px;
}
.swr-review-location {
	font-weight: 400;
	color: #888;
}
.swr-review-stars {
	font-size: 14px;
}
.swr-review-date {
	color: #888;
	font-size: 12px;
	margin-left: auto;
}
.swr-review-body {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	margin: 0;
	white-space: pre-wrap;
}

/* Category checkboxes on the submission form */
.swr-cat-checkboxes {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	font-weight: 400;
	font-size: 14px;
}
.swr-cat-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 400 !important;
	margin: 0 !important;
}
.swr-cat-checkbox input {
	width: auto;
}

/* Homepage highlights section — golden / premium theme */
.swr-highlights-wrap {
	--swr-gold: #c9a227;
	--swr-gold-deep: #9c7a1d;
	--swr-gold-light: #f7ecd0;
	max-width: 1080px;
	margin: 0 auto;
	padding: 56px 24px;
	text-align: center;
	font-family: inherit;
	background: linear-gradient(180deg, #fffdf6 0%, #ffffff 65%);
	border-radius: 20px;
}
.swr-highlights-title {
	font-size: 32px;
	margin: 0 0 14px;
	color: #1a1a1a;
	display: inline-block;
	position: relative;
	padding-bottom: 14px;
}
.swr-highlights-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 72px;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--swr-gold-deep), var(--swr-gold), #f2d675);
}
.swr-highlights-subtitle {
	color: #6b6255;
	font-size: 16px;
	margin: 0 0 20px;
}
.swr-highlights-overall {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 15px;
	color: #4a4436;
	margin-bottom: 40px;
	padding: 10px 22px;
	border: 1px solid var(--swr-gold-light);
	border-radius: 999px;
	background: #fffaf0;
}
.swr-highlights-overall .swr-stars {
	font-size: 20px;
}

.swr-highlight-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	text-align: left;
}
.swr-highlight-card {
	background: #ffffff;
	border: 1px solid #f1e6c4;
	border-top: 4px solid var(--swr-gold);
	border-radius: 14px;
	padding: 26px 24px;
	box-shadow: 0 6px 20px rgba(180, 140, 30, 0.08);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.swr-highlight-card:hover {
	box-shadow: 0 10px 28px rgba(180, 140, 30, 0.14);
	transform: translateY(-2px);
}
.swr-highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--swr-gold-light), #fff3d6);
	color: var(--swr-gold-deep);
	margin-bottom: 14px;
}
.swr-highlight-label {
	font-size: 18px;
	margin: 0 0 8px;
	color: #1a1a1a;
}
.swr-highlight-rating {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #6b6255;
	margin-bottom: 16px;
}
.swr-highlight-rating .swr-stars {
	font-size: 16px;
}
.swr-highlight-quote {
	margin: 0 0 14px;
	padding-left: 12px;
	border-left: 3px solid var(--swr-gold);
}
.swr-highlight-quote p {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	font-style: italic;
}
.swr-highlight-quote cite {
	font-size: 12px;
	color: #8a8067;
	font-style: normal;
}
.swr-highlights-cta {
	margin-top: 40px;
}

/* Gold stars + gold CTA button, scoped to the highlights section only */
.swr-highlights-wrap .swr-stars .swr-star-full,
.swr-highlights-wrap .swr-stars .swr-star-half {
	color: var(--swr-gold);
}
.swr-highlights-wrap .swr-stars .swr-star-empty {
	color: #ecdfb8;
}
.swr-highlights-wrap .swr-google-btn {
	background: linear-gradient(135deg, var(--swr-gold), var(--swr-gold-deep));
	color: #fff;
	border: none;
	padding: 12px 26px;
	font-weight: 600;
	letter-spacing: 0.2px;
	box-shadow: 0 4px 14px rgba(180, 140, 30, 0.25);
}
.swr-highlights-wrap .swr-google-btn:hover {
	background: linear-gradient(135deg, #d8b232, #8a6c19);
}
