/**
 * Marketplace Design Fixes
 * Overrides and additions to match design references
 */

/* White Background for Profile Pages */
body.single-partner {
	background-color: #ffffff !important;
}

/* Profile Section - Remove Border */
.profile-section {
	border: none !important;
}

/* Service Breakdown - Add Border */
.service-breakdown {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
}

/* Profile Header - Custom Background */
.profile-header {
	background: url('/wp-content/uploads/2025/12/warm-bg.svg') center/cover no-repeat !important;
}

/* Contact Card - Solid Color Background */
.contact-card-wrapper {
	background: #fcfaf8;
	border-radius: 20px;
	padding: 40px 24px 24px;
	margin-bottom: 24px;
	text-align: center;
	border: 1px solid #e5e7eb;
}

.contact-card {
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
	margin-bottom: 0 !important;
}

.contact-card__avatar {
	width: 100px !important;
	height: 100px !important;
	border: 4px solid white;
}

.avatar-placeholder {
	font-size: 32px !important;
}

.contact-card__name {
	font-size: 24px !important;
	color: #1a1a1a !important;
}

.contact-card__title {
	font-size: 16px !important;
	margin-bottom: 24px !important;
}

/* New CTA Button Inside Contact Card */
.contact-cta {
	width: 100%;
	background: white;
	border: none;
	border-radius: 16px;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.contact-cta__content {
	display: flex;
	align-items: center;
	gap: 16px;
	text-align: left;
}

.contact-cta__icon {
	font-size: 28px;
	flex-shrink: 0;
}

.contact-cta__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-cta__heading {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
}

.contact-cta__subtext {
	font-size: 14px;
	color: #666;
}

.contact-cta__arrow {
	font-size: 24px;
	color: #1a1a1a;
	flex-shrink: 0;
}

/* Insights Wrapper - Full Width Background */
.insights-wrapper {
	background: url('/wp-content/uploads/2025/12/warm-bg.svg') center/cover no-repeat;
	padding: 48px 0 60px;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	padding-left: calc(50vw - 50%);
	padding-right: calc(50vw - 50%);
}

/* Main Insights Title */
.insights-main-title {
	color: #1a1a1a;
	margin-bottom: 32px;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
}

/* Insights Grid */
.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}

/* Insights Section Container */
.insights-section {
	margin-bottom: 40px;
}

/* Section Titles Outside Cards */
.insights-section-title {
	color: #1a1a1a;
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
}

/* 2-Column Grid Below Insights */
.insights-content-grid {
	display: grid;
	grid-template-columns: 55% 40%;
	gap: 5%;
	margin-top: 48px;
}

.insights-content-left,
.insights-content-right {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* Insight Cards - Colored Bottom Borders */
.insight-card {
	background: white !important;
	border: none !important;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	border-bottom: 10px solid #8b5cf6 !important;
}

.insight-card:nth-child(2) {
	border-bottom-color: #10b981 !important;
}

.insight-card:nth-child(3) {
	border-bottom-color: #0066ff !important;
}

.insight-card__icon {
	font-size: 32px;
	margin-bottom: 12px;
}

.insight-card__label {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
}

.insight-card__value {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
}

/* Donut Chart Colors - Darker Blues */
.service-breakdown__chart circle {
	stroke: #1e3a8a !important;
}

.service-breakdown__chart circle:nth-child(1) {
	stroke: #1e3a8a !important; /* Dark navy */
}

.service-breakdown__chart circle:nth-child(2) {
	stroke: #3b82f6 !important; /* Medium blue */
}

.service-breakdown__chart circle:nth-child(3) {
	stroke: #93c5fd !important; /* Light blue */
}

/* 2-Column Grid for Sections Below Insights */
.profile-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-top: 40px;
}

/* Payroll Calendar - White Card with Colored Bar */
.payroll-calendar {
	background: white;
	border-radius: 12px;
	padding: 32px 40px;
	border-bottom: 4px solid #0066ff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.calendar-entry {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid #e5e7eb;
}

.calendar-entry:first-child {
	padding-top: 0;
}

.calendar-entry:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.calendar-flag {
	font-size: 24px;
	flex-shrink: 0;
}

.calendar-country {
	flex: 1;
	font-weight: 600;
	color: #1a1a1a;
}

.calendar-frequency {
	font-size: 14px;
	color: #666;
	flex-shrink: 0;
}


