/* START: KOL Sellers Index Light Mode */

html.light-mode .kol-sellers-index-wrapper {
	background: #ffffff;
	color: #1f2937;
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 20px;
}

html.light-mode .kol-sellers-index-wrapper h1 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 30px;
	color: #1f2937;
}

html.light-mode .kol-sellers-index-wrapper h2 {
	font-size: 24px;
	font-weight: 700;
	margin: 40px 0 20px 0;
	color: #1f2937;
}

html.light-mode .kol-sellers-index-hero {
	background: linear-gradient(135deg, #f0fdf9 0%, #e0f2fe 100%);
	border: 1px solid #a7f3d0;
	border-radius: 12px;
	padding: 40px;
	margin-bottom: 40px;
	text-align: center;
}

html.light-mode .kol-seller-cta h2 {
	font-size: 28px;
	color: #10da85;
	margin-bottom: 12px;
}

html.light-mode .kol-seller-cta p {
	font-size: 16px;
	color: #4b5563;
	margin-bottom: 20px;
}

html.light-mode .kol-sellers-index-login-cta {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	margin-bottom: 40px;
}

html.light-mode .kol-sellers-index-login-cta p {
	margin-bottom: 20px;
	color: #6b7280;
}

html.light-mode .kol-sellers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 20px;
}

html.light-mode .kol-seller-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

html.light-mode .kol-seller-card:hover {
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
	border-color: #10da85;
}

html.light-mode .kol-seller-image {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

html.light-mode .kol-seller-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html.light-mode .kol-seller-info {
	padding: 20px;
}

html.light-mode .kol-seller-info h3 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 8px;
}

html.light-mode .kol-seller-info h3 a {
	color: #1f2937;
	text-decoration: none;
	transition: color 0.3s ease;
}

html.light-mode .kol-seller-info h3 a:hover {
	color: #10da85;
}

html.light-mode .kol-seller-products {
	font-size: 13px;
	color: #9ca3af;
	margin-bottom: 10px;
}

html.light-mode .kol-seller-bio {
	font-size: 14px;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 16px;
}

html.light-mode .kol-seller-view-shop {
	display: inline-block;
	background: linear-gradient(135deg, #10da85 0%, #0bb870 100%);
	color: white;
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.3s ease;
}

html.light-mode .kol-seller-view-shop:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 218, 133, 0.3);
}

/* Store Activation */

html.light-mode .kol-seller-activation-wrapper {
	background: white;
	color: #1f2937;
	max-width: 600px;
}

html.light-mode .kol-seller-activation-wrapper h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 24px;
	color: #1f2937;
}

html.light-mode .kol-approval-notice {
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 24px;
}

html.light-mode .kol-approval-notice p {
	color: #92400e;
	margin: 0;
	font-size: 14px;
}

html.light-mode .kol-store-activation-form {
	margin-top: 20px;
}

html.light-mode .kol-seller-status-active {
	background: #d1fae5;
	border: 1px solid #a7f3d0;
	border-radius: 8px;
	padding: 24px;
	text-align: center;
	color: #065f46;
}

html.light-mode .kol-seller-status-active h2 {
	color: #10da85;
	margin-bottom: 12px;
}

html.light-mode .kol-seller-status-active p {
	color: #065f46;
	margin-bottom: 20px;
}

html.light-mode .kol-form-group {
	margin-bottom: 20px;
}

html.light-mode .kol-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1f2937;
}

html.light-mode .kol-form-group .required {
	color: #dc2626;
}

html.light-mode .kol-form-group input,
html.light-mode .kol-form-group textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	color: #1f2937;
	box-sizing: border-box;
}

html.light-mode .kol-form-group input:focus,
html.light-mode .kol-form-group textarea:focus {
	outline: none;
	border-color: #10da85;
	box-shadow: 0 0 0 3px rgba(16, 218, 133, 0.1);
}

html.light-mode .kol-form-actions {
	margin-top: 30px;
}

html.light-mode .kol-button-primary {
	background: linear-gradient(135deg, #10da85 0%, #0bb870 100%);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(16, 218, 133, 0.2);
}

html.light-mode .kol-button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 218, 133, 0.3);
}

html.light-mode .kol-button-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

html.light-mode .kol-form-message {
	padding: 12px 16px;
	border-radius: 6px;
	margin-top: 20px;
	font-weight: 500;
}

html.light-mode .kol-form-message.success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

html.light-mode .kol-form-message.error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

html.light-mode .kol-loading {
	text-align: center;
	padding: 40px;
	color: #6b7280;
}

/* END: KOL Sellers Index Light Mode */
