/* ==========================================================================
   Tumzy theme — tokens from design/redesign-spec.md
   ========================================================================== */
:root {
	--tz-red: #8E1B2C;
	--tz-red-hover: #A3202F;
	--tz-red-banner: #B22A33;
	--tz-red-tint: #F6E6E8;
	--tz-ink: #1A1A1A;
	--tz-ink-2: #5A5A5A;
	--tz-ink-3: #8A8A8A;
	--tz-bg: #FAFAFA;
	--tz-surface: #FFFFFF;
	--tz-surface-2: #F2F2F2;
	--tz-line: #E6E6E6;
	--tz-footer: #E8E8E8;
	--tz-green: #2E7D32;
	--tz-dark: #2B2B2B;
	--tz-amber: #B26A00;
	--tz-radius: 16px;
	--tz-radius-sm: 10px;
	--tz-pill: 9999px;
	--tz-shadow: 0 2px 12px rgba(0, 0, 0, .06);
	--tz-shadow-lg: 0 10px 30px rgba(0, 0, 0, .10);
	--tz-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--tz-max: 1240px;
	--tz-gutter: 24px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.tz {
	margin: 0;
	font-family: var(--tz-font);
	font-size: 15px;
	line-height: 1.55;
	color: var(--tz-ink);
	background: var(--tz-bg);
	-webkit-font-smoothing: antialiased;
}
body.tz h1, body.tz h2, body.tz h3, body.tz h4 { font-family: var(--tz-font); font-weight: 700; letter-spacing: -.01em; line-height: 1.15; margin: 0 0 .5em; color: var(--tz-ink); }
body.tz h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.02em; }
body.tz h2 { font-size: clamp(22px, 2.6vw, 30px); }
body.tz h3 { font-size: 17px; }
body.tz h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--tz-ink-2); }
body.tz p { margin: 0 0 1em; }
body.tz a { color: var(--tz-red); text-decoration: none; }
body.tz a:hover { color: var(--tz-red-hover); }
body.tz img { max-width: 100%; height: auto; display: block; }
body.tz ul { padding-left: 1.2em; }
body.tz button, body.tz input, body.tz select, body.tz textarea { font: inherit; color: inherit; }
.screen-reader-text { position: absolute !important; clip: rect(1px, 1px, 1px, 1px); width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { clip: auto; width: auto; height: auto; left: 8px; top: 8px; z-index: 100000; background: var(--tz-surface); padding: 8px 12px; border-radius: 8px; }
.tz-container { max-width: var(--tz-max); margin: 0 auto; padding: 0 var(--tz-gutter); }
.tz-main { min-height: 60vh; }
.tz-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tz-red); margin: 0 0 12px; }
.tz-page { padding-top: 32px; padding-bottom: 72px; }
.tz-page--narrow { max-width: 860px; }
.tz-page--wide { padding-top: 0; }
.tz-page__head { margin-bottom: 28px; }
.tz-page__sub { color: var(--tz-ink-2); font-size: 16px; max-width: 640px; margin: 0; }
.tz-empty { padding: 48px; text-align: center; color: var(--tz-ink-2); background: var(--tz-surface); border: 1px dashed var(--tz-line); border-radius: var(--tz-radius); }
.tz-empty p { margin-bottom: 16px; }
.is-flipped { transform: scaleX(-1); }
svg.tz-icon { display: inline-block; vertical-align: -.15em; flex: none; }

/* --------------------------------------------------------------------------
   Buttons, chips, badges
   -------------------------------------------------------------------------- */
