/* ==========================================================================
   Listing form (5-step stepper) + my-listings table
   ========================================================================== */

/* Back-to-my-listings breadcrumb — matches my-listings/profile pattern. */
.tshp-form__back {
	max-width: 720px;
	margin: 0 auto 14px;
	padding: 0 4px;
}
.tshp-form__back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	color: var(--tshp-text-muted);
	text-decoration: none;
	padding: 6px 12px 6px 8px;
	border-radius: var(--tshp-radius-pill);
	transition: background var(--tshp-trans), color var(--tshp-trans);
	letter-spacing: 0.02em;
}
.tshp-form__back-link:hover {
	background: var(--tshp-bg-alt);
	color: var(--tshp-text);
}

.tshp-form {
	max-width: 720px;
	margin: 0 auto;
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border);
	border-radius: var(--tshp-radius);
	overflow: hidden;

	/* Listing-form design language: one height, radius and focus system. */
	--tshp-form-control-height: 44px;
	--tshp-form-control-radius: var(--tshp-radius);
	--tshp-form-control-padding-x: 14px;
	--tshp-form-focus-ring: 0 0 0 3px rgba(15, 76, 129, 0.12);
	--tshp-form-control-shadow: 0 1px 2px rgba(24, 24, 27, 0.03);
}

.tshp-form__header {
	padding: 32px 32px 0;
}
.tshp-form__header-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 22px;
}
.tshp-form__notice {
	margin: 0 0 22px;
	padding: 12px 14px;
	background: rgba(217, 119, 6, 0.06);
	border-left: 2px solid var(--tshp-status-expiring);
	border-radius: var(--tshp-radius-sm);
	font-size: 15px;
	color: var(--tshp-text);
	line-height: 1.7;
	letter-spacing: 0.02em;
}
.tshp-form__title {
	margin: 0;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--tshp-text);
}
.tshp-form__header-draft { flex-shrink: 0; }
.tshp-step__actions-right {
	display: flex;
	gap: 8px;
}

/* Step indicator */
ol.tshp-form__steps {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	overflow-x: auto;
	scrollbar-width: none;
	border-bottom: 1px solid var(--tshp-divider);
}
ol.tshp-form__steps::-webkit-scrollbar { display: none; }
ol.tshp-form__steps > li {
	list-style: none;
	margin: 0 !important;
	padding: 12px 14px;
	flex: 1 1 0;
	min-width: 100px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px !important;
	font-size: 15px;
	color: var(--tshp-text-muted);
	transition: all var(--tshp-trans);
	white-space: nowrap;
	background: transparent;
	text-indent: 0;
	letter-spacing: 0.02em;
}
ol.tshp-form__steps > li.is-active {
	border-bottom-color: var(--tshp-text);
	color: var(--tshp-text);
	font-weight: 500;
}
ol.tshp-form__steps > li.is-done {
	color: var(--tshp-text-soft);
}
ol.tshp-form__steps > li > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: var(--tshp-bg-alt);
	color: var(--tshp-text-muted);
	font-size: 15px;
	font-weight: 500;
	font-family: var(--tshp-font-sans);
	flex-shrink: 0;
}
ol.tshp-form__steps > li.is-active > span {
	background: var(--tshp-text);
	color: #fff;
}
ol.tshp-form__steps > li.is-done > span {
	background: transparent;
	color: var(--tshp-text-soft);
	border: 1px solid var(--tshp-border);
}

/* Body */
.tshp-form__body { padding: 4px 32px 32px; }

.tshp-step { display: none; }
.tshp-step.is-active { display: block; animation: tshp-step-in 240ms cubic-bezier(0.4, 0, 0.2, 1); }
@keyframes tshp-step-in {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: translateY(0); }
}
.tshp-step__title {
	margin: 0 0 18px;
	font-size: 17px;
	font-weight: 500;
	color: var(--tshp-text);
}

/* Field */
.tshp-field {
	margin-bottom: 22px;
}
.tshp-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
@media (max-width: 600px) { .tshp-row { grid-template-columns: 1fr; } }

.tshp-label {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--tshp-text);
	letter-spacing: 0.02em;
}
.tshp-label small { font-weight: 400; color: var(--tshp-text-muted); margin-left: 4px; }
.tshp-required { color: var(--tshp-status-rejected); }

.tshp-hint {
	display: block;
	margin-top: 6px;
	font-size: 15px;
	color: var(--tshp-text-muted);
	letter-spacing: 0.02em;
	line-height: 1.6;
}

