/**
 * GPBid storefront UI v1 — shared design tokens for PC + mobile web.
 * Live room / console are excluded via body class guards where needed.
 */
:root {
	--gpbid-brand: #ffcc00;
	--gpbid-brand-hover: #e6b800;
	--gpbid-live: #d0021b;
	--gpbid-accent: #111111;
	--gpbid-text: #1a1a1a;
	--gpbid-text-muted: #666666;
	--gpbid-text-soft: #888888;
	--gpbid-border: #eaeaea;
	--gpbid-bg: #f7f7f8;
	--gpbid-surface: #ffffff;
	--gpbid-radius-sm: 8px;
	--gpbid-radius-md: 12px;
	--gpbid-radius-lg: 16px;
	--gpbid-radius-pill: 999px;
	--gpbid-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	--gpbid-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
	--gpbid-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--gpbid-primary-btn: #111111;
	--gpbid-primary-btn-hover: #333333;
	--gpbid-primary-btn-text: #ffffff;
	--gpbid-secondary-btn-bg: #ffffff;
	--gpbid-secondary-btn-border: #dddddd;
	--gpbid-secondary-btn-text: var(--gpbid-text);
}

body.gpbid-ui-v1 {
	font-family: var(--gpbid-font);
	color: var(--gpbid-text);
	-webkit-font-smoothing: antialiased;
	--mf-background-primary-color: var(--gpbid-primary-btn);
	--mf-background-primary-text-color: var(--gpbid-primary-btn-text);
	--mf-primary-color: var(--gpbid-accent);
	--mf-border-primary-color: var(--gpbid-accent);
}

body.gpbid-ui-v1 .site-content {
	background-color: var(--gpbid-bg);
}

/* —— Live strip (shared show cards, homepage / shop) —— */
.gpbid-shows-wrap.gpbid-live-strip {
	box-sizing: border-box;
	max-width: 100%;
	width: 100%;
	min-width: 0;
	margin: 0 0 20px;
	padding: 14px 0 4px;
	overflow: hidden;
}

.gpbid-shows-wrap.gpbid-live-strip .gpbid-live-strip__track {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
}

.gpbid-shows-wrap.gpbid-live-strip .gpbid-shows-list {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x;
}

.gpbid-shows-wrap.gpbid-live-strip .gpbid-live-strip__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	padding: 0 2px;
}

.gpbid-shows-wrap.gpbid-live-strip .gpbid-live-strip__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--gpbid-text);
	letter-spacing: -0.02em;
}

.gpbid-shows-wrap.gpbid-live-strip .gpbid-live-strip__link {
	font-size: 13px;
	font-weight: 600;
	color: var(--gpbid-text-muted);
	text-decoration: none;
	white-space: nowrap;
}

.gpbid-shows-wrap.gpbid-live-strip .gpbid-live-strip__link:hover {
	color: var(--gpbid-accent);
}

/* Elementor 父级 flex 子项默认 min-width:auto，会随横滑内容撑开整页 */
body.gpbid-ui-v1 .elementor-widget-martfury-products-grid .elementor-widget-container,
body.gpbid-ui-v1 .elementor-widget-martfury-products-carousel .elementor-widget-container {
	max-width: 100%;
	min-width: 0;
	overflow: hidden;
}

body.gpbid-ui-v1 .elementor-widget-martfury-products-grid .gpbid-shows-wrap.gpbid-live-strip,
body.gpbid-ui-v1 .elementor-widget-martfury-products-carousel .gpbid-shows-wrap.gpbid-live-strip {
	max-width: 100%;
}

body.gpbid-ui-v1 .elementor-element:has(> .elementor-widget-container > .gpbid-live-strip),
body.gpbid-ui-v1 .elementor-element:has(> .elementor-widget-container .gpbid-live-strip) {
	min-width: 0;
	max-width: 100%;
}

@media (min-width: 768px) {
	.gpbid-shows-wrap.gpbid-live-strip {
		margin-bottom: 28px;
	}

	.gpbid-shows-wrap.gpbid-live-strip .gpbid-live-strip__title {
		font-size: 18px;
	}
}