.tz-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px; border-radius: var(--tz-pill); font-weight: 600; font-size: 14px; line-height: 1;
	border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s, box-shadow .15s, transform .15s;
}
.tz-btn--primary { background: var(--tz-red); color: #fff !important; }
.tz-btn--primary:hover { background: var(--tz-red-hover); box-shadow: 0 6px 18px rgba(142, 27, 44, .28); transform: translateY(-1px); }
.tz-btn--ghost { background: var(--tz-surface); color: var(--tz-ink) !important; border-color: var(--tz-line); }
.tz-btn--ghost:hover { border-color: var(--tz-ink-3); }
.tz-btn--white { background: #fff; color: var(--tz-red) !important; }
.tz-btn--white:hover { background: var(--tz-red-tint); }
.tz-btn--dark { background: var(--tz-ink); color: #fff !important; }
.tz-btn--sm { padding: 9px 16px; font-size: 13px; }

.tz-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.tz-chips--tight { margin: 0; gap: 8px; }
.tz-chip {
	display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: var(--tz-pill);
	background: var(--tz-surface); border: 1px solid var(--tz-line); color: var(--tz-ink) !important; font-size: 13px; font-weight: 500; cursor: pointer;
	transition: background .15s, border-color .15s, color .15s;
}
.tz-chip:hover { border-color: var(--tz-ink-3); }
.tz-chip.is-active { background: var(--tz-ink); border-color: var(--tz-ink); color: #fff !important; }
.tz-chip--sm { padding: 6px 12px; font-size: 12px; background: var(--tz-surface-2); border-color: transparent; }
.tz-chip--eyebrow { background: var(--tz-red-tint); border-color: transparent; color: var(--tz-red) !important; font-size: 11px; font-weight: 700; letter-spacing: .1em; margin-bottom: 18px; }
.tz-chip--radio input { position: absolute; opacity: 0; pointer-events: none; }
.tz-chip--radio { position: relative; }

.tz-badge {
	position: absolute; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px;
	padding: 6px 10px; border-radius: var(--tz-pill); background: rgba(255, 255, 255, .94); color: var(--tz-ink);
	font-size: 11px; font-weight: 700; letter-spacing: .02em; backdrop-filter: blur(4px); box-shadow: 0 1px 4px rgba(0, 0, 0, .12);
}
.tz-badge--sale { left: auto; right: 56px; background: var(--tz-red); color: #fff; }
.tz-badge--digital svg { color: var(--tz-red); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.tz-header { position: sticky; top: 0; z-index: 900; background: var(--tz-surface); border-bottom: 1px solid var(--tz-line); transition: box-shadow .2s; }
.tz-header.is-scrolled { box-shadow: var(--tz-shadow); }
.tz-header__row { display: flex; align-items: center; gap: 22px; height: 72px; }
.tz-wordmark { display: inline-flex; align-items: center; font-weight: 800; font-size: 28px; letter-spacing: -.03em; color: var(--tz-red) !important; line-height: 1; }
.tz-wordmark img { height: 36px; width: auto; }
.tz-header__search { flex: 1 1 320px; min-width: 120px; max-width: 460px; }
.tz-nav, .tz-header__actions, .tz-wordmark { flex-shrink: 0; }
.tz-header__search--mobile { display: none; padding: 0 var(--tz-gutter) 12px; max-width: none; }
.tz-search { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 8px 0 16px; background: var(--tz-surface-2); border-radius: var(--tz-pill); border: 1px solid transparent; transition: border-color .15s, background .15s; }
.tz-search:focus-within { background: #fff; border-color: var(--tz-line); box-shadow: 0 0 0 3px var(--tz-red-tint); }
.tz-search svg { color: var(--tz-ink-3); }
.tz-search input { flex: 1; min-width: 0; border: 0; background: transparent; outline: 0; font-size: 14px; }
.tz-search input::placeholder { color: var(--tz-ink-3); }
.tz-search button { border: 0; background: var(--tz-ink); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.tz-search button:hover { background: var(--tz-red); }
.tz-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.tz-nav__list a { display: inline-block; padding: 10px 12px; border-radius: var(--tz-pill); font-weight: 600; font-size: 14px; color: var(--tz-ink) !important; }
.tz-nav__list a:hover { background: var(--tz-surface-2); }
.tz-nav__list .current-menu-item > a, .tz-nav__list .is-active > a { color: var(--tz-red) !important; }
.tz-nav__mobile-extra { display: none; }
.tz-header__actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.tz-header__link { display: inline-flex; align-items: center; gap: 6px; padding: 10px 12px; border-radius: var(--tz-pill); font-weight: 600; font-size: 14px; color: var(--tz-ink) !important; }
.tz-header__link:hover, .tz-header__icon:hover { background: var(--tz-surface-2); }
.tz-header__icon { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--tz-ink) !important; }
.tz-cart-count { position: absolute; top: 2px; right: 0; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--tz-red); color: #fff; font-size: 10px; font-weight: 700; line-height: 18px; text-align: center; display: none; }
.tz-cart-count.has-items { display: block; }
.tz-header__cta { margin-left: 8px; }
.tz-header__burger { display: none; border: 0; background: transparent; padding: 8px; margin-left: -8px; cursor: pointer; color: var(--tz-ink); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.tz-footer { background: var(--tz-footer); margin-top: 72px; padding: 56px 0 28px; color: var(--tz-ink-2); }
.tz-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.tz-footer__mission { margin-top: 14px; max-width: 320px; }
.tz-footer__links, .tz-footer ul { list-style: none; margin: 0; padding: 0; }
.tz-footer li { margin: 0 0 10px; }
.tz-footer li a { color: var(--tz-ink-2) !important; font-size: 14px; }
.tz-footer li a:hover { color: var(--tz-red) !important; }
.tz-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(0, 0, 0, .08); font-size: 13px; }
.tz-footer__bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   Home
   -------------------------------------------------------------------------- */
.tz-home { padding-top: 28px; }
.tz-hero { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: 24px; overflow: hidden; box-shadow: var(--tz-shadow); min-height: 440px; }
.tz-hero__copy { padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.tz-hero__copy h1 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 18px; }
.tz-hero__sub { font-size: 17px; color: var(--tz-ink-2); max-width: 520px; margin-bottom: 28px; }
.tz-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.tz-hero__actions .tz-btn--white { border-color: var(--tz-line); }
.tz-hero__media { background: var(--tz-surface-2) center/cover no-repeat; min-height: 300px; position: relative; }
.tz-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 255, 255, .35), transparent 30%); }

.tz-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 28px 0 56px; }
.tz-feature { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: 22px; }
.tz-feature__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--tz-red-tint); color: var(--tz-red); margin-bottom: 14px; }
.tz-feature h3 { margin-bottom: 6px; }
.tz-feature p { margin: 0; color: var(--tz-ink-2); font-size: 14px; }

.tz-section { margin: 0 0 56px; }
.tz-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.tz-section__head h2 { margin-bottom: 4px; }

.tz-band { background: var(--tz-red-banner); color: #fff; padding: 56px 0; margin-top: 16px; }
.tz-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.tz-band h2 { color: #fff; margin-bottom: 8px; }
.tz-band p { margin: 0; max-width: 620px; color: rgba(255, 255, 255, .88); font-size: 16px; }
.tz-band + .tz-footer { margin-top: 0; }

/* --------------------------------------------------------------------------
   Product grid + cards
   -------------------------------------------------------------------------- */
body.tz ul.products.tz-grid, body.tz .tz-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
body.tz ul.products.tz-grid::before, body.tz ul.products.tz-grid::after { display: none; }
.tz-card { position: relative; margin: 0 !important; width: auto !important; float: none !important; background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); overflow: hidden; box-shadow: var(--tz-shadow); transition: transform .18s, box-shadow .18s; display: flex; flex-direction: column; }
.tz-card:hover { transform: translateY(-3px); box-shadow: var(--tz-shadow-lg); }
.tz-card__media { position: relative; aspect-ratio: 1 / 1; background: var(--tz-surface-2); }
.tz-card__img { display: block; width: 100%; height: 100%; }
.tz-card__img img { width: 100%; height: 100%; object-fit: cover; margin: 0 !important; }
.tz-card__heart { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .94); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0, 0, 0, .12); color: var(--tz-ink); }
.tz-card__heart:hover { color: var(--tz-red); }
.tz-card__heart .yith-wcwl-add-to-wishlist { margin: 0 !important; }
.tz-card__heart .yith-wcwl-add-button a, .tz-card__heart .yith-wcwl-wishlistexistsbrowse a, .tz-card__heart .yith-wcwl-wishlistaddedbrowse a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; font-size: 0 !important; color: inherit !important; }
.tz-card__heart .yith-wcwl-add-to-wishlist i, .tz-card__heart .yith-wcwl-add-to-wishlist svg { font-size: 16px; }
.tz-card__heart .yith-wcwl-wishlistaddedbrowse, .tz-card__heart .yith-wcwl-wishlistexistsbrowse { color: var(--tz-red); }
.tz-card__heart .feedback, .tz-card__heart .yith-wcwl-add-to-wishlist .view-wishlist { display: none !important; }
.tz-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.tz-card__row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.tz-card__title { font-size: 15px; font-weight: 600; margin: 0; line-height: 1.3; }
.tz-card__title a { color: var(--tz-ink) !important; }
.tz-card__title a:hover { color: var(--tz-red) !important; }
.tz-price { font-weight: 700; font-size: 15px; white-space: nowrap; color: var(--tz-ink); }
.tz-price del { color: var(--tz-ink-3); font-weight: 400; font-size: 13px; margin-right: 4px; }
.tz-price ins { text-decoration: none; }
.tz-card__store { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--tz-ink-2) !important; }
.tz-card__store:hover { color: var(--tz-red) !important; }
.tz-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; padding-top: 8px; }
.tz-meta { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: var(--tz-ink-2); }
.tz-meta--good { color: var(--tz-green); }
.tz-meta--warn { color: var(--tz-amber); }
.tz-card__add { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--tz-surface-2); color: var(--tz-ink) !important; transition: background .15s, color .15s; }
.tz-card__add:hover { background: var(--tz-red); color: #fff !important; }
.tz-card__add.loading { opacity: .5; }
.tz-card__add.added { background: var(--tz-green); color: #fff !important; }
.tz-card .added_to_cart { display: none; }
.tz-stars { display: inline-flex; gap: 1px; color: #E0A800; }
.tz-stars svg.is-empty { color: var(--tz-line); }

/* --------------------------------------------------------------------------
   Explore (shop archive)
   -------------------------------------------------------------------------- */
.tz-explore { padding-top: 20px; padding-bottom: 72px; }
.tz-crumbs, body.tz .woocommerce-breadcrumb { font-size: 13px; color: var(--tz-ink-3); margin: 0 0 18px; }
.tz-crumbs a, body.tz .woocommerce-breadcrumb a { color: var(--tz-ink-2) !important; }
.tz-explore__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.tz-explore__filter-btn { display: none; }
.tz-explore__layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.tz-explore__toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
body.tz .woocommerce-result-count { margin: 0; font-size: 13px; color: var(--tz-ink-2); }
body.tz .woocommerce-ordering { margin: 0; }
body.tz .woocommerce-ordering select { padding: 9px 36px 9px 14px; border: 1px solid var(--tz-line); border-radius: var(--tz-pill); background: var(--tz-surface); font-size: 13px; }

.tz-filters { position: sticky; top: 88px; background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: 20px; }
.tz-filters__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.tz-filters__head h2 { font-size: 16px; margin: 0; }
.tz-filters__close { display: none; border: 0; background: transparent; cursor: pointer; padding: 4px; }
.tz-filters__group { padding: 14px 0; border: 0; border-top: 1px solid var(--tz-line); margin: 0; min-width: 0; }
.tz-filters__group:first-of-type { border-top: 0; padding-top: 0; }
.tz-filters__group legend, .tz-filters__group h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--tz-ink-2); margin-bottom: 10px; padding: 0; float: left; width: 100%; }
.tz-filters__group legend + * { clear: both; }
.tz-filters__list { list-style: none; margin: 0; padding: 0; max-height: 260px; overflow: auto; }
.tz-filters__list li { margin: 0 0 6px; }
.tz-check { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; position: relative; }
.tz-check input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.tz-check__box { flex: 0 0 18px; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--tz-line-2, #C9CDD3); background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background .12s, border-color .12s; }
.tz-check__box svg { opacity: 0; }
.tz-check input:checked + .tz-check__box { background: var(--tz-red); border-color: var(--tz-red); }
.tz-check input:checked + .tz-check__box svg { opacity: 1; }
.tz-check input:focus-visible + .tz-check__box { box-shadow: 0 0 0 3px var(--tz-red-tint); }
.tz-check__label { flex: 1; }
.tz-check .tz-count { color: var(--tz-ink-3); font-size: 12px; }
.tz-filters__price { display: flex; align-items: center; gap: 8px; }
.tz-filters__price input { width: 100%; min-width: 0; padding: 9px 10px; border: 1px solid var(--tz-line); border-radius: var(--tz-radius-sm); background: var(--tz-surface); font-size: 14px; }
.tz-filters__price span { color: var(--tz-ink-3); }
.tz-filters__types { display: flex; flex-wrap: wrap; gap: 8px; }
.tz-filters__actions { display: flex; gap: 8px; margin-top: 16px; }
.tz-filters__actions .tz-btn { flex: 1; }

body.tz .woocommerce-pagination, .tz-pagination { margin: 36px 0 0; }
body.tz .woocommerce-pagination ul.page-numbers, .tz-pagination .nav-links { display: flex; justify-content: center; gap: 8px; list-style: none; margin: 0; padding: 0; border: 0 !important; }
body.tz .woocommerce-pagination ul.page-numbers li { border: 0 !important; margin: 0 !important; }
body.tz .page-numbers, .tz-pagination .page-numbers { display: inline-flex !important; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px !important; border-radius: var(--tz-pill); background: var(--tz-surface); border: 1px solid var(--tz-line); color: var(--tz-ink) !important; font-weight: 600; font-size: 13px; }
body.tz .page-numbers.current { background: var(--tz-ink) !important; border-color: var(--tz-ink); color: #fff !important; }
body.tz .page-numbers:hover { border-color: var(--tz-ink-3); }
body.tz .page-numbers.dots { border: 0; background: transparent; }

/* --------------------------------------------------------------------------
   Single product
   -------------------------------------------------------------------------- */
.tz-single { padding-top: 20px; padding-bottom: 72px; }
body.tz.single-product div.product { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: 24px; padding: clamp(20px, 3vw, 40px); box-shadow: var(--tz-shadow); }
body.tz div.product .woocommerce-product-gallery { margin-bottom: 0; }
body.tz div.product .woocommerce-product-gallery img { border-radius: var(--tz-radius); }
body.tz div.product .woocommerce-product-gallery .flex-control-thumbs { display: flex; gap: 10px; margin-top: 12px; }
body.tz div.product .woocommerce-product-gallery .flex-control-thumbs li { width: 72px; margin: 0; }
body.tz div.product .woocommerce-product-gallery .flex-control-thumbs img { border-radius: 10px; border: 2px solid transparent; }
body.tz div.product .woocommerce-product-gallery .flex-control-thumbs img.flex-active { border-color: var(--tz-red); }
body.tz div.product .product_title { font-size: clamp(26px, 3vw, 34px); margin: 8px 0 12px; }
.tz-single__store { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.tz-single__store .tz-badge { position: static; box-shadow: none; background: var(--tz-surface-2); }
.tz-single__store a { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; color: var(--tz-ink-2) !important; }
.tz-single__store a:hover { color: var(--tz-red) !important; }
body.tz div.product p.price, body.tz div.product span.price { font-size: 26px; font-weight: 700; color: var(--tz-ink); margin: 10px 0 18px; }
body.tz div.product p.price del { color: var(--tz-ink-3); font-size: 18px; }
body.tz div.product p.price ins { text-decoration: none; }
body.tz div.product .woocommerce-product-details__short-description { color: var(--tz-ink-2); font-size: 16px; }
body.tz div.product form.cart { display: flex; align-items: center; gap: 12px; margin: 22px 0; flex-wrap: wrap; }
body.tz div.product form.cart.variations_form { display: block; }
body.tz div.product form.cart .woocommerce-variation-add-to-cart { display: flex; gap: 12px; align-items: center; }
body.tz div.product form.cart div.quantity { margin: 0; }
body.tz div.product form.cart div.quantity .qty { width: 72px; height: 48px; border: 1px solid var(--tz-line); border-radius: var(--tz-pill); text-align: center; }
body.tz div.product form.cart .single_add_to_cart_button, body.tz .button.alt, body.tz button.button, body.tz a.button, body.tz input.button, body.tz .woocommerce-button, body.tz .wc-block-components-button, body.tz #place_order {
	background: var(--tz-red) !important; color: #fff !important; border: 0 !important; border-radius: var(--tz-pill) !important; padding: 14px 28px !important; font-weight: 600 !important; font-size: 14px !important; line-height: 1.2 !important; cursor: pointer;
}
body.tz div.product form.cart .single_add_to_cart_button:hover, body.tz .button.alt:hover, body.tz button.button:hover, body.tz a.button:hover, body.tz #place_order:hover { background: var(--tz-red-hover) !important; }
body.tz .button.alt.disabled, body.tz button.button:disabled { opacity: .55; }
.tz-single__meta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: var(--tz-surface-2); border-radius: var(--tz-radius-sm); font-size: 13px; margin: 0 0 18px; }
body.tz div.product .variations td.label { padding-right: 16px; font-weight: 600; }
body.tz div.product .variations select { padding: 10px 36px 10px 14px; border: 1px solid var(--tz-line); border-radius: var(--tz-radius-sm); background: var(--tz-surface); }
body.tz div.product .woocommerce-tabs ul.tabs { border: 0; padding: 0; margin: 28px 0 0; display: flex; gap: 6px; }
body.tz div.product .woocommerce-tabs ul.tabs::before, body.tz div.product .woocommerce-tabs ul.tabs::after { display: none; }
body.tz div.product .woocommerce-tabs ul.tabs li { background: transparent; border: 0; border-radius: var(--tz-pill); margin: 0; padding: 0; }
body.tz div.product .woocommerce-tabs ul.tabs li::before, body.tz div.product .woocommerce-tabs ul.tabs li::after { display: none; }
body.tz div.product .woocommerce-tabs ul.tabs li a { padding: 10px 18px; font-weight: 600; font-size: 14px; color: var(--tz-ink-2); border-radius: var(--tz-pill); }
body.tz div.product .woocommerce-tabs ul.tabs li.active { background: var(--tz-ink); }
body.tz div.product .woocommerce-tabs ul.tabs li.active a { color: #fff; }
body.tz div.product .woocommerce-tabs .panel { padding: 22px 0 0; }
body.tz div.product .woocommerce-tabs .panel h2:first-child { font-size: 18px; }
body.tz div.product .shop_attributes { border: 0; }
body.tz div.product .shop_attributes th, body.tz div.product .shop_attributes td { border: 0; border-bottom: 1px solid var(--tz-line); padding: 10px 0; }
body.tz div.product section.related, body.tz div.product section.upsells { margin-top: 40px; }
body.tz div.product section.related > h2, body.tz div.product section.upsells > h2 { font-size: 22px; margin-bottom: 18px; }
body.tz.single-product .wcfmmp_sold_by_container, body.tz.single-product .wcfmmp_sold_by_wrapper { display: none; }

/* --------------------------------------------------------------------------
   Creator profile (WCFM store) + creators grid
   -------------------------------------------------------------------------- */
.tz-creator { padding-top: 20px; padding-bottom: 72px; }
#wcfmmp-store.tz-creator .tz-creator__banner, .tz-creator__banner { border-radius: 24px; overflow: hidden; background: var(--tz-dark) center/cover no-repeat; min-height: 300px; position: relative; display: flex; align-items: flex-end; }
.tz-creator__banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, .72)); }
#wcfmmp-store.tz-creator .tz-creator__banner-inner, .tz-creator__banner-inner { position: relative; display: flex; align-items: flex-end; gap: 22px; padding: 28px 32px; width: 100%; color: #fff; }
.tz-creator__avatar { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, .25); background: var(--tz-surface-2); flex: none; }
.tz-creator__id { flex: 1; min-width: 0; }
.tz-creator__name { color: #fff; font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 4px; }
.tz-creator__tagline { color: rgba(255, 255, 255, .88); margin: 0 0 8px; font-size: 15px; }
.tz-creator__rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, .88); }
.tz-creator__actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tz-creator__actions .wcfmmp-store-follow-btn, .tz-creator__actions .wcfm_store_enquiry, .tz-creator__actions .wcfmmp_store_enquiry, .tz-creator__actions button, .tz-creator__actions a.button, .tz-creator__actions .wcfm-store-follow-btn {
	background: #fff !important; color: var(--tz-ink) !important; border: 0 !important; border-radius: var(--tz-pill) !important; padding: 11px 20px !important; font-weight: 600 !important; font-size: 13px !important; cursor: pointer; line-height: 1.2 !important;
}
.tz-creator__actions .wcfmmp-store-follow-btn:hover, .tz-creator__actions .wcfm_store_enquiry:hover { background: var(--tz-red-tint) !important; }
.tz-creator__layout { display: grid; grid-template-columns: 320px 1fr; gap: 28px; margin-top: 28px; align-items: start; }
.tz-panel { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: 22px; margin-bottom: 18px; }
.tz-panel h2 { font-size: 16px; margin-bottom: 12px; }
.tz-creator__bio { color: var(--tz-ink-2); font-size: 14px; }
.tz-facts { list-style: none; margin: 0; padding: 0; }
.tz-facts li { display: flex; align-items: center; gap: 8px; font-size: 14px; margin: 0 0 8px; color: var(--tz-ink-2); }
.tz-facts svg { color: var(--tz-ink-3); }
.tz-creator__social { margin-top: 14px; }
.tz-creator__social .wcfmmp-store-social ul, .tz-creator__social ul { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; }
.tz-review blockquote { margin: 10px 0 8px; font-style: italic; color: var(--tz-ink); font-size: 14px; }
.tz-review__by { margin: 0; font-size: 13px; color: var(--tz-ink-3); }
.tz-tabs { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 1px solid var(--tz-line); padding-bottom: 12px; margin-bottom: 22px; }
.tz-tabs__tab { display: inline-flex; align-items: center; gap: 6px; padding: 10px 18px; border-radius: var(--tz-pill); font-weight: 600; font-size: 14px; color: var(--tz-ink-2) !important; }
.tz-tabs__tab:hover { background: var(--tz-surface-2); }
.tz-tabs__tab.is-active { background: var(--tz-ink); color: #fff !important; }
.tz-tabs__count { font-size: 11px; padding: 2px 7px; border-radius: var(--tz-pill); background: rgba(0, 0, 0, .08); }
.tz-tabs__tab.is-active .tz-tabs__count { background: rgba(255, 255, 255, .2); }
.tz-creator__tab .wcfmmp-store-page-content, .tz-creator__tab #wcfmmp-store-content { width: 100% !important; }
.tz-creator__tab ul.products { margin-top: 0; }
.tz-creator__tab .wcfmmp_store_description, .tz-creator__tab .wcfmmp-store-page-content > h2 { font-size: 18px; }
.tz-creator__tab .wcfm_store_policies_tab, .tz-creator__tab .wcfmmp-store-policies { font-size: 14px; }
.tz-creator__tab .wcfmmp-store-page-content h3, .tz-creator__tab .wcfmmp_store_policy_title { font-size: 15px; }
/* WCFM store page ships its own #wcfmmp-store rules; keep ours on top. */
#wcfmmp-store.tz-creator .wcfmmp-store-page-wrap { padding: 0; margin: 0; }

.tz-creator-grid, body.tz .wcfmmp-store-lists .wcfmmp-store-lists-sorting + ul, body.tz ul.wcfmmp-stores-list, body.tz #wcfmmp-stores-wrap ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tz-creator-grid__item { margin: 0 !important; width: auto !important; }
.tz-creator-card { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); overflow: hidden; box-shadow: var(--tz-shadow); display: flex; flex-direction: column; height: 100%; transition: transform .18s, box-shadow .18s; }
.tz-creator-card:hover { transform: translateY(-3px); box-shadow: var(--tz-shadow-lg); }
.tz-creator-card__banner { display: block; height: 120px; background: var(--tz-dark) center/cover no-repeat; }
.tz-creator-card__body { padding: 0 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tz-creator-card__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid #fff; margin-top: -36px; box-shadow: 0 2px 8px rgba(0, 0, 0, .15); background: var(--tz-surface-2); }
.tz-creator-card__name { font-size: 18px; margin: 6px 0 0; }
.tz-creator-card__name a { color: var(--tz-ink) !important; }
.tz-creator-card__tagline { color: var(--tz-ink-2); font-size: 14px; margin: 0; }
.tz-creator-card__meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--tz-ink-2); align-items: center; }
.tz-creator-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.tz-creator-card .tz-btn { margin-top: auto; align-self: flex-start; }
body.tz .wcfmmp-store-search, body.tz .wcfmmp-store-lists-sorting, body.tz .wcfmmp-store-lists-search { margin-bottom: 20px; }
body.tz #wcfmmp-stores-wrap .wcfmmp-store-search input[type="text"], body.tz .wcfmmp-store-search input { padding: 11px 16px; border: 1px solid var(--tz-line); border-radius: var(--tz-pill); }
body.tz #wcfmmp-stores-wrap .wcfmmp-store-search input[type="submit"], body.tz .wcfmmp-store-search input[type="submit"] { background: var(--tz-red); color: #fff; border: 0; border-radius: var(--tz-pill); padding: 11px 20px; font-weight: 600; }
body.tz .wcfmmp-store-lists-pagination, body.tz .wcfmmp-store-pagination { margin-top: 30px; text-align: center; }

