/* AllureAssure / Apple-style commerce presentation */

.vendor-promo-bar {
	background: var(--black);
	color: #d1d5db;
	font-size: 12px;
	text-align: center;
}

.vendor-promo-bar .wrap {
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vendor-promo-track {
	position: relative;
	width: 100%;
	min-height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vendor-promo-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.55s ease, visibility 0.55s ease;
}

.vendor-promo-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vendor-promo-link {
	color: inherit;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: center;
	justify-content: center;
	text-align: center;
	line-height: 1.4;
}

.vendor-promo-link-headline {
	font-weight: 600;
	color: #fff;
}

.vendor-promo-link strong {
	color: #fff;
	font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
	.vendor-promo-slide {
		transition: none;
	}
}

/* Centered-logo header (approved commerce example) */
.site-header .header-card {
	margin: 14px auto 0;
	max-width: calc(var(--max) - 24px);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow-soft);
}

.site-header .head {
	min-height: 70px;
	display: grid;
	grid-template-columns: 1fr 200px 1fr;
	align-items: center;
	gap: 20px;
	padding: 0 22px;
}

.site-header .site-nav {
	grid-column: 1;
	justify-self: start;
	display: flex;
	gap: 18px;
	align-items: center;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.site-header .site-nav a {
	padding: 10px 0;
	color: #2f3744;
}

.site-header .site-nav a:hover {
	color: #000;
}

.site-header .center-logo,
.site-header .custom-logo-link.center-logo {
	grid-column: 2;
	justify-self: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: var(--black);
	text-align: center;
}

.site-header .center-logo-mark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--teal2), var(--black));
	margin-bottom: 4px;
	box-shadow: 0 16px 30px rgba(64, 120, 114, 0.18);
}

.site-header .center-logo-text {
	font-size: 15px;
	line-height: 1;
}

.site-header .custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.site-header .header-tools {
	grid-column: 3;
	justify-self: end;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}

.vendor-search-button,
.vendor-cart-link,
.vendor-tools-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 8px;
	border: 0;
	background: transparent;
	color: #1d1d1f;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
}

.vendor-search-button svg,
.vendor-cart-link svg {
	fill: currentColor;
}

.vendor-cart-link {
	position: relative;
}

.vendor-cart-count,
.ac-gn-bag-badge {
	position: relative;
	bottom: 8px;
	right: 3px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--teal);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

.woocommerce-info {
	border-top-color: #a9d5c7;
	margin-top: 10px;
}

.woocommerce-shipping-methods,
#shipping_method.woocommerce-shipping-methods {
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce-shipping-methods li {
	margin: 0 0 8px;
}

.woocommerce-shipping-methods li label {
	display: inline;
	line-height: 1.45;
}

.vendor-shipping-disclaimer {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted);
}

.vendor-search-flyout {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	width: min(420px, calc(100vw - 32px));
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
	padding: 18px;
	z-index: 60;
}

.vendor-search-item {
	position: relative;
}

.vendor-search-flyout[hidden] {
	display: none;
}

.vendor-search-flyout.is-open {
	display: block;
}

.vendor-search-input-wrapper {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 8px;
	border: 1px solid #d2d2d7;
	border-radius: 12px;
	padding: 8px 10px;
}

.vendor-search-input {
	border: 0;
	background: transparent;
	font-size: 16px;
	width: 100%;
	outline: none;
}

.vendor-search-clear,
.vendor-search-submit {
	border: 0;
	background: transparent;
	cursor: pointer;
	color: #1d1d1f;
}

.vendor-search-quicklinks {
	margin-top: 16px;
}

.vendor-search-quicklinks-header {
	font-size: 12px;
	font-weight: 700;
	color: var(--muted);
	margin: 0 0 8px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.vendor-search-quicklinks-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 4px;
}

.vendor-search-quicklinks-link {
	display: block;
	padding: 10px 8px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
}

.vendor-search-quicklinks-link:hover {
	background: var(--soft);
}

.vendor-shop-section {
	padding-top: 28px;
}

.vendor-shop-intro {
	margin-bottom: 34px;
	text-align: center;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.vendor-shop-intro .eyebrow {
	margin-bottom: 14px;
}

.vendor-shop-title {
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.95;
	font-weight: 800;
	letter-spacing: -0.075em;
	margin: 14px auto 0;
}

.vendor-shop-lead {
	margin: 18px auto 0;
	color: var(--muted);
	font-size: 19px;
	line-height: 1.45;
	max-width: 720px;
	text-align: center;
}

.vendor-category-nav {
	width: 100%;
	margin-bottom: 34px;
}

.vendor-category-nav-scroll {
	width: 100%;
}

.vendor-category-list {
	list-style: none;
	margin: 0;
	padding: 0 0 8px;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px;
}

.vendor-category-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	min-width: 0;
	padding: 14px;
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--shadow-soft);
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vendor-category-link:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

.vendor-category-item.is-active .vendor-category-link {
	outline: 2px solid var(--teal);
}

.vendor-category-thumb {
	aspect-ratio: 1 / 1;
	width: 100%;
	border-radius: 20px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 58%), linear-gradient(135deg, #eef1f4, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	mask-image: radial-gradient(circle, #000 68%, rgba(0, 0, 0, 0.2) 96%);
	-webkit-mask-image: radial-gradient(circle, #000 68%, rgba(0, 0, 0, 0.2) 96%);
}

.vendor-category-thumb-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
	box-sizing: border-box;
	background: #fff;
}

.vendor-category-thumb-placeholder {
	min-height: 100%;
	padding: 10px !important;
	font-size: 10px;
}

.vendor-category-thumb-placeholder strong {
	font-size: 10px;
}

.vendor-category-thumb--all {
	color: #98a2b3;
	font-weight: 900;
	font-size: 13px;
}

.vendor-category-thumb-all-label {
	display: block;
}