/* —— Homepage mobile: live strip + Elementor products grid —— */
@media (max-width: 767px) {
	body.gpbid-ui-v1 .elementor-widget-martfury-products-grid .mf-products-grid {
		margin-top: 0;
	}

	/* Blank Elementor title — keep View All right-aligned above product grid */
	body.gpbid-ui-v1 .mf-products-grid .cat-header {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-end;
		margin: 0 0 8px;
		padding: 0 0 6px;
		border-bottom: none;
		min-height: 0;
	}

	body.gpbid-ui-v1 .mf-products-grid .cat-header h2.cat-title {
		display: none;
	}

	body.gpbid-ui-v1 .mf-products-grid .cat-header .extra-links {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	body.gpbid-ui-v1 .mf-products-grid .cat-header .extra-links li {
		padding: 0;
		margin: 0;
	}

	body.gpbid-ui-v1 .mf-products-grid .cat-header .view-all-link a {
		font-size: 13px;
		font-weight: 600;
		color: var(--gpbid-text-muted);
		text-decoration: none;
	}

	body.gpbid-ui-v1 .mf-products-grid .products-content {
		padding-top: 0;
	}

	body.gpbid-ui-v1 .mf-products-grid .products-content > .woocommerce {
		margin-top: 0;
	}

	body.gpbid-ui-v1 .gpbid-shows-wrap.gpbid-live-strip + .mf-products-grid .cat-header {
		margin-top: 2px;
	}
}

/* —— Product grid (homepage / shop) —— */
body.gpbid-ui-v1 ul.products li.product .product-inner {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0 !important;
	margin-bottom: 0 !important;
	box-shadow: none;
	transition: none;
	display: flex;
	flex-direction: column;
	height: 100%;
}

body.gpbid-ui-v1 ul.products li.product .mf-product-details {
	padding: 10px 12px 14px !important;
	box-sizing: border-box;
	flex: 1;
	display: flex;
	flex-direction: column;
}

body.gpbid-ui-v1 ul.products li.product {
	box-sizing: border-box;
}

/* Card shell lives on li.product (functions.php); keep inner flush, details padded */
body.gpbid-ui-v1 ul.products li.product .gpbid-loop-bid-btn,
body.gpbid-ui-v1 ul.products li.product .gpbid-loop-giveaway-btn,
body.gpbid-ui-v1 ul.products li.product .gpbid-loop-bin-btn,
body.gpbid-ui-v1 ul.products li.product .add_to_cart_button,
body.gpbid-ui-v1 ul.products li.product .added_to_cart,
body.gpbid-ui-v1 ul.products li.product .mf-product-details > .button {
	margin-bottom: 0 !important;
}

/* Grid gutter — Martfury columns-* default to 0 horizontal gap */
@media (min-width: 992px) {
	body.gpbid-ui-v1 ul.products.columns-3:not(.slick-slider),
	body.gpbid-ui-v1 ul.products.columns-4:not(.slick-slider),
	body.gpbid-ui-v1 ul.products.columns-5:not(.slick-slider),
	body.gpbid-ui-v1 ul.products.columns-6:not(.slick-slider) {
		display: grid !important;
		gap: 16px !important;
		margin: 0 !important;
		float: none !important;
	}

	body.gpbid-ui-v1 ul.products.columns-3:not(.slick-slider) {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	body.gpbid-ui-v1 ul.products.columns-4:not(.slick-slider) {
		grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	}

	body.gpbid-ui-v1 ul.products.columns-5:not(.slick-slider) {
		grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
	}

	body.gpbid-ui-v1 ul.products.columns-6:not(.slick-slider) {
		grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
	}

	body.gpbid-ui-v1 ul.products.columns-3:not(.slick-slider) li.product,
	body.gpbid-ui-v1 ul.products.columns-4:not(.slick-slider) li.product,
	body.gpbid-ui-v1 ul.products.columns-5:not(.slick-slider) li.product,
	body.gpbid-ui-v1 ul.products.columns-6:not(.slick-slider) li.product {
		width: auto !important;
		margin: 0 !important;
		float: none !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

body.gpbid-ui-v1 ul.products li.product .product-inner:hover {
	border-color: transparent;
	box-shadow: none;
	transform: none;
}

body.gpbid-ui-v1 ul.products li.product .woocommerce-loop-product__title,
body.gpbid-ui-v1 ul.products li.product h2 {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--gpbid-text);
}

body.gpbid-ui-v1 ul.products li.product .price {
	font-size: 15px;
	font-weight: 700;
	color: var(--gpbid-accent);
}

body.gpbid-ui-v1 ul.products li.product .price del {
	color: var(--gpbid-text-soft);
	font-weight: 400;
}

body.gpbid-ui-v1 .gpbid-loop-vendor-row {
	font-size: 12px;
	color: var(--gpbid-text-muted);
	margin-bottom: 4px;
}

body.gpbid-ui-v1 .gpbid-auction-badge,
body.gpbid-ui-v1 .gpbid-giveaway-badge,
body.gpbid-ui-v1 .gpbid-bin-badge {
	border-radius: var(--gpbid-radius-pill);
	font-weight: 700;
	letter-spacing: 0.02em;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* —— Buttons —— */
body.gpbid-ui-v1 .woocommerce a.button,
body.gpbid-ui-v1 .woocommerce button.button,
body.gpbid-ui-v1 .woocommerce #respond input#submit,
body.gpbid-ui-v1 .woocommerce a.button.alt,
body.gpbid-ui-v1 .woocommerce button.button.alt {
	border-radius: var(--gpbid-radius-pill);
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: 0 22px;
	box-sizing: border-box;
	vertical-align: middle;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

body.gpbid-ui-v1 .woocommerce input.button {
	border-radius: var(--gpbid-radius-pill);
	font-weight: 600;
	font-size: 14px;
	height: 44px;
	line-height: 44px;
	padding: 0 22px;
	box-sizing: border-box;
	vertical-align: middle;
	transition: background-color 0.2s ease, transform 0.15s ease;
}

body.gpbid-ui-v1 .woocommerce a.button.alt,
body.gpbid-ui-v1 .woocommerce a.checkout-button,
body.gpbid-ui-v1 .woocommerce button.button.alt,
body.gpbid-ui-v1 .woocommerce input.button.alt,
body.gpbid-ui-v1 .single_add_to_cart_button,
body.gpbid-ui-v1 ul.products li.product .add_to_cart_button,
body.gpbid-ui-v1 ul.products li.product .added_to_cart,
body.gpbid-ui-v1.woocommerce-checkout #place_order,
body.gpbid-ui-v1 .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout {
	background-color: var(--gpbid-primary-btn) !important;
	color: var(--gpbid-primary-btn-text) !important;
	border: none !important;
}

body.gpbid-ui-v1 .woocommerce a.button.alt:hover,
body.gpbid-ui-v1 .woocommerce a.checkout-button:hover,
body.gpbid-ui-v1 .woocommerce button.button.alt:hover,
body.gpbid-ui-v1 .woocommerce input.button.alt:hover,
body.gpbid-ui-v1 .single_add_to_cart_button:hover,
body.gpbid-ui-v1 ul.products li.product .add_to_cart_button:hover,
body.gpbid-ui-v1 ul.products li.product .added_to_cart:hover,
body.gpbid-ui-v1.woocommerce-checkout #place_order:hover,
body.gpbid-ui-v1 .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button.checkout:hover {
	background-color: var(--gpbid-primary-btn-hover) !important;
	color: var(--gpbid-primary-btn-text) !important;
}

/* Secondary: outline pill (coupon, update cart, shipping, view cart) */
body.gpbid-ui-v1 .woocommerce a.button:not(.alt):not(.checkout-button):not(.single_add_to_cart_button):not(.add_to_cart_button):not(.added_to_cart):not(.gpbid-loop-bid-btn):not(.gpbid-loop-giveaway-btn):not(.gpbid-loop-bin-btn),
body.gpbid-ui-v1 .woocommerce button.button:not(.alt),
body.gpbid-ui-v1 .woocommerce input.button:not(.alt),
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart .btn-update,
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart button[name="update_cart"],
body.gpbid-ui-v1 .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout) {
	background-color: var(--gpbid-secondary-btn-bg) !important;
	color: var(--gpbid-secondary-btn-text) !important;
	border: 1px solid var(--gpbid-secondary-btn-border) !important;
}

body.gpbid-ui-v1 .woocommerce a.button:not(.alt):not(.checkout-button):hover,
body.gpbid-ui-v1 .woocommerce button.button:not(.alt):hover,
body.gpbid-ui-v1 .woocommerce input.button:not(.alt):hover,
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart .btn-update:hover,
body.gpbid-ui-v1 .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout):hover {
	background-color: var(--gpbid-bg) !important;
	border-color: #cccccc !important;
}

body.gpbid-ui-v1 .gpbid-loop-bin-btn,
body.gpbid-ui-v1 .gpbid-loop-bid-btn {
	border-radius: var(--gpbid-radius-pill) !important;
	font-weight: 700 !important;
}

/* Martfury theme overrides fixed height/line-height — force vertical centering */
body.gpbid-ui-v1 .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button,
body.gpbid-ui-v1 .site-header .mini-cart-content .woocommerce-mini-cart__buttons .button,
body.gpbid-ui-v1 .mf-cart-mobile .woocommerce-mini-cart__buttons .button,
body.gpbid-ui-v1.woocommerce-cart .woocommerce .shipping-calculator-form .button,
body.gpbid-ui-v1.woocommerce-cart .woocommerce .wc-proceed-to-checkout .checkout-button,
body.gpbid-ui-v1.woocommerce-checkout .woocommerce .checkout-button,
body.gpbid-ui-v1.woocommerce-checkout #place_order {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	min-height: 44px !important;
	height: auto !important;
	padding: 0 22px !important;
	box-sizing: border-box !important;
}

body.gpbid-ui-v1.woocommerce-cart .woocommerce .coupon input.button,
body.gpbid-ui-v1.woocommerce-checkout .woocommerce input.button {
	height: 44px !important;
	line-height: 44px !important;
	padding: 0 22px !important;
}

body.gpbid-ui-v1.woocommerce-cart .woocommerce .wc-proceed-to-checkout .checkout-button {
	width: 100%;
	display: flex !important;
}

body.gpbid-ui-v1 .mini-cart-button-lines .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
	width: 100%;
	margin-left: 0 !important;
}

/* —— Header search (charcoal submit, pill bar) —— */
body.gpbid-ui-v1 .site-header .product-extra-search .psearch-content {
	align-items: stretch;
	border: 1px solid var(--gpbid-border);
	border-radius: var(--gpbid-radius-pill);
	overflow: hidden;
	background: var(--gpbid-surface);
}

body.gpbid-ui-v1 .site-header .product-extra-search .product-cat {
	height: 44px;
	line-height: 44px;
}

body.gpbid-ui-v1 .site-header .product-extra-search .search-field {
	float: none;
	flex: 1;
	min-width: 0;
	height: 44px;
	line-height: 1.4;
	border: none !important;
	background: transparent;
	padding-left: 16px;
	padding-right: 12px;
	box-shadow: none;
}

body.gpbid-ui-v1 .site-header .product-extra-search .search-field:focus {
	outline: none;
	box-shadow: none;
}

body.gpbid-ui-v1 .site-header .product-extra-search .search-submit {
	float: none;
	flex-shrink: 0;
	min-width: 96px;
	height: 44px;
	min-height: 44px;
	line-height: 1;
	padding: 0 20px;
	border: none;
	border-radius: 0;
	font-weight: 700;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--gpbid-primary-btn) !important;
	color: var(--gpbid-primary-btn-text) !important;
	transition: background-color 0.2s ease;
}