.tshp-listing-mode {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.tshp-listing-mode__option {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 74px;
	align-items: center;
	padding: 12px 14px;
	border: 1px solid var(--tshp-border);
	border-radius: var(--tshp-form-control-radius);
	background: var(--tshp-surface);
	cursor: pointer;
	transition: border-color var(--tshp-trans), background var(--tshp-trans), box-shadow var(--tshp-trans);
}
.tshp-listing-mode__option input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}
.tshp-listing-mode__option span {
	position: relative;
	z-index: 1;
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}
.tshp-listing-mode__option strong {
	color: var(--tshp-text);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
}
.tshp-listing-mode__option small {
	color: var(--tshp-text-muted);
	font-size: 14px;
	line-height: 1.4;
}
.tshp-listing-mode__option:hover {
	border-color: var(--tshp-text-soft);
	background: var(--tshp-bg-alt);
}
.tshp-listing-mode__option:focus-within {
	border-color: var(--tshp-primary);
	box-shadow: var(--tshp-form-focus-ring);
}
.tshp-listing-mode__option:has(input:checked) {
	border-color: var(--tshp-text);
	background: #111827;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.10);
}
.tshp-listing-mode__option:has(input:checked) strong,
.tshp-listing-mode__option:has(input:checked) small {
	color: #fff;
}
.tshp-listing-mode__option:has(input:checked) small {
	opacity: 0.72;
}

.tshp-page .tshp-form input.tshp-input,
.tshp-page .tshp-form select.tshp-input,
.tshp-page .tshp-form textarea.tshp-input,
.tshp-page .tshp-form .tshp-input,
.tshp-page .tshp-form .tshp-textarea,
.tshp-form input.tshp-input,
.tshp-form select.tshp-input,
.tshp-form textarea.tshp-input,
.tshp-form .tshp-input,
.tshp-form .tshp-textarea {
	width: 100% !important;
	min-height: var(--tshp-form-control-height) !important;
	padding: 10px var(--tshp-form-control-padding-x) !important;
	border: 1px solid var(--tshp-border) !important;
	border-radius: var(--tshp-form-control-radius) !important;
	box-shadow: var(--tshp-form-control-shadow) !important;
	font-size: 17px !important;
	line-height: 1.5 !important;
	font-family: inherit !important;
	color: var(--tshp-text) !important;
	background-color: var(--tshp-surface) !important;
	outline: none !important;
	text-shadow: none !important;
	transition: border-color var(--tshp-trans), box-shadow var(--tshp-trans), background var(--tshp-trans) !important;
	-webkit-appearance: none;
	appearance: none;
}
.tshp-page .tshp-form input.tshp-input,
.tshp-page .tshp-form select.tshp-input,
.tshp-form input.tshp-input,
.tshp-form select.tshp-input {
	height: var(--tshp-form-control-height) !important;
}
.tshp-page .tshp-form select.tshp-input,
.tshp-form select.tshp-input {
	cursor: pointer;
	padding-right: 42px !important;
	background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%2352525b' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	background-size: 18px 18px !important;
}
.tshp-page .tshp-form .tshp-input::placeholder,
.tshp-form .tshp-input::placeholder {
	color: var(--tshp-text-dim);
	opacity: 1;
}
.tshp-page .tshp-form .tshp-input:focus,
.tshp-page .tshp-form .tshp-textarea:focus,
.tshp-form .tshp-input:focus,
.tshp-form .tshp-textarea:focus {
	outline: none !important;
	border-color: var(--tshp-primary) !important;
	box-shadow: var(--tshp-form-control-shadow), var(--tshp-form-focus-ring) !important;
}
.tshp-page .tshp-form textarea.tshp-input,
.tshp-page .tshp-form .tshp-textarea,
.tshp-form textarea.tshp-input,
.tshp-form .tshp-textarea {
	height: auto !important;
	min-height: 148px !important;
	padding-top: 12px !important;
	padding-bottom: 12px !important;
	line-height: 1.7 !important;
	resize: vertical;
}
.tshp-textarea-meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 6px;
}
.tshp-textarea-counter {
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}

.tshp-page .tshp-form .tshp-input[aria-invalid="true"],
.tshp-page .tshp-form .tshp-textarea[aria-invalid="true"],
.tshp-form .tshp-input[aria-invalid="true"],
.tshp-form .tshp-textarea[aria-invalid="true"] {
	border-color: var(--tshp-status-rejected) !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10) !important;
}