.vendor-shop .woocommerce-products-header {
	display: none;
}

/* Product loop — override WooCommerce float columns (breaks theme card grid) */
ul.products.product-grid,
.vendor-shop ul.products {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	clear: both;
}

ul.products.product-grid::before,
ul.products.product-grid::after,
.vendor-shop ul.products::before,
.vendor-shop ul.products::after {
	display: none !important;
	content: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*='columns-'] li.product,
.woocommerce-page ul.products[class*='columns-'] li.product,
ul.products.product-grid li.product,
.vendor-shop ul.products li.product {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0;
	position: relative;
	display: block;
	min-width: 0;
	list-style: none;
}

ul.products.product-grid li.product .product-body h3,
.vendor-shop ul.products li.product .product-body h3 {
	margin: 0;
	font-size: 16px;
	line-height: 1.35;
}

ul.products.product-grid li.product .product-body h3 a,
.vendor-shop ul.products li.product .product-body h3 a {
	color: var(--ink);
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price,
.woocommerce ul.products li.product .price,
.vendor-shop ul.products li.product .price {
	color: #11a37f;
}

.vendor-shop .woocommerce-result-count,
.vendor-shop .woocommerce-ordering {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 14px;
}

.vendor-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.vendor-shop .woocommerce-ordering select {
	border: 0;
	border-radius: 12px;
	background: var(--soft2);
	padding: 10px 14px;
	font-weight: 600;
	font-size: 14px;
}

.vendor-shop .price-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: 16px;
}

.vendor-shop .price-row .button,
.vendor-shop .price-row .add_to_cart_button,
.vendor-shop .price-row a.button {
	flex-shrink: 0;
}

.vendor-cart-page,
.vendor-checkout-page {
	padding: 48px 0 78px;
}

.vendor-cart-header .eyebrow,
.vendor-checkout-header .eyebrow {
	margin-bottom: 12px;
}

.vendor-cart-title,
.vendor-checkout-title {
	margin: 0;
	font-size: clamp(42px, 5vw, 70px);
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.075em;
}

.vendor-cart-header-message,
.vendor-checkout-lead {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.45;
}

.vendor-back-to-cart {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	font-size: 14px;
	font-weight: 600;
	color: var(--teal);
}

.vendor-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: 28px;
	align-items: start;
	padding-top: 25px;
}

.vendor-cart-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.vendor-cart-item {
	background: #fff;
	border-radius: 28px;
	padding: 20px;
	box-shadow: var(--shadow-soft);
}

.vendor-item-row {
	display: grid;
	grid-template-columns: 112px minmax(0, 1fr);
	gap: 18px;
}

.vendor-item-image {
	width: 112px;
	height: 112px;
	border-radius: 22px;
	background: linear-gradient(135deg, #eef1f4, #fff);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.vendor-item-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
	box-sizing: border-box;
	border-radius: 22px;
	background: #fff;
}

.vendor-item-title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.035em;
}