.tz-collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tz-collection { display: block; background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); overflow: hidden; box-shadow: var(--tz-shadow); color: var(--tz-ink) !important; transition: transform .18s, box-shadow .18s; }
.tz-collection:hover { transform: translateY(-3px); box-shadow: var(--tz-shadow-lg); }
.tz-collection__img { display: block; aspect-ratio: 4 / 3; background: var(--tz-surface-2) center/cover no-repeat; }
.tz-collection__body { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; }
.tz-collection__name { font-weight: 700; }
.tz-collection__count { font-size: 13px; color: var(--tz-ink-3); }

/* --------------------------------------------------------------------------
   Seller landing
   -------------------------------------------------------------------------- */
.tz-sell { padding: 28px 0 0; }
.tz-sell__hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; margin-bottom: 40px; }
.tz-sell__copy h1 { font-size: clamp(36px, 5vw, 60px); margin-bottom: 18px; }
.tz-sell__copy h1 em { font-style: normal; color: var(--tz-red); }
.tz-sell__copy p { font-size: 17px; color: var(--tz-ink-2); max-width: 540px; margin-bottom: 26px; }
.tz-sell__media { position: relative; aspect-ratio: 5 / 4; border-radius: 24px; background: var(--tz-surface-2) center/cover no-repeat; box-shadow: var(--tz-shadow); }
.tz-sell__float { position: absolute; left: 22px; bottom: 22px; background: var(--tz-surface); border-radius: var(--tz-radius); padding: 14px 18px; box-shadow: var(--tz-shadow-lg); display: flex; flex-direction: column; gap: 2px; }
.tz-sell__float strong { font-size: 14px; }
.tz-sell__float span { font-size: 12px; color: var(--tz-ink-2); }
.tz-sell__band { background: var(--tz-surface-2); border-radius: 24px; padding: clamp(28px, 4vw, 56px); text-align: center; margin-bottom: 56px; }
.tz-sell__band h2 { font-size: clamp(24px, 3.2vw, 36px); }
.tz-sell__band p { max-width: 720px; margin: 0 auto; color: var(--tz-ink-2); font-size: 16px; }
.tz-sell__h2 { text-align: center; margin-bottom: 26px; font-size: clamp(24px, 3vw, 34px); }
.tz-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 56px; }
.tz-bento__card { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: 26px; }
.tz-bento__card--wide { grid-column: span 2; }
.tz-bento__card h3 { margin-bottom: 8px; }
.tz-bento__card p { margin: 0; color: var(--tz-ink-2); font-size: 14px; }
/* Dark card: must outrank the generic card rules above AND body.tz heading colours. */
body.tz .tz-bento__card--dark { background: var(--tz-dark); color: #fff; border-color: var(--tz-dark); }
body.tz .tz-bento__card--dark h3 { color: #fff; }
body.tz .tz-bento__card--dark p { color: rgba(255, 255, 255, .82); }
.tz-bento__big { font-size: 24px !important; font-weight: 800; color: var(--tz-red) !important; margin: 0 0 8px !important; letter-spacing: -.01em; }
.tz-fees { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); overflow: hidden; }
.tz-fees__row { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 16px 22px; border-top: 1px solid var(--tz-line); font-size: 14px; }
.tz-fees__row:first-child { border-top: 0; }
.tz-fees__row span { color: var(--tz-ink-2); }
.tz-fees__row--example { background: var(--tz-red-tint); }
.tz-fees__row--example span { color: var(--tz-ink); }
.tz-sell__fine { font-size: 13px; color: var(--tz-ink-3); margin: 14px 0 56px; text-align: center; }
.tz-sell__content { max-width: 860px; margin: 0 auto 56px; }

/* --------------------------------------------------------------------------
   Content pages, blog, 404
   -------------------------------------------------------------------------- */
.tz-prose { font-size: 16px; }
.tz-prose h2 { font-size: 24px; margin-top: 1.6em; }
.tz-prose h3 { font-size: 18px; margin-top: 1.4em; }
.tz-prose ol, .tz-prose ul { margin: 0 0 1.2em; }
.tz-prose blockquote { margin: 1.4em 0; padding: 4px 20px; border-left: 3px solid var(--tz-red); color: var(--tz-ink-2); }
.tz-page--narrow .tz-prose { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: clamp(22px, 3vw, 40px); }
.tz-page--wide .tz-prose { background: transparent; border: 0; padding: 0; }
.tz-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tz-post-card { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); overflow: hidden; box-shadow: var(--tz-shadow); }
.tz-post-card__img img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.tz-post-card__body { padding: 18px; }
.tz-post-card__title { font-size: 18px; }
.tz-post-card__title a { color: var(--tz-ink) !important; }
.tz-post__hero img { border-radius: var(--tz-radius); }
.tz-404 { text-align: center; padding-top: 72px; }
.tz-404__search { max-width: 460px; margin: 0 auto 24px; }

