/**
 * Marketplace Templates Styles
 * For partner list and profile pages
 */

/* Container */
.marketplace-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.marketplace-container--narrow {
	max-width: 800px;
}

/* Buttons */
.marketplace-btn {
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s;
	cursor: pointer;
	border: none;
}

.marketplace-btn--primary {
	background: #1a1a1a;
	color: white;
}

.marketplace-btn--primary:hover {
	background: #000000;
	color: white;
}

.marketplace-btn--outline {
	background: #EDE8E4;
	color: #1a1a1a;
	border: none;
}

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

.marketplace-btn--lg {
	padding: 14px 32px;
	font-size: 16px;
}

/* ========================================
   MARKETPLACE LIST STYLES
   ======================================== */

/* Hero Section */
.marketplace-hero {
	background: linear-gradient(135deg, #e8ecf0 0%, #f5f7fa 50%, #d4d9e8 100%);
	background-image: url('/wp-content/uploads/2025/12/warm-bg.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 120px 0 60px;
	text-align: center;
	position: relative;
}

.marketplace-hero__headline {
	font-size: 56px;
	font-weight: 800;
	margin-bottom: 16px;
	color: #1a1a1a;
}

.marketplace-hero__description {
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

/* Filters */
.marketplace-filters {
	background: white;
	padding: 24px 0;
	border-bottom: 1px solid #e5e7eb;
	position: sticky;
	top: 0;
	z-index: 50;
}

.marketplace-filters__wrapper {
	display: flex;
	gap: 12px;
	align-items: center;
}

.marketplace-search {
	flex: 1;
	max-width: 300px;
}

.marketplace-search__input {
	width: 100%;
	padding: 10px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
}

.marketplace-filter {
	padding: 10px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	background: white;
	cursor: pointer;
}

/* Multi-Select Dropdowns */
.multiselect-wrapper {
	position: relative;
	min-width: 180px;
}

.multiselect-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	background: white;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	width: 100%;
	justify-content: space-between;
}

.multiselect-trigger:hover {
	border-color: #a02deb;
}

.multiselect-label {
	color: #374151;
	white-space: nowrap;
	font-weight: 500;
}

.multiselect-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 8px;
	background: #a02deb;
	color: white;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	margin-left: 8px;
}

.multiselect-arrow {
	color: #6b7280;
	transition: transform 0.2s;
	flex-shrink: 0;
	margin-left: auto;
}

.multiselect-dropdown--open .multiselect-arrow {
	transform: rotate(180deg);
}

.multiselect-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 280px;
	max-width: 320px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.2s;
	z-index: 1000;
}

.multiselect-dropdown--open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.multiselect-search {
	padding: 12px;
	border-bottom: 1px solid #e5e7eb;
}

.multiselect-search-input {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 14px;
	outline: none;
}

.multiselect-search-input:focus {
	border-color: #a02deb;
}

.multiselect-options {
	max-height: 280px;
	overflow-y: auto;
	padding: 8px;
}

.multiselect-options::-webkit-scrollbar {
	width: 6px;
}

.multiselect-options::-webkit-scrollbar-track {
	background: #f3f4f6;
	border-radius: 3px;
}

.multiselect-options::-webkit-scrollbar-thumb {
	background: #d1d5db;
	border-radius: 3px;
}

.multiselect-options::-webkit-scrollbar-thumb:hover {
	background: #9ca3af;
}

.multiselect-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	cursor: pointer;
	border-radius: 6px;
	transition: background 0.15s;
	user-select: none;
}

.multiselect-option:hover {
	background: #f9fafb;
}

.multiselect-option input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #a02deb;
	flex-shrink: 0;
}

.multiselect-option span {
	font-size: 14px;
	color: #374151;
}

/* Clear Filters Button */
.clear-filters {
	padding: 10px 16px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 14px;
	color: #6b7280;
	cursor: pointer;
	transition: all 0.2s;
	font-weight: 500;
}

.clear-filters:hover {
	background: #e5e7eb;
	color: #374151;
}

/* Active Filters Display */
.active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #e5e7eb;
}

.filter-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	font-size: 13px;
	color: #374151;
	animation: fadeIn 0.2s;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.filter-badge__text {
	font-weight: 500;
}