/* Currency Tags - Pill Style */
.currency-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.currency-tag {
	background: rgba(255, 255, 255, 0.9);
	color: #1a1a1a;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.currency-note {
	display: block;
	font-size: 13px;
	color: #4b5563;
	margin-top: 8px;
	font-style: italic;
}

/* Typical Rates - White Card with Colored Bar */
.rates-list {
	background: white;
	border-radius: 12px;
	padding: 32px 40px;
	border-bottom: 4px solid #10b981;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	text-align: center;
}

.rate-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 30px !important;
	border-bottom: 1px solid #e5e7eb;
}

.rate-item:first-child {
	border-top: none;
}

.rate-item:last-child {
	border-bottom: none;
}

.rate-label {
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 !important;
	line-height: 1.4;
	text-align: left !important;
	flex: 1;
}

.rate-value {
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 !important;
	line-height: 1.4;
	text-align: right !important;
	flex: 0 0 auto;
}

/* Button Improvements */
.marketplace-btn--primary {
	background: #1a1a1a !important;
	color: #ffffff !important;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.marketplace-btn--primary:hover {
	background: #000000 !important;
	color: #ffffff !important;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.marketplace-btn--outline {
	background: #EDE8E4 !important;
	color: #1a1a1a !important;
	border: none !important;
	font-weight: 600;
}

.marketplace-btn--outline:hover {
	background: #e0d9d1 !important;
	color: #1a1a1a !important;
}

/* Profile Bookmark Button */
.profile-bookmark {
	background: white;
	border: 2px solid #e5e7eb;
	transition: all 0.2s;
}

.profile-bookmark:hover {
	border-color: #0066ff;
	transform: scale(1.05);
}

/* Profile Header Actions */
.profile-header__actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

/* SVG Flag Styling */
.legend-flag-svg {
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
	border-radius: 50%;
}

.sidebar-country__flag-svg {
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
}

.calendar-flag-svg {
	display: inline-block;
	flex-shrink: 0;
	border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
	.profile-main-grid {
		grid-template-columns: 1fr;
	}

	.insights-content-grid {
		grid-template-columns: 1fr;
	}

	.insights-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.insights-main-title {
		font-size: 32px;
	}
}

/* Stat Card Height Adjustment */
.profile-stats .stat-card {
	min-height: 150px;
}

/* Stat Card Value Spacing */
.stat-card__value {
	margin-top: 30px;
	font-size: 30px !important;
}

/* Stat Card Layout - Icon and Label on Same Line */
.stat-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 8px;
}

.stat-card__icon {
	display: flex;
	align-items: center;
	margin-bottom: 0 !important;
	flex-shrink: 0;
}

.stat-card__icon img {
	display: block;
	width: auto;
	height: auto;
	max-width: none;
}

.stat-card__label {
	margin-bottom: 0 !important;
	line-height: 1.2;
	text-align: left;
}

/* Partner Badge Images - Original Size (No Resizing) */
.partner-badge-img {
	display: inline-block;
	height: auto;
	width: auto;
	max-width: none;
	max-height: none;
	vertical-align: middle;
}

/* Badge images in partner cards (directory listing) */
.partner-card__badges .partner-badge-img {
	max-width: none;
	max-height: none;
}

/* Badge images in discovery cards */
.discovery-partner-card__badges .partner-badge-img {
	max-width: none;
	max-height: none;
}

/* Badge images in profile header */
.profile-header__badges .partner-badge-img {
	max-width: none;
	max-height: none;
}

/* Similar Providers Grid */
.similar-providers-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.similar-provider-card {
	background: white;
	border-radius: 24px;
	padding: 32px 24px;
	border: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
	min-width: 0;
}

.similar-provider-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px -10px rgba(0,0,0,0.1);
}

.similar-provider-card__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 20px;
	width: 100%;
}

.similar-provider-card__logo {
	width: 80px;
	height: 80px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 16px;
	padding: 12px;
	flex-shrink: 0;
}

.similar-provider-card__logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.similar-provider-card__title-area {
	width: 100%;
}

.similar-provider-card__title-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 8px;
}

.similar-provider-card__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.similar-provider-card__title a {
	color: #1a1a1a;
	text-decoration: none;
}

.similar-provider-card__title a:hover {
	color: #a855f7;
}

.similar-provider-card__badges {
	display: flex;
	gap: 8px;
	justify-content: center;
	margin-top: 8px;
	margin-bottom: 16px;
}

