/* ==========================================================================
   Single product page — quiet detail panel
   ========================================================================== */

/* Breadcrumb */
.tshp-breadcrumb {
	max-width: 1156px;
	margin: 0 auto 28px;
	font-size: 12px;
	color: var(--tshp-text-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	letter-spacing: 0.02em;
}
.tshp-breadcrumb a {
	color: var(--tshp-text-muted);
	text-decoration: none;
	transition: color var(--tshp-trans);
}
.tshp-breadcrumb a:hover { color: var(--tshp-text); }
.tshp-breadcrumb__sep { color: var(--tshp-text-dim); }

/* Main grid — stage 720 + panel 380 = ~1156 total, auto-centered.
 * Stage is capped so gallery + description never blow up on wide monitors;
 * the whole layout converges to the middle instead of stretching apart.
 */
.tshp-single {
	display: grid;
	grid-template-columns: minmax(0, 720px) 380px;
	gap: 56px;
	max-width: 1156px;
	margin: 0 auto;
	align-items: flex-start;
}

@media (max-width: 1023px) {
	.tshp-single { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   Stage (left)
   ========================================================================== */
.tshp-single__stage {
	display: flex;
	flex-direction: column;
	gap: 40px;
	min-width: 0;
}

/* Gallery */
.tshp-gallery {
	position: relative;
}
/* Gallery — main keeps 4:3 ratio (capped via container max-width so it
 * doesn't blow up on wide monitors); thumbnails below are square 80×80
 * so all aux images are uniformly visible.
 */
.tshp-gallery {
	max-width: 100%;
}
.tshp-gallery__main {
	aspect-ratio: 4 / 3;
	border-radius: var(--tshp-radius);
	overflow: hidden;
	background: var(--tshp-bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
}
.tshp-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: zoom-in;
	transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.tshp-gallery__img:hover { transform: scale(1.02); }

@media (max-width: 1023px) {
	.tshp-gallery { max-width: 100%; }
}

.tshp-gallery__strip {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	overflow-x: auto;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
}
/* Defensive reset against parent themes (WoodMart) that style <button>
 * with padding/border-radius/transform — without this, thumbnails show
 * theme padding inside and pill-shaped rounding instead of clean squares.
 */
.tshp-page button.tshp-gallery__thumb {
	all: unset;
	box-sizing: border-box;
	display: block;
	flex: 0 0 80px;
	width: 80px;
	height: 80px;
	min-width: 80px;
	min-height: 80px;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	background: var(--tshp-bg-alt);
	cursor: pointer;
	opacity: 0.65;
	transition: opacity var(--tshp-trans), border-color var(--tshp-trans);
}
.tshp-page button.tshp-gallery__thumb:hover {
	opacity: 1;
}
.tshp-page button.tshp-gallery__thumb.is-active {
	opacity: 1;
	border-color: var(--tshp-text);
}
.tshp-page button.tshp-gallery__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0;
	border: 0;
	max-width: none;
}

/* Floating tools — compact, top-right (less intrusive) */
.tshp-stage-tools {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	gap: 6px;
	z-index: 5;
}
/* Defend against WoodMart <button> base styles (background fill, padding, radius). */
.tshp-page button.tshp-stage-tools__btn {
	all: unset;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.92) !important;
	backdrop-filter: blur(8px);
	border: 1px solid var(--tshp-border) !important;
	color: var(--tshp-text-soft);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--tshp-trans);
}
.tshp-page button.tshp-stage-tools__btn:hover {
	background: #fff !important;
	color: var(--tshp-text);
	border-color: var(--tshp-text) !important;
}
.tshp-stage-tools__btn .tshp-icon {
	width: 16px;
	height: 16px;
}

/* (Floating share menu removed in v1.4.6 — replaced by inline `.tshp-share`
   widget below the price; ~90 lines of dead CSS deleted in v1.4.11.) */

.tshp-stage-hint { display: none; }

/* ==========================================================================
   Content sections (description, seller, related)
   ========================================================================== */
.tshp-single__section {
	background: transparent;
	border: 0;
	padding: 0;
}
.tshp-single__h2 {
	margin: 0 0 20px !important;
	padding: 0 0 12px !important;
	border-bottom: 1px solid var(--tshp-divider);
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 1.4 !important;
	color: var(--tshp-text-muted);
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	background: transparent !important;
}
.tshp-single__content {
	font-size: 15px;
	line-height: 1.85;
	color: var(--tshp-text);
	white-space: pre-line;
	letter-spacing: 0.01em;
}
.tshp-single__content p { margin: 0 0 14px; }

.tshp-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 24px;
}