/* --------------------------------------------------------------------------
   Woo forms, notices, cart, checkout, account, wishlist — restrained defaults
   -------------------------------------------------------------------------- */
body.tz .woocommerce-message, body.tz .woocommerce-info, body.tz .woocommerce-error { border-top: 0; border-left: 3px solid var(--tz-green); background: var(--tz-surface); border-radius: var(--tz-radius-sm); box-shadow: var(--tz-shadow); padding: 14px 18px 14px 48px; margin-bottom: 22px; }
body.tz .woocommerce-message::before { color: var(--tz-green); }
body.tz .woocommerce-info { border-left-color: var(--tz-ink-3); }
body.tz .woocommerce-info::before { color: var(--tz-ink-3); }
body.tz .woocommerce-error { border-left-color: var(--tz-red); }
body.tz .woocommerce-error::before { color: var(--tz-red); }
body.tz .woocommerce-message .button, body.tz .woocommerce-info .button { padding: 8px 16px !important; font-size: 13px !important; }
body.tz .woocommerce form .form-row input.input-text, body.tz .woocommerce form .form-row textarea, body.tz .woocommerce form .form-row select, body.tz .woocommerce-input-wrapper .select2-container .select2-selection--single, body.tz form input[type="text"], body.tz form input[type="email"], body.tz form input[type="password"], body.tz form input[type="tel"], body.tz form textarea {
	padding: 11px 14px; border: 1px solid var(--tz-line); border-radius: var(--tz-radius-sm); background: var(--tz-surface); width: 100%;
}
body.tz .woocommerce-input-wrapper .select2-container .select2-selection--single { height: auto; }
body.tz .woocommerce form .form-row input.input-text:focus, body.tz form input:focus, body.tz form textarea:focus { outline: 0; border-color: var(--tz-red); box-shadow: 0 0 0 3px var(--tz-red-tint); }
body.tz .woocommerce form .form-row label { font-weight: 600; font-size: 13px; }
body.tz table.shop_table { border: 1px solid var(--tz-line); border-radius: var(--tz-radius); border-collapse: separate; background: var(--tz-surface); overflow: hidden; }
body.tz table.shop_table th, body.tz table.shop_table td { border-color: var(--tz-line); padding: 14px 16px; }
body.tz table.shop_table img { border-radius: 8px; }
body.tz .cart_totals, body.tz #order_review, body.tz .woocommerce-checkout-review-order { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: 22px; }
body.tz .cart_totals table.shop_table, body.tz #order_review table.shop_table { border: 0; }
body.tz .wc-proceed-to-checkout a.checkout-button { display: block; text-align: center; }
body.tz .woocommerce-cart .coupon .input-text { width: 180px !important; margin-right: 8px; }
body.tz .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); overflow: hidden; }
body.tz .woocommerce-MyAccount-navigation li a { display: block; padding: 12px 18px; color: var(--tz-ink) !important; border-bottom: 1px solid var(--tz-line); font-weight: 500; }
body.tz .woocommerce-MyAccount-navigation li:last-child a { border-bottom: 0; }
body.tz .woocommerce-MyAccount-navigation li.is-active a { background: var(--tz-red-tint); color: var(--tz-red) !important; }
body.tz .woocommerce-MyAccount-content { background: var(--tz-surface); border: 1px solid var(--tz-line); border-radius: var(--tz-radius); padding: 26px; }
body.tz .woocommerce-form-login, body.tz .woocommerce-form-register, body.tz .u-columns > div { background: var(--tz-surface); border: 1px solid var(--tz-line) !important; border-radius: var(--tz-radius) !important; padding: 26px !important; }
body.tz .wc-block-components-product-name, body.tz .wc-block-components-order-summary { font-family: var(--tz-font); }
body.tz .wc-block-components-checkout-step__title, body.tz .wp-block-woocommerce-checkout-order-summary-block { font-family: var(--tz-font); }
body.tz .wc-block-components-button { padding: 14px 28px !important; }

