/* START: KOL Seller Marketplace Light Mode - Form Styles */

html.light-mode .bmm-seller-product-form-wrapper,
html.light-mode .bmm-seller-products-wrapper {
	background: #ffffff;
	color: #1f2937;
}

html.light-mode .bmm-product-form {
	max-width: 600px;
	margin: 20px 0;
}

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

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

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

html.light-mode .bmm-form-group .optional {
	color: #6b7280;
	font-size: 12px;
	font-weight: normal;
}

html.light-mode .bmm-form-group input[type="text"],
html.light-mode .bmm-form-group input[type="number"],
html.light-mode .bmm-form-group input[type="email"],
html.light-mode .bmm-form-group select,
html.light-mode .bmm-form-group textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	background: #ffffff;
	color: #1f2937;
	font-size: 14px;
	font-family: inherit;
}

html.light-mode .bmm-form-group input[type="text"]:focus,
html.light-mode .bmm-form-group input[type="number"]:focus,
html.light-mode .bmm-form-group input[type="email"]:focus,
html.light-mode .bmm-form-group select:focus,
html.light-mode .bmm-form-group textarea:focus {
	outline: none;
	border-color: #10da85;
	box-shadow: 0 0 0 3px rgba(16, 218, 133, 0.1);
}

html.light-mode .bmm-form-group small {
	display: block;
	margin-top: 6px;
	color: #6b7280;
	font-size: 12px;
}

html.light-mode .bmm-form-row {
	display: flex;
	gap: 20px;
}

html.light-mode .bmm-form-half {
	flex: 1;
}

html.light-mode .bmm-drop-zone {
	border: 2px dashed #e5e7eb;
	border-radius: 8px;
	padding: 30px 20px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #f9fafb;
}

html.light-mode .bmm-drop-zone:hover {
	border-color: #10da85;
	background: #f0fdf9;
}

html.light-mode .bmm-drop-zone.drag-over {
	border-color: #10da85;
	background: #f0fdf9;
}

html.light-mode .bmm-drop-zone i {
	display: block;
	font-size: 40px;
	color: #d1d5db;
	margin-bottom: 10px;
}

html.light-mode .bmm-drop-zone p {
	margin: 8px 0;
	font-weight: 600;
	color: #1f2937;
}

html.light-mode .bmm-drop-zone small {
	color: #6b7280;
}

html.light-mode .bmm-audio-preview,
html.light-mode .bmm-image-preview {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 15px;
	margin-top: 10px;
}

html.light-mode .bmm-audio-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

html.light-mode .bmm-image-preview img {
	max-width: 100%;
	max-height: 200px;
	border-radius: 4px;
	margin-bottom: 10px;
}

html.light-mode .bmm-remove-file {
	background: #ef4444;
	color: white;
	border: none;
	padding: 6px 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 12px;
	transition: background 0.3s ease;
}

html.light-mode .bmm-remove-file:hover {
	background: #dc2626;
}

html.light-mode .bmm-form-actions {
	display: flex;
	gap: 12px;
	margin-top: 30px;
}

html.light-mode .bmm-button-primary,
html.light-mode .bmm-submit-button {
	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;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(16, 218, 133, 0.2);
}

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

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

html.light-mode .bmm-cancel-button {
	background: #f3f4f6;
	color: #1f2937;
	border: 1px solid #e5e7eb;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

html.light-mode .bmm-cancel-button:hover {
	background: #e5e7eb;
	border-color: #d1d5db;
}

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

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

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

html.light-mode .bmm-seller-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	margin: 20px 0 30px 0;
}

html.light-mode .bmm-stat-box {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 16px;
	text-align: center;
}

html.light-mode .bmm-stat-label {
	display: block;
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

html.light-mode .bmm-stat-value {
	display: block;
	font-size: 24px;
	font-weight: 700;
	color: #10da85;
}

html.light-mode .bmm-products-list {
	margin-top: 30px;
}

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

html.light-mode .bmm-products-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

html.light-mode .bmm-products-table thead {
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
}

html.light-mode .bmm-products-table th {
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
	color: #1f2937;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

html.light-mode .bmm-products-table td {
	padding: 12px 16px;
	border-bottom: 1px solid #e5e7eb;
	color: #1f2937;
}

html.light-mode .bmm-products-table tbody tr:hover {
	background: #f9fafb;
}

html.light-mode .bmm-col-image img {
	width: 60px;
	height: 60px;
	border-radius: 4px;
	object-fit: cover;
}

html.light-mode .bmm-no-image {
	width: 60px;
	height: 60px;
	background: #e5e7eb;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
}

html.light-mode .bmm-badge {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: capitalize;
}

html.light-mode .bmm-badge-publish {
	background: #d1fae5;
	color: #065f46;
}

html.light-mode .bmm-badge-pending {
	background: #fef3c7;
	color: #92400e;
}

html.light-mode .bmm-action-link {
	display: inline-block;
	margin-right: 12px;
	color: #10da85;
	text-decoration: none;
	font-size: 12px;
	font-weight: 600;
	transition: color 0.3s ease;
}

html.light-mode .bmm-action-link:hover {
	color: #0bb870;
}

html.light-mode .bmm-action-link.bmm-delete-product {
	color: #ef4444;
}

html.light-mode .bmm-action-link.bmm-delete-product:hover {
	color: #dc2626;
}

html.light-mode .kol-seller-shop-no-store {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 40px 20px;
	text-align: center;
	color: #6b7280;
}

html.light-mode .kol-seller-shop-no-store p {
	font-size: 16px;
	margin: 0;
}

html.light-mode .bmm-store-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

html.light-mode .bmm-store-product {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
}

html.light-mode .bmm-store-product:hover {
	border-color: #10da85;
	box-shadow: 0 4px 12px rgba(16, 218, 133, 0.1);
}

html.light-mode .bmm-store-product-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #f9fafb;
}

html.light-mode .bmm-store-product-image img,
html.light-mode .bmm-store-product-image a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

html.light-mode .bmm-store-product-image img {
	object-fit: cover;
}

html.light-mode .bmm-store-product h3 {
	padding: 12px 16px 0 16px;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
}

html.light-mode .bmm-store-product h3 a {
	color: #1f2937;
	text-decoration: none;
	transition: color 0.3s ease;
}

html.light-mode .bmm-store-product h3 a:hover {
	color: #10da85;
}

html.light-mode .bmm-store-product-price {
	padding: 0 16px;
	margin: 8px 0;
	font-size: 18px;
	font-weight: 700;
	color: #10da85;
}

html.light-mode .bmm-store-product .bmm-button-primary {
	width: calc(100% - 32px);
	margin: 0 16px 16px 16px;
}

#my-store-personal-li,
#my-store-personal-li a,
#my-store-personal-li.current,
#my-store-personal-li.selected,
#my-store-personal-li.current a,
#my-store-personal-li.selected a {
	transform: none !important;
}