/* Seller */
.tshp-seller {
	display: flex;
	gap: 18px;
	align-items: center;
}
.tshp-seller__avatar img {
	border-radius: 50%;
	width: 56px;
	height: 56px;
	border: 1px solid var(--tshp-border);
}
.tshp-seller__info { flex: 1; }
.tshp-seller__name {
	font-weight: 500;
	color: var(--tshp-text);
	margin-bottom: 6px;
	font-size: 14px;
}
.tshp-seller__stats {
	font-size: 12px;
	color: var(--tshp-text-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}
.tshp-seller__sep { color: var(--tshp-text-dim); }
.tshp-seller__link {
	font-size: 12px;
	color: var(--tshp-accent);
	text-decoration: none;
	letter-spacing: 0.02em;
}
.tshp-seller__link:hover { color: var(--tshp-accent-hover); }

/* Related grid */
.tshp-related-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 28px 18px;
}

/* ==========================================================================
   Right panel (380px) — sticky detail
   ========================================================================== */
.tshp-single__panel {
	min-width: 0;
}

.tshp-panel {
	background: transparent;
	border: 0;
	box-shadow: none;
	position: sticky;
	top: 32px;
	overflow: visible;
}

.tshp-panel__header {
	padding: 0 0 20px;
	border-bottom: 1px solid var(--tshp-divider);
	margin-bottom: 22px;
}
.tshp-panel__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: var(--tshp-radius-pill);
	font-size: 11px;
	font-weight: 500;
	color: var(--tshp-text-soft);
	background: var(--tshp-bg-alt);
	margin-bottom: 16px;
	letter-spacing: 0.04em;
}
.tshp-panel__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
}
.tshp-panel__status--available { color: var(--tshp-status-available); background: rgba(22, 163, 74, 0.08); }
.tshp-panel__status--sold      { color: var(--tshp-status-sold); }
.tshp-panel__status--expired   { color: var(--tshp-status-expired); }
.tshp-panel__status--expiring  { color: var(--tshp-status-expiring); background: rgba(217, 119, 6, 0.08); }
.tshp-panel__status--pending   { color: var(--tshp-status-pending); }

.tshp-panel__title {
	margin: 0 0 16px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.005em;
	color: var(--tshp-text);
}
.tshp-panel__price {
	font-size: 28px;
	font-weight: 500;
	color: var(--tshp-text);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
	letter-spacing: -0.01em;
}

.tshp-panel__section {
	padding: 0;
}
.tshp-panel .tshp-panel__label {
	display: block;
	margin: 0 0 16px !important;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	color: var(--tshp-text-muted);
	letter-spacing: 0.06em;
	line-height: 1;
}

/* Pills (compatible models) */
.tshp-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.tshp-pill {
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--tshp-radius-pill);
	background: transparent;
	border: 1px solid var(--tshp-border);
	color: var(--tshp-text);
	font-size: 12px;
	font-weight: 400;
	text-decoration: none;
	transition: all var(--tshp-trans);
}
.tshp-pill:hover {
	background: var(--tshp-text);
	color: #fff;
	border-color: var(--tshp-text);
}

