/* ============================================================
   Yoda Service — Used Devices
   Frontend form + spec table on single-product + admin bar + dashboard
   v1.1.1
============================================================ */

/* Hide global contact widgets on any non-publish used-device page
   (owner-only preview — draft, sold, archived) OR for admin viewing
   own listings (admin doesn't buy from himself). */
body.yoda-used-device-draft .wa-fab,
body.yoda-used-device-draft .sticky-btm,
body.yoda-used-device-sold .wa-fab,
body.yoda-used-device-sold .sticky-btm,
body.yoda-used-device-archived .wa-fab,
body.yoda-used-device-archived .sticky-btm,
body.yoda-used-device-admin .wa-fab,
body.yoda-used-device-admin .sticky-btm {
	display: none !important;
}

/* ============================================================
   NEUTRALIZE parent theme's nice-select plugin on our form.
   Parent utech/assets/js/main.js applies $('select').niceSelect()
   globally, which hides the native <select> and draws a white
   .nice-select div. We want the native dark-themed select.
============================================================ */
.yoda-ud-form .nice-select,
.yoda-page--used-device-form .nice-select {
	display: none !important;
}
.yoda-ud-form select.wide,
.yoda-ud-form select {
	display: block !important;
	float: none !important;
}

/* ============================================================
   FORM PAGE: /add-used-device/
============================================================ */
.yoda-page--used-device-form {
	background: var(--bg, #050505);
	color: var(--text-1, #F5F5F7);
	padding: 140px 20px 120px;
	min-height: 100vh;
}

.yoda-ud-wrap {
	max-width: 860px;
	margin: 0 auto;
}

.yoda-ud-header h1 {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--text-1, #F5F5F7);
}

.yoda-ud-header .yoda-ud-lede {
	color: var(--text-2, #A1A1A6);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0 0 40px;
	max-width: 600px;
}

/* Alerts */
.yoda-ud-alert {
	padding: 14px 18px;
	border-radius: 10px;
	margin: 0 0 24px;
	font-size: 0.95rem;
	line-height: 1.5;
	border: 1px solid transparent;
}
.yoda-ud-alert--error {
	background: rgba(239, 68, 68, 0.08);
	border-color: rgba(239, 68, 68, 0.3);
	color: #fca5a5;
}
.yoda-ud-alert--success {
	background: rgba(74, 222, 128, 0.08);
	border-color: rgba(74, 222, 128, 0.3);
	color: #86efac;
}

/* Form shell */
.yoda-ud-form {
	display: grid;
	gap: 24px;
}

/* Fieldsets */
.yoda-ud-form fieldset {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.02);
	border-radius: 14px;
	padding: 24px;
	margin: 0;
}

.yoda-ud-form legend {
	padding: 0 10px;
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--accent, #4ade80);
}

/* Toggle */
.yoda-ud-toggle {
	display: flex;
	gap: 12px;
	align-items: center;
}
.yoda-ud-toggle legend {
	margin-right: 12px;
}
.yoda-ud-radio {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
	font-size: 0.95rem;
}
.yoda-ud-radio:hover {
	border-color: rgba(74, 222, 128, 0.4);
}
.yoda-ud-radio input {
	accent-color: var(--accent, #4ade80);
}
.yoda-ud-radio:has(input:checked) {
	border-color: var(--accent, #4ade80);
	background: rgba(74, 222, 128, 0.1);
	color: var(--accent, #4ade80);
}

/* Rows */
.yoda-ud-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}
.yoda-ud-row:last-child {
	margin-bottom: 0;
}
@media (max-width: 600px) {
	.yoda-ud-row {
		grid-template-columns: 1fr;
	}
}

/* Labels & inputs */
.yoda-ud-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--text-2, #A1A1A6);
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.yoda-ud-wide {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}

.yoda-ud-form input[type="text"],
.yoda-ud-form input[type="number"],
.yoda-ud-form textarea,
.yoda-ud-form select {
	width: 100%;
	padding: 12px 14px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	color: var(--text-1, #F5F5F7);
	font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	transition: border-color 0.2s ease, background 0.2s ease;
}

/* Native select — custom chevron, dark background, readable options */
.yoda-ud-form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 40px;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 12px 8px;
	background-color: rgba(0, 0, 0, 0.4);
	height: 48px;
	line-height: 1.2;
}
.yoda-ud-form select::-ms-expand {
	display: none;
}
.yoda-ud-form select option {
	background-color: #0a1510;
	color: var(--text-1, #F5F5F7);
	font-weight: 400;
}
.yoda-ud-form input[type="text"]:focus,
.yoda-ud-form input[type="number"]:focus,
.yoda-ud-form textarea:focus,
.yoda-ud-form select:focus {
	outline: none;
	border-color: var(--accent, #4ade80);
	background: rgba(0, 0, 0, 0.6);
}
.yoda-ud-form input[readonly] {
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-2, #A1A1A6);
	cursor: default;
}
.yoda-ud-form textarea {
	resize: vertical;
	min-height: 80px;
	line-height: 1.5;
}

/* Photo input */
.yoda-ud-form input[type="file"] {
	width: 100%;
	padding: 12px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	color: var(--text-1, #F5F5F7);
	font-size: 0.9rem;
	cursor: pointer;
}
.yoda-ud-form input[type="file"]::file-selector-button {
	padding: 8px 16px;
	background: rgba(74, 222, 128, 0.15);
	border: 1px solid rgba(74, 222, 128, 0.3);
	border-radius: 6px;
	color: var(--accent, #4ade80);
	font-family: inherit;
	font-weight: 500;
	cursor: pointer;
	margin-right: 12px;
}
.yoda-ud-previews {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 10px;
	margin-top: 14px;
}
.yoda-ud-previews img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}
.yoda-ud-previews:empty {
	display: none;
}
.yoda-ud-hint {
	font-size: 0.8rem;
	color: var(--text-3, #6E6E73);
	margin: 12px 0 0;
	line-height: 1.5;
	text-transform: none;
	letter-spacing: 0;
}

/* Submit */
.yoda-ud-actions {
	display: flex;
	justify-content: flex-end;
	padding-top: 12px;
}
.yoda-ud-submit {
	padding: 14px 32px;
	background: rgba(74, 222, 128, 0.15);
	border: 1px solid rgba(74, 222, 128, 0.4);
	border-radius: 100px;
	color: var(--accent, #4ade80);
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: all 0.2s ease;
	backdrop-filter: blur(10px);
}
.yoda-ud-submit:hover {
	background: rgba(74, 222, 128, 0.25);
	border-color: var(--accent, #4ade80);
	box-shadow: 0 0 32px rgba(74, 222, 128, 0.3);
}

/* ============================================================
   SPEC CARD on single product page (cinematic dark, v2)
============================================================ */
.yoda-spec-wrap {
	margin: 32px 0;
	padding: 32px;
	background:
		linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow:
		0 1px 0 rgba(255,255,255,0.04) inset,
		0 20px 60px -30px rgba(0,0,0,0.6);
}

.yoda-spec-title {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--accent, #4ade80);
	margin: 0 0 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	position: relative;
}
.yoda-spec-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 48px;
	height: 2px;
	background: var(--accent, #4ade80);
	border-radius: 2px;
}

.yoda-spec-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.yoda-spec-row {
	display: grid;
	grid-template-columns: minmax(140px, 40%) 1fr;
	gap: 24px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	align-items: baseline;
	transition: background-color 0.2s ease;
}
.yoda-spec-row:last-child {
	border-bottom: none;
}
.yoda-spec-row:hover {
	background: rgba(74, 222, 128, 0.02);
}

.yoda-spec-key {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--text-2, #A1A1A6);
}

.yoda-spec-value {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: -0.005em;
	color: var(--text-1, #F5F5F7);
}

@media (max-width: 600px) {
	.yoda-spec-wrap {
		padding: 24px 20px;
		margin: 24px 0;
	}
	.yoda-spec-row {
		grid-template-columns: 1fr;
		gap: 4px;
		padding: 12px 0;
	}
	.yoda-spec-value {
		font-size: 1rem;
	}
}

/* Condition / Notes block */
.yoda-spec-notes-block {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: grid;
	gap: 20px;
}
.yoda-spec-note-title {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--accent, #4ade80);
	margin: 0 0 8px;
}
.yoda-spec-note-text {
	margin: 0;
	font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
	font-size: 0.98rem;
	line-height: 1.65;
	color: var(--text-1, #F5F5F7);
}

/* ============================================================
   OWNER ACTION BAR on single product page
============================================================ */
.yoda-owner-bar {
	margin: 20px 0;
	padding: 20px 22px;
	background: rgba(74, 222, 128, 0.05);
	border: 1px dashed rgba(74, 222, 128, 0.25);
	border-radius: 14px;
}

.yoda-owner-bar__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.yoda-owner-bar__tag {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--accent, #4ade80);
}

.yoda-owner-bar__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

/* Main photo picker inside owner bar */
.yoda-owner-photos {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px dashed rgba(74, 222, 128, 0.2);
}
.yoda-owner-photos__head {
	margin: 0 0 14px;
}
.yoda-owner-photos__title {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent, #4ade80);
	margin: 0 0 4px;
}
.yoda-owner-photos__hint {
	margin: 0;
	font-size: 0.82rem;
	color: var(--text-3, #6E6E73);
	line-height: 1.5;
}
.yoda-owner-photos__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
	max-width: 320px;
}
.yoda-owner-photo {
	margin: 0;
	padding: 0;
	position: relative;
}
.yoda-owner-photo__btn {
	width: 100%;
	aspect-ratio: 1;
	padding: 0;
	margin: 0;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 6px;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	display: block;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	box-shadow: none;
	transition: border-color 0.15s ease, opacity 0.15s ease;
}
.yoda-owner-photo__btn:focus,
.yoda-owner-photo__btn:focus-visible,
.yoda-owner-photo__btn:active {
	outline: none;
	box-shadow: none;
	border-color: rgba(255, 255, 255, 0.2);
}
.yoda-owner-photo__btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.yoda-owner-photo__btn:hover:not([disabled]) {
	border-color: rgba(255, 255, 255, 0.3);
	opacity: 0.9;
}
.yoda-owner-photo.is-main .yoda-owner-photo__btn {
	border-color: var(--accent, #4ade80);
	cursor: default;
}
.yoda-owner-photo__badge {
	position: absolute;
	top: 4px;
	right: 4px;
	padding: 2px 6px;
	background: var(--accent, #4ade80);
	color: #052E14;
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.55rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	border-radius: 3px;
	pointer-events: none;
}

.yoda-owner-btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border-radius: 100px;
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.yoda-owner-btn--publish {
	background: rgba(74, 222, 128, 0.15);
	border-color: rgba(74, 222, 128, 0.4);
	color: var(--accent, #4ade80);
}
.yoda-owner-btn--publish:hover {
	background: rgba(74, 222, 128, 0.25);
	border-color: var(--accent, #4ade80);
	box-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
}

.yoda-owner-btn--edit {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.18);
	color: var(--text-1, #F5F5F7);
}
.yoda-owner-btn--edit:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.35);
}

.yoda-owner-btn--delete,
.yoda-owner-btn--archive {
	background: rgba(239, 68, 68, 0.08);
	border-color: rgba(239, 68, 68, 0.3);
	color: #fca5a5;
}
.yoda-owner-btn--delete:hover,
.yoda-owner-btn--archive:hover {
	background: rgba(239, 68, 68, 0.18);
	border-color: rgba(239, 68, 68, 0.5);
	color: #fecaca;
}

.yoda-owner-btn--sold {
	background: rgba(99, 102, 241, 0.12);
	border-color: rgba(99, 102, 241, 0.35);
	color: #a5b4fc;
}
.yoda-owner-btn--sold:hover {
	background: rgba(99, 102, 241, 0.22);
	border-color: rgba(99, 102, 241, 0.6);
	color: #c7d2fe;
}

.yoda-owner-btn--restore {
	background: rgba(250, 204, 21, 0.1);
	border-color: rgba(250, 204, 21, 0.35);
	color: #fde68a;
}
.yoda-owner-btn--restore:hover {
	background: rgba(250, 204, 21, 0.2);
	border-color: rgba(250, 204, 21, 0.6);
	color: #fef3c7;
}

.yoda-owner-btn--danger {
	background: rgba(239, 68, 68, 0.18);
	border-color: rgba(239, 68, 68, 0.55);
	color: #fecaca;
}
.yoda-owner-btn--danger:hover {
	background: rgba(239, 68, 68, 0.3);
	border-color: #f87171;
	color: #fff;
	box-shadow: 0 0 20px rgba(239, 68, 68, 0.35);
}

/* ============================================================
   INLINE MARK-SOLD FORM (owner bar)
============================================================ */
.yoda-owner-soldform {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}
.yoda-owner-soldform__form {
	display: flex;
	gap: 10px;
	align-items: flex-end;
	flex-wrap: wrap;
	margin: 0;
}
.yoda-owner-soldform__form[hidden] {
	display: none;
}
.yoda-owner-soldform__label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--text-2, #A1A1A6);
}
.yoda-owner-soldform__label input[type="number"] {
	width: 180px;
	padding: 10px 12px;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;
	color: var(--text-1, #F5F5F7);
	font-family: inherit;
	font-size: 1rem;
	text-transform: none;
	letter-spacing: 0;
}
.yoda-owner-soldform__label input[type="number"]:focus {
	outline: none;
	border-color: rgba(99, 102, 241, 0.6);
}

/* Sold/archived meta line under actions */
.yoda-owner-bar__meta {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed rgba(74, 222, 128, 0.15);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.88rem;
	color: var(--text-2, #A1A1A6);
}
.yoda-owner-bar__meta strong {
	color: var(--text-1, #F5F5F7);
	font-weight: 600;
}

/* ============================================================
   STATUS BADGES — reusable across dashboard + single page
============================================================ */
.yoda-status-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 100px;
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.5;
	border: 1px solid transparent;
}
.yoda-status-badge--publish {
	background: rgba(74, 222, 128, 0.15);
	color: #86efac;
	border-color: rgba(74, 222, 128, 0.4);
}
.yoda-status-badge--draft {
	background: rgba(250, 204, 21, 0.12);
	color: #fde68a;
	border-color: rgba(250, 204, 21, 0.35);
}
.yoda-status-badge--sold {
	background: rgba(99, 102, 241, 0.15);
	color: #c7d2fe;
	border-color: rgba(99, 102, 241, 0.4);
}
.yoda-status-badge--archived {
	background: rgba(156, 163, 175, 0.12);
	color: #d1d5db;
	border-color: rgba(156, 163, 175, 0.35);
}

/* ============================================================
   DASHBOARD PAGE: /used-devices/
============================================================ */
.yoda-page--used-devices-dashboard {
	background: var(--bg, #050505);
	color: var(--text-1, #F5F5F7);
	padding: 140px 20px 120px;
	min-height: 100vh;
}
.yoda-page--used-devices-dashboard .yoda-ud-wrap {
	max-width: 1280px;
}

.yoda-dashboard__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}
.yoda-dashboard__header h1 {
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--text-1, #F5F5F7);
}
.yoda-dashboard__header .yoda-ud-lede {
	margin: 0;
	color: var(--text-2, #A1A1A6);
	font-size: 1rem;
}
.yoda-dashboard__header .yoda-ud-submit {
	text-decoration: none;
}

/* Tabs */
.yoda-dashboard__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.yoda-dashboard__tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: 100px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: var(--text-2, #A1A1A6);
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: all 0.2s ease;
}
.yoda-dashboard__tab:hover {
	border-color: rgba(74, 222, 128, 0.35);
	color: var(--text-1, #F5F5F7);
}
.yoda-dashboard__tab.is-active {
	background: rgba(74, 222, 128, 0.15);
	border-color: rgba(74, 222, 128, 0.5);
	color: var(--accent, #4ade80);
}
.yoda-dashboard__tab-count {
	opacity: 0.7;
	font-weight: 400;
}

.yoda-dashboard__empty {
	padding: 60px 20px;
	text-align: center;
	color: var(--text-3, #6E6E73);
	border: 1px dashed rgba(255, 255, 255, 0.08);
	border-radius: 14px;
}

/* Grid */
.yoda-dashboard__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}
@media (max-width: 600px) {
	.yoda-dashboard__grid {
		grid-template-columns: 1fr;
	}
}

/* Card */
.yoda-dashboard-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.025);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.yoda-dashboard-card:hover {
	transform: translateY(-2px);
	border-color: rgba(74, 222, 128, 0.28);
	box-shadow: 0 20px 50px -30px rgba(0, 0, 0, 0.8);
}
.yoda-dashboard-card[data-status="draft"] {
	border-color: rgba(250, 204, 21, 0.25);
}
.yoda-dashboard-card[data-status="sold"] {
	border-color: rgba(99, 102, 241, 0.3);
}
.yoda-dashboard-card[data-status="archived"] {
	opacity: 0.75;
}

.yoda-dashboard-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #000;
}
.yoda-dashboard-card__thumb .yoda-dashboard-card__img,
.yoda-dashboard-card__thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.yoda-dashboard-card:hover .yoda-dashboard-card__thumb img {
	transform: scale(1.04);
}
.yoda-dashboard-card__no-img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-3, #6E6E73);
	background: radial-gradient(circle at center, rgba(74,222,128,0.08), transparent 70%);
	font-family: var(--font-display, 'Clash Display', sans-serif);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 0.85rem;
}
.yoda-dashboard-card__thumb .yoda-status-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	backdrop-filter: blur(6px);
}

.yoda-dashboard-card__body {
	padding: 14px 16px 4px;
	flex: 1 0 auto;
}
.yoda-dashboard-card__title {
	margin: 0 0 6px;
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-1, #F5F5F7);
}
.yoda-dashboard-card__title a {
	color: inherit;
	text-decoration: none;
}
.yoda-dashboard-card__title a:hover {
	color: var(--accent, #4ade80);
}
.yoda-dashboard-card__meta {
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-size: 0.85rem;
	color: var(--text-2, #A1A1A6);
}
.yoda-dashboard-card__meta strong {
	color: var(--text-1, #F5F5F7);
	font-weight: 600;
}
.yoda-dashboard-card__date {
	font-size: 0.75rem;
	color: var(--text-3, #6E6E73);
}

.yoda-dashboard-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 12px 16px 16px;
}
.yoda-dashboard-card__btn {
	flex: 1 1 auto;
	min-width: fit-content;
	padding: 7px 12px;
	border-radius: 100px;
	text-align: center;
	text-decoration: none;
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-1, #F5F5F7);
	transition: all 0.15s ease;
}
.yoda-dashboard-card__btn:hover {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
}
.yoda-dashboard-card__btn--primary {
	border-color: rgba(74, 222, 128, 0.4);
	background: rgba(74, 222, 128, 0.12);
	color: var(--accent, #4ade80);
}
.yoda-dashboard-card__btn--primary:hover {
	border-color: var(--accent, #4ade80);
	background: rgba(74, 222, 128, 0.22);
	color: var(--accent, #4ade80);
}
.yoda-dashboard-card__btn--danger {
	border-color: rgba(239, 68, 68, 0.3);
	background: rgba(239, 68, 68, 0.08);
	color: #fca5a5;
}
.yoda-dashboard-card__btn--danger:hover {
	border-color: rgba(239, 68, 68, 0.5);
	background: rgba(239, 68, 68, 0.2);
	color: #fecaca;
}

/* Pagination */
.yoda-dashboard__pagination {
	margin: 40px 0 0;
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
}
.yoda-dashboard__pagination a,
.yoda-dashboard__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	color: var(--text-1, #F5F5F7);
	font-family: var(--font-display, 'Clash Display', sans-serif);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}
.yoda-dashboard__pagination a:hover {
	border-color: rgba(74, 222, 128, 0.4);
	color: var(--accent, #4ade80);
}
.yoda-dashboard__pagination .current {
	background: rgba(74, 222, 128, 0.18);
	border-color: var(--accent, #4ade80);
	color: var(--accent, #4ade80);
}