.similar-provider-card__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #f3e8ff;
	color: #a855f7;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.similar-provider-card__location {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 14px;
	color: #6b7280;
	font-weight: 400;
}

.similar-provider-card__location .meta-icon {
	width: 14px;
	height: 14px;
}

.similar-provider-card__description {
	font-size: 15px;
	line-height: 1.6;
	color: #6b7280;
	margin: 0 0 24px 0;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}

.similar-provider-card__footer {
	margin-top: auto;
	margin-bottom: 16px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.similar-provider-card__services {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}

.service-tag {
	background: #f3f4f6;
	color: #374151;
	padding: 6px 12px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid #e5e7eb;
}

.similar-provider-card__countries {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
}

.country-flag-svg-small {
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.marketplace-btn--full {
	width: 100%;
	text-align: center;
	padding: 14px 24px;
	border-radius: 12px;
	font-size: 16px;
}

/* ==========================================================================
   PROFILE HEADER RATING
   ========================================================================== */

.profile-header__rating {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-header__rating .vendor-rating-stars {
	font-size: 16px;
	display: inline-flex;
	gap: 2px;
}

.profile-header__rating strong {
	font-size: 16px;
	font-weight: 600;
	color: #111827;
}

.profile-header__review-count {
	font-size: 14px;
	color: #6b7280;
}

.profile-header__read-reviews {
	font-size: 14px;
	color: #2563eb;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s;
	border-left: 1px solid #e5e7eb;
	padding-left: 8px;
	margin-left: 4px;
}

.profile-header__read-reviews:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

/* ==========================================================================
   STAT CARD RATING (Yellow Card)
   ========================================================================== */

.stat-card--yellow {
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	border-color: #fbbf24;
}

.stat-card__value--rating {
	display: flex;
	align-items: baseline;
	gap: 6px;
}

.stat-card__rating-value {
	font-size: 32px;
	font-weight: 700;
	color: #92400e;
}

.stat-card__rating-small {
	font-size: 14px;
	color: #78350f;
	font-weight: 500;
}

/* ==========================================================================
   VENDOR REVIEWS SECTION
   ========================================================================== */

.reviews-section {
	margin-top: 60px;
	margin-bottom: 60px;
}

.reviews-section .insights-main-title {
	color: #1a1a1a !important;
}

.reviews-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 20px;
}

.reviews-summary {
	display: flex;
	align-items: center;
	gap: 16px;
}

.reviews-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vendor-rating-stars {
	display: inline-flex;
	gap: 2px;
	font-size: 20px;
	line-height: 1;
}

.vendor-rating-stars .star {
	color: #fbbf24;
}

.vendor-rating-stars .star-empty {
	color: #d1d5db;
}

.vendor-rating-stars .star-half {
	color: #fbbf24;
	position: relative;
}

.vendor-rating-value {
	font-size: 18px;
	font-weight: 600;
	color: #111827 !important;
}

.reviews-section .vendor-rating-value {
	color: #111827 !important;
}

.reviews-count {
	font-size: 14px;
	color: #6b7280 !important;
}

.reviews-section .reviews-count {
	color: #6b7280 !important;
}

.reviews-list {
	display: grid;
	gap: 24px;
}

/* Review Card */
.review-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	transition: box-shadow 0.2s;
}

.review-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-card__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
	gap: 16px;
}

.review-card__meta {
	flex: 1;
}

.review-card__author {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

.review-card__author strong {
	font-size: 16px;
	color: #111827;
	font-weight: 600;
}

.review-card__verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #dbeafe;
	color: #1e40af;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.review-card__verified svg {
	width: 14px;
	height: 14px;
}

.review-card__recommended {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #d1fae5;
	color: #065f46;
	padding: 2px 8px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 500;
}

.review-card__recommended svg {
	width: 14px;
	height: 14px;
}

.review-card__date {
	font-size: 14px;
	color: #6b7280;
}

.review-card__rating {
	flex-shrink: 0;
}

.review-card__rating .vendor-rating-stars {
	font-size: 18px;
}

.review-card__section {
	margin-bottom: 20px;
}

.review-card__section:last-child {
	margin-bottom: 0;
}

.review-card__section-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.review-card__section-title--pros {
	color: #059669;
}

.review-card__section-title--cons {
	color: #dc2626;
}

.review-card__section-title--pros::before {
	content: '✓';
	display: inline-block;
	font-weight: bold;
}