body.gpbid-ui-v1 .site-header .product-extra-search .search-submit:hover {
	background-color: var(--gpbid-primary-btn-hover) !important;
	color: var(--gpbid-primary-btn-text) !important;
}

/* Cart: Back To Shop — secondary ghost, not legacy primary block */
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart .btn-shop,
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.checkout .btn-shop {
	background-color: var(--gpbid-secondary-btn-bg) !important;
	color: var(--gpbid-secondary-btn-text) !important;
	border: 1px solid var(--gpbid-secondary-btn-border) !important;
	border-radius: var(--gpbid-radius-pill) !important;
	height: 44px !important;
	min-height: 44px !important;
	line-height: 1 !important;
	padding: 0 20px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	box-sizing: border-box !important;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart .btn-shop:hover,
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.checkout .btn-shop:hover {
	background-color: var(--gpbid-bg) !important;
	border-color: #cccccc !important;
	color: var(--gpbid-text) !important;
}

body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart .btn-shop i,
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.checkout .btn-shop i {
	transform: none !important;
	padding-right: 6px !important;
}

body.gpbid-ui-v1.woocommerce-cart .woocommerce table.cart .btn-update,
body.gpbid-ui-v1.woocommerce-cart .woocommerce table.checkout .btn-update {
	border-radius: var(--gpbid-radius-pill) !important;
	height: 44px !important;
	min-height: 44px !important;
	line-height: 1 !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 20px 0 44px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

/* Martfury primary utility — map legacy blue blocks to charcoal primary */
body.gpbid-ui-v1 a.mf-background-primary,
body.gpbid-ui-v1 button.mf-background-primary,
body.gpbid-ui-v1 input.mf-background-primary {
	background-color: var(--gpbid-primary-btn) !important;
	color: var(--gpbid-primary-btn-text) !important;
	border-radius: var(--gpbid-radius-pill);
}

body.gpbid-ui-v1 a.mf-background-primary:hover,
body.gpbid-ui-v1 button.mf-background-primary:hover,
body.gpbid-ui-v1 input.mf-background-primary:hover {
	background-color: var(--gpbid-primary-btn-hover) !important;
	color: var(--gpbid-primary-btn-text) !important;
}

/* —— My Account —— */
body.gpbid-ui-v1.woocommerce-account .site-content {
	background-color: var(--gpbid-bg);
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation {
	background: var(--gpbid-surface);
	border-radius: var(--gpbid-radius-md);
	border: 1px solid var(--gpbid-border);
	box-shadow: var(--gpbid-shadow);
	padding: 8px;
	margin-bottom: 20px;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
	border: none !important;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 12px 14px;
	border-radius: var(--gpbid-radius-sm);
	font-size: 14px;
	font-weight: 500;
	color: var(--gpbid-text-muted);
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	background: var(--gpbid-bg);
	color: var(--gpbid-accent);
	font-weight: 600;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-content {
	background: var(--gpbid-surface);
	border-radius: var(--gpbid-radius-md);
	border: 1px solid var(--gpbid-border);
	box-shadow: var(--gpbid-shadow);
	padding: 20px;
}

@media (min-width: 992px) {
	body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-navigation {
		padding: 12px;
	}

	body.gpbid-ui-v1.woocommerce-account .woocommerce-MyAccount-content {
		padding: 28px;
	}
}

/* Orders: card-style rows on mobile, cleaner table on desktop */
body.gpbid-ui-v1.woocommerce-account table.shop_table {
	border: none;
	border-collapse: separate;
	border-spacing: 0 10px;
}

body.gpbid-ui-v1.woocommerce-account table.shop_table thead {
	display: none;
}

body.gpbid-ui-v1.woocommerce-account table.shop_table tbody tr {
	background: var(--gpbid-bg);
	border-radius: var(--gpbid-radius-md);
	box-shadow: none;
}

body.gpbid-ui-v1.woocommerce-account table.shop_table tbody td {
	border: none !important;
	padding: 12px 14px !important;
	font-size: 14px;
	vertical-align: middle;
}

body.gpbid-ui-v1.woocommerce-account table.shop_table tbody td::before {
	font-weight: 600;
	color: var(--gpbid-text-muted);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-orders-table__cell-order-status {
	font-weight: 600;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-orders-table__cell-order-actions a {
	display: inline-block;
	margin: 4px 6px 4px 0;
	padding: 6px 14px;
	border-radius: var(--gpbid-radius-pill);
	background: var(--gpbid-accent);
	color: #fff !important;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}

body.gpbid-ui-v1.woocommerce-account .woocommerce-orders-table__cell-order-actions a:hover {
	background: var(--gpbid-primary-btn-hover);
}

@media (min-width: 768px) {
	body.gpbid-ui-v1.woocommerce-account table.shop_table thead {
		display: table-header-group;
	}

	body.gpbid-ui-v1.woocommerce-account table.shop_table thead th {
		border: none;
		background: transparent;
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.04em;
		color: var(--gpbid-text-muted);
		padding: 8px 14px;
	}

	body.gpbid-ui-v1.woocommerce-account table.shop_table tbody tr {
		background: var(--gpbid-surface);
		border: 1px solid var(--gpbid-border);
	}

	body.gpbid-ui-v1.woocommerce-account table.shop_table tbody td::before {
		display: none;
	}
}

/* —— Cart & Checkout —— */
body.gpbid-ui-v1.woocommerce-cart .site-content,
body.gpbid-ui-v1.woocommerce-checkout .site-content {
	background-color: var(--gpbid-bg) !important;
}

body.gpbid-ui-v1.woocommerce-cart .woocommerce-cart-form,
body.gpbid-ui-v1.woocommerce-cart .cart-collaterals .cart_totals,
body.gpbid-ui-v1.woocommerce-checkout form.checkout {
	background: var(--gpbid-surface);
	border-radius: var(--gpbid-radius-md);
	border: 1px solid var(--gpbid-border);
	box-shadow: var(--gpbid-shadow);
	padding: 16px;
}

body.gpbid-ui-v1.woocommerce-cart table.shop_table,
body.gpbid-ui-v1.woocommerce-checkout table.shop_table {
	border-radius: var(--gpbid-radius-sm);
	overflow: hidden;
}

body.gpbid-ui-v1.woocommerce .form-row .input-text,
body.gpbid-ui-v1.woocommerce .form-row select,
body.gpbid-ui-v1.woocommerce .select2-container .select2-choice {
	border-radius: var(--gpbid-radius-sm) !important;
	border-color: var(--gpbid-border) !important;
}

@media (max-width: 767px) {
	body.gpbid-ui-v1.woocommerce-cart .woocommerce-cart-form,
	body.gpbid-ui-v1.woocommerce-cart .cart-collaterals .cart_totals,
	body.gpbid-ui-v1.woocommerce-checkout form.checkout {
		padding: 12px;
	}
}

/* —— Single product —— */
body.gpbid-ui-v1.single-product .product .summary,
body.gpbid-ui-v1.single-product .product .woocommerce-product-gallery {
	border-radius: var(--gpbid-radius-md);
}

body.gpbid-ui-v1.single-product .product_title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

body.gpbid-ui-v1.single-product .woocommerce-tabs ul.tabs li a {
	border-radius: var(--gpbid-radius-sm) var(--gpbid-radius-sm) 0 0;
	font-weight: 600;
}

/* Pre-bid form — align input + Place Bid button */
body.gpbid-ui-v1 .gpbid-place-bid-form .gpbid-place-bid-row {
	display: flex;
	gap: 10px;
	align-items: flex-end;
}

body.gpbid-ui-v1 .gpbid-place-bid-form .gpbid-place-bid-field {
	flex: 1;
	min-width: 0;
}

body.gpbid-ui-v1 .gpbid-place-bid-form .gpbid-place-bid-field label {
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
	color: var(--gpbid-text-muted);
}

body.gpbid-ui-v1 .gpbid-place-bid-form .gpbid-place-bid-field input[type="number"] {
	width: 100%;
	height: 40px;
	line-height: 1.4;
	padding: 0 12px;
	box-sizing: border-box;
	border: 1px solid var(--gpbid-border);
	border-radius: var(--gpbid-radius-sm);
}

body.gpbid-ui-v1 .gpbid-place-bid-form .gpbid-place-bid-submit,
body.gpbid-ui-v1 .gpbid-auction-panel .button.alt,
body.gpbid-ui-v1 .gpbid-auction-panel a.button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 40px !important;
	height: 40px !important;
	line-height: 1 !important;
	padding: 0 22px !important;
	margin: 0 !important;
	flex-shrink: 0;
	box-sizing: border-box !important;
}

body.gpbid-ui-v1 .gpbid-custom-store-info {
	border-top-color: var(--gpbid-border) !important;
}

body.gpbid-ui-v1 .gpbid-custom-enquiry-wrap .wcfm_catalog_enquiry {
	border-color: var(--gpbid-accent) !important;
	border-radius: var(--gpbid-radius-pill) !important;
}

/* —— GPBid show cards (shortcode) —— */
body.gpbid-ui-v1 .gpbid-shows-wrap .gpbid-show-card {
	border: 1px solid var(--gpbid-border);
	border-radius: var(--gpbid-radius-md);
	box-shadow: var(--gpbid-shadow);
}

body.gpbid-ui-v1 .gpbid-shows-wrap .gpbid-show-card .gpbid-show-status-badge--live {
	background: rgba(208, 2, 27, 0.95);
}

body.gpbid-ui-v1 .gpbid-shows-wrap .gpbid-show-card .gpbid-show-status-badge,
body.gpbid-ui-v1 .gpbid-shows-wrap .gpbid-show-card .gpbid-show-status-badge span {
	color: #fff !important;
	font-size: 10px !important;
	line-height: 1.2 !important;
}

body.gpbid-ui-v1 .gpbid-shows-wrap .gpbid-show-card .gpbid-show-status-badge {
	z-index: 3;
}

body.gpbid-ui-v1 .gpbid-linked-shows-section .gpbid-shows-wrap .gpbid-shows-list {
	align-items: stretch;
}

body.gpbid-ui-v1 .gpbid-shows-wrap .gpbid-show-card .gpbid-show-watch-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	text-align: center !important;
	line-height: 1 !important;
	box-sizing: border-box !important;
}

/* —— GPBid standalone pages (my-bids, notifications) —— */
body.gpbid-ui-v1.gpbid-standalone-page {
	background: var(--gpbid-bg);
	margin: 0;
	padding: 16px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

body.gpbid-ui-v1 .gpbid-mybids-tabs {
	background: var(--gpbid-surface);
	border: 1px solid var(--gpbid-border);
	box-shadow: var(--gpbid-shadow);
}

body.gpbid-ui-v1 .gpbid-mybids-tabs button.active {
	background: var(--gpbid-primary-btn);
	color: var(--gpbid-primary-btn-text);
}

body.gpbid-ui-v1 .gpbid-mybids-panel {
	border: 1px solid var(--gpbid-border);
	box-shadow: var(--gpbid-shadow);
}

body.gpbid-ui-v1 .gpbid-mybids-list .item-amount,
body.gpbid-ui-v1 .gpbid-mybids-list a.btn-primary {
	background: var(--gpbid-primary-btn);
	color: var(--gpbid-primary-btn-text);
}

body.gpbid-ui-v1 .gpbid-notifications-list li.unread {
	background: #fffbeb;
	border-radius: var(--gpbid-radius-sm);
}

/* —— Mobile bottom nav —— */
body.gpbid-ui-v1.mobile-version .martfury-mobile-navigation {
	box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
	border-top: 1px solid var(--gpbid-border);
}

body.gpbid-ui-v1.mobile-version .martfury-mobile-navigation a {
	font-weight: 600;
	font-size: 11px;
}