.vendor-item-meta {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.vendor-item-meta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.vendor-item-remove {
	font-size: 13px;
	font-weight: 700;
	color: var(--muted);
}

.vendor-cart-actions {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.vendor-cart-coupon {
	display: flex;
	gap: 8px;
	align-items: center;
}

.vendor-cart-sidebar {
	display: grid;
	gap: 16px;
}

.vendor-cart-collaterals .cart_totals,
.vendor-cart-collaterals .vendor-cart-collaterals-inner,
.vendor-checkout-review {
	background: #fff;
	border-radius: 30px;
	padding: 26px;
	box-shadow: var(--shadow-soft);
}

.vendor-cart-totals {
	position: sticky;
	top: 110px;
}

.vendor-cart-summary-table th,
.vendor-cart-summary-table td {
	padding: 12px 0;
	border: 0;
	background: transparent;
}

.vendor-cart-summary-table tr.order-total th,
.vendor-cart-summary-table tr.order-total td {
	border-top: 1px solid #eef0f3;
	margin-top: 10px;
	padding-top: 18px;
	font-size: 20px;
	font-weight: 900;
	color: var(--ink);
}

.vendor-cart-assurance {
	margin: 18px 0 0;
	display: grid;
	gap: 8px;
}

.vendor-cart-assurance span {
	background: var(--soft);
	border-radius: 16px;
	padding: 12px;
	color: #475467;
	font-size: 13px;
	font-weight: 800;
}

.vendor-cart-totals .checkout-button,
.vendor-cart-collaterals .checkout-button {
	width: 100%;
	margin-top: 18px;
	min-height: 50px;
}

/* Cart page — form column uses item cards, not a single form shell */
.vendor-cart-main .woocommerce-cart-form {
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.vendor-cart-empty {
	background: #fff;
	border-radius: 20px;
	padding: 32px;
	box-shadow: var(--shadow-soft);
	text-align: center;
}

.vendor-cart-empty p {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 17px;
}

.vendor-cart-collaterals .cart_totals h2 {
	margin: 0 0 16px;
	font-size: 20px;
	font-weight: 800;
}

.vendor-cart-collaterals .cart_totals table,
.vendor-cart-collaterals .cart_totals .shop_table {
	width: 100%;
	border: 0;
}

.vendor-cart-collaterals .cart_totals th,
.vendor-cart-collaterals .cart_totals td {
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid #eef0f3;
	font-size: 15px;
}

.vendor-cart-collaterals .cart_totals tr.order-total th,
.vendor-cart-collaterals .cart_totals tr.order-total td {
	border-bottom: 0;
	font-size: 18px;
	font-weight: 800;
	padding-top: 16px;
}

.vendor-cart-collaterals .cart_totals th {
	font-weight: 600;
	color: var(--muted);
	text-transform: none;
	letter-spacing: normal;
}

.vendor-cart-collaterals .cart_totals td {
	text-align: right;
	font-weight: 700;
}

.vendor-cart-coupon input.input-text {
	min-width: 180px;
	border: 0;
	border-radius: 12px;
	background: var(--soft2);
	padding: 10px 14px;
}

.vendor-cart-actions .button,
.vendor-cart-coupon .button {
	border-radius: 999px;
	font-weight: 800;
}

.vendor-item-price {
	font-weight: 800;
	font-size: 15px;
}

.vendor-checkout-main .woocommerce-checkout {
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.vendor-cart-collaterals .checkout-button,
.vendor-checkout-review .place-order .button {
	display: block;
	width: 100%;
	text-align: center;
	border-radius: 999px;
	padding: 14px 20px;
	font-weight: 800;
}

.vendor-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
	gap: 28px;
	align-items: start;
}

.vendor-checkout-section {
	background: #fff;
	border-radius: 20px;
	padding: 24px;
	box-shadow: var(--shadow-soft);
	margin-bottom: 20px;
}

.vendor-section-title {
	margin: 0 0 16px;
	font-weight: 800;
}

.vendor-checkout-form .form-row label {
	font-weight: 600;
}

.vendor-checkout-form input.input-text,
.vendor-checkout-form select,
.vendor-checkout-form textarea {
	width: 100%;
	border: 0;
	border-radius: 16px;
	padding: 14px;
	margin-bottom: 10px;
	font: inherit;
	background: #f3f5f7;
}

.order-line,
.vendor-order-line {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid #eef0f3;
	font-size: 14px;
}

.order-line-main {
	flex: 1;
	min-width: 0;
}

.order-line-main strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.35;
}

.order-line-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.order-line-qty-label {
	color: var(--muted);
	font-size: 13px;
}

.order-line-price {
	font-size: 15px;
	font-weight: 800;
	white-space: nowrap;
}

.qty-stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid #d2d2d7;
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.qty-stepper .order-line-qty-label {
	padding: 0 8px;
	white-space: nowrap;
	font-size: 13px;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.order-line-qty-text {
	color: var(--muted);
	font-weight: 600;
}

.vendor-qty-direct-input.order-line-qty-value {
	width: 4.5ch;
	min-width: 36px;
	max-width: 72px;
	margin: 0;
	padding: 2px 4px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.72);
	font: inherit;
	font-weight: 800;
	font-size: 13px;
	color: var(--ink);
	text-align: center;
	line-height: 1.2;
	-moz-appearance: textfield;
	appearance: textfield;
	cursor: text;
}

.vendor-qty-direct-input.order-line-qty-value:focus {
	outline: 0;
	background: #fff;
	box-shadow: inset 0 0 0 1px rgba(64, 120, 114, 0.35);
}

.vendor-qty-direct-input::-webkit-outer-spin-button,
.vendor-qty-direct-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.vendor-buy-more-prompt {
	margin: 8px 0 0;
	font-size: 13px;
	line-height: 1.45;
	color: var(--muted);
	max-width: 420px;
}

.vendor-qty-controls {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.qty-step,
.vendor-qty-step {
	min-width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.qty-step:hover,
.vendor-qty-step:hover {
	background: var(--soft);
}

.qty-step:disabled,
.vendor-qty-step:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.vendor-order-review-totals .totals-row {
	display: flex;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #eef0f3;
	font-size: 15px;
}

.vendor-order-review-totals .totals-row.total {
	border-bottom: 0;
	font-size: 18px;
	font-weight: 800;
	padding-top: 16px;
}

.vendor-checkout-review .shop_table {
	display: none;
}

.vendor-item-meta-row .order-line-qty-label {
	font-size: 13px;
	color: var(--muted);
}

.product-service-rows {
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
	border-top: 1px solid #eef0f3;
}

.product-service-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
	gap: 8px 16px;
	padding: 14px 0;
	border-bottom: 1px solid #eef0f3;
	font-size: 14px;
	line-height: 1.45;
}

.product-service-title {
	font-weight: 700;
	color: var(--ink);
}

.product-service-detail {
	color: var(--muted);
}

.product-quote-card {
	margin-top: 20px;
	padding: 22px 24px;
}

.product-quote-card-title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 800;
}

.product-quote-card-text {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.5;
}

.product-add-to-bag .single_add_to_cart_button {
	width: 100%;
}

.vendor-volume-savings-item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 8px 12px;
	align-items: center;
}

.vendor-volume-price {
	font-weight: 800;
	color: #11a37f;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.product-service-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

@media (max-width: 1068px) {
	.site-header .head {
		grid-template-columns: 1fr auto 1fr;
		min-height: 64px;
	}

	.site-header .site-nav {
		display: none;
	}
}

@media (max-width: 680px) {
	.site-header .header-card {
		border-radius: 24px;
		margin-top: 10px;
	}

	.site-header .center-logo-mark {
		width: 32px;
		height: 32px;
	}

	.site-header .center-logo-text {
		font-size: 13px;
	}
}

@media (max-width: 1068px) {
	.vendor-category-list {
		grid-template-columns: repeat(4, 1fr);
	}

	ul.products.product-grid,
	.vendor-shop ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 834px) {
	.vendor-cart-layout,
	.vendor-checkout-layout {
		grid-template-columns: 1fr;
	}

	.vendor-search-flyout {
		right: -8px;
		width: min(420px, calc(100vw - 24px));
	}

	.vendor-category-list {
		grid-template-columns: repeat(2, 1fr);
	}

	ul.products.product-grid,
	.vendor-shop ul.products {
		grid-template-columns: 1fr;
	}
}

.vendor-hero-pillars {
	display: grid;
	gap: 6px;
	margin-top: 20px;
}

.vendor-hero-pillar {
	display: block;
	font-size: clamp(18px, 2.2vw, 22px);
	font-weight: 800;
	line-height: 1.3;
	color: var(--ink);
}

.hero-support {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.5;
	max-width: 640px;
}

.vendor-volume-savings {
	margin-top: 20px;
	padding: 20px;
	border-radius: 20px;
}

.vendor-volume-savings-title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 800;
}

.vendor-volume-savings-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}