.review-card__section-title--cons::before {
	content: '✗';
	display: inline-block;
	font-weight: bold;
}

.review-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.review-card__list li {
	padding-left: 24px;
	position: relative;
	line-height: 1.5;
	color: #374151;
}

.review-card__list--pros li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: #059669;
	font-weight: bold;
}

.review-card__list--cons li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: #dc2626;
	font-weight: bold;
}

.review-card__comment {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
	color: #4b5563;
	line-height: 1.6;
}

.review-card__comment p {
	margin: 0 0 12px 0;
}

.review-card__comment p:last-child {
	margin-bottom: 0;
}

/* Partner Response */
.review-card__partner-response {
	margin-top: 20px;
	padding: 16px;
	background: #f0f9ff;
	border-left: 3px solid #2563eb;
	border-radius: 8px;
}

.partner-response-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.partner-response-header strong {
	color: #1e40af;
	font-size: 14px;
}

.partner-response-date {
	font-size: 13px;
	color: #6b7280;
}

.partner-response-content {
	color: #374151;
	line-height: 1.6;
	font-size: 14px;
}

.partner-response-content p {
	margin: 0 0 12px 0;
}

.partner-response-content p:last-child {
	margin-bottom: 0;
}

/* Inline Star Rating (for cards) */
.partner-rating-inline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
}

.partner-rating-inline .vendor-rating-stars {
	font-size: 14px;
}

.partner-rating-inline .vendor-rating-value {
	font-size: 14px;
	font-weight: 600;
	color: #111827;
}

.partner-rating-inline .reviews-count-small {
	font-size: 13px;
	color: #6b7280;
}

/* Responsive */
@media (max-width: 1200px) {
	.similar-providers-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.similar-providers-grid {
		grid-template-columns: 1fr;
	}

	.reviews-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.review-card__header {
		flex-direction: column;
	}

	.review-card {
		padding: 20px;
	}
}

/* ==========================================================================
   PUBLIC REVIEW FORM
   ========================================================================== */

.public-review-form-section {
	background: #f9fafb;
	padding: 60px 0;
	margin-top: 60px;
}

.public-review-form-header {
	text-align: center;
	margin-bottom: 40px;
}

.public-review-form-title {
	font-size: 32px;
	font-weight: 700;
	color: #111827;
	margin-bottom: 12px;
}

.public-review-form-description {
	font-size: 16px;
	color: #6b7280;
}

.public-review-form {
	background: white;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-message {
	padding: 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	font-weight: 500;
}

.form-message--success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #10b981;
}

.form-message--error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #ef4444;
}

.form-group {
	margin-bottom: 24px;
}

.form-label {
	display: block;
	font-weight: 600;
	color: #111827;
	margin-bottom: 8px;
	font-size: 14px;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-hint {
	font-size: 13px;
	color: #6b7280;
	margin-top: 4px;
}

.rating-input {
	display: flex;
	gap: 4px;
	font-size: 32px;
}

.rating-star {
	cursor: pointer;
	color: #fbbf24;
	transition: transform 0.1s;
}

.rating-star:hover {
	transform: scale(1.1);
}

.radio-group {
	display: flex;
	gap: 16px;
}

.radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.radio-label input[type="radio"] {
	margin-right: 8px;
}

.radio-group-vertical {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.radio-label-block {
	display: flex;
	align-items: flex-start;
	padding: 12px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.2s;
}

.radio-label-block:hover {
	background-color: #f9fafb;
	border-color: #2563eb;
}

.radio-label-block input[type="radio"] {
	margin-right: 12px;
	margin-top: 2px;
}

.radio-label-block strong {
	display: block;
	color: #111827;
	margin-bottom: 4px;
}

.radio-hint {
	font-size: 13px;
	color: #6b7280;
	margin: 0;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 2px;
}

.form-submit-btn {
	width: 100%;
	background: #2563eb;
	color: white;
	padding: 14px 24px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s;
}

.form-submit-btn:hover:not(:disabled) {
	background: #1d4ed8;
}

.form-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.form-footer-note {
	text-align: center;
	font-size: 13px;
	color: #6b7280;
	margin-top: 16px;
}

@media (max-width: 768px) {
	.public-review-form {
		padding: 24px;
	}

	.public-review-form-title {
		font-size: 24px;
	}

	.rating-input {
		font-size: 28px;
	}
}
