/**
 * Frontend Styles - Mobile First
 */

/* Container */
.wardrobe-catalog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
}

.wardrobe-catalog-content {
	flex: 1;
}

/* Breadcrumbs */
.wardrobe-breadcrumbs {
	margin-bottom: 20px;
	width: 100%;
	flex-shrink: 0;
}

.wardrobe-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

.wardrobe-breadcrumb-item {
	display: flex;
	align-items: center;
}

.wardrobe-breadcrumb-item a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wardrobe-breadcrumb-item a:hover {
	color: #005a87;
	text-decoration: underline;
}

.wardrobe-breadcrumb-item span {
	color: #666;
}

.wardrobe-breadcrumb-item.wardrobe-breadcrumb-current span {
	color: #333;
	font-weight: 600;
}

.wardrobe-breadcrumb-separator {
	margin: 0 8px;
	color: #999;
	font-weight: normal;
}

@media (max-width: 768px) {
	.wardrobe-breadcrumbs {
		font-size: 12px;
	}
	
	.wardrobe-breadcrumb-separator {
		margin: 0 6px;
	}
}

.wardrobe-catalog-header {
	margin-bottom: 30px;
}

.wardrobe-catalog-header h1 {
	margin: 0 0 10px;
	font-size: 24px;
	text-align: center;
}