.vendor-volume-savings-item {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 12px;
	font-size: 14px;
}

.vendor-volume-qty {
	font-weight: 800;
	color: var(--ink);
}

.vendor-volume-label {
	color: var(--muted);
}

.vendor-volume-note {
	margin: 14px 0 0;
	font-size: 13px;
	color: var(--muted);
}

/* Single product — Apple-style gallery + variations */
.product-gallery {
	position: relative;
}

.vendor-product-gallery-shell {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.product-gallery .woocommerce-product-gallery {
	position: relative;
	width: 100%;
	border-radius: var(--radius2);
	background: #fff;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.product-gallery .woocommerce-product-gallery__wrapper,
.product-gallery .woocommerce-product-gallery__image,
.product-gallery .vendor-product-gallery__stage {
	width: 100%;
}

.product-gallery .woocommerce-product-gallery__image {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(72vh, 640px);
	background: #fff;
}

.product-gallery .woocommerce-product-gallery__image img,
.product-gallery .woocommerce-product-gallery__image--placeholder img {
	width: 100%;
	max-height: min(72vh, 640px);
	object-fit: contain;
	padding: 40px;
	box-sizing: border-box;
	background: #fff;
}

.product-gallery .woocommerce-product-gallery__trigger {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 24px rgba(17, 24, 39, 0.12);
	text-indent: -9999px;
	overflow: hidden;
}

.product-gallery .woocommerce-product-gallery__trigger::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 18px;
	height: 18px;
	border: 2px solid var(--ink);
	border-radius: 3px;
}

.product-gallery .woocommerce-product-gallery__trigger::after {
	content: "";
	position: absolute;
	top: 11px;
	right: 11px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
	transform: rotate(-45deg);
}

.vendor-gallery-hint {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
	text-align: center;
}

.product-gallery .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.product-gallery .flex-control-thumbs li {
	width: 68px;
	height: 68px;
	border-radius: 14px;
	overflow: hidden;
	border: 2px solid transparent;
	background: #fff;
	box-shadow: 0 4px 14px rgba(17, 24, 39, 0.06);
	opacity: 0.72;
	transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}

.product-gallery .flex-control-thumbs li:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.product-gallery .flex-control-thumbs li.flex-active {
	border-color: var(--teal);
	opacity: 1;
}

.product-gallery .flex-control-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
	box-sizing: border-box;
	background: #fff;
}

.product-add-to-bag form.cart,
.product-add-to-bag .variations_form {
	width: 100%;
}

.vendor-variations-panel {
	margin-bottom: 18px;
	padding: 18px;
	border-radius: 20px;
	background: var(--soft);
}

.vendor-variations-title {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 800;
}

.vendor-variations-table.variations {
	width: 100%;
	border: 0;
	margin: 0;
}

.vendor-variation-row {
	display: block;
	margin-bottom: 16px;
}

.vendor-variation-row:last-child {
	margin-bottom: 0;
}

.vendor-variation-row .label {
	display: block;
	padding: 0;
	margin-bottom: 8px;
	text-align: left;
	font-size: 13px;
	font-weight: 800;
	color: var(--ink);
}

.vendor-variation-row .value {
	display: block;
	padding: 0;
}

.vendor-variation-row select,
.vendor-variation-select-hidden {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	border: 1px solid #d2d2d7;
	border-radius: 14px;
	font: inherit;
	background: #fff;
}

.vendor-variation-select-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.vendor-variation-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.vendor-variation-swatch {
	min-height: 40px;
	padding: 8px 14px;
	border: 1px solid #d2d2d7;
	border-radius: 999px;
	background: #fff;
	color: var(--ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.vendor-variation-swatch:hover {
	border-color: var(--teal2);
}

.vendor-variation-swatch.is-selected {
	border-color: var(--teal);
	background: var(--mint);
	color: var(--teal);
}

.vendor-variations-form .reset_variations {
	display: inline-block;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 700;
	color: var(--teal);
}

.product-add-to-bag .quantity {
	margin-right: 12px;
}

.product-add-to-bag .quantity .qty {
	min-width: 64px;
	padding: 12px 14px;
	border: 1px solid #d2d2d7;
	border-radius: 14px;
	font: inherit;
}

.product-add-to-bag .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 12px;
	margin-top: 16px;
}

.product-add-to-bag .vendor-buy-more-prompt--product {
	margin: 4px 0 0;
	max-width: none;
}

.product-add-to-bag .woocommerce-variation-add-to-cart .vendor-buy-more-prompt--product {
	flex: 1 1 100%;
}

@media (max-width: 834px) {
	.product-gallery .woocommerce-product-gallery__image {
		min-height: 420px;
	}

	.product-gallery .woocommerce-product-gallery__image img {
		max-height: 420px;
		padding: 24px;
	}
}

/* v1.3.9.9 — shop/cart polish + product card stages */
ul.products.product-grid li.product.product-card,
.vendor-shop ul.products li.product.product-card {
	background: #fff;
	border-radius: 30px;
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

ul.products.product-grid li.product.product-card:hover,
.vendor-shop ul.products li.product.product-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-hover);
}

ul.products.product-grid li.product .product-img,
.vendor-shop ul.products li.product .product-img,
.vendor-featured-inventory .product-img {
	display: block;
	padding: 0;
	background: none;
	overflow: visible;
}