.filter-badge__remove {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	background: none;
	border: none;
	cursor: pointer;
	color: #6b7280;
	transition: color 0.2s;
	padding: 0;
}

.filter-badge__remove:hover {
	color: #ef4444;
}

.filter-badge__remove svg {
	width: 12px;
	height: 12px;
}

/* Partner Status Badges */
.partner-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: help;
	position: relative;
	transition: all 0.2s;
}

.partner-badge svg {
	flex-shrink: 0;
}

.partner-badge--verified {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fcd34d;
}

.partner-badge--verified:hover {
	background: #fde68a;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(252, 211, 77, 0.3);
}

.partner-badge--preferred {
	background: linear-gradient(135deg, #a02deb 0%, #7c22b8 100%);
	color: white;
}

.partner-badge--preferred:hover {
	background: linear-gradient(135deg, #7c22b8 0%, #6b1fa3 100%);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(160, 45, 235, 0.3);
}

/* Tooltip on hover */
.partner-badge::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 8px);
	left: 50%;
	transform: translateX(-50%);
	background: #1f2937;
	color: white;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s;
	pointer-events: none;
	z-index: 100;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-badge::before {
	content: '';
	position: absolute;
	bottom: calc(100% + 2px);
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #1f2937;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s;
	pointer-events: none;
	z-index: 100;
}

.partner-badge:hover::after,
.partner-badge:hover::before {
	opacity: 1;
	visibility: visible;
}

/* Partner Card Title Row */
.partner-card__title-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.partner-card__badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

/* Profile Header Title Row */
.profile-header__title-row {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.profile-header__badges {
	display: flex;
	gap: 8px;
}

.profile-header__badges .partner-badge {
	padding: 8px 14px;
	font-size: 14px;
}

.profile-header__badges .partner-badge svg {
	width: 20px;
	height: 20px;
}

/* Partners List */
.marketplace-partners {
	padding: 40px 0;
}

.marketplace-partners__list {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

/* Partner Card */
.partner-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s;
}

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

.partner-card__header {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.partner-card__logo {
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	background: white;
	border: 1px solid #C8BFB3;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	transition: all 0.3s ease;
}

.partner-card__logo-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.partner-card__title a {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	text-decoration: none;
}

.partner-card__title a:hover {
	color: #0066ff;
}

.partner-card__meta {
	display: flex;
	gap: 16px;
	margin-top: 4px;
	font-size: 14px;
	color: #666;
}

.partner-card__meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.partner-card__meta .meta-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.partner-card__description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
}

.partner-card__details {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 44px;
	margin-bottom: 20px;
}

.partner-card__section {
	width: 100%;
	max-width: 300px;
}

.partner-card__section-title {
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.partner-card__progress-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.progress-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
}

.progress-item__label {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 120px;
}

.progress-item__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #667eea;
	flex-shrink: 0;
}

.progress-item__dot--blue {
	background: #0066ff;
}

.progress-item__bar {
	flex: 1;
	height: 4px;
	background: #e5e7eb;
	border-radius: 2px;
	overflow: hidden;
}

.progress-item__fill {
	height: 100%;
	background: #667eea;
	transition: width 0.3s;
}

.progress-item__percentage {
	color: #666;
	font-size: 12px;
	min-width: 35px;
	text-align: right;
}

/* Two-Column Stats Grid with Stacked Bars */
.partner-card__stats-grid {
	display: grid;
	grid-template-columns: 300px 300px;
	gap: 32px;
	margin-bottom: 20px;
}

.stats-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 300px;
}

.stats-column__title {
	font-size: 14px;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 8px 0;
}

/* Stacked Bar */
.stacked-bar {
	display: flex;
	width: 100%;
	height: 14px;
	border-radius: 7px;
	background: #e5e7eb;
	position: relative;
	margin-bottom: 4px;
}

.stacked-bar__segment {
	height: 100%;
	transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	cursor: pointer;
	position: relative;
}

.stacked-bar__segment:first-child {
	border-top-left-radius: 7px;
	border-bottom-left-radius: 7px;
}

.stacked-bar__segment:last-child {
	border-top-right-radius: 7px;
	border-bottom-right-radius: 7px;
}

.stacked-bar__segment:hover {
	opacity: 0.85;
	z-index: 10;
}