#my-store-personal-li a {
	display: inline-flex;
	align-items: center;
}

html.light-mode .bmm-storage-info {
	background: #f3f4f6;
	color: #1f2937;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	padding: 15px;
}

html.light-mode .bmm-storage-info p {
	margin: 0 0 10px 0;
	font-size: 14px;
	color: #1f2937;
}

html.light-mode .bmm-storage-info p strong {
	font-weight: 600;
}

html.light-mode .bmm-storage-info .bmm-progress-bar {
	width: 100%;
	height: 20px;
	background: #e5e7eb;
	border-radius: 3px;
	overflow: hidden;
	border: 1px solid #d1d5db;
}

html.light-mode .bmm-storage-info .bmm-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #10da85 0%, #0bb870 100%);
	width: 0%;
	transition: width 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 11px;
	font-weight: 600;
}

html.light-mode .bmm-storage-info #bmm-storage-message {
	margin: 10px 0 0 0;
	font-size: 12px;
	color: #ff9800;
}

/* START WooCommerce Products Container Grid Fix */
html.light-mode .kol-random-products-container {
    overflow-y: auto;
    height: 100%;
    position: relative;
}

html.light-mode .kol-product-archive-grid {
    clear: both;
}

html.light-mode .bmp-music-store-container .woocommerce ul.products,
html.light-mode .bmp-shortcode-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow: hidden;
    clear: both;
}
/* END WooCommerce Products Container Grid Fix */

/* START KOL Product Card Light Mode */

html.light-mode .kol-product-card {
    display: flex;
    flex-direction: row;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    max-height: 110px;
    list-style: none;
}

html.light-mode .kol-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

html.light-mode .kol-product-card-inner {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

html.light-mode .kol-product-card-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f3f4f6;
}

html.light-mode .kol-product-card-image img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

html.light-mode .kol-product-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

html.light-mode .kol-product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 8px 12px;
    min-height: 0;
    overflow: hidden;
}

html.light-mode .kol-product-card-content .woocommerce-loop-product__title,
html.light-mode .kol-product-card-content .kol-seller-product-title {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
    text-decoration: none;
}

html.light-mode .kol-product-card-content .woocommerce-loop-product__title:hover,
html.light-mode .kol-product-card-content .kol-seller-product-title:hover {
    color: #059669;
}

html.light-mode .kol-product-card-meta {
    display: flex;
}

html.light-mode .kol-product-card-description {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.3;
    margin: 2px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

html.light-mode .kol-product-card-footer {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-top: auto;
    padding: 0;
    border: none;
    align-items: center;
    flex-shrink: 0;
}

html.light-mode .kol-product-genre {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    white-space: nowrap;
}

html.light-mode .kol-product-actions-right {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-left: auto;
}

html.light-mode .kol-product-actions-right .button {
    height: 32px;
    padding: 0 15px;
    border-radius: 6px;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #b0b0b0;
    border-bottom: 1px solid #b0b0b0;
    background: linear-gradient(135deg, #e2e2e2 0%, #d4d4d4 100%);
    color: #2d2d2d;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

html.light-mode .kol-product-actions-right .button:hover {
    background: linear-gradient(135deg, #d4d4d4 0%, #c6c6c6 100%);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

html.light-mode .kol-pec-icons {
    display: inline-flex !important;
}

html.light-mode .kol-pec-icon {
    display: inline-flex !important;
}

html.light-mode .kol-pec-icon-symbol {
    display: inline-block !important;
}

html.light-mode .kol-pec-count {
    display: inline !important;
}

html.light-mode .kol-pec-comments {
    display: inline-flex !important;
}

/* END KOL Product Card Light Mode */

/* Light mode gray button override for all .button elements in product cards */
html.light-mode .kol-product-card .button {
    height: 32px;
    padding: 0 15px;
    border-radius: 6px;
    border-top: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #b0b0b0;
    border-bottom: 1px solid #b0b0b0;
    background: linear-gradient(135deg, #e2e2e2 0%, #d4d4d4 100%);
    color: #2d2d2d;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

html.light-mode .kol-product-card .button:hover {
    background: linear-gradient(135deg, #d4d4d4 0%, #c6c6c6 100%);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}
