/* Marketplace Page Section */
.marketplace-section {
	padding: 60px 0 80px 0;
	background-color: #F9FAFB;
	min-height: calc(100vh - 200px);
}

.marketplace-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.marketplace-content-wrapper {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: flex-start;
}

/* Sidebar */
.marketplace-sidebar {
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	background-color: #F3F4F6;
	border-radius: 8px;
	padding: 24px;
}

.marketplace-filter-section {
	margin-bottom: 32px;
}

.marketplace-filter-section:last-child {
	margin-bottom: 0;
}

.marketplace-filter-title {
	font-size: 16px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 16px 0;
	line-height: 1.3;
}

/* Search */
.marketplace-search-wrapper {
	display: flex;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #D1D5DB;
	border-radius: 6px;
	padding: 0 12px;
	transition: border-color 0.2s ease;
}

.marketplace-search-wrapper:focus-within {
	border-color: var(--sec-color);
}

.marketplace-search-icon {
	flex-shrink: 0;
	color: #9CA3AF;
	margin-right: 8px;
}

.marketplace-search-input {
	flex: 1;
	padding: 12px 0;
	border: none;
	background: transparent;
	font-size: 14px;
	color: #1F2937;
	outline: none;
}

.marketplace-search-input::placeholder {
	color: #9CA3AF;
}

/* Filter List */
.marketplace-filter-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Radio Buttons */
.marketplace-radio-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #374151;
	transition: color 0.2s ease;
}

.marketplace-radio-label:hover {
	color: var(--sec-color);
}

.marketplace-radio {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--sec-color);
}

.marketplace-radio-text {
	flex: 1;
}

/* Checkboxes */
.marketplace-checkbox-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	color: #374151;
	transition: color 0.2s ease;
}

.marketplace-checkbox-label:hover {
	color: var(--sec-color);
}

.marketplace-checkbox {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--sec-color);
}

.marketplace-checkbox-text {
	flex: 1;
}

/* Main Content */
.marketplace-main-content {
	flex: 1;
}

.marketplace-category-section {
	margin-bottom: 48px;
}

.marketplace-category-section:last-child {
	margin-bottom: 0;
}

.marketplace-category-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--sec-color);
	margin: 0 0 24px 0;
	line-height: 1.3;
}

.marketplace-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.marketplace-card {
	background-color: #ffffff;
	border: 1px solid #E5E7EB;
	border-radius: 8px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.marketplace-card:hover {
	border-color: var(--sec-color);
	box-shadow: 0 4px 12px rgba(50, 151, 219, 0.1);
	transform: translateY(-2px);
}

.marketplace-card-logo {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.marketplace-card-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.marketplace-card-name {
	font-size: 15px;
	font-weight: 500;
	color: #374151;
	text-align: center;
	line-height: 1.4;
}

/* Billing Section */
.billing-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.billing-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.billing-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--sec-color);
	margin: 0 0 12px 0;
	line-height: 1.2;
	text-align: center;
}

.billing-description {
	font-size: 16px;
	font-weight: 400;
	color: #6B7280;
	margin: 0 0 48px 0;
	text-align: center;
}

.billing-methods-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.billing-method-card {
	background-color: #ffffff;
	border: 2px solid #E5E7EB;
	border-radius: 12px;
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.billing-method-card:hover {
	border-color: var(--sec-color);
	box-shadow: 0 4px 12px rgba(50, 151, 219, 0.15);
	transform: translateY(-2px);
}

.billing-method-card.selected {
	border-color: var(--sec-color);
	background-color: #E8F4FD;
	box-shadow: 0 4px 12px rgba(50, 151, 219, 0.2);
}

.billing-method-icon {
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sec-color);
	margin-bottom: 16px;
}

.billing-method-icon svg {
	width: 100%;
	height: 100%;
}

.billing-method-name {
	font-size: 18px;
	font-weight: 600;
	color: #1F2937;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.billing-method-description {
	font-size: 14px;
	font-weight: 400;
	color: #6B7280;
	margin: 0;
	line-height: 1.5;
}