ul.products.product-grid li.product .product-stage,
.vendor-shop ul.products li.product .product-stage,
.vendor-featured-inventory .product-stage {
	margin: 16px 16px 0;
	height: 250px;
	border-radius: 24px;
	background: radial-gradient(circle at 50% 35%, #fff 0%, #f5f6f8 60%, #eef1f4 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	overflow: hidden;
}

ul.products.product-grid li.product .product-stage img,
.vendor-shop ul.products li.product .product-stage img,
.vendor-featured-inventory .product-stage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0;
	box-sizing: border-box;
	background: transparent;
}

ul.products.product-grid li.product .product-body,
.vendor-shop ul.products li.product .product-body {
	padding: 18px 20px 22px;
}

ul.products.product-grid li.product .badges,
.vendor-shop ul.products li.product .badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 12px 0;
}

ul.products.product-grid li.product .price-state strong,
.vendor-shop ul.products li.product .price-state strong {
	font-size: 15px;
	display: block;
}

ul.products.product-grid li.product .price-state small,
.vendor-shop ul.products li.product .price-state small {
	display: block;
	color: var(--muted);
	font-size: 12px;
	margin-top: 3px;
}

.vendor-as-featured-strip {
	background: #fff;
	border-radius: 32px;
	box-shadow: var(--shadow-soft);
	padding: 34px;
}

.vendor-as-featured-strip .vendor-as-featured-head {
	text-align: center;
	margin-bottom: 26px;
}

.vendor-as-featured-strip .vendor-as-featured-head h2 {
	font-size: 34px;
	letter-spacing: -0.055em;
}

.vendor-as-featured-logos.logo-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 18px;
	align-items: center;
}

.vendor-as-featured-logo {
	min-height: 60px;
}

.vendor-savings-prompt,
.vendor-cart-item .vendor-buy-more-prompt {
	margin-top: 12px;
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--teal);
	background: var(--mint);
	border-radius: 999px;
	padding: 8px 11px;
	font-size: 12px;
	font-weight: 900;
	max-width: none;
	line-height: 1.35;
}

.vendor-cart-item .vendor-qty-step {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	font-weight: 900;
}

@media (max-width: 1080px) {
	.vendor-as-featured-logos.logo-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vendor-cart-totals {
		position: static;
	}
}

@media (max-width: 680px) {
	.vendor-as-featured-logos.logo-grid {
		grid-template-columns: 1fr;
	}

	.vendor-item-row {
		grid-template-columns: 1fr;
	}
}


/* v1.4 — final approved shop/cart alignment and live WooCommerce quantity updates */
.vendor-shop-intro {
	text-align: center;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 34px;
}

.vendor-shop-title {
	font-size: clamp(42px, 5vw, 72px);
	line-height: 0.95;
	letter-spacing: -0.075em;
}

.vendor-shop-lead {
	max-width: 720px;
	font-size: 19px;
	line-height: 1.45;
}

.vendor-category-list {
	grid-template-columns: repeat(7, 1fr);
	gap: 16px;
}

.vendor-category-link {
	border-radius: 24px;
	padding: 14px;
}