.wardrobe-taxonomy-description {
	margin-top: 15px;
	padding: 15px;
	background: #f5f5f5;
	border-radius: 4px;
	text-align: center;
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

.wardrobe-categories-list {
	margin-bottom: 30px;
	text-align: center;
	font-size: 16px;
}

.wardrobe-categories-list strong {
	margin-right: 10px;
	color: #333;
}

.wardrobe-categories-list a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wardrobe-categories-list a:hover {
	color: #005a87;
	text-decoration: underline;
}

.wardrobe-categories-list a.active {
	color: #333;
	font-weight: 600;
	text-decoration: none;
}

.wardrobe-category-separator {
	color: #999;
	margin: 0 8px;
}

/* Filters */
.wardrobe-catalog-filters {
	margin-bottom: 30px;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
}

.wardrobe-filter-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.wardrobe-filter-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wardrobe-filter-group label {
	font-weight: 600;
	font-size: 14px;
}

.wardrobe-filter-group select,
.wardrobe-filter-group button {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.wardrobe-filter-group button {
	cursor: pointer;
	background: #0073aa;
	color: #fff;
	border-color: #0073aa;
}

.wardrobe-filter-group button:hover {
	background: #005a87;
}

.wardrobe-filter-reset {
	background: #666 !important;
	border-color: #666 !important;
}

.wardrobe-filter-reset:hover {
	background: #444 !important;
}

/* Catalog Grid */
.wardrobe-catalog-lots {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

/* Lot Card */
.wardrobe-lot-card {
	position: relative;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wardrobe-lot-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wardrobe-lot-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.wardrobe-lot-image {
	position: relative;
	width: 100%;
	padding-top: 100%; /* Square aspect ratio */
	overflow: hidden;
	background: #f0f0f0;
}

.wardrobe-lot-image-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
}

.wardrobe-lot-status-label {
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #fff;
	z-index: 10;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wardrobe-lot-status-label.wardrobe-lot-status-available {
	background: #28a745;
}

.wardrobe-lot-status-label.wardrobe-lot-status-sold {
	background: #dc3545;
}

.wardrobe-lot-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.wardrobe-lot-card:hover .wardrobe-lot-image img {
	transform: scale(1.05);
}


.wardrobe-lot-content {
	padding: 15px;
}

.wardrobe-lot-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.wardrobe-lot-price {
	font-size: 16px;
	font-weight: 600;
	color: #0073aa;
}

.wardrobe-lot-actions {
	position: static;
}

/* Keep the wishlist icon positioned over the image ONLY on lot cards (catalog grids) */
.wardrobe-lot-card .wardrobe-lot-actions {
	position: absolute;
	top: 10px;
	left: 10px;
}

.wardrobe-wishlist-toggle {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #666;
	transition: all 0.3s ease;
}

.wardrobe-wishlist-toggle:hover {
	background: #fff;
	transform: scale(1.1);
}

.wardrobe-wishlist-toggle.active {
	color: #e74c3c;
}

.wardrobe-wishlist-toggle.active .wardrobe-wishlist-icon {
	color: #e74c3c;
}

/* Single Lot Container */
.wardrobe-single-lot-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px;
	/* Space for the fixed "Next Lot" bar */
	padding-bottom: 90px;
}

/* Single Lot */
.wardrobe-single-lot {
	width: 100%;
}

/* Next Lot sticky navigation */
.wardrobe-next-lot-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(6px);
	border-top: 1px solid #e5e5e5;
	box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
}

.wardrobe-next-lot-link {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 15px;
	text-decoration: none;
	color: inherit;
}

.wardrobe-next-lot-label {
	font-weight: 700;
	color: #333;
	white-space: nowrap;
}

.wardrobe-next-lot-title {
	color: #0073aa;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 70vw;
}

.wardrobe-next-lot-link:hover .wardrobe-next-lot-title {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.wardrobe-next-lot-link {
		justify-content: flex-start;
	}
	.wardrobe-next-lot-title {
		max-width: 60vw;
	}
}

/* Hide the entire theme footer (project requirement: no WP/blog footer) */
footer,
#footer,
#colophon,
.site-footer,
.site-info,
.site-generator,
.powered-by,
.wp-block-site-footer,
footer.wp-block-template-part,
.wp-block-template-part[data-area="footer"],
footer.wp-block-template-part {
	display: none !important;
}

.wardrobe-lot-gallery {
	margin-bottom: 30px;
}

.wardrobe-gallery-main {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	background: #f0f0f0;
	border-radius: 8px;
	overflow: hidden;
}

.wardrobe-gallery-slide {
	display: none;
}

.wardrobe-gallery-slide.active {
	display: block;
}

.wardrobe-gallery-slide {
	position: relative;
}

.wardrobe-gallery-slide a {
	display: block;
	width: 100%;
	cursor: pointer;
}

.wardrobe-gallery-slide img {
	width: 100%;
	height: auto;
	display: block;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.wardrobe-gallery-slide a:hover img {
	transform: scale(1.02);
}

.wardrobe-gallery-thumbnails {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 10px 0;
}

.wardrobe-gallery-thumb {
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	border: 2px solid transparent;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.3s ease, border-color 0.3s ease;
	display: block;
	text-decoration: none;
}

.wardrobe-gallery-thumb.active,
.wardrobe-gallery-thumb:hover {
	opacity: 1;
	border-color: #0073aa;
}

.wardrobe-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


.wardrobe-gallery-placeholder {
	padding: 60px 20px;
	text-align: center;
	color: #999;
}

.wardrobe-lot-details {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
}

.wardrobe-lot-details .wardrobe-lot-title {
	font-size: 28px;
	margin: 0 0 15px;
}

.wardrobe-lot-details .wardrobe-lot-price {
	font-size: 24px;
	margin: 15px 0;
}

.wardrobe-lot-description {
	margin: 20px 0;
	line-height: 1.6;
}

.wardrobe-lot-address {
	margin: 20px 0;
	padding: 15px;
	background: #f5f5f5;
	border-radius: 4px;
}

.wardrobe-lot-address h3 {
	margin: 0 0 10px;
	font-size: 18px;
}

.wardrobe-address-link {
	color: #0073aa;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.wardrobe-address-link:hover {
	color: #005a87;
	text-decoration: underline;
}

/* Single Address Page */
.wardrobe-single-address-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px;
}

.wardrobe-single-address {
	width: 100%;
}

.wardrobe-address-content {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wardrobe-address-title {
	margin: 0 0 30px;
	font-size: 32px;
	color: #333;
}

.wardrobe-address-details {
	margin-bottom: 40px;
}

.wardrobe-address-location {
	margin-bottom: 20px;
	font-size: 16px;
	color: #666;
}

.wardrobe-address-location strong {
	color: #333;
	margin-right: 8px;
}

.wardrobe-address-description {
	margin-bottom: 20px;
	line-height: 1.6;
	color: #555;
}

.wardrobe-address-lots {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #ddd;
}

.wardrobe-address-lots h2 {
	margin: 0 0 30px;
	font-size: 24px;
	color: #333;
}

.wardrobe-lots-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 768px) {
	.wardrobe-lots-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.wardrobe-lots-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.wardrobe-lot-actions {
	margin: 20px 0;
}

.wardrobe-lot-actions--below-title {
	margin-top: 10px;
	margin-bottom: 15px;
}

.wardrobe-lot-actions .wardrobe-wishlist-toggle {
	position: static;
	display: inline-flex;
	gap: 10px;
	padding: 12px 24px;
	border-radius: 4px;
	width: auto;
	height: auto;
}

.wardrobe-lot-actions .wardrobe-wishlist-text {
	font-size: 16px;
}

/* Brand display */
.wardrobe-lot-brand {
	margin: 15px 0;
	font-size: 16px;
	color: #666;
}

.wardrobe-lot-brand strong {
	color: #333;
	margin-right: 8px;
}

/* Wishlist */
.wardrobe-wishlist-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 15px;
}

.wardrobe-wishlist-header h1 {
	margin: 0 0 30px;
	font-size: 24px;
	text-align: center;
}

.wardrobe-wishlist-lots {
	margin-top: 40px;
	margin-bottom: 30px;
}

.wardrobe-wishlist-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.wardrobe-wishlist-table thead {
	background: #f5f5f5;
}

.wardrobe-wishlist-table th {
	padding: 15px;
	text-align: left;
	font-weight: 600;
	font-size: 14px;
	color: #333;
	border-bottom: 2px solid #ddd;
}

.wardrobe-wishlist-table td {
	padding: 15px;
	border-bottom: 1px solid #eee;
	vertical-align: middle;
}

.wardrobe-wishlist-table tbody tr:last-child td {
	border-bottom: none;
}

.wardrobe-wishlist-table tbody tr:hover {
	background: #f9f9f9;
}

.wardrobe-wishlist-thumb {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 4px;
	display: block;
}

.wardrobe-wishlist-no-image {
	color: #999;
	font-size: 12px;
}

.wardrobe-wishlist-link {
	color: #0073aa;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.wardrobe-wishlist-link:hover {
	color: #005a87;
	text-decoration: underline;
}

.wardrobe-wishlist-no-price {
	color: #999;
	font-style: italic;
}

.wardrobe-wishlist-status {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

.wardrobe-wishlist-status.wardrobe-status-available {
	background: #d4edda;
	color: #155724;
}

.wardrobe-wishlist-status.wardrobe-status-sold {
	background: #f8d7da;
	color: #721c24;
}

.wardrobe-wishlist-remove {
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: transparent;
	color: #666;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.wardrobe-wishlist-remove:hover {
	background: #f0f0f0;
	color: #e74c3c;
}

.wardrobe-wishlist-remove .wardrobe-wishlist-icon {
	font-size: 24px;
	line-height: 1;
}

.wardrobe-wishlist-actions {
	text-align: center;
	margin: 30px 0;
}

.wardrobe-wishlist-request-button {
	display: inline-block;
	padding: 15px 30px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.wardrobe-wishlist-request-button:hover {
	background: #005a87;
}

/* Request Form */
.wardrobe-request-form-container {
	max-width: 600px;
	margin: 30px auto;
	padding: 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
}

.wardrobe-request-form-container h2 {
	margin: 0 0 20px;
	font-size: 24px;
}

.wardrobe-form-group {
	margin-bottom: 20px;
}

.wardrobe-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 14px;
}

.wardrobe-form-group .required {
	color: #e74c3c;
}

.wardrobe-form-group input,
.wardrobe-form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	font-family: inherit;
}

.wardrobe-form-group textarea {
	resize: vertical;
}

.wardrobe-request-lots-list ul {
	list-style: none;
	padding: 0;
	margin: 10px 0;
}

.wardrobe-request-lots-list li {
	padding: 8px;
	background: #f5f5f5;
	border-radius: 4px;
	margin-bottom: 5px;
}

.wardrobe-request-lot-link {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.2s ease;
}

.wardrobe-request-lot-link:hover {
	color: #005a87;
	text-decoration: underline;
}

.wardrobe-request-lot-brand {
	color: #666;
	font-size: 0.9em;
	margin-left: 6px;
}

.wardrobe-form-actions {
	display: flex;
	gap: 10px;
	margin-top: 25px;
}

.wardrobe-form-submit,
.wardrobe-form-cancel {
	padding: 12px 24px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.wardrobe-form-submit {
	background: #0073aa;
	color: #fff;
}

.wardrobe-form-submit:hover {
	background: #005a87;
}

.wardrobe-form-cancel {
	background: #666;
	color: #fff;
}

.wardrobe-form-cancel:hover {
	background: #444;
}

.wardrobe-form-message {
	margin-top: 15px;
	padding: 12px;
	border-radius: 4px;
	display: none;
}

.wardrobe-form-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.wardrobe-form-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.wardrobe-catalog-loading {
	text-align: center;
	padding: 40px;
	font-size: 18px;
	color: #666;
}

/* Mobile: make wishlist table scrollable */
@media (max-width: 767px) {
	.wardrobe-wishlist-lots {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.wardrobe-wishlist-table {
		min-width: 600px;
		font-size: 14px;
	}

	.wardrobe-wishlist-table th,
	.wardrobe-wishlist-table td {
		padding: 10px 8px;
	}

	.wardrobe-wishlist-thumb {
		width: 50px;
		height: 50px;
	}

	.wardrobe-wishlist-th-image,
	.wardrobe-wishlist-td-image {
		width: 70px;
	}

	.wardrobe-wishlist-th-title,
	.wardrobe-wishlist-td-title {
		min-width: 150px;
	}

	.wardrobe-wishlist-th-price,
	.wardrobe-wishlist-td-price {
		min-width: 100px;
	}

	.wardrobe-wishlist-th-status,
	.wardrobe-wishlist-td-status {
		min-width: 100px;
	}

	.wardrobe-wishlist-th-actions,
	.wardrobe-wishlist-td-actions {
		width: 60px;
	}
}

/* Tablet and up */
@media (min-width: 768px) {
	.wardrobe-filter-form {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-end;
	}

	.wardrobe-filter-group {
		flex: 1 1 200px;
	}

	.wardrobe-catalog-lots {
		grid-template-columns: repeat(2, 1fr);
	}

	.wardrobe-single-lot {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		align-items: start;
	}

}

/* Desktop */
@media (min-width: 1024px) {
	.wardrobe-catalog-header h1 {
		font-size: 32px;
	}

	.wardrobe-catalog-lots {
		grid-template-columns: repeat(3, 1fr);
	}

	.wardrobe-single-lot {
		grid-template-columns: 1.5fr 1fr;
	}
}

/* Dark Theme Support (Twenty Twenty-One) */
.is-dark-theme .wardrobe-taxonomy-description {
	background: #2a2a2a;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-breadcrumb-item span {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-breadcrumb-item.wardrobe-breadcrumb-current span {
	color: #ffffff;
}

.is-dark-theme .wardrobe-breadcrumb-separator {
	color: #888;
}

.is-dark-theme .wardrobe-breadcrumb-item a {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-breadcrumb-item a:hover {
	color: #ffffff;
}

.is-dark-theme .wardrobe-categories-list strong {
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-categories-list a {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-categories-list a:hover {
	color: #ffffff;
}

.is-dark-theme .wardrobe-categories-list a.active {
	color: #ffffff;
}

.is-dark-theme .wardrobe-category-separator {
	color: #666;
}

.is-dark-theme .wardrobe-catalog-filters {
	background: #2a2a2a;
}

.is-dark-theme .wardrobe-filter-group label {
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-filter-group select,
.is-dark-theme .wardrobe-filter-group button {
	background: #1a1a1a;
	border-color: #444;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-lot-card {
	background: #2a2a2a;
	border-color: #444;
}

.is-dark-theme .wardrobe-lot-card:hover {
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.is-dark-theme .wardrobe-lot-image {
	background: #1a1a1a;
}

.is-dark-theme .wardrobe-lot-image-placeholder {
	color: #666;
}

.is-dark-theme .wardrobe-lot-content {
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-lot-title {
	color: #ffffff;
}

.is-dark-theme .wardrobe-lot-price {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-lot-details {
	background: #2a2a2a;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-lot-details .wardrobe-lot-title {
	color: #ffffff;
}

.is-dark-theme .wardrobe-lot-description {
	color: #d0d0d0;
}

.is-dark-theme .wardrobe-lot-address {
	background: #1a1a1a;
}

.is-dark-theme .wardrobe-lot-address h3 {
	color: #ffffff;
}

.is-dark-theme .wardrobe-address-link {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-address-link:hover {
	color: #ffffff;
}

.is-dark-theme .wardrobe-lot-brand {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-lot-brand strong {
	color: #ffffff;
}

.is-dark-theme .wardrobe-address-content {
	background: #2a2a2a;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-address-title {
	color: #ffffff;
}

.is-dark-theme .wardrobe-address-location {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-address-location strong {
	color: #ffffff;
}

.is-dark-theme .wardrobe-address-description {
	color: #d0d0d0;
}

.is-dark-theme .wardrobe-address-lots {
	border-top-color: #444;
}

.is-dark-theme .wardrobe-address-lots h2 {
	color: #ffffff;
}

.is-dark-theme .wardrobe-request-form-container {
	background: #2a2a2a;
	border-color: #444;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-request-form-container h2 {
	color: #ffffff;
}

.is-dark-theme .wardrobe-form-group label {
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-form-group input,
.is-dark-theme .wardrobe-form-group textarea {
	background: #1a1a1a;
	border-color: #444;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-form-group input::placeholder,
.is-dark-theme .wardrobe-form-group textarea::placeholder {
	color: #888;
}

.is-dark-theme .wardrobe-request-lots-list li {
	background: #1a1a1a;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-request-lot-link {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-request-lot-link:hover {
	color: #ffffff;
}

.is-dark-theme .wardrobe-request-lot-brand {
	color: #888;
}

.is-dark-theme .wardrobe-form-message {
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-form-success {
	background: #2d4a2d;
	color: #90ee90;
	border-color: #3d5a3d;
}

.is-dark-theme .wardrobe-form-error {
	background: #4a2d2d;
	color: #ff9999;
	border-color: #5a3d3d;
}

.is-dark-theme .wardrobe-gallery-main {
	background: #1a1a1a;
}

.is-dark-theme .wardrobe-gallery-placeholder {
	color: #666;
}

.is-dark-theme .wardrobe-next-lot-bar {
	background: rgba(42, 42, 42, 0.96);
	border-top-color: #444;
}

.is-dark-theme .wardrobe-next-lot-label {
	color: #ffffff;
}

.is-dark-theme .wardrobe-next-lot-title {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-next-lot-link:hover .wardrobe-next-lot-title {
	color: #ffffff;
}

.is-dark-theme .wardrobe-catalog-loading {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-wishlist-empty {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-catalog-header h1 {
	color: #ffffff;
}

.is-dark-theme .wardrobe-wishlist-header h1 {
	color: #ffffff;
}

.is-dark-theme .wardrobe-wishlist-table {
	background: #2a2a2a;
}

.is-dark-theme .wardrobe-wishlist-table thead {
	background: #1a1a1a;
}

.is-dark-theme .wardrobe-wishlist-table th {
	color: #ffffff;
	border-bottom-color: #444;
}

.is-dark-theme .wardrobe-wishlist-table td {
	border-bottom-color: #444;
	color: #e0e0e0;
}

.is-dark-theme .wardrobe-wishlist-table tbody tr:hover {
	background: #333;
}

.is-dark-theme .wardrobe-wishlist-link {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-wishlist-link:hover {
	color: #ffffff;
}

.is-dark-theme .wardrobe-wishlist-no-price {
	color: #888;
}

.is-dark-theme .wardrobe-wishlist-status.wardrobe-status-available {
	background: #2d4a2d;
	color: #90ee90;
}

.is-dark-theme .wardrobe-wishlist-status.wardrobe-status-sold {
	background: #4a2d2d;
	color: #ff9999;
}

.is-dark-theme .wardrobe-wishlist-remove {
	color: #b0b0b0;
}

.is-dark-theme .wardrobe-wishlist-remove:hover {
	background: #333;
	color: #ff6666;
}

.is-dark-theme .wardrobe-wishlist-no-image {
	color: #666;
}