/* Pill toggle */
.tshp-pills-input {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tshp-pill-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 7px 14px;
	border: 1px solid var(--tshp-border);
	border-radius: var(--tshp-radius-pill);
	font-size: 15px;
	color: var(--tshp-text);
	background: var(--tshp-surface);
	cursor: pointer;
	transition: all var(--tshp-trans);
	user-select: none;
}
.tshp-pill-toggle:hover { border-color: var(--tshp-text-soft); }
.tshp-pill-toggle input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}
.tshp-pill-toggle span {
	position: relative;
	z-index: 1;
	pointer-events: none;
}
.tshp-pill-toggle:focus-within {
	border-color: var(--tshp-primary);
	box-shadow: var(--tshp-form-focus-ring);
}
.tshp-pill-toggle:has(input:checked),
.tshp-pill-toggle.is-on {
	background: var(--tshp-text);
	color: #fff;
	border-color: var(--tshp-text);
}

/* Step actions */
.tshp-step__actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--tshp-divider);
}
.tshp-step__actions .tshp-btn {
	min-height: var(--tshp-form-control-height);
	height: var(--tshp-form-control-height);
	padding: 0 18px !important;
	border-radius: var(--tshp-form-control-radius) !important;
	font-size: 17px;
	line-height: 1 !important;
}
.tshp-step__actions .tshp-icon {
	width: 14px;
	height: 14px;
}
.tshp-page .tshp-form__header-draft,
.tshp-form__header-draft {
	min-height: 36px;
	height: 36px;
	padding: 0 14px !important;
	border-radius: var(--tshp-form-control-radius) !important;
}
@media (max-width: 520px) {
	.tshp-step__actions {
		align-items: center;
		flex-wrap: nowrap;
	}
	.tshp-step__actions > span:empty {
		display: block;
		visibility: hidden;
		width: 0;
	}
	.tshp-step__actions > .tshp-btn {
		flex: 0 0 auto;
		width: auto;
		min-width: 112px;
	}
	.tshp-step__actions > .tshp-btn[data-tshp-step-next],
	.tshp-step__actions-right {
		margin-left: auto;
	}
	.tshp-step__actions-right {
		flex: 0 1 auto;
		justify-content: flex-end;
	}
	.tshp-step__actions-right .tshp-btn {
		width: auto;
		min-width: 104px;
	}
}

@media (max-width: 600px) {
	.tshp-form__back {
		margin-bottom: 10px;
	}
	.tshp-form__header {
		padding: 24px 18px 0;
	}
	.tshp-form__header-row {
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 18px;
	}
	.tshp-form__body {
		padding: 4px 18px 24px;
	}
	ol.tshp-form__steps {
		margin-bottom: 22px;
	}
	ol.tshp-form__steps > li {
		flex: 0 0 auto;
		min-width: 88px;
		padding: 10px 12px;
	}
	.tshp-field {
		margin-bottom: 18px;
	}
	.tshp-listing-mode {
		gap: 8px;
	}
	.tshp-listing-mode__option {
		min-height: 62px;
		padding: 10px 12px;
	}
	.tshp-listing-mode__option strong {
		font-size: 16px;
	}
	.tshp-listing-mode__option small {
		font-size: 12px;
	}
	.tshp-uploader__zone {
		padding: 28px 16px;
	}
	.tshp-uploader__list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ==========================================================================
   Image uploader
   ========================================================================== */
.tshp-uploader__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 10px;
}
.tshp-uploader__head-label {
	font-size: 16px;
	font-weight: 500;
	color: var(--tshp-text);
	letter-spacing: 0.02em;
}
.tshp-uploader__head-count {
	font-size: 15px;
	color: var(--tshp-text-muted);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}
.tshp-uploader__head-count #tshp-upload-count {
	font-weight: 600;
	color: var(--tshp-text);
}
.tshp-uploader__head-count #tshp-upload-count.is-full {
	color: var(--tshp-status-expiring);
}