.vendor-category-thumb {
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	border-radius: 20px;
	background: radial-gradient(circle at center, rgba(255,255,255,.15), transparent 58%), linear-gradient(135deg,#eef1f4,#fff);
	mask-image: radial-gradient(circle,#000 68%,rgba(0,0,0,.2) 96%);
	-webkit-mask-image: radial-gradient(circle,#000 68%,rgba(0,0,0,.2) 96%);
}

.vendor-category-thumb-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
	background: #fff;
}

.vendor-featured-inventory .product-stage,
ul.products.product-grid li.product .product-stage,
.vendor-shop ul.products li.product .product-stage {
	margin: 16px 16px 0;
	height: 250px;
	border-radius: 24px;
	background: radial-gradient(circle at 50% 35%,#fff 0%,#f5f6f8 60%,#eef1f4 100%);
	padding: 28px;
}

.vendor-featured-inventory .product-stage img,
ul.products.product-grid li.product .product-stage img,
.vendor-shop ul.products li.product .product-stage img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: transparent;
}

.vendor-item-price,
.vendor-cart-item .order-line-price {
	margin-left: auto;
	font-weight: 900;
	white-space: nowrap;
}

.vendor-qty-controls.is-updating {
	opacity: 0.72;
	pointer-events: none;
}

.vendor-cart-item .vendor-qty-step:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.vendor-cart-collaterals .cart_totals {
	background: #fff !important;
	border-radius: 30px;
	box-shadow: var(--shadow-soft);
	padding: 26px;
}

.vendor-cart-collaterals .cart_totals h2 {
	font-size: 24px;
	letter-spacing: -0.04em;
}

.vendor-cart-assurance span {
	background: var(--soft);
	border-radius: 16px;
	padding: 12px;
	font-weight: 800;
	color: #475467;
}

@media (max-width: 1080px) {
	.vendor-category-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.vendor-cart-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.vendor-category-list {
		grid-template-columns: 1fr;
	}
}


/* v1.4.1 — final inventory shopping polish: compact scroll intro, even category cards, clean product actions, load more */
.vendor-shop-section {
  padding-top: 22px;
}

.vendor-shop-intro {
  transition: padding .22s ease, max-width .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease;
  will-change: transform;
}

.vendor-shop-intro.is-compact {
  position: sticky;
  top: 75px;
  z-index: 35;
  max-width: min(840px, calc(100vw - 48px));
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: .96;
  transform: translateY(4px) scale(.97);
  box-shadow: 0 8px 28px rgba(17,24,39,.08);
  pointer-events: none;
}

body.admin-bar .vendor-shop-intro.is-compact {
  top: calc(75px + 32px);
}

.vendor-shop-intro.is-compact .eyebrow,
.vendor-shop-intro.is-compact .vendor-shop-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.vendor-shop-intro.is-compact .vendor-shop-lead {
  margin: 0 auto;
  max-width: none;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  color: #475467;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vendor-category-nav {
  width: 100%;
  margin: 0 0 34px;
}

.vendor-category-nav-scroll {
  width: 100%;
  overflow: visible;
}

.vendor-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 16px;
  align-items: stretch;
  width: 100%;
  padding: 0;
}

.vendor-category-item {
  min-width: 0;
  height: 100%;
}

.vendor-category-link {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border-radius: 24px;
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.vendor-category-link:hover,
.vendor-category-item.is-active .vendor-category-link {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.vendor-category-thumb {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1 / 1;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(255,255,255,.15), transparent 58%), linear-gradient(135deg,#eef1f4,#fff);
  overflow: hidden;
  mask-image: radial-gradient(circle,#000 68%,rgba(0,0,0,.2) 96%);
  -webkit-mask-image: radial-gradient(circle,#000 68%,rgba(0,0,0,.2) 96%);
}

.vendor-category-thumb img,
.vendor-category-thumb-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff;
}

.vendor-category-label {
  display: block;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--ink);
}

.vendor-featured-inventory .product-stage,
ul.products.product-grid li.product .product-stage,
.vendor-shop ul.products li.product .product-stage {
  margin: 16px 16px 0;
  height: 250px;
  border-radius: 24px;
  background: none;
  padding: 28px;
}

.vendor-shop .price-row .button,
.vendor-shop .price-row .add_to_cart_button,
.vendor-shop .price-row a.button,
ul.products.product-grid li.product .price-row .button,
ul.products.product-grid li.product .price-row .add_to_cart_button,
ul.products.product-grid li.product a.add_to_cart_button,
ul.products.product-grid li.product a.button.add,
.vendor-shop ul.products li.product a.button.add,
.vendor-shop ul.products li.product a.add_to_cart_button {
  min-height: 40px;
  padding: 10px 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--black) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  box-shadow: 0 8px 24px rgba(17,24,39,.12) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.vendor-shop .price-row .button:hover,
.vendor-shop .price-row .add_to_cart_button:hover,
ul.products.product-grid li.product a.add_to_cart_button:hover,
ul.products.product-grid li.product a.button.add:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(17,24,39,.16) !important;
  background: #111827 !important;
}

.vendor-shop .price-state,
ul.products.product-grid li.product .price-state {
  align-items: center;
}

.woocommerce nav.woocommerce-pagination,
.vendor-load-more-wrap {
  margin: 44px auto 0;
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination .page-numbers:not(.next) {
  display: none !important;
}

.vendor-load-more-wrap {
  display: flex;
  justify-content: center;
}

.vendor-load-more-button,
.woocommerce nav.woocommerce-pagination a.next.page-numbers {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 0;
  background: var(--black);
  color: #fff !important;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(17,24,39,.13);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.vendor-load-more-button.is-loading {
  opacity: .72;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .vendor-category-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vendor-shop-intro.is-compact { top: 75px; }
  body.admin-bar .vendor-shop-intro.is-compact { top: calc(75px + 32px); }
}

@media (max-width: 680px) {
  .vendor-shop-section { padding-top: 14px; }
  .vendor-shop-intro { margin-bottom: 24px; }
  .vendor-shop-intro.is-compact {
    top: 75px;
    max-width: calc(100vw - 24px);
    padding: 8px 12px;
  }
  body.admin-bar .vendor-shop-intro.is-compact { top: calc(75px + 32px); }
  .vendor-shop-intro.is-compact .vendor-shop-lead { font-size: 12px; }
  .vendor-category-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .vendor-category-link { padding: 12px; border-radius: 22px; }
  .vendor-category-thumb { max-width: 108px; }
  .vendor-featured-inventory .product-stage,
  ul.products.product-grid li.product .product-stage,
  .vendor-shop ul.products li.product .product-stage { height: 220px; padding: 22px; }
  .vendor-shop .price-state,
  ul.products.product-grid li.product .price-state { gap: 10px; }
}

/* v1.4.2 — launch-ready shop journey refinement: lighter sticky reminder, filters, mobile shopping nav */
.vendor-shop-filter-bar {
  margin: 0 0 24px;
}

.vendor-filter-form {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-soft);
}

.vendor-filter-form input,
.vendor-filter-form select {
  min-height: 46px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: #f3f5f7;
  color: #344054;
  font-weight: 800;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(17,24,39,.035);
}

.vendor-filter-form input:focus,
.vendor-filter-form select:focus {
  background: #fff;
  box-shadow: 0 0 0 4px rgba(64,120,114,.11), inset 0 0 0 1px rgba(64,120,114,.22);
}

.vendor-filter-submit {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(17,24,39,.12);
  cursor: pointer;
}

.vendor-category-nav-scroll {
  overflow: visible;
}

.vendor-category-list {
  justify-content: stretch;
}

.vendor-category-link {
  min-height: 176px;
}

.vendor-category-thumb {
  margin-inline: auto;
}

.vendor-featured-inventory .product-stage,
ul.products.product-grid li.product .product-stage,
.vendor-shop ul.products li.product .product-stage {
  margin: 16px 16px 0;
  height: 250px;
  border-radius: 24px;
  background: none;
  padding: 28px;
}

.vendor-featured-inventory .product-stage img,
ul.products.product-grid li.product .product-stage img,
.vendor-shop ul.products li.product .product-stage img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-line-price.is-updating,
.vendor-item-price.is-updating {
  opacity: .55;
  transition: opacity .18s ease;
}

.vendor-cart-collaterals.is-updating .cart_totals,
body.vendor-cart-qty-pending .vendor-cart-collaterals .cart_totals {
  opacity: .55;
  transition: opacity .18s ease;
}

body.vendor-cart-qty-pending .vendor-cart-collaterals .checkout-button.is-disabled,
.vendor-cart-collaterals .checkout-button.is-disabled {
  opacity: .55;
  pointer-events: none;
  cursor: not-allowed;
}

.vendor-order-review-totals.is-updating,
body.vendor-checkout-qty-pending .vendor-order-review-totals {
  opacity: .55;
  transition: opacity .18s ease;
}

body.vendor-checkout-qty-pending #place_order.is-disabled,
body.vendor-checkout-qty-pending #place_order:disabled {
  opacity: .55;
  pointer-events: none;
  cursor: not-allowed;
}

.vendor-qty-controls.is-updating .qty-stepper {
  opacity: .72;
}

@media (max-width: 1080px) {
  .vendor-filter-form {
    grid-template-columns: 1fr 1fr;
  }
  .vendor-filter-search,
  .vendor-filter-submit {
    grid-column: 1 / -1;
  }
  .vendor-shop-intro.is-compact {
    top: 75px;
    max-width: calc(100vw - 40px);
  }
  body.admin-bar .vendor-shop-intro.is-compact {
    top: calc(75px + 32px);
  }
}

@media (max-width: 680px) {
  .vendor-shop-intro.is-compact {
    position: sticky;
    top: 75px;
    max-width: calc(100vw - 24px);
    padding: 8px 12px;
  }
  body.admin-bar .vendor-shop-intro.is-compact {
    top: calc(75px + 32px);
  }
  .vendor-shop-intro.is-compact .vendor-shop-lead {
    font-size: 11.5px;
  }
  .vendor-filter-form {
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 24px;
  }
  .vendor-filter-search,
  .vendor-filter-submit {
    grid-column: auto;
  }
  .vendor-filter-submit {
    width: 100%;
  }
  .vendor-category-link {
    min-height: 150px;
  }
}

/* v1.5 — 100/100 launch remaster: Apple/AllureAssure shop + WooCommerce cart polish */
.vendor-shop-intro {
  isolation: isolate;
}

.vendor-shop-intro.is-compact .vendor-shop-lead {
  color: #407872;
  font-weight: 900;
  letter-spacing: .01em;
}
.vendor-shop-filter-bar {
  max-width: 1180px;
  margin-inline: auto;
}
.vendor-filter-form {
  align-items: center;
}
.vendor-filter-search input,
.vendor-filter-form select {
  min-height: 48px;
}
.vendor-filter-submit {
  min-height: 48px;
  box-shadow: 0 12px 30px rgba(17,24,39,.10);
}
.vendor-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px;
  width: 100%;
}
.vendor-category-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 168px;
  height: 100%;
}
.vendor-category-thumb {
  width: min(100%, 112px);
  aspect-ratio: 1 / 1;
}
.vendor-featured-inventory .product-stage,
ul.products.product-grid li.product .product-stage,
.vendor-shop ul.products li.product .product-stage {
  margin: 16px 16px 0;
  height: 250px;
  border-radius: 24px;
  background: none;
  padding: 28px;
}
.vendor-featured-inventory .product-stage img,
ul.products.product-grid li.product .product-stage img,
.vendor-shop ul.products li.product .product-stage img {
  object-fit: contain;
}
ul.products li.product .button,
ul.products li.product a.button,
ul.products.product-grid li.product .button,
.vendor-shop ul.products li.product .button,
.vendor-product-card .button,
.product-card .add-btn {
  min-height: 42px;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #0b0d10 !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(17,24,39,.12);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
ul.products li.product .button:hover,
ul.products li.product a.button:hover,
.vendor-shop ul.products li.product .button:hover,
.vendor-product-card .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(17,24,39,.18);
  background: #111827 !important;
}
.vendor-buy-more-prompt,
.vendor-savings-prompt {
  color: #407872;
  background: #e7f3f0;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  width: fit-content;
  max-width: 100%;
}
.vendor-qty-controls.is-updating .vendor-cart-qty-stepper {
  opacity: .72;
  pointer-events: none;
}
.order-line-price.is-updating,
.vendor-item-price.is-updating {
  opacity: .48;
}
.vendor-load-more-button {
  min-width: 190px;
}
@media (max-width: 782px) {
  .vendor-shop-intro {
    margin-inline: 12px;
  }
  .vendor-shop-intro.is-compact {
    border-radius: 24px;
  }
  .vendor-shop-filter-bar {
    padding-inline: 12px;
  }
  .vendor-filter-form {
    gap: 8px;
  }
  .vendor-filter-search input,
  .vendor-filter-form select,
  .vendor-filter-submit {
    min-height: 46px;
    font-size: 14px;
  }
  .vendor-category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .vendor-category-link {
    min-height: 142px;
    padding: 14px;
  }
  .vendor-category-thumb {
    width: 86px;
  }
  .vendor-featured-inventory .product-stage,
  ul.products.product-grid li.product .product-stage,
  .vendor-shop ul.products li.product .product-stage {
    height: 220px;
    padding: 20px;
  }
  ul.products li.product .button,
  ul.products li.product a.button,
  .vendor-shop ul.products li.product .button {
    width: 100%;
  }
  .vendor-cart-item .vendor-item-meta-row {
    align-items: flex-start;
  }
  .vendor-buy-more-prompt,
  .vendor-savings-prompt {
    border-radius: 18px;
    width: 100%;
  }
}