/* --------------------------------------------------------------------------
   WCFM dashboard containment (vendor Store Manager renders inside page.php)
   -------------------------------------------------------------------------- */
body.tz.tz-page--wide, body.tz .wcfm-membership-wrapper, body.tz #wcfm-main-contentainer { font-family: var(--tz-font); }
body.tz .tz-page--wide .tz-prose > .wcfm-membership-wrapper, body.tz .tz-page--wide .tz-prose > #wcfm-main-contentainer { margin-top: 20px; }
body.tz .wcfm_dashboard_page_wrapper, body.tz .wcfm-wp-fields { font-family: var(--tz-font); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
	.tz-footer__grid { grid-template-columns: 1fr 1fr; }
	.tz-features { grid-template-columns: repeat(2, 1fr); }
	.tz-header__link.tz-header__signin span { display: none; }
	.tz-header__row { gap: 14px; }
	.tz-nav__list a { padding: 10px 9px; }
}
@media (max-width: 900px) {
	.tz-header__row { height: 64px; gap: 12px; }
	.tz-header__burger { display: inline-flex; }
	.tz-header__search { display: none; }
	.tz-header__search--mobile { display: block; }
	.tz-header__cta { display: none; }
	.tz-nav { position: fixed; inset: 0 auto 0 0; width: min(320px, 85vw); background: var(--tz-surface); z-index: 950; padding: 84px 20px 20px; transform: translateX(-105%); transition: transform .22s ease; box-shadow: var(--tz-shadow-lg); overflow: auto; }
	body.tz-nav-open .tz-nav { transform: none; }
	body.tz-nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(0, 0, 0, .35); z-index: 940; }
	.tz-nav__list { flex-direction: column; gap: 0; }
	.tz-nav__list a { display: block; padding: 14px 10px; font-size: 16px; border-radius: 10px; }
	.tz-nav__mobile-extra { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--tz-line); }
	.tz-nav__mobile-extra a { padding: 12px 10px; font-weight: 600; color: var(--tz-ink) !important; }
	.tz-nav__mobile-extra a:last-child { background: var(--tz-red); color: #fff !important; border-radius: var(--tz-pill); text-align: center; }
	.tz-hero { grid-template-columns: 1fr; }
	.tz-hero__media { order: -1; min-height: 220px; }
	.tz-explore__layout, .tz-creator__layout { grid-template-columns: 1fr; }
	.tz-explore__filter-btn { display: inline-flex; }
	.tz-filters { position: fixed; top: 0; left: 0; bottom: 0; width: min(340px, 88vw); z-index: 950; border-radius: 0; overflow: auto; transform: translateX(-105%); transition: transform .22s ease; }
	body.tz-filters-open .tz-filters { transform: none; }
	body.tz-filters-open::after { content: ""; position: fixed; inset: 0; background: rgba(0, 0, 0, .35); z-index: 940; }
	.tz-filters__close { display: inline-flex; }
	body.tz ul.products.tz-grid, body.tz .tz-grid, .tz-creator-grid, .tz-collection-grid, .tz-post-grid, .tz-bento { grid-template-columns: repeat(2, 1fr); }
	.tz-bento__card--wide { grid-column: span 2; }
	.tz-sell__hero { grid-template-columns: 1fr; }
	.tz-creator__banner-inner { flex-wrap: wrap; padding: 20px; gap: 14px; }
	.tz-creator__avatar { width: 84px; height: 84px; }
	.tz-fees__row { grid-template-columns: 1fr; gap: 4px; }
	.tz-section__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
	:root { --tz-gutter: 16px; }
	body.tz ul.products.tz-grid, body.tz .tz-grid, .tz-creator-grid, .tz-collection-grid, .tz-post-grid, .tz-bento, .tz-features, .tz-footer__grid { grid-template-columns: 1fr; }
	.tz-bento__card--wide { grid-column: auto; }
	.tz-card__row { flex-direction: column; gap: 2px; }
	.tz-wordmark { font-size: 24px; }
	.tz-header__link { display: none; }
	.tz-band__inner { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   Creators page (WCFM store list, page.php wide layout)
   -------------------------------------------------------------------------- */
body.tz .wcfmmp-store-search-form { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0 0 26px; padding: 0; }
body.tz .wcfmmp-store-search-form input.wcfmmp-store-search, body.tz .wcfmmp-store-search-form select, body.tz .wcfmmp-store-search-form .select2-container .select2-selection--single { height: 44px; border: 1px solid var(--tz-line); border-radius: var(--tz-pill); background: var(--tz-surface); padding: 0 16px; font-size: 14px; font-family: var(--tz-font); }
body.tz .wcfmmp-store-search-form .select2-container { min-width: 180px; }
body.tz .wcfmmp-store-search-form .select2-container .select2-selection__rendered { line-height: 42px; padding-left: 0; }
body.tz .wcfmmp-store-search-form .select2-container .select2-selection__arrow { height: 42px; }
body.tz .wcfmmp-store-search-form input.wcfmmp-store-search { flex: 1 1 220px; }
body.tz .wcfmmp-store-search-form input[type="submit"], body.tz .wcfmmp-store-search-form button { height: 44px; padding: 0 22px; border: 0; border-radius: var(--tz-pill); background: var(--tz-red); color: #fff; font-weight: 600; cursor: pointer; }
body.tz .wcfmmp-store-search-form input[type="submit"]:hover, body.tz .wcfmmp-store-search-form button:hover { background: var(--tz-red-dark, #7a1220); }
body.tz .wcfmmp-store-search-form #wcfmmp_store_state, body.tz .wcfmmp-store-search-form #wcfmmp_store_state + .select2-container, body.tz .wcfmmp-store-search-form .wcfmmp-store-search-form-radius-wrap { display: none !important; }
body.tz #wcfmmp-stores-wrap-holder { width: 100%; float: none; margin: 0; padding: 0; }
body.tz #wcfmmp-stores-wrap, body.tz .wcfmmp-store-wrap, body.tz .wcfmmp-stores-content-holder { background: transparent; border: 0; box-shadow: none; padding: 0; margin: 0; width: 100%; }
body.tz #wcfmmp-stores-wrap ul.wcfmmp-store-wrap { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
body.tz .wcfmmp-stores-listing > li.wcfmmp-single-store { margin: 0 !important; width: auto !important; float: none !important; }
body.tz .wcfmmp-stores-listing .tz-creator-card { height: 100%; }
@media (max-width: 900px) { body.tz #wcfmmp-stores-wrap ul.wcfmmp-store-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { body.tz #wcfmmp-stores-wrap ul.wcfmmp-store-wrap { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   v0.1.3: beat WCFM's store + custom sheets on the banner, and tidy the
   single-product summary (advanced sold-by box, Woo sale flash, enquiry/compare).
   -------------------------------------------------------------------------- */
#wcfmmp-store.tz-creator .tz-creator__banner::before { background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .82) 100%); }
#wcfmmp-store.tz-creator h1.tz-creator__name { color: #fff !important; font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); margin: 0 0 4px; text-shadow: 0 1px 8px rgba(0, 0, 0, .45); clear: none; }
#wcfmmp-store.tz-creator .tz-creator__tagline, #wcfmmp-store.tz-creator .tz-creator__rating { color: #fff !important; text-shadow: 0 1px 6px rgba(0, 0, 0, .5); }
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box { margin: 0 !important; float: none !important; width: auto !important; }
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a, #wcfmmp-store.tz-creator .tz-creator__actions a.follow, #wcfmmp-store.tz-creator .tz-creator__actions a.wcfm_store_enquiry {
	display: inline-flex !important; align-items: center; gap: 6px; height: auto !important; min-width: 0 !important; width: auto !important;
	background: #fff !important; color: var(--tz-ink) !important; border: 0 !important; border-radius: var(--tz-pill) !important;
	padding: 11px 20px !important; font: 600 13px/1.2 var(--tz-font) !important; box-shadow: 0 2px 10px rgba(0, 0, 0, .18); text-decoration: none !important;
}
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a:hover { background: var(--tz-red-tint) !important; color: var(--tz-red) !important; }
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a i { font-size: 12px; color: inherit !important; }
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a span { position: static !important; display: inline !important; }

body.tz.single-product .summary .wcfmmp_sold_by_container_advanced, body.tz.single-product .summary .wcfm-clearfix, body.tz.single-product span.onsale { display: none !important; }
body.tz.single-product .tz-single__eyebrow .tz-badge--sale { position: static; }
body.tz.single-product .summary .wcfm_catalog_enquiry_button_wrapper { display: inline-block; margin: 6px 8px 0 0; vertical-align: top; }
body.tz.single-product .summary .wcfm_catalog_enquiry_button_wrapper a, body.tz.single-product .summary a.compare.button {
	display: inline-flex !important; align-items: center; gap: 6px; background: transparent !important; color: var(--tz-ink-2) !important;
	border: 1px solid var(--tz-line-2, var(--tz-line)) !important; border-radius: var(--tz-pill) !important; padding: 10px 18px !important;
	font: 600 13px/1.2 var(--tz-font) !important; box-shadow: none !important; margin: 6px 8px 0 0 !important; text-decoration: none !important;
}
body.tz.single-product .summary .wcfm_catalog_enquiry_button_wrapper a:hover, body.tz.single-product .summary a.compare.button:hover { border-color: var(--tz-ink) !important; color: var(--tz-ink) !important; }
body.tz.single-product .summary .wcfm_catalog_enquiry_button_wrapper a i { color: inherit !important; font-size: 12px; }
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a span, #wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a i { color: inherit !important; font-size: 13px !important; opacity: 1 !important; text-indent: 0 !important; width: auto !important; height: auto !important; overflow: visible !important; }
#wcfmmp-store.tz-creator .tz-creator__actions .bd_icon_box a i { font-size: 12px !important; }
@media (max-width: 600px) {
	#wcfmmp-store.tz-creator .tz-creator__banner-inner { flex-wrap: wrap; }
	#wcfmmp-store.tz-creator .tz-creator__id { flex: 1 1 100%; min-width: 0; }
	#wcfmmp-store.tz-creator h1.tz-creator__name { font-size: 24px; overflow-wrap: anywhere; }
	#wcfmmp-store.tz-creator .tz-creator__tagline { font-size: 14px; }
	#wcfmmp-store.tz-creator .tz-creator__actions { flex: 1 1 100%; }
}

/* v0.1.5: nav drawer above its overlay (sticky header is a stacking context), explicit single-product grid */
body.tz-nav-open .tz-header { z-index: 960; }
body.tz.single-product div.product { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; align-items: start; }
body.tz.single-product div.product > .woocommerce-product-gallery, body.tz.single-product div.product > .summary { float: none !important; width: 100% !important; margin: 0 !important; }
body.tz.single-product div.product > :not(.woocommerce-product-gallery):not(.woo-variation-product-gallery):not(.summary) { grid-column: 1 / -1; }
body.tz.single-product div.product::before, body.tz.single-product div.product::after { display: none; }
@media (max-width: 768px) {
	body.tz.single-product div.product { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}
/* Woo Variation Gallery wraps the gallery in its own container and pins a width; it is the first grid column. */
body.tz.single-product div.product > .woo-variation-product-gallery { grid-column: auto; width: 100% !important; max-width: 100% !important; float: none !important; margin: 0 !important; }
body.tz.single-product div.product > * { min-width: 0; }