/* Detail dl */
.tshp-panel__details {
	margin: 22px 0;
	padding: 22px 0;
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 12px 16px;
	border-top: 1px solid var(--tshp-divider);
	border-bottom: 1px solid var(--tshp-divider);
	font-size: 13px;
}
.tshp-panel__details dt {
	color: var(--tshp-text-muted);
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.02em;
}
.tshp-panel__details dd {
	margin: 0;
	color: var(--tshp-text);
	font-feature-settings: "tnum" 1;
}
.tshp-panel__details dd .tshp-icon { width: 12px; height: 12px; vertical-align: -2px; margin-right: 2px; }

/* Seller — head (avatar + name) on row 1, 3-stat block on row 2 */
.tshp-panel-seller {
	margin: 0 0 22px;
	padding: 0 0 18px;
	border-bottom: 1px solid var(--tshp-divider);
}
.tshp-panel-seller__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}
.tshp-panel-seller__avatar img {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--tshp-border);
}
.tshp-panel-seller__name {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	color: var(--tshp-text);
	letter-spacing: 0.005em;
}
.tshp-panel-seller__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	background: var(--tshp-bg-alt);
	border-radius: var(--tshp-radius-sm);
	padding: 10px 0;
	margin-bottom: 12px;
}
.tshp-panel-seller__stat {
	text-align: center;
	border-right: 1px solid var(--tshp-border-soft);
}
.tshp-panel-seller__stat:last-child { border-right: 0; }
.tshp-panel-seller__num {
	display: block;
	font-size: 17px;
	font-weight: 500;
	color: var(--tshp-text);
	font-family: var(--tshp-font-sans);
	font-feature-settings: "tnum" 1;
	line-height: 1.1;
}
.tshp-panel-seller__lbl {
	display: block;
	font-size: 10px;
	color: var(--tshp-text-muted);
	margin-top: 2px;
	letter-spacing: 0.06em;
}
/* Seller "view all" link — pill capsule with circular arrow button at the
   end. Sits to the right of the seller name on the head row. */
.tshp-panel-seller__link {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 4px 4px 12px;
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border);
	border-radius: var(--tshp-radius-pill);
	font-size: 12px;
	font-weight: 500;
	color: var(--tshp-text);
	text-decoration: none;
	transition: background var(--tshp-trans), border-color var(--tshp-trans), color var(--tshp-trans);
	letter-spacing: 0.02em;
	line-height: 1;
	margin-left: auto;
}
.tshp-panel-seller__link:hover {
	background: var(--tshp-bg-alt);
	border-color: var(--tshp-text-soft);
	color: var(--tshp-text);
}
.tshp-panel-seller__link:hover .tshp-panel-seller__link-arrow {
	background: var(--tshp-primary-hover);
	transform: translateX(2px);
}
.tshp-panel-seller__link-text {
	white-space: nowrap;
}
.tshp-panel-seller__link-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--tshp-primary);
	color: #fff;
	flex-shrink: 0;
	transition: background var(--tshp-trans), transform var(--tshp-trans);
}
.tshp-panel-seller__link-arrow svg { display: block; }

/* On narrow screens the link wraps below the name + avatar */
@media (max-width: 480px) {
	.tshp-panel-seller__head { flex-wrap: wrap; }
	.tshp-panel-seller__link {
		margin-left: 52px; /* align with name (avatar 40 + gap 12) on row 2 */
	}
}

/* Report link (under disclaimer) */
.tshp-panel__report {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	font-size: 11px;
	color: var(--tshp-text-muted);
	background: transparent;
	border: 0;
	padding: 4px 0;
	cursor: pointer;
	font-family: inherit;
	letter-spacing: 0.02em;
	transition: color var(--tshp-trans);
}
.tshp-panel__report:hover { color: var(--tshp-status-rejected); }
.tshp-panel__report .tshp-icon { width: 12px; height: 12px; }