/* v1.5.1 checkout/cart alignment patch */
.vendor-checkout-header {
	max-width: 860px;
	margin: 0 0 28px;
	position: relative;
}

.vendor-checkout-title {
	letter-spacing: -0.075em;
}

@media (min-width: 835px) {
	.vendor-checkout-layout {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
		gap: 28px;
		align-items: start;
	}
}

.vendor-checkout-section,
.vendor-checkout-review {
	border-radius: 30px;
	background: #fff;
	box-shadow: var(--shadow-soft);
}

.vendor-checkout-section {
	padding: 28px;
}

.vendor-checkout-review {
	position: sticky;
	top: 110px;
	padding: 26px;
}

.vendor-order-review-lines {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.vendor-order-line {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 16px;
	align-items: start;
	padding: 16px 0;
	border-bottom: 1px solid #eef0f3;
}

.vendor-order-line:first-child {
	padding-top: 0;
}

.vendor-order-line .order-line-main strong {
	font-size: 15px;
	line-height: 1.35;
}

.vendor-checkout-qty-stepper,
.vendor-cart-qty-stepper,
.vendor-order-line .qty-stepper,
.vendor-cart-item .qty-stepper {
	display: inline-block;
	vertical-align: middle;
	align-items: center;
	border: 0;
	border-radius: 999px;
	background: var(--soft2);
	padding: 4px;
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
}

.vendor-checkout-qty-stepper .vendor-qty-step,
.vendor-cart-qty-stepper .vendor-qty-step,
.vendor-order-line .qty-step,
.vendor-cart-item .qty-step {
	display: inline-block;
	vertical-align: middle;
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 3px 10px rgba(17, 24, 39, 0.055);
}

.vendor-checkout-qty-stepper .vendor-qty-step:hover,
.vendor-cart-qty-stepper .vendor-qty-step:hover {
	background: #fff;
	color: var(--teal);
}

.vendor-checkout-qty-stepper .order-line-qty-label,
.vendor-cart-qty-stepper .order-line-qty-label {
	display: inline-block;
	vertical-align: middle;
	font-weight: 800;
	color: var(--ink);
}

.vendor-order-line .vendor-buy-more-prompt,
.vendor-cart-item .vendor-buy-more-prompt,
.vendor-cart-item .vendor-savings-prompt {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin-top: 10px;
	padding: 8px 11px;
	border-radius: 999px;
	background: var(--mint);
	color: var(--teal);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.3;
}

.vendor-order-line .order-line-price,
.vendor-cart-item .order-line-price,
.vendor-cart-item .vendor-item-price {
	font-size: 15px;
	font-weight: 900;
	white-space: nowrap;
}

.vendor-order-review-totals .totals-row {
	padding: 12px 0;
	border-bottom: 1px solid #eef0f3;
}

.vendor-order-review-totals .totals-row.total {
	border-bottom: 0;
	font-size: 20px;
	font-weight: 900;
}

.vendor-checkout-review #payment {
	background: transparent;
	border-radius: 0;
	padding: 0;
}