.tshp-uploader__zone {
	border: 1px dashed var(--tshp-border);
	border-radius: var(--tshp-radius);
	padding: 36px 20px;
	text-align: center;
	transition: all var(--tshp-trans);
	cursor: pointer;
	background: var(--tshp-bg-alt);
}
.tshp-uploader__zone:hover,
.tshp-uploader__zone.is-dragover {
	border-color: var(--tshp-text);
	background: var(--tshp-bg);
}
.tshp-uploader__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 12px;
	color: var(--tshp-text-muted);
}
.tshp-uploader__primary {
	font-size: 16px;
	font-weight: 500;
	color: var(--tshp-text);
	margin-bottom: 8px;
}
.tshp-uploader__hint {
	font-size: 15px;
	color: var(--tshp-text-muted);
	display: block;
	margin: 2px 0;
	letter-spacing: 0.02em;
}
.tshp-page button.tshp-link,
.tshp-link {
	display: inline !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	color: var(--tshp-accent) !important;
	cursor: pointer;
	font: inherit !important;
	margin: 0 !important;
	padding: 0 !important;
	text-decoration: underline !important;
	text-underline-offset: 2px;
	text-shadow: none !important;
}

.tshp-uploader__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 10px;
	margin-top: 16px;
}
.tshp-thumb {
	position: relative;
	aspect-ratio: 1;
	border-radius: var(--tshp-radius-sm);
	overflow: hidden;
	border: 1px solid var(--tshp-border);
	background: var(--tshp-bg-alt);
	cursor: move;
}
.tshp-thumb:first-child::before {
	content: "封面";
	position: absolute;
	top: 6px;
	left: 6px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(4px);
	color: var(--tshp-text);
	font-size: 15px;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: var(--tshp-radius-pill);
	z-index: 2;
	letter-spacing: 0.02em;
}
.tshp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tshp-page button.tshp-thumb__remove,
.tshp-thumb__remove {
	position: absolute;
	top: 6px;
	right: 6px;
	z-index: 4;
	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	max-width: 22px !important;
	min-height: 22px !important;
	max-height: 22px !important;
	aspect-ratio: 1 / 1;
	border-radius: 50% !important;
	background: rgba(24, 24, 27, 0.7) !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: none !important;
	cursor: pointer;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px !important;
	font-family: inherit !important;
	font-size: 0 !important;
	line-height: 0 !important;
	margin: 0 !important;
	overflow: hidden !important;
	padding: 0 !important;
	text-shadow: none !important;
	text-indent: 0 !important;
	text-transform: none !important;
	transition: background var(--tshp-trans);
	-webkit-appearance: none !important;
	appearance: none !important;
	box-sizing: border-box !important;
}
.tshp-thumb__remove .tshp-icon,
.tshp-thumb__remove svg {
	display: block !important;
	width: 12px !important;
	height: 12px !important;
	min-width: 12px !important;
	min-height: 12px !important;
	margin: 0 !important;
	pointer-events: none;
}
.tshp-page button.tshp-thumb__remove:hover,
.tshp-thumb__remove:hover { background: var(--tshp-status-rejected) !important; }
.tshp-thumb.is-uploading::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.85);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><circle cx='12' cy='12' r='10' stroke='%23000' stroke-width='1.5' fill='none' stroke-dasharray='40' stroke-dashoffset='10' opacity='0.4'><animateTransform attributeName='transform' type='rotate' from='0 12 12' to='360 12 12' dur='1s' repeatCount='indefinite'/></circle></svg>");
	background-position: center;
	background-repeat: no-repeat;
}
.tshp-thumb.is-dragging { opacity: 0.4; }

.tshp-uploader__note {
	margin-top: 14px;
	font-size: 15px;
	color: var(--tshp-text-muted);
	letter-spacing: 0.02em;
}