/* Footer (CTA) */
.tshp-panel__footer {
	padding-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.tshp-panel__owner-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.tshp-panel__owner-actions .tshp-btn {
	padding: 10px;
	font-size: 12px;
}
.tshp-panel__disclaimer {
	margin: 14px 0 0;
	font-size: 11px;
	color: var(--tshp-text-muted);
	line-height: 1.6;
	letter-spacing: 0.02em;
}

@media (max-width: 1023px) {
	.tshp-panel { position: static; }
}

/* ==========================================================================
   Share widget — sits below the price in the right panel
   ========================================================================== */
.tshp-share {
	background: var(--tshp-bg-alt);
	border-radius: 14px;
	padding: 16px 18px;
	margin: 18px 0;
}

/* Defended against WoodMart's aggressive <h3> base styles (extra
   margin-bottom, line-height, padding) which would otherwise stretch the
   gap below the label and break the widget's vertical rhythm. */
.tshp-page .tshp-share__label,
.tshp-share h3.tshp-share__label,
h3.tshp-share__label {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	margin: 0 0 16px !important;
	padding: 0 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--tshp-text) !important;
	letter-spacing: 0.04em !important;
	line-height: 1.3 !important;
	background: transparent !important;
	border: 0 !important;
	text-transform: none !important;
}
.tshp-page .tshp-share__label svg,
h3.tshp-share__label svg { color: var(--tshp-text-muted); }

/* URL input + copy button — single pill row */
.tshp-share__url {
	display: flex;
	align-items: center;
	gap: 0;
	background: var(--tshp-surface);
	border: 1px solid var(--tshp-border-soft);
	border-radius: var(--tshp-radius-pill);
	padding: 4px 4px 4px 14px;
	margin-bottom: 16px; /* keep vertical rhythm consistent (16px between every block) */
	transition: border-color var(--tshp-trans), box-shadow var(--tshp-trans);
}
.tshp-share__url:focus-within {
	border-color: var(--tshp-text);
	box-shadow: 0 0 0 3px rgba(24, 24, 27, 0.06);
}

/* Defend against WoodMart's <input type="text"> base styles */
.tshp-page .tshp-share__input,
input.tshp-share__input {
	flex: 1;
	min-width: 0;
	background: transparent !important;
	border: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	border-radius: 0 !important;
	padding: 8px 10px 8px 0 !important;
	font-size: 12px !important;
	font-family: var(--tshp-font-sans) !important;
	color: var(--tshp-text-soft) !important;
	height: auto !important;
	line-height: 1.4 !important;
	min-height: 0 !important;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.tshp-page button.tshp-share__copy,
.tshp-share__copy {
	flex-shrink: 0;
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	background: var(--tshp-text) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 7px 14px !important;
	border-radius: var(--tshp-radius-pill) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em !important;
	cursor: pointer;
	font-family: inherit !important;
	transition: background var(--tshp-trans);
	box-shadow: none !important;
	text-shadow: none !important;
	min-height: 0 !important;
	line-height: 1.4 !important;
}
.tshp-page button.tshp-share__copy:hover,
.tshp-share__copy:hover { background: #000 !important; color: #fff !important; }
.tshp-share__copy.is-copied,
.tshp-page button.tshp-share__copy.is-copied {
	background: var(--tshp-status-available) !important;
	color: #fff !important;
}

/* Platform icon row — circular brand-colored buttons */
.tshp-share__platforms {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.tshp-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	transition: transform var(--tshp-trans), box-shadow var(--tshp-trans), filter var(--tshp-trans);
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0;
}
.tshp-share__btn svg { width: 18px; height: 18px; display: block; }
.tshp-share__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14);
	color: #fff;
	filter: brightness(1.05);
}
.tshp-share__btn:focus-visible {
	outline: 3px solid rgba(15, 76, 129, 0.35);
	outline-offset: 2px;
}

