/* Shared Waffle Card Styles */
.waffle-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #121826;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.waffle-card__image-wrap {
	display: block;
	aspect-ratio: 4 / 5;
	background: #0d1320;
}

.waffle-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.waffle-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.waffle-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 14px;
	flex: 1;
}

.waffle-card__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 43px;
}

.waffle-card__title a {
	color: inherit;
	text-decoration: none;
}

.waffle-card__title a:hover {
	color: #f5bf3b;
}

.waffle-progress {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.waffle-progress__bar {
	width: 100%;
	height: 10px;
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	overflow: hidden;
}

.waffle-progress__bar span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg,#7c5cff,#a855f7);
	border-radius: 999px;
	transition: width 0.4s cubic-bezier(.4,1.6,.6,1);
}

.waffle-progress__text {
	font-size: 13px;
	font-weight: 600;
	color: #b8c2e8;
}

.waffle-card__countdown {
	font-size: 14px;
	font-weight: 600;
	color: #8f7dff;
}

.waffle-card__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	flex-wrap: wrap;
}

.waffle-card__meta-row .waffle-card__chips {
	margin-left: auto;
}

.waffle-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.waffle-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.05);
	color: #dce5ff;
}

.waffle-pill--price {
	background: rgba(245,191,59,.14);
	border-color: rgba(245,191,59,.35);
	color: #ffd774;
}

.waffle-pill--entries {
	background: rgba(124,92,255,.14);
	border-color: rgba(124,92,255,.3);
	color: #d2c8ff;
}

.waffle-card__flag {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .02em;
	text-transform: uppercase;
	pointer-events: none;
}

.waffle-card__flag--free {
	background: rgba(245,191,59,.92);
	color: #111827;
	box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

.waffle-card__actions {
	display: flex;
	gap: 8px;
	margin-top: auto;
}

.waffle-card__toggle,
.waffle-card__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.waffle-card__toggle {
	flex: 1 1 auto;
	border: 1px solid rgba(255,255,255,.12);
	background: rgba(255,255,255,.05);
	color: #e5ecff;
	cursor: pointer;
}

.waffle-card__toggle:hover {
	background: rgba(255,255,255,.09);
	border-color: rgba(255,255,255,.22);
}

.waffle-card__link {
	flex: 0 0 auto;
	background: #f5bf3b;
	color: #111;
	border: 1px solid rgba(245,191,59,.3);
}

.waffle-card__link:hover {
	background: #ffe082;
	color: #111;
	transform: translateY(-1px);
}

.waffle-card__details-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .24s ease;
}

.waffle-card.is-open .waffle-card__details-wrap {
	grid-template-rows: 1fr;
}

.waffle-card__details {
	min-height: 0;
	overflow: hidden;
	border-top: 1px solid rgba(255,255,255,.07);
	padding-top: 0;
	display: grid;
	gap: 8px;
}

.waffle-card.is-open .waffle-card__details {
	padding-top: 12px;
}

.waffle-card__detail-row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	color: #c8d2ee;
}

.waffle-card__detail-row strong {
	color: #fff;
	font-weight: 700;
	text-align: right;
}

.tcgw-discovery-grid .waffle-card {
	height: 100%;
}