/* Purple segments for Services */
.stacked-bar__segment--purple-1 { background: #8b5cf6; }
.stacked-bar__segment--purple-2 { background: #a78bfa; }
.stacked-bar__segment--purple-3 { background: #c4b5fd; }

/* Blue segments for Focus Areas */
.stacked-bar__segment--blue-1 { background: #3b82f6; }
.stacked-bar__segment--blue-2 { background: #60a5fa; }
.stacked-bar__segment--blue-3 { background: #93c5fd; }

/* Legend */
.stats-legend {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 12px;
}

.stats-legend__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.stats-legend__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* Purple dots for Services */
.stats-legend__dot--purple-1 { background: #8b5cf6; }
.stats-legend__dot--purple-2 { background: #a78bfa; }
.stats-legend__dot--purple-3 { background: #c4b5fd; }

/* Blue dots for Focus Areas */
.stats-legend__dot--blue-1 { background: #3b82f6; }
.stats-legend__dot--blue-2 { background: #60a5fa; }
.stats-legend__dot--blue-3 { background: #93c5fd; }

/* Gray dot for "additional" items */
.stats-legend__dot--gray { background: #9ca3af; }

.stats-legend__text {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	font-size: 13px;
	line-height: 1.4;
}

.stats-legend__percentage {
	font-weight: 600;
	color: #1a1a1a;
	min-width: 36px;
}

.stats-legend__label {
	font-weight: 400;
	color: #1a1a1a;
}

.stats-legend__counter {
	font-weight: 400;
	color: #6b7280;
	margin-left: 4px;
	text-decoration: underline;
	cursor: help;
	position: relative;
}

.stats-legend__counter:hover {
	color: #4b5563;
}

/* Tooltip styles */
.stats-tooltip {
	position: absolute;
	background: #ffffff;
	color: #1a1a1a;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.4;
	white-space: nowrap;
	z-index: 1000;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
	bottom: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	font-weight: 500;
}

.stats-tooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #ffffff;
	filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.stats-tooltip.visible {
	opacity: 1;
}

.stats-legend__additional {
	font-weight: 400;
	color: #6b7280;
	font-style: italic;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.partner-card__stats-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.partner-card__countries {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.country-flag-svg,
.country-flag {
	position: relative;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.country-flag-svg:hover,
.country-flag:hover {
	transform: scale(1.1);
}

.country-flag {
	font-size: 24px;
	line-height: 1;
}

.country-more {
	font-size: 12px;
	color: #666;
}

.partner-card__footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid #e5e7eb;
}

.partner-card__price {
	display: flex;
	flex-direction: column;
}

.partner-card__price-amount {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a;
}

.partner-card__price-period {
	font-size: 12px;
	color: #666;
}

.partner-card__actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.partner-card__bookmark {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	padding: 8px;
}

/* ========================================
   MARKETPLACE PROFILE STYLES
   ======================================== */

/* Profile Header */
.profile-header {
	background: url('/wp-content/uploads/2025/12/warm-bg.svg') center/cover no-repeat;
	padding: 100px 0 40px;
}

/* Profile Breadcrumbs */
.profile-breadcrumbs {
	font-size: 14px;
	color: #6b6764;
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.profile-breadcrumbs a {
	color: #6b6764;
	text-decoration: none;
	transition: color 0.2s;
}

.profile-breadcrumbs a:hover {
	color: #1c1c1b;
}

.profile-breadcrumbs .breadcrumb-separator {
	color: #c8bfb3;
}

.profile-breadcrumbs .breadcrumb-current {
	color: #1c1c1b;
	font-weight: 500;
}

.profile-header__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 24px;
}

.profile-header__left {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.profile-header__logo {
	width: 80px;
	height: 80px;
	background: white;
	border: 1px solid #C8BFB3;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.profile-header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.profile-header__title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 12px;
}


.profile-header__meta {
	display: flex;
	gap: 16px;
	font-size: 14px;
	color: #666;
}

.profile-header__meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.profile-header__meta .meta-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.profile-header__actions {
	display: flex;
	gap: 12px;
	align-items: center;
}

.profile-bookmark {
	background: white;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-size: 20px;
	padding: 10px 12px;
	cursor: pointer;
}

/* Stats Cards */
.profile-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.stat-card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	border-bottom: 10px solid;
}

.stat-card--green {
	border-bottom-color: #10b981;
}

.stat-card--blue {
	border-bottom-color: #0066ff;
}

.stat-card--purple {
	border-bottom-color: #8b5cf6;
}

.stat-card__icon {
	font-size: 20px;
	margin-bottom: 8px;
}

.stat-card__label {
	font-size: 12px;
	color: #666;
	margin-bottom: 4px;
}

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

/* Featured In Section */
.profile-featured-in {
	margin-top: 32px;
}

.featured-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.featured-item {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	display: flex;
	align-items: center;
	gap: 24px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.featured-item:hover {
	border-color: #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Top 10 Badge */
.featured-item__badge {
	flex-shrink: 0;
}

.top10-badge {
	position: relative;
	width: 88px;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.top10-badge__frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.top10-badge__flag {
	position: absolute;
	top: calc(50% + 10px);
	left: calc(50% + 15px);
	transform: translate(-50%, -50%);
	width: 26.32px;
	height: 26.32px;
	border-radius: 50%;
	object-fit: cover;
	z-index: 2;
}

/* Featured Item Content */
.featured-item__content {
	flex: 1;
}

.featured-item__label {
	display: block;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 4px;
	text-transform: capitalize;
}

.featured-item__title {
	font-size: 18px;
	font-weight: 400;
	margin: 0;
	line-height: 1.4;
}

.featured-item__title a {
	color: #1a1a1a;
	text-decoration: underline;
	transition: color 0.2s;
}

.featured-item__title a:hover {
	color: #a02deb;
}

/* Featured Item Action */
.featured-item__action {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.featured-item__action:hover {
	color: #a02deb;
}

.featured-item__action .arrow {
	font-size: 20px;
	transition: transform 0.2s ease;
}

.featured-item__action:hover .arrow {
	transform: translateX(4px);
}

/* Profile Content Layout */
.profile-content {
	padding: 40px 0;
}

.profile-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
}

/* Profile Sections */
.profile-section {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 32px;
	margin-bottom: 24px;
}

.profile-section__title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #1a1a1a;
}

.profile-section__text {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 24px;
}

.profile-subsection__title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 12px;
	color: #1a1a1a;
}

/* Service Breakdown */
.service-breakdown {
	margin: 24px 0;
}

.service-breakdown__tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 24px;
}

.service-tab {
	padding: 8px 16px;
	border: 1px solid #e5e7eb;
	background: white;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
}

.service-tab--active {
	background: #f3f4f6;
	border-color: #d1d5db;
}

.service-breakdown__chart {
	display: flex;
	gap: 40px;
	align-items: center;
}

.tab-content {
	display: none;
}

.tab-content--active {
	display: flex;
}

.donut-chart {
	width: 200px;
	height: 200px;
}

.service-breakdown__legend {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.legend-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #0066ff;
}

.legend-flag {
	font-size: 24px;
	line-height: 1;
	margin-right: 8px;
}

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

.insight-card {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 20px;
}

.insight-card__icon {
	font-size: 24px;
	margin-bottom: 8px;
}

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

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

/* Calendar & Currency */
.payroll-calendar, .rates-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.calendar-entry, .rate-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
	background: #f9fafb;
	border-radius: 6px;
	font-size: 14px;
}

.currency-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.currency-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.currency-tag {
	background: #f3f4f6;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a1a;
}

/* Sidebar */
.profile-sidebar {
	position: sticky;
	top: 100px;
}

.contact-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	margin-bottom: 16px;
}

.contact-card__avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 16px;
	overflow: hidden;
}

.contact-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.avatar-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	font-weight: 700;
}

.contact-card__name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}

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

.sidebar-cta {
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border: none;
	border-radius: 12px;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	margin-bottom: 24px;
	transition: transform 0.2s;
}

.sidebar-cta:hover {
	transform: translateY(-2px);
}

.sidebar-cta__icon {
	font-size: 20px;
}

.sidebar-cta__text {
	font-weight: 600;
	font-size: 16px;
}

.sidebar-section {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 16px;
}

.sidebar-section__title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 16px;
}

.sidebar-countries {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar-countries--columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.sidebar-country {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	transition: opacity 0.3s ease, max-height 0.3s ease;
	overflow: hidden;
}

.sidebar-country--hidden {
	display: none;
}

.sidebar-country__flag {
	font-size: 20px;
}

.sidebar-country__flag-svg {
	flex-shrink: 0;
}

.sidebar-show-more {
	margin-top: 8px;
	background: none;
	border: none;
	color: #a02deb;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	padding: 8px 0;
	text-align: left;
	transition: color 0.2s;
}

.sidebar-show-more:hover {
	color: #8b22c7;
	text-decoration: underline;
}

.sidebar-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sidebar-list-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.service-tag {
	background: #f3f4f6;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 12px;
	color: #666;
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
}

.service-tag--link {
	cursor: pointer;
}

.service-tag--link:hover {
	background: #a02deb;
	color: white;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(160, 45, 235, 0.2);
}

/* FAQ Section */
.profile-faq {
	background: #f9fafb;
	padding: 60px 0;
}

.faq-header {
	text-align: center;
	margin-bottom: 40px;
}

.faq-badge {
	background: #e0e7ff;
	color: #667eea;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 16px;
}

.faq-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 12px;
}

.faq-description {
	color: #666;
	margin-bottom: 16px;
}

.faq-contact-btn {
	background: #1a1a1a;
	color: white;
	border: none;
	padding: 10px 24px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
}

.faq-list {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

.faq-item {
	border-bottom: 1px solid #e5e7eb;
}

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

.faq-question {
	padding: 20px 24px;
	cursor: pointer;
	font-weight: 600;
	list-style: none;
}

.faq-answer {
	padding: 0 24px 20px;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* Bottom CTA */
.profile-bottom-cta {
	background: white;
	padding: 100px 0;
	text-align: center;
}

.profile-bottom-cta__container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 50px;
}

.profile-bottom-cta__inner {
	background: #fff3da url('/wp-content/uploads/2025/12/orange-bg.svg') center/cover no-repeat;
	border-radius: 28px;
	padding: 36px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.profile-bottom-cta__label {
	font-family: 'TWK Everett', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: black;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
}

.bottom-cta__title {
	font-family: 'TWK Everett', sans-serif;
	font-size: 60px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -1.8px;
	color: black;
	margin: 0;
	max-width: 100%;
}

.profile-bottom-cta__button {
	background: black;
	border: 2px solid black;
	border-radius: 12px;
	padding: 12px 24px 12px 24px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 64px;
	font-family: 'DM Sans', sans-serif;
	font-size: 20px;
	font-weight: 500;
	color: white;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.profile-bottom-cta__button:hover {
	background: #1a1a1a;
	border-color: #1a1a1a;
	transform: translateY(-1px);
}

.profile-bottom-cta__button-icon {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

	.profile-layout {
		grid-template-columns: 1fr;
	}

	.profile-stats {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 768px) {
	.marketplace-hero__headline {
		font-size: 36px;
	}

	.marketplace-filters__wrapper {
		flex-direction: column;
	}

	.marketplace-search {
		max-width: 100%;
		width: 100%;
	}

	.marketplace-filter {
		width: 100%;
	}

	/* Multi-select responsive */
	.multiselect-wrapper {
		width: 100%;
	}

	.multiselect-dropdown {
		min-width: 100%;
		max-width: 100%;
		left: 0;
		right: 0;
	}

	.clear-filters {
		width: 100%;
	}

	.active-filters {
		margin-top: 12px;
		padding-top: 12px;
	}

	/* Badge responsive */
	.partner-badge {
		font-size: 12px;
		padding: 5px 10px;
	}

	.partner-badge svg {
		width: 14px;
		height: 14px;
	}

	.partner-card__title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.profile-header__title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.partner-badge::after {
		white-space: normal;
		max-width: 200px;
		text-align: center;
	}

	.partner-card__footer {
		flex-direction: column;
		gap: 16px;
		align-items: flex-start;
	}

	.partner-card__actions {
		width: 100%;
		flex-direction: column;
	}

	.marketplace-btn {
		width: 100%;
	}

	.profile-header__wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.profile-header__actions {
		width: 100%;
	}

	.currency-row {
		grid-template-columns: 1fr;
	}

	.profile-featured-in {
		padding: 24px 20px;
	}

	.featured-title {
		font-size: 22px;
	}

	.featured-item {
		flex-direction: column;
		gap: 16px;
	}

	.featured-item__action {
		width: 100%;
		justify-content: center;
	}
}