/* Brand colors */
.tshp-share__btn--fb       { background: #1877f2; }
.tshp-share__btn--line     { background: #06c755; }
.tshp-share__btn--x        { background: #000000; }
.tshp-share__btn--wa       { background: #25d366; }
.tshp-share__btn--wechat   { background: #07c160; }
.tshp-share__btn--telegram { background: #229ed9; }
.tshp-share__btn--mail     { background: #ea4335; }

/* Defend against WoodMart's <button> base styles for the WeChat <button> */
.tshp-page button.tshp-share__btn--wechat {
	background: #07c160 !important;
	border-radius: 50% !important;
	padding: 0 !important;
	width: 38px !important;
	height: 38px !important;
	min-height: 0 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	color: #fff !important;
}
.tshp-page button.tshp-share__btn--wechat:hover {
	background: #07c160 !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.14) !important;
}

/* WeChat copy hint — small toast tied to the button click */
.tshp-share__wechat-hint {
	position: fixed;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	background: var(--tshp-text);
	color: #fff;
	padding: 10px 18px;
	border-radius: 10px;
	font-size: 13px;
	letter-spacing: 0.02em;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	opacity: 0;
	pointer-events: none;
	transition: opacity 240ms, transform 240ms;
	z-index: 1000;
}
.tshp-share__wechat-hint.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
	.tshp-share__btn { width: 36px; height: 36px; }
	.tshp-share__btn svg { width: 16px; height: 16px; }
}

/* ==========================================================================
   Lightbox (gallery enlarged view) — supports prev/next nav.
   `!important` everywhere to defeat WoodMart's global img/button base styles.
   The lightbox is appended to <body>, so it's NOT inside .tshp-page — generic
   theme rules like `img { border-radius: ... }` still apply unless force-reset.
   ========================================================================== */
.tshp-lightbox {
	position: fixed !important;
	inset: 0 !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	z-index: 2147483000 !important;
	background: rgba(0, 0, 0, 0.96) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	animation: tshp-fade-in 200ms ease;
}
.tshp-lightbox__stage {
	position: relative !important;
	width: 100% !important;
	height: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: zoom-out !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}
.tshp-lightbox__img {
	display: block !important;
	max-width: 90vw !important;
	max-height: 90vh !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
	cursor: default !important;
	user-select: none;
	-webkit-user-drag: none;
}
.tshp-lightbox__counter {
	position: absolute !important;
	top: 18px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	color: #fff !important;
	font-size: 13px !important;
	letter-spacing: 0.08em !important;
	opacity: 0.85;
	pointer-events: none;
	z-index: 2 !important;
	background: transparent !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.tshp-lightbox__close,
.tshp-lightbox__nav {
	box-sizing: border-box !important;
	position: absolute !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: rgba(0, 0, 0, 0.5) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.22) !important;
	border-radius: 999px !important;
	padding: 0 !important;
	margin: 0 !important;
	font: inherit !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	text-shadow: none !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35) !important;
	cursor: pointer !important;
	opacity: 1 !important;
	visibility: visible !important;
	transition: background 160ms ease, transform 160ms ease !important;
	z-index: 3 !important;
	min-width: 0 !important;
	min-height: 0 !important;
	line-height: 1 !important;
}
.tshp-lightbox__close svg,
.tshp-lightbox__nav svg {
	display: block !important;
	pointer-events: none;
}
.tshp-lightbox__close {
	top: 14px !important;
	right: 14px !important;
	width: 42px !important;
	height: 42px !important;
}
.tshp-lightbox__close:hover {
	background: rgba(0, 0, 0, 0.8) !important;
	transform: scale(1.06) !important;
}

.tshp-lightbox__nav {
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 48px !important;
	height: 48px !important;
}
.tshp-lightbox__nav--prev { left: 18px !important; }
.tshp-lightbox__nav--next { right: 18px !important; }
.tshp-lightbox__nav:hover {
	background: rgba(0, 0, 0, 0.8) !important;
	transform: translateY(-50%) scale(1.06) !important;
}

@media (max-width: 600px) {
	.tshp-lightbox__nav { width: 40px !important; height: 40px !important; }
	.tshp-lightbox__nav--prev { left: 8px !important; }
	.tshp-lightbox__nav--next { right: 8px !important; }
	.tshp-lightbox__close { top: 8px !important; right: 8px !important; width: 38px !important; height: 38px !important; }
	.tshp-lightbox__img { max-width: 96vw !important; max-height: 88vh !important; }
}