@media (max-width: 640px) {
	.waffle-card__body {
		padding: 10px;
		gap: 8px;
	}
	.waffle-card__title {
		font-size: 15px;
		min-height: 38px;
	}
	.waffle-card__actions {
		flex-wrap: wrap;
	}
	.waffle-card__toggle,
	.waffle-card__link {
		width: 100%;
	}
}
.tcgw-discovery-card__overlay--bottom-min {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(0deg, rgba(26,32,48,0.98) 90%, rgba(26,32,48,0.0) 100%);
	color: #e7f2ff;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 70px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	padding-bottom: 0;
}
.tcgw-discovery-card__overlay-content {
	padding: 8px 10px 6px 10px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.tcgw-discovery-card__overlay-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.tcgw-discovery-card__title {
	font-size: 14px;
	font-weight: 800;
	color: #e7f2ff;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 1px 4px rgba(26,32,48,0.13);
	flex: 1 1 auto;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.tcgw-discovery-card__countdown-min {
	font-size: 12px;
	font-weight: 700;
	color: #f7c873;
	background: rgba(64,105,171,0.13);
	border-radius: 6px;
	padding: 2px 8px;
	letter-spacing: 0.01em;
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.10);
	margin-left: 6px;
}
.tcgw-discovery-card__overlay-prices-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	margin-top: 2px;
}
.tcgw-discovery-card__price-label {
	color: #c8dcfb;
	font-weight: 600;
	margin-right: 2px;
}
.tcgw-discovery-card__price-value {
	color: #f7c873;
	font-weight: 800;
	margin-right: 10px;
}
.tcgw-discovery-card__progress-bar--large {
	height: 14px;
	margin: 8px 0 0 0;
	background: rgba(173,206,255,0.13);
	border-radius: 8px;
	box-shadow: 0 1px 6px 0 rgba(64,105,171,0.13);
	position: relative;
	overflow: hidden;
}
.tcgw-discovery-card__progress-bar--large .tcgw-progress {
	height: 100%;
	border-radius: 8px;
	background: linear-gradient(90deg, #6d4eec 0%, #f7c873 100%);
	box-shadow: 0 1px 6px 0 rgba(64,105,171,0.13);
	transition: width 0.4s cubic-bezier(.4,1.6,.6,1);
}
.tcgw-progress-label {
	position: absolute;
	right: 10px;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: #e7f2ff;
	text-shadow: 0 1px 4px rgba(26,32,48,0.13);
	pointer-events: none;
}
.tcgw-discovery-card__overlay--bottom {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: linear-gradient(0deg, rgba(26,32,48,0.98) 90%, rgba(26,32,48,0.0) 100%);
	color: #e7f2ff;
	padding: 0 0 0 0;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 90px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

.tcgw-discovery-card__overlay-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 14px 0 14px;
	gap: 10px;
}
.tcgw-discovery-card__overlay-row--prices {
	padding-top: 2px;
	padding-bottom: 0;
	font-size: 13px;
	gap: 8px;
}
.tcgw-discovery-card__countdown {
	font-size: 13px;
	font-weight: 700;
	color: #f7c873;
	background: rgba(64,105,171,0.13);
	border-radius: 6px;
	padding: 2px 10px;
	margin-left: 8px;
	letter-spacing: 0.01em;
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.10);
}
.tcgw-discovery-card__price-label {
	color: #c8dcfb;
	font-weight: 600;
	margin-right: 2px;
}
.tcgw-discovery-card__price-value {
	color: #f7c873;
	font-weight: 800;
	margin-right: 10px;
}
.tcgw-discovery-card__progress-bar--large {
	height: 16px;
	margin: 10px 14px 10px 14px;
	background: rgba(173,206,255,0.13);
	border-radius: 8px;
	box-shadow: 0 1px 6px 0 rgba(64,105,171,0.13);
}
.tcgw-discovery-card__progress-bar--large .tcgw-progress {
	height: 100%;
	border-radius: 8px;
	background: linear-gradient(90deg, #6d4eec 0%, #f7c873 100%);
	box-shadow: 0 1px 6px 0 rgba(64,105,171,0.13);
	transition: width 0.4s cubic-bezier(.4,1.6,.6,1);
}
/* Compact Discovery Card Styles */
.tcgw-discovery-card--compact {
	position: relative;
	margin: 16px 8px 28px 8px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 12px 0 rgba(64,105,171,0.10);
	background: rgba(26,32,48,0.98);
	border: 1.5px solid rgba(173,206,255,0.28);
	transition: box-shadow 0.22s, transform 0.16s;
	will-change: box-shadow, transform;
}
.tcgw-discovery-card--compact:hover {
	box-shadow: 0 6px 24px 0 rgba(64,105,171,0.18);
	transform: translateY(-4px) scale(1.015);
	border-color: #8fbcff;
}
.tcgw-discovery-card__image-wrapper {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: rgba(26,47,80,0.9);
	border-bottom: 1.5px solid rgba(173,206,255,0.28);
}
.tcgw-discovery-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.18);
	box-shadow: 0 1px 6px 0 rgba(64,105,171,0.10);
}
.tcgw-discovery-card__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(26,32,48,0.88) 60%, rgba(173,206,255,0.08) 100%);
	color: #e7f2ff;
	padding: 14px 10px 8px 10px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	z-index: 2;
	pointer-events: none;
}
.tcgw-discovery-card__chips {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
	pointer-events: auto;
}
.tcgw-chip {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	padding: 4px 12px 4px 10px;
	background: rgba(173,206,255,0.10);
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.10);
	color: #e7f2ff;
	letter-spacing: 0.01em;
	border: 1px solid rgba(173,206,255,0.28);
	transition: background 0.16s, color 0.16s, border 0.16s;
}
.tcgw-chip--gold {
	background: linear-gradient(90deg, #f7c873 0%, #ffb900 100%);
	color: #23243a;
	border: 1px solid #f7c873;
	box-shadow: 0 1px 6px 0 rgba(255,186,95,0.13);
}
.tcgw-chip--blue {
	background: linear-gradient(90deg, #6d4eec 0%, #8f74ff 100%);
	color: #e7f2ff;
	border: 1px solid #6d4eec;
	box-shadow: 0 1px 6px 0 rgba(113,82,255,0.13);
}
.tcgw-discovery-card__title {
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 8px 0;
	color: #e7f2ff;
	text-shadow: 0 1px 4px rgba(26,32,48,0.13);
	letter-spacing: 0.01em;
	line-height: 1.18;
}
.tcgw-discovery-card__progress-bar {
	width: 100%;
	height: 8px;
	background: rgba(173,206,255,0.10);
	border-radius: 6px;
	margin-top: 8px;
	overflow: hidden;
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.10);
}
.tcgw-progress {
	height: 100%;
	background: linear-gradient(90deg, #6d4eec 0%, #f7c873 100%);
	border-radius: 6px;
	transition: width 0.4s cubic-bezier(.4,1.6,.6,1);
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.13);
}
.tcgw-discovery-card__body {
	padding: 14px 12px 12px 12px;
	background: rgba(26,32,48,0.98);
	color: #e7f2ff;
	position: relative;
	border-radius: 0 0 12px 12px;
	box-shadow: 0 1px 6px 0 rgba(64,105,171,0.08);
	min-height: 120px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.tcgw-discovery-card__expand-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background: linear-gradient(135deg, #6d4eec 0%, #f7c873 100%);
	color: #e7f2ff;
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	font-size: 1.1em;
	cursor: pointer;
	z-index: 3;
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.10);
	transition: background 0.16s, color 0.16s, box-shadow 0.16s;
	pointer-events: auto;
}
.tcgw-discovery-card__expand-btn:hover {
	background: linear-gradient(135deg, #f7c873 0%, #6d4eec 100%);
	color: #23243a;
	box-shadow: 0 2px 8px 0 rgba(173,206,255,0.18);
}
.tcgw-discovery-card__expandable {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.4s, opacity 0.3s;
	margin-top: 8px;
	background: rgba(173,206,255,0.07);
	border-radius: 8px;
	padding: 0 8px;
}
.tcgw-discovery-card__body.expanded .tcgw-discovery-card__expandable {
	max-height: 80px;
	opacity: 1;
	padding: 8px 8px 8px 8px;
}
.tcgw-discovery-card__meta {
	display: flex;
	gap: 12px;
	font-size: 12px;
	margin-bottom: 4px;
	color: #c8dcfb;
	font-weight: 600;
	letter-spacing: 0.01em;
}
.tcgw-discovery-card__price {
	margin-top: 8px;
	font-weight: 800;
	color: #f7c873;
	font-size: 13px;
	letter-spacing: 0.01em;
	text-shadow: 0 1px 4px rgba(247,200,115,0.10);
}
.tcgw-discovery-card__button {
	margin-top: 12px;
	display: inline-block;
	background: linear-gradient(90deg, #6d4eec 0%, #f7c873 100%);
	color: #23243a;
	font-weight: 800;
	border-radius: 999px;
	padding: 7px 18px;
	font-size: 13px;
	border: none;
	box-shadow: 0 1px 4px 0 rgba(64,105,171,0.10);
	transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.tcgw-discovery-card__button:hover {
	background: linear-gradient(90deg, #f7c873 0%, #6d4eec 100%);
	color: #23243a;
	box-shadow: 0 2px 8px 0 rgba(173,206,255,0.18);
}
@media (max-width: 640px) {
	.tcgw-discovery-card--compact {
		margin: 6px 1px 16px 1px;
		border-radius: 8px;
	}
	.tcgw-discovery-card__image-wrapper,
	.tcgw-discovery-card__image img {
		height: 90px;
		border-radius: 6px;
	}
	.tcgw-discovery-card__overlay {
		padding: 4px 3px 2px 3px;
		border-radius: 0 0 6px 6px;
	}
	.tcgw-discovery-card__body {
		padding: 7px 4px 6px 4px;
		border-radius: 0 0 8px 8px;
		min-height: 60px;
	}
	.tcgw-discovery-card__expand-btn {
		top: 4px;
		right: 4px;
		width: 20px;
		height: 20px;
		font-size: 0.9em;
	}
}
.tcgw-line-numbers {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	padding: 5px 10px;
	border-radius: 999px;
	border: 1px solid rgba(109, 78, 236, 0.35);
	background: rgba(109, 78, 236, 0.1);
	color: inherit;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.3;
	max-width: 100%;
	vertical-align: middle;
}

.tcgw-line-numbers__label {
	opacity: 0.9;
	font-weight: 700;
	white-space: nowrap;
}

.tcgw-line-numbers__values {
	font-weight: 700;
	word-break: break-word;
}

.tcgw-mini-numbers,
.tcgw-order-item-numbers {
	display: inline-flex;
}

.tcgw-cart-item-numbers,
.tcgw-checkout-item-numbers {
	display: inline-flex;
	margin-left: 6px;
}

.woocommerce-mini-cart .tcgw-line-numbers,
.widget_shopping_cart .tcgw-line-numbers,
.woocommerce-cart .tcgw-line-numbers,
.woocommerce-checkout .tcgw-line-numbers,
.woocommerce-order-received .tcgw-line-numbers,
.woocommerce-view-order .tcgw-line-numbers {
	border-color: rgba(109, 78, 236, 0.45);
	background: rgba(109, 78, 236, 0.13);
}

@media (max-width: 640px) {
	.tcgw-line-numbers {
		display: flex;
		margin-top: 6px;
		padding: 5px 9px;
		font-size: 11px;
	}

	.tcgw-cart-item-numbers,
	.tcgw-checkout-item-numbers {
		margin-left: 0;
	}
}


/* Reset one-column product widget list bullets and outer spacing */
.elementor-widget-wd_products .products.wd-products.grid-columns-1,
.wd-products-element .products.wd-products.grid-columns-1 {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li,
.wd-products-element .products.wd-products.grid-columns-1 > li {
	list-style: none !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li::marker,
.wd-products-element .products.wd-products.grid-columns-1 > li::marker {
	content: "";
}

/* WoodMart / Elementor one-column product widgets -> compact row lists */
.elementor-widget-wd_products .products.wd-products.grid-columns-1,
.wd-products-element .products.wd-products.grid-columns-1 {
	gap: 12px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product,
.wd-products-element .products.wd-products.grid-columns-1 > li.product {
	width: 100%;
	margin-bottom: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-wrapper,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-wrapper {
	display: grid;
	grid-template-columns: 78px minmax(0,1fr);
	gap: 12px;
	align-items: center;
	padding: 12px;
	border-radius: 16px;
	background: #121826;
	border: 1px solid rgba(255,255,255,.08);
	box-shadow: 0 10px 24px rgba(0,0,0,.18);
	overflow: hidden;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-element-top,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-element-top {
	margin-bottom: 0 !important;
	width: 78px;
	min-width: 78px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-element-top > a,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-element-top > a {
	display: block;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-element-top img,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-element-top img {
	width: 78px;
	height: 104px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-information,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-information {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	padding: 0 !important;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .wd-entities-title,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .wd-entities-title {
	margin: 0;
	font-size: 14px;
	line-height: 1.28;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .price,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .price {
	font-size: 13px;
	line-height: 1.2;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .wd-buttons,
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .fade-in-block,
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .hover-content,
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .content-product-imagin,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .wd-buttons,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .fade-in-block,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .hover-content,
.wd-products-element .products.wd-products.grid-columns-1 > li.product .content-product-imagin {
	display: none !important;
}

@media (max-width: 767px) {
	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-wrapper,
	.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-wrapper {
		grid-template-columns: 68px minmax(0,1fr);
		gap: 10px;
		padding: 10px;
	}

	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-element-top,
	.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-element-top {
		width: 68px;
		min-width: 68px;
	}

	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.product .product-element-top img,
	.wd-products-element .products.wd-products.grid-columns-1 > li.product .product-element-top img {
		width: 68px;
		height: 92px;
	}
}


/* Prime refinements: ghost details button + one-column waffle list widgets */
.waffle-card__actions .waffle-card__toggle,
.waffle-card__actions .waffle-card__toggle:visited,
.waffle-card__actions .waffle-card__toggle:focus,
.waffle-card__actions .waffle-card__toggle:active {
	appearance: none;
	-webkit-appearance: none;
	background: transparent !important;
	background-image: none !important;
	color: #f5bf3b !important;
	border: 1px solid rgba(245,191,59,.34) !important;
	box-shadow: none !important;
	text-shadow: none !important;
}

.waffle-card__actions .waffle-card__toggle:hover {
	background: rgba(245,191,59,.08) !important;
	border-color: rgba(245,191,59,.6) !important;
	color: #ffd774 !important;
	transform: translateY(-1px);
}

.waffle-card__actions .waffle-card__toggle:focus-visible,
.waffle-card__actions .waffle-card__link:focus-visible {
	outline: 2px solid rgba(245,191,59,.55);
	outline-offset: 2px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item {
	width: 100%;
	margin-bottom: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card {
	display: grid;
	grid-template-columns: 74px minmax(0,1fr);
	align-items: start;
	gap: 12px;
	height: auto;
	padding: 12px;
	border-radius: 18px;
	overflow: hidden;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap {
	aspect-ratio: 74 / 102;
	width: 74px;
	border-radius: 12px;
	overflow: hidden;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__body,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__body {
	padding: 0;
	gap: 8px;
	min-width: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__title,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__title {
	font-size: 14px;
	line-height: 1.3;
	min-height: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress {
	gap: 5px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__bar,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__bar {
	height: 8px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__text,
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__countdown,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__text,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__countdown {
	font-size: 12px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__chips,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__chips {
	gap: 6px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-pill,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-pill {
	min-height: 28px;
	padding: 5px 10px;
	font-size: 11px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__actions,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__actions {
	gap: 8px;
	margin-top: 2px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__toggle,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__toggle {
	flex: 1 1 auto;
	min-height: 34px;
	padding: 0 10px;
	font-size: 12px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__link,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__link {
	flex: 0 0 auto;
	min-height: 34px;
	padding: 0 12px;
	font-size: 12px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__details,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__details {
	gap: 7px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__detail-row,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__detail-row {
	font-size: 11px;
}

@media (max-width: 1200px) {
	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card,
	.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card {
		grid-template-columns: 68px minmax(0,1fr);
		gap: 10px;
		padding: 10px;
	}

	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap,
	.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap {
		width: 68px;
		aspect-ratio: 68 / 94;
	}
}


/* v104 refinements: tighter one-column waffle list + text-only details control */
.waffle-card__actions .waffle-card__toggle,
.waffle-card__actions .waffle-card__toggle:visited,
.waffle-card__actions .waffle-card__toggle:focus,
.waffle-card__actions .waffle-card__toggle:active {
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	min-height: 28px;
	justify-content: flex-start;
	gap: 6px;
	color: #f5bf3b !important;
}

.waffle-card__actions .waffle-card__toggle:hover {
	background: transparent !important;
	border-color: transparent !important;
	color: #ffd774 !important;
	transform: none;
}

.waffle-card__toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
}

.waffle-card__toggle-label {
	font-weight: 700;
	letter-spacing: .01em;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card {
	grid-template-columns: 62px minmax(0,1fr);
	gap: 10px;
	padding: 10px;
	border-radius: 16px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap {
	width: 62px;
	aspect-ratio: 62 / 86;
	border-radius: 10px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__body,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__body {
	gap: 6px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__title,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__title {
	font-size: 13px;
	line-height: 1.25;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress {
	gap: 4px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__bar,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__bar {
	height: 7px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__meta-row,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__meta-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 6px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__text,
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__countdown,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-progress__text,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__countdown {
	font-size: 10.5px;
	white-space: nowrap;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__countdown,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__countdown {
	justify-self: center;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__chips,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__chips {
	gap: 5px;
	justify-self: end;
	margin-left: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-pill,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-pill {
	min-height: 24px;
	padding: 4px 8px;
	font-size: 10px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__actions,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__actions {
	gap: 6px;
	align-items: center;
	margin-top: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__toggle,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__toggle {
	flex: 1 1 auto;
	min-height: 24px;
	padding: 0 !important;
	font-size: 11px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__link,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__link {
	min-height: 30px;
	padding: 0 11px;
	font-size: 11px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__details,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__details {
	gap: 6px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__detail-row,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__detail-row {
	font-size: 10.5px;
}

@media (max-width: 1200px) {
	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card,
	.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card {
		grid-template-columns: 58px minmax(0,1fr);
		gap: 8px;
		padding: 9px;
	}

	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap,
	.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__image-wrap {
		width: 58px;
		aspect-ratio: 58 / 82;
	}

	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__meta-row,
	.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__meta-row {
		grid-template-columns: 1fr auto;
	}

	.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__chips,
	.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__chips {
		grid-column: 1 / -1;
		justify-self: start;
	}
}

/* v108: move entries chip onto image for standard archive grids */
.tcgw-archive-card-item > .waffle-card.is-waffle {
	position: relative;
}

.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__image-wrap {
	position: relative;
}

.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-card__chips {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 5;
	margin-left: 0;
	pointer-events: none;
}

.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-pill--entries {
	min-height: 28px;
	padding: 5px 10px;
	background: rgba(13,19,32,.86);
	border-color: rgba(124,92,255,.48);
	box-shadow: 0 8px 22px rgba(0,0,0,.26);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

/* keep one-column widget lists using the inline chip layout */
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-card__chips,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-card__chips {
	position: static;
	top: auto;
	left: auto;
	z-index: auto;
	pointer-events: auto;
	margin-left: 0;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-pill--entries,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-pill--entries {
	min-height: 24px;
	padding: 4px 9px;
	background: rgba(124,92,255,.14);
	border-color: rgba(124,92,255,.3);
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

/* compact the free badge inside one-column list widgets */
.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag {
	top: 6px;
	right: 6px;
	min-height: 20px;
	padding: 4px 7px;
	font-size: 9px;
}

@media (max-width: 640px) {
	.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-card__chips {
		top: 10px;
		left: 10px;
	}

	.tcgw-archive-card-item > .waffle-card.is-waffle .waffle-card__meta-row .waffle-pill--entries {
		min-height: 26px;
		padding: 4px 9px;
		font-size: 11px;
	}

	.tcgw-archive-card-item > .waffle-card .waffle-card__flag {
		top: 10px;
		right: 10px;
		min-height: 24px;
		padding: 4px 8px;
		font-size: 10px;
	}
}

/* v114: consistent image overlays across archive cards, search grids, and carousels */
.waffle-card {
	position: relative;
}

.waffle-card__image-wrap {
	position: relative;
	overflow: hidden;
}

.waffle-card.is-waffle .waffle-card__flag--entries {
	top: 12px;
	left: 12px;
	right: auto;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.waffle-card.is-waffle .waffle-card__flag--entries .waffle-pill--entries {
	min-height: 28px;
	padding: 5px 10px;
	background: rgba(13,19,32,.86);
	border-color: rgba(124,92,255,.48);
	box-shadow: 0 8px 22px rgba(0,0,0,.26);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.waffle-card.is-waffle .waffle-card__flag--free {
	top: 46px;
	left: 12px;
	right: auto;
	background: rgba(245,191,59,.92);
	color: #111827;
	box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

.tcgw-wishlist-overlay {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: rgba(13,19,32,.86);
	border: 1px solid rgba(255,255,255,.14);
	box-shadow: 0 8px 22px rgba(0,0,0,.26);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #f4f6fb;
	text-decoration: none;
	transition: transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease;
}

.tcgw-wishlist-overlay:hover,
.tcgw-wishlist-overlay:focus-visible {
	color: #ffd774;
	border-color: rgba(245,191,59,.42);
	background: rgba(17,24,39,.96);
	transform: translateY(-1px);
}

.tcgw-wishlist-overlay svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	display: block;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag--entries,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag--entries {
	top: 6px;
	left: 6px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag--entries .waffle-pill--entries,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag--entries .waffle-pill--entries {
	min-height: 22px;
	padding: 4px 8px;
	font-size: 10px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag--free,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__flag--free {
	top: 32px;
	left: 6px;
	min-height: 18px;
	padding: 3px 7px;
	font-size: 8px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .tcgw-wishlist-overlay,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .tcgw-wishlist-overlay {
	top: 6px;
	right: 6px;
	width: 26px;
	height: 26px;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .tcgw-wishlist-overlay svg,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .tcgw-wishlist-overlay svg {
	width: 13px;
	height: 13px;
}

@media (max-width: 640px) {
	.waffle-card.is-waffle .waffle-card__flag--entries {
		top: 10px;
		left: 10px;
	}

	.waffle-card.is-waffle .waffle-card__flag--entries .waffle-pill--entries {
		min-height: 26px;
		padding: 4px 9px;
		font-size: 11px;
	}

	.waffle-card.is-waffle .waffle-card__flag--free {
		top: 40px;
		left: 10px;
		min-height: 22px;
		padding: 4px 8px;
		font-size: 9px;
	}

	.tcgw-wishlist-overlay {
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
	}

	.tcgw-wishlist-overlay svg {
		width: 14px;
		height: 14px;
	}
}


/* =========================================================
   v132 my account table horizontal scroll fix
   ========================================================= */
.woocommerce-account .tcgw-account-table-scroll {
	width: 100% !important;
	max-width: 100% !important;
	overflow-x: auto !important;
	overflow-y: hidden !important;
	-webkit-overflow-scrolling: touch !important;
	touch-action: pan-x pan-y !important;
	overscroll-behavior-x: contain !important;
	padding-bottom: 4px !important;
}

.woocommerce-account .tcgw-account-table-scroll > table.shop_table,
.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive,
.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders,
.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table {
	min-width: 720px !important;
}

@media (max-width: 767px) {
	.woocommerce-account .tcgw-account-table-scroll {
		display: block !important;
		position: relative !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.woocommerce-account .tcgw-account-table-scroll > table.shop_table,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table {
		display: table !important;
		width: max-content !important;
		min-width: 720px !important;
		border-collapse: collapse !important;
		white-space: nowrap !important;
	}

	.woocommerce-account .tcgw-account-table-scroll > table.shop_table thead,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive thead,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders thead,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table thead {
		display: table-header-group !important;
	}

	.woocommerce-account .tcgw-account-table-scroll > table.shop_table tbody,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive tbody,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders tbody,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table tbody {
		display: table-row-group !important;
	}

	.woocommerce-account .tcgw-account-table-scroll > table.shop_table tr,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive tr,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders tr,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table tr {
		display: table-row !important;
	}

	.woocommerce-account .tcgw-account-table-scroll > table.shop_table th,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table td,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive th,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive td,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders th,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders td,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table th,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table td {
		display: table-cell !important;
		float: none !important;
		width: auto !important;
		min-width: 110px !important;
		white-space: nowrap !important;
		vertical-align: middle !important;
	}

	.woocommerce-account .tcgw-account-table-scroll > table.shop_table td::before,
	.woocommerce-account .tcgw-account-table-scroll > table.shop_table_responsive td::before,
	.woocommerce-account .tcgw-account-table-scroll > table.my_account_orders td::before,
	.woocommerce-account .tcgw-account-table-scroll > table.woocommerce-table td::before {
		content: none !important;
		display: none !important;
	}
}


/* v145: archive badge stack replaces wishlist heart */
.waffle-card__badge-stack {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 7;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	max-width: calc(100% - 24px);
	pointer-events: none;
}

.waffle-card__archive-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	padding: 4px 8px;
	border-radius: 999px;
	background: rgba(13,19,32,.92);
	border: 1px solid rgba(245,191,59,.34);
	box-shadow: 0 8px 20px rgba(0,0,0,.24);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #f7f2dd;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
	line-height: 1;
	white-space: nowrap;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.waffle-card .tcgw-wishlist-overlay {
	display: none !important;
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__badge-stack,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__badge-stack {
	top: 6px;
	right: 6px;
	gap: 4px;
	max-width: calc(100% - 12px);
}

.elementor-widget-wd_products .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__archive-badge,
.wd-products-element .products.wd-products.grid-columns-1 > li.tcgw-archive-card-item > .waffle-card .waffle-card__archive-badge {
	min-height: 18px;
	padding: 3px 7px;
	font-size: 8px;
}

@media (max-width: 640px) {
	.waffle-card__badge-stack {
		top: 10px;
		right: 10px;
		gap: 5px;
		max-width: calc(100% - 20px);
	}

	.waffle-card__archive-badge {
		min-height: 20px;
		padding: 4px 7px;
		font-size: 8px;
	}
}

/* Account entries lobby pass */
.tcgw-entry-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px;
}

.tcgw-entry-filters__tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 14px;
	background: linear-gradient(180deg,#1f232b 0%, #181b22 100%);
	border: 1px solid rgba(255,255,255,.07);
	text-decoration: none;
	color: #d9e3ff;
	font-weight: 700;
	font-size: 13px;
}

.tcgw-entry-filters__tab strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 7px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	color: #fff;
	font-size: 11px;
}

.tcgw-entry-filters__tab.is-active {
	background: linear-gradient(135deg,#5f48ff 0%, #4330d2 100%);
	border-color: transparent;
	box-shadow: 0 12px 28px rgba(95,72,255,.22);
	color: #fff;
}

.tcgw-entries-table .tcgw-entry-row__waffle-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 240px;
}

.tcgw-entries-table .tcgw-entry-row__thumb {
	width: 58px;
	height: 72px;
	flex: 0 0 58px;
	border-radius: 10px;
	overflow: hidden;
	background: #0f1218;
	border: 1px solid rgba(255,255,255,.08);
	display: block;
}

.tcgw-entries-table .tcgw-entry-row__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tcgw-entries-table .tcgw-entry-row__main {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tcgw-entries-table .tcgw-entry-row__title {
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	line-height: 1.35;
}

.tcgw-entries-table .tcgw-entry-row__title:hover {
	color: #f5bf3b;
}

.tcgw-entry-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 24px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: .02em;
	border: 1px solid rgba(255,255,255,.1);
	background: rgba(255,255,255,.06);
	color: #eef3ff;
}

.tcgw-entry-status--live {
	background: rgba(44,188,126,.12);
	border-color: rgba(44,188,126,.28);
	color: #7cf2b8;
}

.tcgw-entry-status--ending_soon,
.tcgw-entry-status--draw_pending {
	background: rgba(245,191,59,.14);
	border-color: rgba(245,191,59,.32);
	color: #ffd774;
}

.tcgw-entry-status--won {
	background: rgba(95,72,255,.18);
	border-color: rgba(95,72,255,.36);
	color: #d8ceff;
}

.tcgw-entry-status--lost {
	background: rgba(255,255,255,.08);
	border-color: rgba(255,255,255,.12);
	color: #cfd7ea;
}

.tcgw-entry-status--nearly_full {
	background: rgba(89,209,255,.14);
	border-color: rgba(89,209,255,.28);
	color: #a5efff;
}

.tcgw-entry-fillbar {
	width: 170px;
	height: 10px;
	border-radius: 999px;
	overflow: hidden;
	background: rgba(255,255,255,.08);
	margin-bottom: 8px;
}

.tcgw-entry-fillbar span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg,#59d1ff 0%, #7c5cff 100%);
}

.tcgw-entry-filltext {
	font-size: 12px;
	font-weight: 700;
	color: #dbe4ff;
}

.tcgw-entries-table .tcgw-entry-row__countdown {
	white-space: normal !important;
	min-width: 150px;
}

.tcgw-entries-table .tcgw-entry-row__countdown small {
	display: block;
	margin-top: 4px;
	font-size: 11px;
	color: #9fb0d3 !important;
}

.tcgw-entries-table .tcgw-entry-row__numbers {
	font-weight: 700;
	color: #fff;
}

.tcgw-entries-table .tcgw-entry-row__order a {
	opacity: .8;
}

@media (max-width: 767px) {
	.tcgw-entry-filters {
		gap: 8px;
	}

	.tcgw-entry-filters__tab {
		padding: 8px 12px;
		font-size: 12px;
	}

	.tcgw-entries-table .tcgw-entry-row__thumb {
		width: 46px;
		height: 60px;
		flex-basis: 46px;
	}

	.tcgw-entry-fillbar {
		width: 120px;
	}
}


/* Lobby pass polish */
.tcgw-entry-filters{margin-bottom:16px;}
.tcgw-entries-table .tcgw-entry-row__main{display:flex;flex-direction:column;gap:8px;min-width:0;}
.tcgw-entries-table .tcgw-entry-row__title{font-size:15px;font-weight:800;line-height:1.2;}
.tcgw-entries-table .tcgw-entry-row__thumb img{width:64px;height:64px;object-fit:cover;border-radius:14px;background:#0f141b;}
.tcgw-entries-table .tcgw-entry-row__numbers{font-weight:700;letter-spacing:.02em;}


/* Mobile cleanup pass for entries lobby */
@media (max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 7px !important;
    margin: 0 0 12px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 9px !important;
    border-radius: 11px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab strong {
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    font-size: 9px !important;
    border-radius: 999px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tbody,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table {
    min-width: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
    background: transparent !important;
    overflow: visible !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table thead {
    display: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tbody {
    display: grid !important;
    gap: 8px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr {
    background: linear-gradient(180deg,#161a21 0%, #11151b 100%) !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.16) !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    padding: 0 11px 8px !important;
    border: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__waffle {
    padding: 11px !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
    margin-bottom: 8px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__waffle-wrap {
    align-items: center !important;
    gap: 9px !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb {
    width: 44px !important;
    height: 56px !important;
    flex: 0 0 44px !important;
    border-radius: 10px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb img {
    width: 44px !important;
    height: 56px !important;
    border-radius: 10px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__main {
    gap: 4px !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__title {
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .tcgw-entry-status {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 9px !important;
    letter-spacing: .02em !important;
    border-radius: 999px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order {
    display: grid !important;
    grid-template-columns: 74px minmax(0,1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order::before {
    display: block !important;
    content: '' !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
    color: #8f9aba !important;
    padding-top: 1px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers::before { content: 'Numbers' !important; }
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill::before { content: 'Fill' !important; }
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown::before { content: 'Status' !important; }
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order::before { content: 'Order' !important; }

  .tcgw-entries-table .tcgw-entry-row__numbers,
  .tcgw-entries-table .tcgw-entry-row__countdown,
  .tcgw-entries-table .tcgw-entry-row__order,
  .tcgw-entries-table .tcgw-entry-filltext {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__numbers {
    font-weight: 600 !important;
    word-break: break-word !important;
  }

  .tcgw-entry-fillbar {
    width: 100% !important;
    max-width: 122px !important;
    height: 6px !important;
    margin-bottom: 5px !important;
    border-radius: 999px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown {
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown small {
    margin-top: 2px !important;
    font-size: 10px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__order a {
    font-size: 12px !important;
  }
}


/* Phase 6: tighter mobile entries cleanup */
@media (max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content > h3:first-child {
    font-size: 19px !important;
    line-height: 1.15 !important;
    margin: 0 0 12px !important;
    letter-spacing: -.01em !important;
  }

  body.woocommerce-account .tcgw-account-table-scroll--entries {
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  body.woocommerce-account .tcgw-account-table-scroll--entries > table.tcgw-entries-table {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
    margin: 0 0 12px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab {
    min-height: 40px !important;
    padding: 8px 10px !important;
    border-radius: 11px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab span {
    display: block !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab strong {
    min-width: 20px !important;
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
    font-size: 9px !important;
    flex: 0 0 20px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table {
    border-spacing: 0 8px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr {
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,.16) !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    padding: 0 10px 9px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__waffle {
    padding: 10px !important;
    margin-bottom: 8px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__waffle-wrap {
    gap: 9px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb,
  .tcgw-entries-table .tcgw-entry-row__thumb img {
    width: 42px !important;
    height: 54px !important;
    flex-basis: 42px !important;
    border-radius: 10px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__main {
    gap: 5px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__title {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.22 !important;
  }

  .tcgw-entry-status {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 9px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order {
    grid-template-columns: 64px minmax(0,1fr) !important;
    gap: 8px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order::before {
    font-size: 9px !important;
    letter-spacing: .05em !important;
  }

  .tcgw-entries-table .tcgw-entry-row__numbers,
  .tcgw-entries-table .tcgw-entry-row__countdown,
  .tcgw-entries-table .tcgw-entry-row__order,
  .tcgw-entries-table .tcgw-entry-filltext {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .tcgw-entry-fillbar {
    max-width: 112px !important;
    height: 7px !important;
    margin-bottom: 5px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown small {
    font-size: 9px !important;
    line-height: 1.25 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__order a {
    font-size: 11px !important;
  }
}

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order a {
    font-size: 11px !important;
    font-weight: 600 !important;
  }
}

@media (max-width: 420px) {
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab {
    padding: 8px 10px !important;
  }
}

/* Phase 9: final mobile polish for account entries */
@media (max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content > h3:first-child {
    font-size: 18px !important;
    line-height: 1.15 !important;
    margin: 0 0 10px !important;
    letter-spacing: -.01em !important;
  }

  body.woocommerce-account .tcgw-account-table-scroll--entries,
  body.woocommerce-account .tcgw-account-table-scroll--entries > table.tcgw-entries-table {
    overflow: visible !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin: 0 0 12px !important;
    align-items: stretch !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 38px !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab span {
    display: block !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab strong {
    min-width: 18px !important;
    width: 18px !important;
    height: 18px !important;
    flex: 0 0 18px !important;
    padding: 0 !important;
    font-size: 9px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tbody,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table {
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
    background: transparent !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table thead {
    display: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tbody {
    display: grid !important;
    gap: 8px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr {
    background: linear-gradient(180deg,#141922 0%, #10141b 100%) !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.14) !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    padding: 0 10px 8px !important;
    border: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__waffle {
    padding: 10px !important;
    margin-bottom: 4px !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
  }

  .tcgw-entries-table .tcgw-entry-row__waffle-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb,
  .tcgw-entries-table .tcgw-entry-row__thumb img {
    width: 40px !important;
    height: 52px !important;
    flex: 0 0 40px !important;
    border-radius: 10px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__main {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__title {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .tcgw-entry-status {
    min-height: 19px !important;
    padding: 3px 7px !important;
    font-size: 9px !important;
    font-weight: 800 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order {
    display: grid !important;
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order::before {
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
    color: #8895b7 !important;
    padding-top: 1px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__numbers,
  .tcgw-entries-table .tcgw-entry-row__countdown,
  .tcgw-entries-table .tcgw-entry-row__order,
  .tcgw-entries-table .tcgw-entry-filltext {
    font-size: 11px !important;
    line-height: 1.28 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__numbers {
    font-weight: 600 !important;
    word-break: break-word !important;
  }

  .tcgw-entry-fillbar {
    width: 100% !important;
    max-width: 108px !important;
    height: 6px !important;
    margin-bottom: 4px !important;
    border-radius: 999px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown {
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown small {
    margin-top: 2px !important;
    font-size: 9px !important;
    line-height: 1.25 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__order a {
    font-size: 11px !important;
    font-weight: 600 !important;
  }
}

@media (max-width: 420px) {
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab {
    padding: 8px 9px !important;
    font-size: 9px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab strong {
    min-width: 17px !important;
    width: 17px !important;
    height: 17px !important;
    font-size: 8px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order {
    grid-template-columns: 54px minmax(0, 1fr) !important;
    gap: 7px !important;
  }
}

/* =========================================
   Final entries cleanup - desktop + mobile
   ========================================= */
@media (min-width: 1025px) {
  .tcgw-entry-filters {
    gap: 8px !important;
    margin-bottom: 14px !important;
  }

  .tcgw-entry-filters__tab {
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
  }

  .tcgw-entry-filters__tab strong {
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    font-size: 10px !important;
    line-height: 18px !important;
  }

  .tcgw-entries-table thead th {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
    color: #8f9bb0 !important;
    padding: 10px 12px !important;
  }

  .tcgw-entries-table tbody td {
    padding: 10px 12px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    vertical-align: middle !important;
  }

  .tcgw-entries-table .tcgw-entry-row__waffle-wrap {
    gap: 10px !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb {
    width: 44px !important;
    height: 60px !important;
    flex: 0 0 44px !important;
    border-radius: 8px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb img {
    width: 44px !important;
    height: 60px !important;
    border-radius: 8px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__main {
    gap: 6px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__title {
    font-size: 14px !important;
    font-weight: 650 !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
  }

  .tcgw-entry-status {
    min-height: 22px !important;
    padding: 0 8px !important;
    font-size: 10px !important;
    letter-spacing: .04em !important;
  }

  .tcgw-entry-fillbar {
    width: 154px !important;
    height: 8px !important;
    margin-bottom: 5px !important;
  }

  .tcgw-entry-filltext,
  .tcgw-entries-table .tcgw-entry-row__numbers,
  .tcgw-entries-table .tcgw-entry-row__countdown,
  .tcgw-entries-table .tcgw-entry-row__countdown small {
    font-size: 12px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__order,
  .tcgw-entries-table .tcgw-entry-row__order a {
    font-size: 11px !important;
    color: #8290a7 !important;
  }
}

@media (max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 8px !important;
    margin: 0 0 12px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab {
    min-height: 38px !important;
    padding: 0 10px !important;
    border-radius: 11px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    box-shadow: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-entry-filters__tab strong {
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    font-size: 9px !important;
    line-height: 18px !important;
  }

  body.woocommerce-account .tcgw-account-table-scroll--entries,
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries {
    overflow: visible !important;
    padding-bottom: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tbody,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    float: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table {
    min-width: 0 !important;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
    overflow: visible !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table thead {
    display: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tbody {
    display: grid !important;
    gap: 8px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table tr {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.06) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg,#141821 0%, #10141b 100%) !important;
    box-shadow: none !important;
    overflow: hidden !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td {
    padding: 0 10px 8px !important;
    margin: 0 !important;
    border: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td::before {
    content: none !important;
    display: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__waffle {
    padding: 10px !important;
    margin-bottom: 6px !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
  }

  .tcgw-entries-table .tcgw-entry-row__waffle-wrap {
    gap: 9px !important;
    align-items: flex-start !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb {
    width: 42px !important;
    height: 58px !important;
    flex: 0 0 42px !important;
    border-radius: 9px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__thumb img {
    width: 42px !important;
    height: 58px !important;
    border-radius: 9px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__main {
    gap: 4px !important;
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__title {
    font-size: 12px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
  }

  .tcgw-entry-status {
    min-height: 19px !important;
    padding: 0 7px !important;
    font-size: 9px !important;
    letter-spacing: .03em !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order {
    display: grid !important;
    grid-template-columns: 64px minmax(0,1fr) !important;
    gap: 8px !important;
    align-items: start !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown::before,
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order::before {
    display: block !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
    color: #8e9ab4 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__numbers::before { content: 'Numbers' !important; }
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__fill::before { content: 'Fill' !important; }
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__countdown::before { content: 'Ends' !important; }
  body.woocommerce-account .woocommerce-MyAccount-content table.tcgw-entries-table td.tcgw-entry-row__order::before { content: 'Order' !important; }

  .tcgw-entries-table .tcgw-entry-row__numbers,
  .tcgw-entries-table .tcgw-entry-row__countdown,
  .tcgw-entries-table .tcgw-entry-row__order,
  .tcgw-entries-table .tcgw-entry-filltext {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__numbers {
    font-weight: 600 !important;
    word-break: break-word !important;
  }

  .tcgw-entry-fillbar {
    width: 100% !important;
    max-width: 120px !important;
    height: 6px !important;
    margin-bottom: 4px !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown {
    min-width: 0 !important;
  }

  .tcgw-entries-table .tcgw-entry-row__countdown small,
  .tcgw-entries-table .tcgw-entry-row__order a {
    font-size: 10px !important;
  }
}

/* =========================================================
   v146 entries tab mobile scroll hard-fix
   Keeps the real table layout inside the dedicated scroll wrapper
   so the My Account > Entries table does not bunch right or break.
   ========================================================= */
@media (max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-x pan-y !important;
    overscroll-behavior-x: contain !important;
    padding: 0 0 8px !important;
    margin: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table {
    display: table !important;
    width: max-content !important;
    min-width: 760px !important;
    max-width: none !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    table-layout: auto !important;
    white-space: normal !important;
    overflow: visible !important;
    margin: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead {
    display: table-header-group !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody {
    display: table-row-group !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tr {
    display: table-row !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table th,
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td {
    display: table-cell !important;
    float: none !important;
    width: auto !important;
    min-width: 120px !important;
    max-width: none !important;
    padding: 14px 12px !important;
    vertical-align: middle !important;
    white-space: normal !important;
    border-top: 1px solid rgba(255,255,255,.08) !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th {
    position: sticky !important;
    top: 0 !important;
    z-index: 2 !important;
    background: #11151d !important;
    white-space: nowrap !important;
    border-top: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td::before {
    content: none !important;
    display: none !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__waffle {
    min-width: 260px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__numbers {
    min-width: 170px !important;
    word-break: break-word !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill {
    min-width: 150px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__countdown {
    min-width: 170px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__order {
    min-width: 96px !important;
    white-space: nowrap !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-row__waffle-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-row__thumb {
    width: 48px !important;
    height: 64px !important;
    flex: 0 0 48px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-row__thumb img {
    width: 48px !important;
    height: 64px !important;
    object-fit: cover !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-row__main {
    min-width: 0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-row__title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.25 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-fillbar {
    max-width: 130px !important;
  }
}

/* Final live-safe fixes: entries table first column + Woo responsive ghost label */
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__waffle::before,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill::before {
  content: none !important;
  display: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table th:first-child,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill {
  min-width: 150px !important;
  white-space: nowrap !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill {
  padding-left: 12px !important;
}


/* =========================================================
   Live-safe normalization layer (v159)
   Purpose: unify account entries table + pop-out controls
   without deleting older legacy blocks that may still be relied on.
   This final layer wins by specificity and source order.
   ========================================================= */

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table {
  width: 100% !important;
  min-width: 940px !important;
  table-layout: fixed !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody td {
  box-sizing: border-box !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table th:first-child,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill {
  width: 160px !important;
  min-width: 160px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__waffle {
  width: 36% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__numbers {
  width: 18% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__countdown {
  width: 20% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__order {
  width: 90px !important;
  min-width: 90px !important;
  text-align: right !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill * {
  white-space: nowrap !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries .tcgw-entry-fillbar {
  width: 100% !important;
  max-width: 130px !important;
}

/* smaller, tighter side-panel tabs/CTA controls */
.tcgw-wallet-side-tab__tabs button,
.tcgw-wallet-side-tab__tab,
.tcgw-wallet-side-tab button.tcgw-wallet-side-tab__tab {
  min-height: 30px !important;
  padding: 6px 12px !important;
  border-radius: 10px !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
}

.tcgw-wallet-side-tab__footer .button,
.tcgw-wallet-side-tab__footer a.button,
.tcgw-wallet-side-tab__actions .button,
.tcgw-wallet-side-tab__actions a.button {
  min-height: 34px !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  font-size: 12px !important;
}

@media (max-width: 767px) {
  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table {
    min-width: 860px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__waffle {
    width: 300px !important;
    min-width: 300px !important;
  }
}


/* Final hotfix: remove legacy thumb column if older endpoint markup still appears on live account table */
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-thumb-cell,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table th.tcgw-entry-thumb-head,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table .tcgw-entry-thumb-placeholder {
  display: none !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-row__fill,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table th:first-child:not(.tcgw-entry-thumb-head) {
  position: relative;
  left: 0;
}


/* v161 targeted hotfix: align entries headers to visible columns and collapse any ghost thumb column */
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th.tcgw-entry-head--fill,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody td.tcgw-entry-row__fill {
  width: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th.tcgw-entry-head--waffle,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody td.tcgw-entry-row__waffle {
  width: 36% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th.tcgw-entry-head--numbers,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody td.tcgw-entry-row__numbers {
  width: 18% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th.tcgw-entry-head--countdown,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody td.tcgw-entry-row__countdown {
  width: 20% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table thead th.tcgw-entry-head--order,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table tbody td.tcgw-entry-row__order {
  width: 90px !important;
  min-width: 90px !important;
  max-width: 90px !important;
  text-align: right !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table th.tcgw-entry-thumb-head,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table td.tcgw-entry-thumb-cell,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table .tcgw-entry-thumb-placeholder,
body.woocommerce-account .woocommerce-MyAccount-content .tcgw-account-table-scroll--entries > table.tcgw-entries-table col.tcgw-entry-thumb-col {
  display: none !important;
  visibility: collapse !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
}