.vendor-checkout-review #payment ul.payment_methods {
	padding: 16px 0;
	border-bottom: 1px solid #eef0f3;
}

.vendor-checkout-review #payment div.form-row {
	padding: 0;
}

.vendor-checkout-review .place-order .button,
.vendor-cart-collaterals .checkout-button,
.vendor-cart-totals .checkout-button,
.stripe_cart_gateway_active .checkout-button,
.woocommerce-cart .stripe_cart_gateway_active .wc-proceed-to-checkout .checkout-button {
	margin-bottom: 0;
	background: #e7f3f0 !important;
	color: #407872 !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 10px 24px rgba(64, 120, 114, 0.13) !important;
}

.vendor-checkout-review .place-order .button:hover,
.vendor-cart-collaterals .checkout-button:hover,
.vendor-cart-totals .checkout-button:hover,
.stripe_cart_gateway_active .checkout-button:hover,
.woocommerce-cart .stripe_cart_gateway_active .wc-proceed-to-checkout .checkout-button:hover {
	background: #d9eee9 !important;
	color: #305e59 !important;
	transform: translateY(-1px);
}

.vendor-qty-controls.is-updating {
	opacity: 0.78;
}

@media (max-width: 834px) {
	.vendor-checkout-layout {
		grid-template-columns: 1fr;
	}

	.vendor-checkout-header {
		max-width: none;
	}

	.vendor-checkout-review {
		position: static;
		padding: 20px;
	}

	.vendor-checkout-section {
		padding: 20px;
	}

	.vendor-order-line {
		grid-template-columns: 1fr;
	}

	.vendor-order-line .order-line-price {
		justify-self: start;
	}

	.vendor-checkout-review #payment,
	.vendor-checkout-review #payment ul.payment_methods,
	.vendor-checkout-review #payment .payment_box,
	.vendor-checkout-review .place-order,
	.vendor-checkout-review .place-order .button,
	.vendor-checkout-review .ppc-button-wrapper,
	.vendor-checkout-review .wc-stripe-payment-request-wrapper,
	.vendor-checkout-review iframe {
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.vendor-checkout-review ul.payment_methods li label {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-wrap: wrap;
	}

	.vendor-cart-count,
	.ac-gn-bag-badge {
		bottom: 8px;
		right: 3px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		font-size: 9px;
		line-height: 18px;
	}

	.vendor-cart-collaterals .checkout-button,
	.vendor-cart-collaterals .wc-proceed-to-checkout,
	.vendor-cart-collaterals .ppc-button-wrapper,
	.vendor-cart-collaterals .wc-stripe-payment-request-wrapper,
	.vendor-cart-collaterals iframe {
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
	}
}

/* v1.5.7 — category grid, filter bar, shop compact intro */
.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.filter-bar {
	margin: 0 0 24px;
}

.vendor-shop-intro.is-compact .vendor-shop-lead::before {
	content: 'MyDeme: ';
	color: var(--teal);
	font-weight: 900;
}

@media (max-width: 1080px) {
	.category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.category-grid {
		grid-template-columns: 1fr;
	}

	.vendor-filter-form {
		grid-template-columns: 1fr;
	}

	.vendor-filter-search,
	.vendor-filter-submit {
		grid-column: 1 / -1;
	}
}

/* v1.5.15 — WooCommerce variation select: vendor-prefixed background before unprefixed */
.woocommerce div.product form.cart .variations select {
	-webkit-background-size: 16px;
	background-size: 16px;
	-webkit-background-position: calc(100% - 12px) 50%;
	background-position: calc(100% - 12px) 50%;
}