/* Extra contact channels — fixed optional fields under an always-on 站內傳訊 */
.tshp-contacts__note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 0 0 14px;
	padding: 12px 14px;
	background: var(--tshp-bg-alt);
	border-radius: var(--tshp-radius-sm);
	font-size: 14px;
	line-height: 1.6;
	color: var(--tshp-text-muted);
}
.tshp-contacts__note .tshp-icon { flex: none; margin-top: 2px; color: var(--tshp-text); }
.tshp-contacts__note strong { color: var(--tshp-text); font-weight: 600; }
.tshp-contacts__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 16px;
}
@media (max-width: 600px) {
	.tshp-contacts__grid { grid-template-columns: 1fr; }
}
.tshp-contacts__item { margin: 0; }
.tshp-label--sm {
	font-size: 14px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.tshp-contacts__rec {
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	padding: 2px 7px;
	border-radius: var(--tshp-radius-pill);
	background: rgba(37, 99, 235, 0.1);
	color: #2563EB;
}

/* Confirm */
.tshp-confirm {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 22px 0;
	padding: 14px 16px;
	background: var(--tshp-bg-alt);
	border-radius: var(--tshp-radius-sm);
	font-size: 15px;
	color: var(--tshp-text);
	line-height: 1.6;
}
.tshp-confirm input[type="checkbox"] {
	/* Keep the parent's flex-start (box stays by the first line when the label
	   wraps on mobile) but vertically center the box ON that first line:
	   line-box = 15px × 1.6 = 24px, box = 18px → (24 − 18) / 2 = 3px top.
	   Explicit size + !important so WoodMart's <input> resets can't shift it. */
	flex: none !important;
	width: 18px !important;
	height: 18px !important;
	margin: 3px 0 0 0 !important;
	box-sizing: border-box;
	accent-color: var(--tshp-text);
}

/* Preview */
.tshp-preview {
	background: var(--tshp-bg-alt);
	border: 1px solid var(--tshp-border-soft);
	border-radius: var(--tshp-radius);
	padding: 22px;
	margin-bottom: 18px;
	min-height: 200px;
}

/* Form status messages */
.tshp-form-status {
	margin-top: 18px;
	padding: 12px 16px;
	border-radius: var(--tshp-radius-sm);
	font-size: 16px;
	border: 1px solid transparent;
	letter-spacing: 0.02em;
}
.tshp-form-status[hidden] { display: none; }
.tshp-form-status.is-success {
	background: rgba(22, 163, 74, 0.06);
	color: #166534;
	border-color: rgba(22, 163, 74, 0.2);
}
.tshp-form-status.is-error {
	background: rgba(220, 38, 38, 0.06);
	color: #991b1b;
	border-color: rgba(220, 38, 38, 0.2);
}

/* ==========================================================================
   My listings table
   ========================================================================== */
.tshp-my-listings {
	max-width: 1200px;
	margin: 0 auto;
}
.tshp-my-listings__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 28px;
}
.tshp-my-listings__header h1 {
	margin: 0;
	font-size: 26px;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.tshp-flash {
	padding: 14px 18px;
	border-radius: var(--tshp-radius);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 24px;
	letter-spacing: 0.02em;
	border: 1px solid;
}
.tshp-flash--success {
	background: rgba(22, 163, 74, 0.06);
	border-color: rgba(22, 163, 74, 0.2);
	color: #166534;
}
.tshp-flash--info {
	background: rgba(13, 110, 253, 0.06);
	border-color: rgba(13, 110, 253, 0.2);
	color: #1e3a8a;
}

.tshp-my-table {
	width: 100%;
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border);
	border-radius: var(--tshp-radius);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	font-size: 16px;
}
.tshp-my-table th,
.tshp-my-table td {
	padding: 14px 16px;
	text-align: left;
	border-bottom: 1px solid var(--tshp-border-soft);
	vertical-align: middle;
}
.tshp-my-table th {
	background: var(--tshp-bg-alt);
	font-size: 15px;
	font-weight: 500;
	color: var(--tshp-text-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.tshp-my-table tr:last-child td { border-bottom: 0; }
.tshp-my-table__product {
	display: flex;
	align-items: center;
	gap: 12px;
}
.tshp-my-table__img {
	width: 52px;
	height: 52px;
	object-fit: cover;
	border-radius: var(--tshp-radius-sm);
	border: 1px solid var(--tshp-border);
}
.tshp-my-table__title {
	font-weight: 500;
	color: var(--tshp-text);
	text-decoration: none;
	display: block;
	font-size: 16px;
}
.tshp-my-table__title:hover { color: var(--tshp-accent); }
.tshp-my-table__price {
	font-size: 15px;
	color: var(--tshp-text-muted);
	margin-top: 2px;
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
}
.tshp-my-table__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.tshp-reject-detail {
	margin-top: 6px;
	font-size: 15px;
}
.tshp-reject-detail summary {
	color: var(--tshp-status-rejected);
	cursor: pointer;
}
.tshp-reject-detail div {
	margin-top: 6px;
	padding: 8px 10px;
	background: rgba(220, 38, 38, 0.04);
	border-radius: var(--tshp-radius-sm);
	color: var(--tshp-text);
}

@media (max-width: 768px) {
	.tshp-my-table thead { display: none; }
	.tshp-my-table tr {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 14px;
		border-bottom: 1px solid var(--tshp-border-soft);
	}
	.tshp-my-table td {
		display: block;
		padding: 4px 0;
		border-bottom: 0;
	}
}
