/* PTQ Commerce Engine frontend scaffold */
:root {
	--ptq-bg: #f7f4ee;
	--ptq-card: rgba(255,255,255,.8);
	--ptq-text: #151515;
	--ptq-muted: #6c6c6c;
	--ptq-border: rgba(21,21,21,.09);
	--ptq-radius: 24px;
	--ptq-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.ptqce-shell,
.ptqce-builder-shell {
	max-width: 1240px;
	margin: 0 auto;
	padding: 24px 16px 48px;
}
.ptqce-theme-bypass-body{margin:0;background:#f7f4ee;color:#151515}
.ptqce-theme-bypass-main{min-height:100vh}
.ptqce-build-badge{
	position:fixed;
	right:14px;
	bottom:14px;
	z-index:120;
	display:inline-flex;
	align-items:center;
	gap:6px;
	padding:8px 12px;
	background:rgba(28,15,19,.92);
	color:#fff;
	font-size:12px;
	line-height:1;
	border-radius:999px;
	box-shadow:0 10px 22px rgba(16,24,40,.18);
}
.ptqce-build-badge,
.ptqce-build-badge strong,
.ptqce-build-badge span{color:#fff!important}
.ptqce-build-badge span{opacity:.7}
.ptqce-page-header {
	margin-bottom: 22px;
}
.ptqce-lines-grid,
.ptqce-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}
.ptqce-line-card,
.ptqce-product-card,
.ptqce-summary-card,
.ptqce-step-card,
.ptqce-addon-card,
.ptqce-module-card {
	background: var(--ptq-card);
	backdrop-filter: blur(10px);
	border: 1px solid var(--ptq-border);
	border-radius: var(--ptq-radius);
	box-shadow: var(--ptq-shadow);
	overflow: hidden;
}
.ptqce-line-thumb img,
.ptqce-product-card img,
.ptqce-builder-media img {
	display: block;
	width: 100%;
	height: auto;
}
.ptqce-line-content,
.ptqce-product-card-body,
.ptqce-summary-card,
.ptqce-step-card,
.ptqce-addon-card,
.ptqce-module-card {
	padding: 18px;
}
.ptqce-subtitle,
.ptqce-eyebrow,
.ptqce-kicker,
.ptqce-mood {
	color: var(--ptq-muted);
}
.ptqce-link,
.ptqce-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 600;
}
.ptqce-button,
.ptqce-button-primary,
.ptqce-link {
	background: #151515;
	color: #fff;
}
.ptqce-button-secondary {
	background: transparent;
	color: #151515;
	border: 1px solid var(--ptq-border);
}
.ptqce-builder-topbar {
	position: sticky;
	top: 10px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 18px;
	margin-bottom: 18px;
	background: rgba(255,255,255,.78);
	backdrop-filter: blur(16px);
	border: 1px solid var(--ptq-border);
	border-radius: 999px;
	box-shadow: var(--ptq-shadow);
}
.ptqce-price-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	background: #fff;
	border: 1px solid var(--ptq-border);
	border-radius: 999px;
}
.ptqce-builder-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(300px, .85fr);
	gap: 20px;
}
.ptqce-builder-hero,
.ptqce-line-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .95fr);
	gap: 18px;
	margin-bottom: 18px;
}
.ptqce-feature-list,
.ptqce-summary-card ul {
	padding-left: 18px;
	margin: 0;
}
.ptqce-step-head {
	display: flex;
	gap: 14px;
	margin-bottom: 16px;
}
.ptqce-step-number,
.ptqce-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 5px 10px;
	background: #151515;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
}
.ptqce-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.ptqce-field-full {
	grid-column: 1 / -1;
}
.ptqce-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}
.ptqce-field input,
.ptqce-field textarea,
.ptqce-field select,
.ptqce-module-card input,
.ptqce-module-card select {
	width: 100%;
	padding: 13px 14px;
	border-radius: 16px;
	border: 1px solid var(--ptq-border);
	background: #fff;
}
.ptqce-module-list,
.ptqce-addon-list {
	display: grid;
	gap: 12px;
}
.ptqce-help {
	color: var(--ptq-muted);
	font-size: 13px;
	margin-bottom: 0;
}
.ptqce-help-shell {
	display: grid;
	gap: 32px;
	padding-top: 28px;
	padding-bottom: 56px;
}
.ptqce-help-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
	gap: 26px;
	align-items: stretch;
}
.ptqce-help-hero-copy,
.ptqce-help-hero-panel,
.ptqce-help-topic-card,
.ptqce-help-faq-group,
.ptqce-help-empty {
	background: #fff;
	border: 1px solid rgba(23,21,19,.09);
	border-radius: 30px;
	box-shadow: 0 18px 45px rgba(35,24,13,.06);
}
.ptqce-help-hero-copy {
	padding: 34px;
	background:
		radial-gradient(circle at top left, rgba(61,199,190,.18), transparent 34%),
		linear-gradient(160deg, #fffaf5 0%, #ffffff 58%, #f8f3ed 100%);
}
.ptqce-help-eyebrow {
	margin: 0 0 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #a0684c;
}
.ptqce-help-hero h1 {
	margin: 0;
	font-size: clamp(32px, 4vw, 54px);
	line-height: .96;
	letter-spacing: -0.04em;
}
.ptqce-help-lead {
	max-width: 720px;
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.7;
	color: #65594d;
}
.ptqce-help-search {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}
.ptqce-help-search input {
	width: 100%;
	min-height: 62px;
	padding: 18px 22px;
	border: 1px solid rgba(23,21,19,.12);
	border-radius: 999px;
	background: rgba(255,255,255,.95);
	font-size: 16px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.ptqce-help-search input:focus {
	outline: 0;
	border-color: var(--ptq-accent);
	box-shadow: 0 0 0 4px rgba(61,199,190,.15);
}
.ptqce-help-search-note {
	padding-left: 8px;
	font-size: 13px;
	color: #7a6f64;
}
.ptqce-help-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 24px;
}
.ptqce-help-stat {
	padding: 16px 18px;
	border-radius: 22px;
	background: rgba(255,255,255,.8);
	border: 1px solid rgba(23,21,19,.06);
}
.ptqce-help-stat strong {
	display: block;
	font-size: 18px;
}
.ptqce-help-stat span {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.5;
	color: #7c7268;
}
.ptqce-help-hero-panel {
	padding: 28px;
	background:
		linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,252,249,.96)),
		radial-gradient(circle at top right, rgba(61,199,190,.14), transparent 30%);
}
.ptqce-help-panel-head p,
.ptqce-help-faq-group-head p {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #a0684c;
}
.ptqce-help-panel-head h2,
.ptqce-help-section-head h2,
.ptqce-help-faq-group-head h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.05;
	letter-spacing: -0.03em;
}
.ptqce-help-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 20px;
}
.ptqce-help-contact-card {
	display: grid;
	gap: 7px;
	padding: 18px;
	border-radius: 24px;
	border: 1px solid rgba(23,21,19,.08);
	background: #fff;
	color: inherit;
	text-decoration: none !important;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ptqce-help-contact-card:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(35,24,13,.08);
	border-color: rgba(61,199,190,.35);
}
.ptqce-help-contact-card.is-accent {
	background: linear-gradient(160deg, rgba(61,199,190,.12), rgba(255,255,255,.96));
}
.ptqce-help-contact-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #a0684c;
}
.ptqce-help-contact-card strong {
	font-size: 18px;
	line-height: 1.25;
}
.ptqce-help-contact-card small {
	font-size: 13px;
	line-height: 1.55;
	color: #74695f;
}
.ptqce-help-panel-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.ptqce-help-topics,
.ptqce-help-faqs {
	display: grid;
	gap: 20px;
}
.ptqce-help-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
}
.ptqce-help-section-note {
	max-width: 420px;
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #766a5e;
}
.ptqce-help-topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}
.ptqce-help-topic-card {
	display: grid;
	gap: 8px;
	padding: 20px;
	text-align: left;
	cursor: pointer;
	transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ptqce-help-topic-card:hover,
.ptqce-help-topic-card.is-active {
	transform: translateY(-1px);
	border-color: rgba(61,199,190,.38);
	box-shadow: 0 14px 28px rgba(35,24,13,.08);
}
.ptqce-help-topic-card span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #a0684c;
}
.ptqce-help-topic-card strong {
	font-size: 18px;
	line-height: 1.2;
}
.ptqce-help-topic-card small {
	font-size: 14px;
	line-height: 1.55;
	color: #74695f;
}
.ptqce-help-faq-groups {
	display: grid;
	gap: 16px;
}
.ptqce-help-faq-group {
	padding: 24px;
}
.ptqce-help-faq-group-head {
	display: grid;
	gap: 6px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(23,21,19,.08);
}
.ptqce-help-faq-group-head span {
	font-size: 14px;
	line-height: 1.6;
	color: #75695f;
}
.ptqce-help-faq-list {
	display: grid;
	gap: 12px;
	padding-top: 18px;
}
.ptqce-help-faq-item {
	border: 1px solid rgba(23,21,19,.08);
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fdfaf7 100%);
	padding: 18px 20px;
}
.ptqce-help-faq-item summary {
	cursor: pointer;
	list-style: none;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	padding-right: 28px;
	position: relative;
}
.ptqce-help-faq-item summary::-webkit-details-marker {
	display: none;
}
.ptqce-help-faq-item summary::after {
	content: '+';
	position: absolute;
	top: 0;
	right: 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #a0684c;
}
.ptqce-help-faq-item[open] summary::after {
	content: '−';
}
.ptqce-help-faq-answer {
	display: grid;
	gap: 10px;
	padding-top: 14px;
}
.ptqce-help-faq-answer p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #61564c;
}
.ptqce-help-empty {
	padding: 30px;
	text-align: center;
}
.ptqce-help-empty h3 {
	margin: 0;
	font-size: 24px;
}
.ptqce-help-empty p {
	max-width: 520px;
	margin: 10px auto 0;
	font-size: 15px;
	line-height: 1.6;
	color: #75695f;
}
.ptqce-help-shell {
	display: grid;
	gap: 26px;
	padding-top: 26px;
	padding-bottom: 56px;
}
.ptqce-help-hero,
.ptqce-help-search-band,
.ptqce-help-faq-group,
.ptqce-help-empty,
.ptqce-help-topic-card,
.ptqce-help-support-bar {
	background: #fff;
	border: 1px solid rgba(23,21,19,.08);
	border-radius: 28px;
	box-shadow: 0 18px 44px rgba(31,24,19,.05);
}
.ptqce-help-hero {
	display: grid;
	gap: 12px;
	padding: 28px 32px;
	background:
		radial-gradient(circle at top left, rgba(201,178,170,.18), transparent 30%),
		linear-gradient(180deg, #fffaf7 0%, #ffffff 66%, #fbf8f5 100%);
}
.ptqce-help-hero h1 {
	max-width: 860px;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.02;
	letter-spacing: -0.05em;
}
.ptqce-help-lead {
	max-width: 720px;
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #665c55;
}
.ptqce-help-search-band {
	padding: 16px 18px;
}
.ptqce-help-search {
	display: grid;
	gap: 8px;
	margin: 0;
}
.ptqce-help-search input {
	min-height: 62px;
	padding: 16px 22px;
	border-radius: 999px;
	border: 1px solid rgba(23,21,19,.12);
	background: #fff;
	font-size: 16px;
}
.ptqce-help-topic-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
}
.ptqce-help-topic-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 18px;
	box-shadow: none;
}
.ptqce-help-topic-card span {
	display: none;
}
.ptqce-help-topic-card strong {
	font-size: 15px;
	line-height: 1.3;
}
.ptqce-help-topic-card small {
	flex-shrink: 0;
	font-size: 12px;
	color: #8a776c;
}
.ptqce-help-faq-groups {
	display: grid;
	gap: 14px;
}
.ptqce-help-faq-group {
	padding: 20px 22px;
}
.ptqce-help-faq-list {
	padding-top: 14px;
}
.ptqce-help-faq-item {
	border-radius: 16px;
	background: #fff;
	box-shadow: none;
}
.ptqce-help-faq-group-head {
	padding-bottom: 12px;
}
.ptqce-help-faq-group-head p {
	margin-bottom: 4px;
}
.ptqce-help-faq-group-head h3 {
	font-size: 24px;
}
.ptqce-help-faq-group-head span {
	font-size: 13px;
}
.ptqce-help-support-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
}
.ptqce-help-support-copy {
	display: grid;
	gap: 6px;
}
.ptqce-help-support-copy h2 {
	margin: 0;
	font-size: 28px;
	line-height: 1.08;
	letter-spacing: -0.03em;
}
.ptqce-help-support-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.ptqce-builder-actions {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
}
.ptqce-personalize-fields {
	display: grid;
	gap: 14px;
	margin: 14px 0 12px;
	padding: 16px;
	border: 1px solid rgba(23,21,19,.08);
	border-radius: 22px;
	background: #fffaf7;
}
.ptqce-reserved-shell {
	display: grid;
	gap: 26px;
	padding-top: 28px;
	padding-bottom: 56px;
}
.ptqce-sample-preview-card {
	overflow: hidden;
	padding: 0 !important;
}
.ptqce-sample-preview-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.ptqce-sample-preview-copy {
	display: grid;
	gap: 6px;
	padding: 18px;
}
.ptqce-sample-preview-copy span {
	font-size: 18px;
	font-weight: 700;
}
.ptqce-sample-preview-copy small {
	font-size: 14px;
	color: #6f6358;
}
.ptqce-reserved-order-card {
	display: grid;
	gap: 16px;
}
.ptqce-reserved-order-item {
	padding-top: 14px;
	border-top: 1px solid rgba(23,21,19,.08);
}
.ptqce-reserved-preview-box {
	padding: 16px;
	border-radius: 20px;
	background: #fff9f2;
	border: 1px solid rgba(23,21,19,.08);
}
.ptqce-section {
	margin: 24px 0;
}
.ptqce-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 1024px) {
	.ptqce-lines-grid,
	.ptqce-products-grid,
	.ptqce-builder-grid,
	.ptqce-builder-hero,
	.ptqce-line-hero {
		grid-template-columns: 1fr;
	}
	.ptqce-help-hero {
		grid-template-columns: 1fr;
	}
	.ptqce-help-contact-grid,
	.ptqce-help-stats {
		grid-template-columns: 1fr;
	}
	.ptqce-help-topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.ptqce-help-section-head {
		align-items: flex-start;
		flex-direction: column;
	}
}
@media (max-width: 768px) {
	.ptqce-form-grid,
	.ptqce-lines-grid,
	.ptqce-products-grid {
		grid-template-columns: 1fr;
	}
	.ptqce-builder-topbar {
		border-radius: 22px;
		align-items: flex-start;
		flex-direction: column;
	}
	.ptqce-builder-actions {
		flex-direction: column;
	}
	.ptqce-builder-actions .ptqce-button {
		width: 100%;
	}
	.ptqce-help-shell {
		gap: 22px;
		padding-top: 18px;
		padding-bottom: 42px;
	}
	.ptqce-help-hero-copy,
	.ptqce-help-hero-panel,
	.ptqce-help-faq-group,
	.ptqce-help-empty {
		padding: 20px;
		border-radius: 24px;
	}
	.ptqce-help-hero h1 {
		font-size: 34px;
	}
	.ptqce-help-lead {
		font-size: 15px;
	}
	.ptqce-help-search input {
		min-height: 56px;
		padding: 16px 18px;
		font-size: 15px;
	}
	.ptqce-help-contact-grid,
	.ptqce-help-topic-grid {
		grid-template-columns: 1fr;
	}
	.ptqce-help-panel-head h2,
	.ptqce-help-section-head h2,
	.ptqce-help-faq-group-head h3 {
		font-size: 22px;
	}
	.ptqce-help-faq-item {
		padding: 14px 16px;
		border-radius: 18px;
	}
	.ptqce-help-faq-item summary {
		font-size: 15px;
	}
	.ptqce-help-faq-answer p,
	.ptqce-help-topic-card small,
	.ptqce-help-section-note {
		font-size: 14px;
	}
}
@media (max-width: 1200px) {
	.ptqce-help-topic-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.ptqce-help-support-bar {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (max-width: 1024px) {
	.ptqce-help-search-band,
	.ptqce-help-hero,
	.ptqce-help-faq-group,
	.ptqce-help-empty,
	.ptqce-help-topic-card,
	.ptqce-help-support-bar {
		border-radius: 24px;
	}
	.ptqce-help-topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 768px) {
	.ptqce-help-hero,
	.ptqce-help-search-band,
	.ptqce-help-faq-group,
	.ptqce-help-empty,
	.ptqce-help-support-bar {
		padding: 20px;
	}
	.ptqce-help-topic-grid {
		grid-template-columns: 1fr;
	}
	.ptqce-help-hero h1 {
		font-size: 32px;
	}
	.ptqce-help-lead {
		font-size: 15px;
	}
	.ptqce-help-search input {
		min-height: 58px;
		padding: 16px 18px;
		font-size: 15px;
	}
	.ptqce-help-topic-card {
		flex-direction: column;
		align-items: flex-start;
	}
	.ptqce-help-topic-card small {
		font-size: 11px;
	}
	.ptqce-help-support-copy h2 {
		font-size: 24px;
	}
	.ptqce-help-support-actions {
		width: 100%;
	}
	.ptqce-help-support-actions .ptqce-button {
		width: 100%;
	}
}


/* PTQ Studio frontend admin */
.ptqce-studio-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 28px 16px 72px;
}
.ptqce-studio-topbar {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 18px;
}
.ptqce-studio-lead {
	max-width: 760px;
	color: var(--ptq-muted);
	margin: 8px 0 0;
}
.ptqce-studio-pills {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.ptqce-studio-tabs {
	position: sticky;
	top: 8px;
	z-index: 25;
	display: flex;
	gap: 10px;
	padding: 10px;
	background: rgba(255,255,255,.75);
	backdrop-filter: blur(14px);
	border: 1px solid var(--ptq-border);
	border-radius: 999px;
	margin-bottom: 22px;
	box-shadow: var(--ptq-shadow);
	overflow-x: auto;
}
.ptqce-studio-tab {
	appearance: none;
	border: 0;
	background: transparent;
	border-radius: 999px;
	padding: 12px 18px;
	font: inherit;
	font-weight: 600;
	color: var(--ptq-text);
	cursor: pointer;
	white-space: nowrap;
}
.ptqce-studio-tab.is-active {
	background: #151515;
	color: #fff;
}
.ptqce-studio-panel {
	display: none;
}
.ptqce-studio-panel.is-active {
	display: block;
}
.ptqce-studio-two-col {
	display: grid;
	grid-template-columns: minmax(360px, .95fr) minmax(0, 1.2fr);
	gap: 18px;
}
.ptqce-studio-card {
	background: rgba(255,255,255,.82);
	backdrop-filter: blur(12px);
	border: 1px solid var(--ptq-border);
	border-radius: 28px;
	padding: 20px;
	box-shadow: var(--ptq-shadow);
}
.ptqce-studio-card-head h2 {
	margin: 0 0 6px;
}
.ptqce-studio-card-head p {
	margin: 0 0 18px;
	color: var(--ptq-muted);
}
.ptqce-studio-form p {
	margin: 0 0 14px;
}
.ptqce-studio-form label {
	display: block;
	font-weight: 600;
}
.ptqce-studio-form input[type="text"],
.ptqce-studio-form input[type="number"],
.ptqce-studio-form select,
.ptqce-studio-form textarea {
	width: 100%;
	margin-top: 8px;
	padding: 14px 14px;
	border-radius: 16px;
	border: 1px solid rgba(21,21,21,.12);
	background: #fff;
	font: inherit;
	box-sizing: border-box;
}
.ptqce-studio-form select[multiple] {
	min-height: 154px;
}
.ptqce-inline-check {
	margin-top: 10px;
}
.ptqce-inline-check label {
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 500;
}
.ptqce-studio-list {
	display: grid;
	gap: 12px;
}
.ptqce-studio-item {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
	padding: 16px;
	border-radius: 20px;
	border: 1px solid rgba(21,21,21,.08);
	background: rgba(255,255,255,.72);
}
.ptqce-studio-item h3 {
	margin: 0 0 6px;
	font-size: 18px;
}
.ptqce-studio-meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 10px 0 0;
}
.ptqce-badge-light {
	background: rgba(21,21,21,.06);
	color: #151515;
}
.ptqce-studio-small {
	font-size: 13px;
	color: var(--ptq-muted);
	margin: 8px 0 0;
}
.ptqce-studio-notice {
	padding: 14px 16px;
	border-radius: 18px;
	margin-bottom: 18px;
	font-weight: 600;
	border: 1px solid transparent;
}
.ptqce-studio-notice-success {
	background: rgba(39, 174, 96, .12);
	border-color: rgba(39, 174, 96, .25);
	color: #18663b;
}
.ptqce-studio-notice-error {
	background: rgba(192, 57, 43, .12);
	border-color: rgba(192, 57, 43, .24);
	color: #8d2216;
}
.ptqce-empty-state {
	padding: 18px;
	border-radius: 18px;
	background: rgba(21,21,21,.04);
	color: var(--ptq-muted);
}
.ptqce-button-small {
	padding: 10px 14px;
	font-size: 14px;
}
.ptqce-studio-login {
	max-width: 560px;
	margin: 60px auto;
	background: rgba(255,255,255,.84);
	border: 1px solid var(--ptq-border);
	border-radius: 28px;
	padding: 28px;
	box-shadow: var(--ptq-shadow);
	text-align: center;
}
@media (max-width: 1024px) {
	.ptqce-studio-two-col,
	.ptqce-builder-grid,
	.ptqce-builder-hero,
	.ptqce-line-hero,
	.ptqce-lines-grid,
	.ptqce-products-grid {
		grid-template-columns: 1fr;
	}
	.ptqce-studio-topbar {
		flex-direction: column;
	}
}
@media (max-width: 640px) {
	.ptqce-studio-shell {
		padding: 18px 12px 92px;
	}
	.ptqce-studio-card,
	.ptqce-studio-item {
		border-radius: 22px;
	}
	.ptqce-studio-item {
		flex-direction: column;
	}
	.ptqce-studio-tab {
		padding: 11px 15px;
		font-size: 14px;
	}
}

.ptqce-checklist-block {
	margin: 18px 0;
	padding: 16px;
	border-radius: 20px;
	background: rgba(21,21,21,.03);
	border: 1px solid rgba(21,21,21,.06);
}
.ptqce-checklist-title {
	margin: 0 0 12px;
	font-weight: 700;
}
.ptqce-checklist-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}
.ptqce-check-item {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(21,21,21,.08);
	font-weight: 500;
}
.ptqce-empty-inline {
	margin: 0;
	color: var(--ptq-muted);
}
.ptqce-style-card {
	padding: 18px;
	border-radius: 24px;
	border: 1px solid rgba(21,21,21,.08);
	background: rgba(255,255,255,.78);
	display: grid;
	gap: 16px;
}
.ptqce-style-card-head {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: flex-start;
}
.ptqce-style-card-head h3 {
	margin: 0;
	font-size: 22px;
}
.ptqce-style-thumb img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 18px;
}
.ptqce-style-description {
	margin: 0;
	color: var(--ptq-muted);
}
.ptqce-inline-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
}
.ptqce-style-products-block {
	padding-top: 4px;
}
.ptqce-generated-list {
	display: grid;
	gap: 10px;
}
.ptqce-generated-item {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: flex-start;
	padding: 14px;
	border-radius: 18px;
	background: rgba(21,21,21,.03);
	border: 1px solid rgba(21,21,21,.06);
}
@media (max-width: 640px) {
	.ptqce-checklist-grid {
		grid-template-columns: 1fr;
	}
	.ptqce-style-card-head,
	.ptqce-generated-item {
		flex-direction: column;
	}
	.ptqce-inline-actions {
		width: 100%;
	}
}

.ptqce-editor {
	margin-top: 14px;
	padding: 14px;
	border-radius: 18px;
	border: 1px solid rgba(21,21,21,.08);
	background: rgba(21,21,21,.025);
}
.ptqce-editor summary {
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}
.ptqce-editor summary::-webkit-details-marker {
	display: none;
}
.ptqce-editor summary::after {
	content: '▾';
	float: right;
	color: var(--ptq-muted);
}
.ptqce-editor[open] summary::after {
	content: '▴';
}
.ptqce-editor-compact {
	padding: 12px 14px;
}
.ptqce-editor form {
	margin-top: 14px;
}
.ptqce-studio-item-editable,
.ptqce-generated-item {
	align-items: stretch;
}
.ptqce-studio-item-main,
.ptqce-generated-main {
	flex: 1 1 auto;
	min-width: 0;
}
.ptqce-studio-panel { display:none; }
.ptqce-studio-panel.is-active { display:block; }
.ptqce-studio-create-box,
.ptqce-style-card,
.ptqce-studio-item,
.ptqce-generated-item,
.ptqce-generated-product-gallery,
.ptqce-generated-product-info {
	background: var(--ptq-card);
	border: 1px solid var(--ptq-border);
	border-radius: var(--ptq-radius);
	box-shadow: var(--ptq-shadow);
}
.ptqce-studio-create-box,
.ptqce-style-card,
.ptqce-studio-item,
.ptqce-generated-item { padding: 18px; margin-bottom: 18px; }
.ptqce-studio-list-grid { display:grid; gap:18px; }
.ptqce-grid-compact { grid-template-columns: repeat(2, minmax(0,1fr)); }
.ptqce-style-description,
.ptqce-studio-small { color:var(--ptq-muted); }
.ptqce-checklist-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; }
.ptqce-check-item { display:flex; gap:8px; align-items:flex-start; background:#fff; border:1px solid var(--ptq-border); border-radius:16px; padding:10px 12px; }
.ptqce-inline-actions { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.ptqce-button-small { padding:9px 13px; font-size:13px; }
.ptqce-studio-form input[type="text"],
.ptqce-studio-form input[type="number"],
.ptqce-studio-form textarea,
.ptqce-studio-form select {
	width:100%; padding:13px 14px; border-radius:16px; border:1px solid var(--ptq-border); background:#fff;
}
.ptqce-media-field { margin:14px 0; }
.ptqce-field-label { display:block; font-weight:600; margin-bottom:8px; }
.ptqce-media-preview,
.ptqce-gallery-preview {
	display:flex; flex-wrap:wrap; gap:10px; min-height:74px; padding:10px; border:1px dashed var(--ptq-border); border-radius:18px; background:rgba(255,255,255,.65); margin-bottom:10px; align-items:center;
}
.ptqce-media-preview img { width:120px; height:120px; object-fit:cover; border-radius:16px; }
.ptqce-gallery-preview img { width:86px; height:86px; object-fit:cover; border-radius:14px; }
.ptqce-collapse-toggle .ptqce-collapse-symbol { display:inline-flex; width:16px; justify-content:center; }
.ptqce-collapsible-body[hidden] { display:none !important; }
.ptqce-generated-list { display:grid; gap:12px; }
.ptqce-generated-item { display:flex; justify-content:space-between; gap:12px; }
.ptqce-generated-main { flex:1; }
.ptqce-generated-product-grid { display:grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.9fr); gap:24px; }
.ptqce-generated-product-gallery,
.ptqce-generated-product-info { padding:18px; }
.ptqce-product-main-image img { width:100%; height:auto; border-radius:18px; display:block; }
.ptqce-product-thumb-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px; margin-top:10px; }
.ptqce-product-thumb-item img { width:100%; height:150px; object-fit:cover; border-radius:16px; display:block; }
.ptqce-generated-price { font-size:28px; font-weight:700; margin:8px 0 16px; }
.ptqce-generated-info-list { display:grid; gap:10px; margin:18px 0; }
.ptqce-generated-info-item { display:flex; justify-content:space-between; gap:16px; padding:12px 14px; border:1px solid var(--ptq-border); border-radius:16px; background:#fff; }
.ptqce-generated-option-list { display:flex; gap:8px; flex-wrap:wrap; }
@media (max-width: 900px) {
	.ptqce-grid-compact,
	.ptqce-generated-product-grid,
	.ptqce-checklist-grid,
	.ptqce-product-thumb-grid { grid-template-columns:1fr; }
	.ptqce-generated-item { flex-direction:column; }
}


.ptqce-media-button {
	display:inline-flex;
	align-items:center;
	gap:10px;
	padding:12px 16px;
	border-radius:18px;
	border:1px solid var(--ptq-border);
	background:#fff;
	font-weight:700;
	cursor:pointer;
}
.ptqce-media-button .dashicons,
.ptqce-media-button-icon {
	font-size:18px;
	width:18px;
	height:18px;
}
.ptqce-media-button-primary {
	background:#151515;
	color:#fff;
}
.ptqce-media-field .ptqce-inline-actions { gap:10px; }
.ptqce-media-preview,
.ptqce-gallery-preview {
	min-height:96px;
	background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(247,244,238,.9));
}
.ptqce-upload-hint {
	font-size:12px;
	color:var(--ptq-muted);
	margin-top:-2px;
	margin-bottom:10px;
}
.ptqce-table-wrap {
	overflow:auto;
	border:1px solid var(--ptq-border);
	border-radius:24px;
	background:#fff;
	box-shadow:var(--ptq-shadow);
}
.ptqce-excel-table {
	width:100%;
	border-collapse:separate;
	border-spacing:0;
	min-width:980px;
}
.ptqce-excel-table th,
.ptqce-excel-table td {
	padding:12px 10px;
	border-bottom:1px solid rgba(21,21,21,.08);
	vertical-align:top;
}
.ptqce-excel-table thead th {
	position:sticky;
	top:0;
	z-index:1;
	background:#f4efe6;
	text-align:left;
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:.04em;
}
.ptqce-excel-table td input[type="text"],
.ptqce-excel-table td input[type="number"],
.ptqce-excel-table td textarea,
.ptqce-excel-table td select {
	width:100%;
	padding:10px 12px;
	border-radius:14px;
	border:1px solid var(--ptq-border);
	box-sizing:border-box;
	background:#fff;
}
.ptqce-excel-table td textarea { min-height:88px; }
.ptqce-excel-thumb { width:56px; height:56px; object-fit:cover; border-radius:12px; display:block; margin-bottom:8px; }
.ptqce-table-toolbar {
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:12px;
	margin:14px 0;
	flex-wrap:wrap;
}
.ptqce-table-caption { color:var(--ptq-muted); }
.ptqce-feature-editor { display:grid; gap:10px; margin-top:10px; }
.ptqce-feature-row { display:flex; gap:8px; align-items:center; }
.ptqce-feature-row input[type="text"] { flex:1; }
.ptqce-product-flags { display:grid; gap:12px; margin:16px 0; }
.ptqce-inline-switch {
	display:flex;
	align-items:center;
	gap:10px;
	padding:12px 14px;
	border-radius:16px;
	background:rgba(21,21,21,.03);
	border:1px solid rgba(21,21,21,.06);
}
.ptqce-section-box {
	padding:14px;
	border-radius:18px;
	background:rgba(21,21,21,.025);
	border:1px solid rgba(21,21,21,.06);
}
.ptqce-section-box h4 { margin:0 0 10px; }

.ptqce-upload-field{margin:12px 0;padding:14px;border:1px solid #e7e2da;border-radius:16px;background:#fff}
.ptqce-upload-preview,.ptqce-gallery-preview{display:flex;gap:10px;flex-wrap:wrap;align-items:flex-start;justify-content:flex-start;min-height:112px;padding:10px;border:1px dashed #d6d1c9;border-radius:14px;background:#faf7f2;margin-bottom:12px}
.ptqce-thumb-card{position:relative;width:96px;height:96px;border-radius:14px;overflow:hidden;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.08);flex:0 0 auto}
.ptqce-thumb-card img{width:100%;height:100%;object-fit:cover;display:block}
.ptqce-thumb-remove{position:absolute;top:6px;right:6px;width:24px;height:24px;border:none;border-radius:999px;background:rgba(17,17,17,.82);color:#fff;font-size:18px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;padding:0}
.ptqce-upload-empty{display:flex;align-items:center;justify-content:center;min-height:92px;padding:8px 10px;border-radius:12px;background:rgba(255,255,255,.75);color:#6c655b;font-size:14px}
.ptqce-upload-square{display:grid;place-items:center;gap:6px;width:110px;height:110px;border-radius:18px;background:#111;color:#fff;font-weight:600;cursor:pointer;text-decoration:none;text-align:center;padding:10px}
.ptqce-upload-square input{display:none}
.ptqce-upload-square .dashicons{font-size:24px;width:24px;height:24px}
.ptqce-upload-square-text{font-size:13px;line-height:1.2}
.ptqce-upload-plus{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:999px;background:#fff;color:#111;font-weight:700}
.ptqce-file-selected{margin-top:8px;font-size:13px;color:#5f5a52}
.ptqce-studio-item-editable,.ptqce-style-card,.ptqce-generated-item{border:1px solid #ece7df;border-radius:18px;background:#fff;padding:18px;box-shadow:0 8px 24px rgba(0,0,0,.04)}
.ptqce-style-card-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.ptqce-generated-list{display:grid;gap:14px;margin-top:16px}
.ptqce-grid-compact{grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.ptqce-table-wrap{overflow:auto}
.ptqce-excel-table{width:100%;border-collapse:separate;border-spacing:0 8px}
.ptqce-excel-table th,.ptqce-excel-table td{vertical-align:top;text-align:left;padding:10px}
.ptqce-excel-table tbody tr{background:#fff;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,.03)}
.ptqce-excel-table input,.ptqce-excel-table textarea,.ptqce-excel-table select{width:100%}
.ptqce-upload-note,.ptqce-table-caption{color:#6c655b;font-size:14px}
.ptqce-qty-card{margin:16px 0;padding:18px;border-radius:18px;background:#fbf8f4;border:1px solid #ece7df}
.ptqce-qty-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;flex-wrap:wrap}
.ptqce-qty-head h2{margin:0}
.ptqce-qty-total-wrap{display:flex;flex-direction:column;align-items:flex-end;gap:4px}
.ptqce-qty-total-label,.ptqce-unit-price-label{font-size:13px;color:#6c655b}
.ptqce-qty-total{font-size:28px;line-height:1.1}
.ptqce-qty-controls{display:flex;align-items:center;gap:10px;margin-top:14px}
.ptqce-qty-btn{width:42px;height:42px;border:none;border-radius:12px;background:#111;color:#fff;font-size:24px;line-height:1;cursor:pointer}
.ptqce-qty-input{width:110px;text-align:center;font-size:20px;font-weight:600;border-radius:12px;border:1px solid #ddd2c2;padding:10px 12px;background:#fff}
@media (max-width: 640px){.ptqce-qty-total-wrap{align-items:flex-start}.ptqce-qty-total{font-size:24px}.ptqce-upload-square{width:100%;height:auto;min-height:78px;grid-template-columns:auto auto 1fr;justify-content:start;padding:14px}}
.ptqce-upload-note,.ptqce-table-caption{color:#6c655b;font-size:14px}.ptqce-upload-note,.ptqce-table-caption{color:#6c655b;font-size:14px}

/* v0.9 studio/app polish */
.ptqce-studio-app{max-width:1480px;padding:0 20px 40px;display:grid;grid-template-columns:260px minmax(0,1fr);gap:28px;align-items:start}
.ptqce-studio-sidebar{position:sticky;top:18px;background:#fff;border:1px solid var(--ptq-border);border-radius:28px;padding:18px;box-shadow:var(--ptq-shadow)}
.ptqce-brand{width:88px;height:88px;border-radius:28px;background:#111;color:#fff;display:flex;align-items:center;justify-content:center;font-size:34px;font-weight:800;letter-spacing:.06em;margin-bottom:18px}
.ptqce-brand.is-logo{width:auto;height:auto;padding:10px;background:#fff}
.ptqce-brand-image{display:block;max-width:180px;max-height:64px;width:auto;height:auto}
.ptqce-studio-nav{display:flex;flex-direction:column;gap:8px}
.ptqce-studio-sidebar-tools{display:grid;gap:10px;margin-top:18px;padding-top:18px;border-top:1px solid rgba(21,21,21,.08)}
.ptqce-studio-side-action{width:100%;justify-content:center;text-align:center}
.ptqce-studio-side-action.is-danger{border-color:rgba(192,57,43,.24)!important;color:#8d2216!important;background:rgba(192,57,43,.06)!important}
.ptqce-catalog-job-card{display:grid;gap:10px;padding:14px;border:1px solid rgba(21,21,21,.08);background:rgba(255,255,255,.75);border-radius:20px}
.ptqce-catalog-job-label{font-size:13px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;color:#151515}
.ptqce-catalog-job-message{font-size:14px;line-height:1.45;color:#151515}
.ptqce-catalog-job-detail{font-size:12px;line-height:1.4;color:#6c6c6c;min-height:17px}
.ptqce-catalog-job-progress{height:8px;overflow:hidden;background:rgba(21,21,21,.08);border-radius:999px}
.ptqce-catalog-job-progress span{display:block;height:100%;background:#151515;transition:width .24s ease}
.ptqce-catalog-job-meta{display:flex;justify-content:space-between;gap:12px;font-size:12px;font-weight:700;color:#6c6c6c}
.ptqce-catalog-job-card.is-complete .ptqce-catalog-job-progress span{background:#1f8f56}
.ptqce-catalog-job-card.is-error .ptqce-catalog-job-progress span{background:#b33726}
.ptqce-studio-side-action[disabled]{opacity:.55;cursor:wait}
.ptqce-studio-tab{appearance:none;border:0;background:transparent;border-radius:16px;padding:12px 14px;text-align:left;font-weight:600;color:#303030;cursor:pointer;font-size:15px;display:block;text-decoration:none}
.ptqce-studio-tab.is-active{background:#111;color:#fff;box-shadow:0 8px 24px rgba(0,0,0,.12)}
.ptqce-studio-main{min-width:0;padding-top:8px}
.ptqce-studio-topbar{margin-bottom:18px;display:flex;align-items:center;justify-content:space-between}
.ptqce-studio-topbar h1{margin:0;font-size:42px;line-height:1;color:#08052b}
.ptqce-studio-lead,.ptqce-studio-pills,.ptqce-studio-tabs{display:none!important}
.ptqce-studio-panel{display:none}
.ptqce-studio-panel.is-active{display:block}
.ptqce-studio-create-box,.ptqce-style-card,.ptqce-studio-item,.ptqce-generated-item{background:#fff;border:1px solid var(--ptq-border);border-radius:26px;box-shadow:var(--ptq-shadow)}
.ptqce-studio-create-box{padding:22px;margin-bottom:18px}
.ptqce-studio-list-grid{display:grid;grid-template-columns:1fr;gap:16px}
.ptqce-grid-compact{grid-template-columns:1fr}
.ptqce-style-card,.ptqce-studio-item,.ptqce-generated-item{padding:18px}
.ptqce-style-card-head,.ptqce-generated-headbar,.ptqce-studio-item{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}
.ptqce-studio-item-main,.ptqce-generated-main{flex:1 1 auto;min-width:0}
.ptqce-generated-toolbar,.ptqce-inline-actions{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.ptqce-generated-title{display:block;font-size:20px;line-height:1.2;color:#08052b;margin-bottom:6px}
.ptqce-mini-button,.ptqce-button-secondary,.ptqce-button,.ptqce-button-primary{border-radius:14px;padding:11px 14px;font-size:14px;font-weight:700;text-decoration:none;border:1px solid var(--ptq-border);display:inline-flex;align-items:center;justify-content:center;gap:8px;cursor:pointer}
.ptqce-mini-button{background:#fff;color:#171717}
.ptqce-mini-button-soft{background:#f3f1ec}
.ptqce-mini-button-danger{background:#fff3f3;color:#8a1f1f;border-color:#efc4c4}
.ptqce-button{background:#111;color:#fff;border-color:#111}
.ptqce-button-secondary{background:#fff;color:#111}
.ptqce-button-small{padding:10px 12px;font-size:13px}
.ptqce-excel-table{width:100%;border-collapse:separate;border-spacing:0 6px;font-size:12px}
.ptqce-excel-table th,.ptqce-excel-table td{padding:7px 8px;vertical-align:top}
.ptqce-excel-table thead th{font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:#666}
.ptqce-excel-table td input[type="text"],.ptqce-excel-table td input[type="number"],.ptqce-excel-table td textarea,.ptqce-excel-table td select{padding:9px 10px;border-radius:12px;font-size:12px;line-height:1.25}
.ptqce-excel-table td textarea{min-height:70px}
.ptqce-table-wrap{overflow:auto}
.ptqce-checklist-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.ptqce-check-item{display:flex;align-items:center;gap:10px;background:#f6f3ee;border:1px solid rgba(0,0,0,.06);border-radius:14px;padding:12px 14px;font-size:14px}
.ptqce-check-item input{width:18px;height:18px;accent-color:#111}
.ptqce-upload-field{display:grid;gap:12px}
.ptqce-field-label{font-weight:700;color:#08052b}
.ptqce-upload-preview,.ptqce-gallery-preview{display:flex;flex-wrap:wrap;gap:10px;min-height:90px;padding:12px;border:1px dashed #d8d0c3;border-radius:20px;background:#fbfaf8}
.ptqce-upload-empty{display:flex;align-items:center;justify-content:center;min-height:66px;background:#fff;border:1px solid rgba(0,0,0,.04);border-radius:16px;color:#7a746a;padding:0 18px}
.ptqce-upload-trigger{display:inline-flex;align-items:center;gap:10px;align-self:flex-start;padding:12px 14px;border-radius:14px;background:#111;color:#fff;font-weight:700;cursor:pointer}
.ptqce-upload-trigger input{display:none}
.ptqce-upload-trigger .dashicons{font-size:18px;width:18px;height:18px}
.ptqce-thumb-card{position:relative;width:88px;height:88px;border-radius:18px;overflow:hidden;background:#fff;border:1px solid rgba(0,0,0,.06)}
.ptqce-thumb-card img{width:100%;height:100%;object-fit:cover;display:block}
.ptqce-thumb-remove{position:absolute;top:6px;right:6px;width:24px;height:24px;border-radius:999px;border:0;background:#111;color:#fff;font-size:18px;line-height:1;cursor:pointer}
.ptqce-file-selected{font-size:12px;color:#6e6a63}
.ptqce-product-filters{margin-bottom:0}
#ptqce-products-catalog{grid-template-columns:1fr;gap:14px}
.ptqce-product-filter-item{display:block}
.ptqce-generated-item details{margin-top:14px}
.ptqce-generated-product-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);gap:26px}
.ptqce-product-main-image,.ptqce-product-thumb-item{border-radius:24px;overflow:hidden;border:1px solid var(--ptq-border);background:#fff}
.ptqce-product-thumb-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:12px}
.ptqce-generated-price{font-size:24px;font-weight:800;color:#08052b;margin:10px 0 16px}
.ptqce-unit-price-label{display:block;font-size:12px;letter-spacing:.06em;text-transform:uppercase;color:#686868;font-weight:600}
.ptqce-qty-card{display:grid;gap:14px}
.ptqce-qty-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.ptqce-qty-controls{display:flex;align-items:center;gap:10px}
.ptqce-qty-btn{width:44px;height:44px;border-radius:14px;border:1px solid var(--ptq-border);background:#fff;font-size:28px;line-height:1;cursor:pointer}
.ptqce-qty-input{width:120px;text-align:center;padding:12px;border-radius:14px;border:1px solid var(--ptq-border);font-size:18px;font-weight:700}
.ptqce-qty-total{font-size:28px;color:#08052b}
.ptqce-tooltip{position:relative;display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:999px;background:#111;color:#fff;font-size:11px;font-weight:700;cursor:help;margin-left:6px;vertical-align:middle}
.ptqce-tooltip-bubble{position:absolute;left:50%;bottom:calc(100% + 10px);transform:translateX(-50%);min-width:220px;max-width:260px;padding:10px 12px;border-radius:14px;background:#111;color:#fff;font-size:12px;line-height:1.4;opacity:0;pointer-events:none;transition:opacity .18s ease}
.ptqce-tooltip:hover .ptqce-tooltip-bubble,.ptqce-tooltip:focus .ptqce-tooltip-bubble{opacity:1}
.ptqce-generated-info-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin:18px 0}
.ptqce-generated-info-item{background:#fff;border:1px solid var(--ptq-border);border-radius:18px;padding:14px}
.ptqce-generated-info-item strong{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.06em;color:#666;margin-bottom:6px}
.ptqce-builder-actions-stacked{display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;justify-content:stretch}
.ptqce-builder-actions-stacked .ptqce-button{width:100%}
.ptqce-purchase-form{display:block}
.ptqce-studio-notice{margin-bottom:14px}
@media (max-width: 1100px){.ptqce-studio-app{grid-template-columns:1fr}.ptqce-studio-sidebar{position:relative;top:auto}.ptqce-generated-product-grid{grid-template-columns:1fr}.ptqce-generated-info-list,.ptqce-builder-actions-stacked{grid-template-columns:1fr}}


/* v0.9.1 layout stability fix */
.ptqce-studio-shell {
	max-width: 1480px;
	box-sizing: border-box;
}
.ptqce-studio-app {
	width: 100%;
	box-sizing: border-box;
	grid-template-columns: 280px minmax(0, 1fr);
	grid-template-areas: "sidebar main";
	align-items: start;
}
.ptqce-studio-app > * {
	min-width: 0;
	box-sizing: border-box;
}
.ptqce-studio-sidebar {
	grid-area: sidebar;
	width: 100%;
	align-self: start;
}
.ptqce-studio-main {
	grid-area: main;
	width: 100%;
	overflow: hidden;
}
.ptqce-studio-notice {
	max-width: 1480px;
	margin-left: auto;
	margin-right: auto;
}
.ptqce-product-filters {
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	align-items: end;
}
@media (max-width: 1100px) {
	.ptqce-studio-shell {
		padding-left: 16px;
		padding-right: 16px;
	}
	.ptqce-studio-app {
		grid-template-columns: 1fr;
		grid-template-areas:
			"sidebar"
			"main";
	}
	.ptqce-studio-main {
		overflow: visible;
	}
}

/* v0.9.2 products tab refinement */
.ptqce-studio-form input[type="search"],
.ptqce-input-elevated {
	appearance: none;
	width: 100%;
	min-height: 54px;
	padding: 14px 18px;
	border: 1px solid var(--ptq-border);
	border-radius: 18px;
	background: #fff;
	font-size: 16px;
	line-height: 1.3;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.ptqce-input-elevated:focus,
.ptqce-studio-form input[type="search"]:focus {
	outline: none;
	border-color: #0a062f;
	box-shadow: 0 0 0 4px rgba(8,5,43,.08);
}
.ptqce-product-filters-box { padding: 26px 28px; }
.ptqce-product-filters-row {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
	gap: 20px;
	align-items: end;
}
.ptqce-filter-field { display: grid; gap: 10px; }
.ptqce-filter-field label {
	font-size: 15px;
	font-weight: 700;
	color: #08052b;
}

.ptqce-generated-item {
	padding: 22px 24px;
	display: grid;
	gap: 0;
}
.ptqce-generated-headbar-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: start;
}
.ptqce-generated-topline {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.ptqce-generated-toolbar-inline { gap: 8px; }
.ptqce-generated-toolbar-inline form { margin: 0; }
.ptqce-generated-category {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #f3f1ec;
	color: #48443d;
	font-size: 13px;
	font-weight: 700;
}
.ptqce-generated-title {
	font-size: 32px;
	line-height: 1.02;
	letter-spacing: -.03em;
	margin-bottom: 12px;
}
.ptqce-generated-headbar-product .ptqce-studio-meta-row { gap: 10px; }
.ptqce-mini-button {
	min-height: 42px;
	padding: 10px 14px;
	border-radius: 14px;
	font-size: 13px;
	font-weight: 800;
}
.ptqce-mini-button-view {
	background: #eff5ff;
	border-color: #d8e5ff;
	color: #163a7b;
}
.ptqce-mini-button-suspend {
	background: #f4f1ea;
	border-color: #e2dbc9;
	color: #4f4535;
}
.ptqce-mini-button-danger {
	background: #fff5f5;
	border-color: #f0c9c9;
	color: #a42b2b;
}

.ptqce-editor-product {
	margin-top: 18px;
	width: 100%;
	border-top: 1px solid #efe8de;
	padding-top: 18px;
}
.ptqce-product-editor-toggle {
	list-style: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 18px;
	border-radius: 18px;
	border: 1px solid var(--ptq-border);
	background: #fff;
	color: #08052b;
	font-weight: 800;
	font-size: 15px;
	cursor: pointer;
	float: right;
}
.ptqce-product-editor-toggle::-webkit-details-marker { display: none; }
.ptqce-editor-product[open] .ptqce-product-editor-toggle {
	background: #111;
	color: #fff;
	border-color: #111;
}
.ptqce-editor-product form {
	clear: both;
	padding-top: 18px;
}
.ptqce-product-editor-layout { display: grid; gap: 18px; }
.ptqce-product-editor-section {
	background: #fcfbf9;
	border: 1px solid #ece4d8;
	border-radius: 24px;
	padding: 22px;
}
.ptqce-product-editor-section-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}
.ptqce-product-editor-section-head.simple { margin-bottom: 16px; }
.ptqce-product-editor-section-head h4 {
	margin: 0 0 6px;
	font-size: 24px;
	line-height: 1.05;
	color: #08052b;
}
.ptqce-product-editor-section-head p {
	margin: 0;
	font-size: 14px;
	color: #6b665d;
}
.ptqce-inline-switch-card {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 10px;
	align-items: start;
	padding: 16px 18px;
	border: 1px solid #ebe3d8;
	border-radius: 18px;
	background: #fff;
	font-weight: 700;
	color: #08052b;
}
.ptqce-inline-switch-card input { margin-top: 3px; }
.ptqce-save-chip {
	border: 0;
	min-height: 46px;
	padding: 0 18px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}
.ptqce-save-chip.is-saved {
	background: #e7f7ea;
	color: #17733d;
}
.ptqce-save-chip.is-dirty {
	background: #fff1db;
	color: #b56208;
}
.ptqce-save-chip.is-saving {
	background: #ece9ff;
	color: #4332a0;
}
.ptqce-upload-field + .ptqce-upload-field { margin-top: 12px; }

@media (max-width: 1100px) {
	.ptqce-product-filters-row,
	.ptqce-generated-headbar-product { grid-template-columns: 1fr; }
	.ptqce-product-editor-toggle { float: none; width: 100%; }
	.ptqce-editor-product form { padding-top: 12px; }
	.ptqce-product-editor-section-head { flex-direction: column; align-items: stretch; }
}


/* v0.9.3 products apple-style refinement */
.ptqce-product-filters-box { padding: 22px 24px; }
.ptqce-product-filters-row { grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 18px; }
.ptqce-filter-field label { font-size: 14px; font-weight: 700; }
.ptqce-product-search,
.ptqce-product-style-filter,
.ptqce-input-elevated {
  appearance: none;
  -webkit-appearance: none;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid #ddd5c8;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85);
  font-size: 15px;
  color: #181536;
}
.ptqce-product-style-filter {
  padding-right: 42px;
  background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.ptqce-generated-item { padding: 22px 24px; }
.ptqce-generated-toprow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
}
.ptqce-generated-main { min-width: 0; }
.ptqce-generated-toolbar-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ptqce-generated-toolbar-inline form { margin: 0; }
.ptqce-mini-button {
  min-width: 122px;
  width: 122px;
  min-height: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}
.ptqce-mini-button-view { background: #eff5ff; border-color: #d8e5ff; color: #163a7b; }
.ptqce-mini-button-suspend { background: #f4f1ea; border-color: #e2dbc9; color: #4f4535; }
.ptqce-mini-button-danger { background: #fff5f5; border-color: #f0c9c9; color: #a42b2b; }
.ptqce-generated-title {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.04;
  letter-spacing: -.035em;
  margin: 0 0 12px;
  color: #08052b;
}
.ptqce-generated-category {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #f3f1ec;
  color: #4f4941;
  font-size: 14px;
  font-weight: 700;
}
.ptqce-generated-editcol {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.ptqce-product-editor-button {
  min-width: 244px;
  height: 58px;
  padding: 0 22px;
  border: 1px solid #e3dbcf;
  border-radius: 20px;
  background: #fff;
  color: #08052b;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 2px 0 rgba(0,0,0,.02);
}
.ptqce-product-editor-button .ptqce-editor-caret { transition: transform .18s ease; }
.ptqce-product-editor-button.is-open {
  background: #111;
  border-color: #111;
  color: #fff;
}
.ptqce-product-editor-button.is-open .ptqce-editor-caret { transform: rotate(180deg); }
.ptqce-product-editor-panel {
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #efe8de;
}
.ptqce-product-editor-panel[hidden] { display: none !important; }
.ptqce-product-editor-layout { display: grid; gap: 18px; width: 100%; }
.ptqce-product-editor-section { padding: 22px; border-radius: 24px; }
.ptqce-product-editor-section-head { align-items: center; }
.ptqce-product-editor-section-head h4 { font-size: 22px; margin: 0 0 6px; }
.ptqce-studio-meta-row { display:flex; gap:10px; flex-wrap:wrap; }
@media (max-width: 980px) {
  .ptqce-generated-toprow,
  .ptqce-product-filters-row { grid-template-columns: 1fr; }
  .ptqce-generated-editcol { justify-content: flex-start; }
  .ptqce-product-editor-button { width: 100%; min-width: 0; }
}

/* v0.9.5 products header alignment fix */
.ptqce-generated-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}
.ptqce-generated-toolbar-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
.ptqce-generated-editcol {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 0 0 auto;
}
.ptqce-product-editor-button {
  width: 320px;
  min-width: 320px;
  max-width: 320px;
}
.ptqce-generated-main {
  margin-top: 18px;
  min-width: 0;
}
@media (max-width: 980px) {
  .ptqce-generated-toprow {
    flex-direction: column;
    align-items: stretch;
  }
  .ptqce-generated-editcol {
    margin-left: 0;
    justify-content: flex-start;
  }
  .ptqce-product-editor-button {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}


/* v0.9.6 products block structure final alignment fix */
.ptqce-generated-item{
  display:block !important;
}
.ptqce-generated-item > .ptqce-generated-toprow,
.ptqce-generated-item > .ptqce-generated-main,
.ptqce-generated-item > .ptqce-product-editor-panel{
  width:100%;
  max-width:none;
}
.ptqce-generated-toprow{
  display:flex !important;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:100%;
}
.ptqce-generated-toolbar-inline{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:nowrap;
  min-width:0;
}
.ptqce-generated-editcol{
  margin-left:auto !important;
  flex:0 0 auto;
  min-width:320px;
  display:flex;
  justify-content:flex-end;
}
.ptqce-product-editor-button{
  margin-left:auto;
}
.ptqce-generated-main{
  width:100%;
  margin-top:18px;
}
@media (max-width: 980px){
  .ptqce-generated-toprow{
    flex-direction:column;
    align-items:stretch;
  }
  .ptqce-generated-toolbar-inline{
    flex-wrap:wrap;
  }
  .ptqce-generated-editcol{
    min-width:0;
    width:100%;
    justify-content:flex-start;
    margin-left:0 !important;
  }
}


/* v0.9.7 composition table */
.ptqce-composition-wrap{overflow-x:auto}
.ptqce-composition-table{width:100%;border-collapse:collapse;font-size:14px}
.ptqce-composition-table th,.ptqce-composition-table td{padding:12px 10px;border-bottom:1px solid #eee7dd;text-align:left;vertical-align:middle}
.ptqce-composition-table th{font-size:12px;letter-spacing:.02em;text-transform:uppercase;color:#7a7468}
.ptqce-composition-table input[type="number"],.ptqce-composition-table input[type="text"],.ptqce-composition-table select{min-width:120px;width:100%;padding:10px 12px;border:1px solid #e7dfd3;border-radius:12px;background:#fff}
.ptqce-table-check{display:inline-flex;align-items:center;justify-content:center;width:100%}
.ptqce-cell-note{font-size:12px;color:#7a7468;margin-top:4px}
.ptqce-composition-display{display:grid;gap:10px}
.ptqce-composition-display-row{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #eee7dd}
.ptqce-composition-display-row:last-child{border-bottom:0}
@media (max-width: 900px){.ptqce-composition-display-row{flex-direction:column;align-items:flex-start}}


.ptqce-section-note{margin:0 0 12px;color:#6f6a60;font-size:13px;line-height:1.45}
.ptqce-composition-row.is-disabled{opacity:.55}
.ptqce-composition-table input[type=radio]{width:16px;height:16px}
.ptqce-composition-table .ptqce-table-check{display:flex;align-items:center;justify-content:center}
.ptqce-composition-config[hidden]{display:none !important}
.ptqce-text-form-builder-head{display:flex;justify-content:space-between;gap:14px;align-items:flex-start;margin-bottom:14px}
.ptqce-text-form-field-list{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 0}
.ptqce-text-form-table td:nth-child(2){min-width:180px}
.ptqce-text-form-table td:nth-child(3){min-width:160px}
@media (max-width: 767px){.ptqce-text-form-builder-head{flex-direction:column;align-items:stretch}}


.ptqce-composition-choices{margin-top:18px;padding-top:16px;border-top:1px solid #eee7dd;display:grid;gap:12px}
.ptqce-composition-choices h3{margin:0;font-size:16px}
.ptqce-composition-choice{display:flex;align-items:flex-start;gap:12px;padding:14px 14px;border:1px solid #ece7df;border-radius:16px;background:#fff;cursor:pointer;transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}
.ptqce-composition-choice:hover{border-color:#d9d1c6;box-shadow:0 8px 22px rgba(0,0,0,.04)}
.ptqce-composition-choice-input{position:absolute;opacity:0;pointer-events:none}
.ptqce-composition-choice-check{width:20px;height:20px;border-radius:6px;border:1.5px solid #cfc4b7;background:#fff;display:inline-flex;align-items:center;justify-content:center;flex:0 0 20px;margin-top:2px}
.ptqce-composition-choice-input:checked + .ptqce-composition-choice-check{background:#151515;border-color:#151515}
.ptqce-composition-choice-input:checked + .ptqce-composition-choice-check::after{content:'✓';font-size:12px;color:#fff;line-height:1}
.ptqce-composition-choice-copy{display:grid;gap:4px}
.ptqce-composition-choice-copy strong{font-size:14px;line-height:1.3}
.ptqce-composition-choice-copy small{font-size:13px;color:var(--ptq-muted)}


.ptqce-composition-builder-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:12px}
.ptqce-composition-builder-table td:last-child,.ptqce-composition-builder-table th:last-child{width:44px;text-align:right}
.ptqce-composition-builder-table input[type="text"]{min-width:220px;width:100%;padding:10px 12px;border:1px solid #e7dfd3;border-radius:12px;background:#fff}

/* v0.10.7 colors */
.ptqce-color-chip{display:inline-flex;align-items:center;gap:10px;padding:8px 12px;border:1px solid #ece7df;border-radius:999px;background:#fff;color:#453f37;font-size:13px}
.ptqce-color-swatch{display:inline-block;width:16px;height:16px;border-radius:999px;border:1px solid rgba(0,0,0,.08);box-shadow:inset 0 0 0 1px rgba(255,255,255,.35)}
.ptqce-color-list{display:flex;flex-wrap:wrap;gap:10px}
.ptqce-align-end{display:flex;align-items:flex-end;justify-content:flex-start;margin:0}

/* v0.10.8 minimal product + shop */
.ptqce-product-shell-minimal{max-width:1240px;padding-top:32px}
.ptqce-generated-product-grid-minimal{grid-template-columns:minmax(0,1.1fr) minmax(360px,.85fr);gap:32px;align-items:start}
.ptqce-generated-product-gallery-minimal,.ptqce-generated-product-info-minimal{padding:0;background:transparent;border:0;box-shadow:none}
.ptqce-product-main-image-minimal{background:#f7f2eb;border:1px solid #ece4d8;border-radius:28px;overflow:hidden}
.ptqce-product-main-image-minimal img{display:block;width:100%;height:auto;aspect-ratio:4/5;object-fit:cover}
.ptqce-product-thumb-grid-minimal{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:12px}
.ptqce-product-thumb-grid-minimal img{display:block;width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:18px;border:1px solid #ece4d8;background:#fbf8f3}
.ptqce-product-title-minimal{margin:8px 0 12px;font-size:44px;line-height:1.02;letter-spacing:-.04em}
.ptqce-meta-line{display:flex;align-items:center;gap:10px;margin:0 0 6px;color:#7b7368;font-size:14px}
.ptqce-meta-line strong{color:#171513;font-size:14px;font-weight:600}
.ptqce-generated-price-minimal{font-size:30px;line-height:1.1;margin:0 0 18px;font-weight:700;letter-spacing:-.03em}
.ptqce-generated-options-minimal{margin-top:18px}
.ptqce-action-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:18px}
.ptqce-button-slim{width:100%;padding:12px 16px;border-radius:16px;font-size:14px;font-weight:600;line-height:1.1;min-height:48px}
.ptqce-action-strip .ptqce-purchase-form{margin:0;display:flex}
.ptqce-action-strip .ptqce-purchase-form .ptqce-button-slim{flex:1 1 auto}
.ptqce-action-strip.has-personalization{grid-template-columns:repeat(2,minmax(0,1fr))}
.ptqce-action-strip .ptqce-purchase-form.has-personalization{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;grid-column:1 / -1;align-items:start}
.ptqce-action-strip .ptqce-purchase-form.has-personalization .ptqce-personalize-fields{grid-column:1 / -1;margin:0}
.ptqce-action-strip.has-envelope,.ptqce-action-strip.has-wax,.ptqce-action-strip.has-bespoke{grid-template-columns:repeat(2,minmax(0,1fr))}
.ptqce-action-strip .ptqce-purchase-form.has-envelope,.ptqce-action-strip .ptqce-purchase-form.has-wax,.ptqce-action-strip .ptqce-purchase-form.has-bespoke{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;grid-column:1 / -1;align-items:start}
.ptqce-action-strip .ptqce-purchase-form.has-envelope .ptqce-envelope-fields,.ptqce-action-strip .ptqce-purchase-form.has-wax .ptqce-wax-fields,.ptqce-action-strip .ptqce-purchase-form.has-bespoke .ptqce-envelope-fields,.ptqce-action-strip .ptqce-purchase-form.has-bespoke .ptqce-wax-fields{grid-column:1 / -1;margin:0}
.ptqce-action-strip .ptqce-purchase-form.has-personalization .ptqce-button-slim{min-height:54px}
.ptqce-personalize-fields[hidden]{display:none !important}
.ptqce-personalize-fields{display:grid;gap:12px;margin-top:4px;padding:14px 16px;border:1px solid #e7dfd3;border-radius:18px;background:#fcfaf7;box-shadow:none}
.ptqce-personalize-fields .ptqce-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 12px}
.ptqce-personalize-fields .ptqce-field-full{grid-column:1 / -1}
.ptqce-personalize-fields .ptqce-field{min-width:0}
.ptqce-personalize-fields .ptqce-field label{display:grid;gap:6px;font-size:13px;font-weight:700;line-height:1.35;color:#1c0f13}
.ptqce-personalize-fields .ptqce-field input,
.ptqce-personalize-fields .ptqce-field textarea,
.ptqce-personalize-fields .ptqce-field select{width:100%;min-height:44px;padding:10px 12px;border:1px solid #ddd4c8;border-radius:14px;background:#fff;color:#171513;font:inherit;box-sizing:border-box}
.ptqce-personalize-fields .ptqce-field textarea{min-height:96px;resize:vertical}
.ptqce-personalize-fields .ptqce-help{margin:0;font-size:13px;line-height:1.45}
.ptqce-personalize-fields .ptqce-field input:focus,
.ptqce-personalize-fields .ptqce-field textarea:focus,
.ptqce-personalize-fields .ptqce-field select:focus{outline:none;border-color:#cbbfae;box-shadow:0 0 0 3px rgba(231,223,211,.45)}
.ptqce-envelope-fields[hidden]{display:none !important}
.ptqce-envelope-fields{display:grid;gap:12px;margin-top:4px;padding:14px 16px;border:1px solid #e7dfd3;border-radius:18px;background:#fcfaf7;box-shadow:none}
.ptqce-envelope-fields .ptqce-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 12px}
.ptqce-envelope-fields .ptqce-field{min-width:0}
.ptqce-envelope-fields .ptqce-field label{display:grid;gap:6px;font-size:13px;font-weight:700;line-height:1.35;color:#1c0f13}
.ptqce-envelope-fields .ptqce-field input,
.ptqce-envelope-fields .ptqce-field select{width:100%;min-height:44px;padding:10px 12px;border:1px solid #ddd4c8;border-radius:14px;background:#fff;color:#171513;font:inherit;box-sizing:border-box}
.ptqce-envelope-fields .ptqce-help,
.ptqce-envelope-fields .ptqce-envelope-note{margin:0;font-size:13px;line-height:1.45}
.ptqce-envelope-fields .ptqce-envelope-note{color:#7c6b59}
.ptqce-envelope-fields .ptqce-field input:focus,
.ptqce-envelope-fields .ptqce-field select:focus{outline:none;border-color:#cbbfae;box-shadow:0 0 0 3px rgba(231,223,211,.45)}
.ptqce-wax-fields[hidden]{display:none !important}
.ptqce-wax-fields{display:grid;gap:12px;margin-top:4px;padding:14px 16px;border:1px solid #e7dfd3;border-radius:18px;background:#fcfaf7;box-shadow:none}
.ptqce-wax-fields .ptqce-help{margin:0;font-size:13px;line-height:1.45}
.ptqce-wax-fields .ptqce-field label{display:grid;gap:6px;font-size:13px;font-weight:700;line-height:1.35;color:#1c0f13}
.ptqce-wax-fields .ptqce-field input{width:100%;min-height:44px;padding:10px 12px;border:1px solid #ddd4c8;border-radius:14px;background:#fff;color:#171513;font:inherit;box-sizing:border-box}
.ptqce-wax-fields .ptqce-field input:focus{outline:none;border-color:#cbbfae;box-shadow:0 0 0 3px rgba(231,223,211,.45)}
.ptqce-bespoke-wizard{display:grid;gap:14px}
.ptqce-bespoke-meta{display:flex;flex-wrap:wrap;gap:10px}
.ptqce-bespoke-pill{display:inline-flex;align-items:center;justify-content:center;padding:8px 12px;border-radius:999px;background:#fff;border:1px solid #e5dccf;font-size:12px;font-weight:700;color:#534b42}
.ptqce-bespoke-pill.is-soft{background:#f3ece3;color:#786b5a}
.ptqce-wizard-step{display:grid;gap:10px}
.ptqce-wizard-step h4{margin:0;font-size:15px;line-height:1.3;letter-spacing:-.01em;color:#1a1512}
.ptqce-choice-grid{display:grid;gap:10px}
.ptqce-choice-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.ptqce-choice-grid-flaps{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))}
.ptqce-choice-grid-colors{grid-template-columns:repeat(auto-fit,minmax(110px,1fr))}
.ptqce-choice-card{display:grid;gap:8px;justify-items:start;padding:14px;border:1px solid #e5dccf;border-radius:18px;background:#fff;color:#1a1512;text-align:left;cursor:pointer;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease}
.ptqce-choice-card:hover{transform:translateY(-1px);border-color:#cdbba7;box-shadow:0 10px 26px rgba(28,15,19,.06)}
.ptqce-choice-card.is-selected{border-color:#171513;background:#171513;color:#fff;box-shadow:0 16px 34px rgba(23,21,19,.18)}
.ptqce-choice-card.is-selected .ptqce-choice-copy{color:rgba(255,255,255,.78)}
.ptqce-choice-title{display:block;font-size:14px;font-weight:700;line-height:1.3}
.ptqce-choice-copy{display:block;font-size:12px;line-height:1.5;color:#72675a}
.ptqce-choice-media{display:flex;align-items:center;justify-content:center;width:100%;min-height:68px;padding:8px;border-radius:14px;background:#f7f2eb;border:1px solid #ece2d5;overflow:hidden}
.ptqce-choice-media img{max-width:100%;max-height:56px;display:block}
.ptqce-choice-media.is-placeholder{font-size:12px;font-weight:700;color:#7a6f61}
.ptqce-choice-card-flap{justify-items:center;text-align:center}
.ptqce-choice-card-color{justify-items:center;text-align:center;padding:12px}
.ptqce-color-swatch{display:block;width:34px;height:34px;border-radius:999px;background:var(--ptq-swatch,#fff);border:1px solid rgba(0,0,0,.12);box-shadow:inset 0 2px 4px rgba(0,0,0,.08)}
.ptqce-bespoke-summary{margin:2px 0 0;font-size:13px;line-height:1.5;color:#6e6254}
.ptqce-wax-followup[hidden]{display:none !important}
.ptqce-upload-field .ptqce-thumb-card.is-placeholder{opacity:.9;border-style:dashed}
.ptqce-upload-field .ptqce-thumb-card.is-placeholder img{background:#f7f2ea}

.ptqce-shop-shell{max-width:1380px}
.ptqce-shop-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:24px;align-items:start}
.ptqce-shop-sidebar-sticky{position:sticky;top:24px;display:grid;gap:16px}
.ptqce-shop-filter-card,.ptqce-shop-toolbar,.ptqce-shop-card{background:#fff;border:1px solid #ece4d8;border-radius:24px;box-shadow:0 12px 32px rgba(0,0,0,.04)}
.ptqce-shop-filter-card{padding:18px}
.ptqce-shop-filter-card h3{margin:0 0 12px;font-size:14px;letter-spacing:.02em;text-transform:uppercase;color:#7c7467}
.ptqce-shop-filter-list{display:grid;gap:10px}
.ptqce-filter-check{display:flex;align-items:center;gap:10px;font-size:14px;color:#201d19}
.ptqce-filter-check input{width:16px;height:16px}
.ptqce-filter-count{margin-left:auto;font-size:12px;line-height:1;padding:6px 9px;border-radius:999px;background:rgba(0,0,0,.05);color:inherit}
.ptqce-shop-filter-actions{display:grid;gap:10px}
.ptqce-shop-main{min-width:0}
.ptqce-shop-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 18px;margin-bottom:18px}
.ptqce-shop-counter{font-size:14px;color:#6e665b;font-weight:600}
.ptqce-shop-toolbar-controls{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.ptqce-shop-search,.ptqce-shop-sort{height:46px;border:1px solid #e7dfd3;border-radius:16px;background:#fbf8f3;padding:0 14px;font-size:14px;color:#171513}
.ptqce-shop-search{min-width:260px}
.ptqce-shop-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ptqce-shop-card{overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.ptqce-shop-card:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(0,0,0,.07)}
.ptqce-shop-card-media{position:relative;display:block;background:#f7f2eb;aspect-ratio:4/5;overflow:hidden}
.ptqce-shop-card-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:opacity .25s ease,transform .35s ease}
.ptqce-shop-card-image.is-secondary{opacity:0}
.ptqce-shop-card:hover .ptqce-shop-card-image.is-secondary{opacity:1;transform:scale(1.02)}
.ptqce-shop-card:hover .ptqce-shop-card-image.is-primary{opacity:0}
.ptqce-shop-card-body{padding:14px 14px 16px;display:grid;gap:10px}
.ptqce-shop-card-meta{font-size:12px;letter-spacing:.03em;text-transform:uppercase;color:#857d72}
.ptqce-shop-card-body h3{margin:0;font-size:18px;line-height:1.2;letter-spacing:-.02em}
.ptqce-shop-card-body h3 a{text-decoration:none;color:#171513}
.ptqce-shop-card-price{font-size:18px;font-weight:700;color:#171513}
.ptqce-shop-card-premium{display:flex;flex-wrap:wrap;gap:8px}
.ptqce-shop-pill{display:inline-flex;align-items:center;justify-content:center;padding:7px 10px;border-radius:999px;background:#f4efe7;border:1px solid #e8dfd1;font-size:12px;color:#5c554a}
.ptqce-shop-card-swatches{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.ptqce-shop-swatch{width:16px;height:16px;border-radius:999px;border:1px solid rgba(0,0,0,.1);display:inline-block}
.ptqce-shop-pagination{margin-top:22px}
.ptqce-shop-pagination .page-numbers{display:flex;gap:8px;list-style:none;padding:0;margin:0}
.ptqce-shop-pagination a,.ptqce-shop-pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;border-radius:14px;border:1px solid #e7dfd3;background:#fff;color:#171513;text-decoration:none}
.ptqce-shop-pagination .current{background:#171513;color:#fff;border-color:#171513}

@media (max-width: 1100px){.ptqce-shop-layout,.ptqce-generated-product-grid-minimal{grid-template-columns:1fr}.ptqce-shop-sidebar-sticky{position:relative;top:auto}.ptqce-shop-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width: 767px){.ptqce-shop-grid,.ptqce-action-strip{grid-template-columns:1fr}.ptqce-action-strip .ptqce-purchase-form.has-personalization,.ptqce-action-strip .ptqce-purchase-form.has-envelope,.ptqce-action-strip .ptqce-purchase-form.has-wax,.ptqce-action-strip .ptqce-purchase-form.has-bespoke,.ptqce-personalize-fields .ptqce-form-grid,.ptqce-envelope-fields .ptqce-form-grid,.ptqce-choice-grid-2,.ptqce-choice-grid-flaps,.ptqce-choice-grid-colors,.ptqce-accessory-grid{grid-template-columns:1fr}.ptqce-product-title-minimal{font-size:34px}.ptqce-shop-toolbar{flex-direction:column;align-items:stretch}.ptqce-shop-search{min-width:0;width:100%}}


/* v0.10.8.4 composition remove button */
.ptqce-composition-remove{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border:1px solid #e6ddd1;border-radius:999px;background:#fff;color:#625b51;font-size:18px;line-height:1;cursor:pointer;padding:0;position:static;box-shadow:none;transition:background .18s ease,border-color .18s ease,color .18s ease,transform .18s ease;margin:0 0 0 auto}
.ptqce-composition-remove:hover{background:#111;color:#fff;border-color:#111;transform:translateY(-1px)}
.ptqce-composition-table td:last-child{text-align:right;width:56px}


/* v0.10.9 studio organization + shop app layout */
.ptqce-app-shell{max-width:1440px}
.ptqce-surface-card{background:#fff;border:1px solid rgba(15,15,15,.08);border-radius:24px;box-shadow:0 12px 28px rgba(16,24,40,.05)}
.ptqce-studio-nav{gap:18px}
.ptqce-studio-nav-group{display:grid;gap:10px}
.ptqce-studio-nav-heading{font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#8b8174;padding:0 6px}
.ptqce-studio-nav-stack{display:grid;gap:8px}
.ptqce-studio-tab{min-height:46px}
.ptqce-shop-shell{max-width:1440px;padding-top:20px}
.ptqce-shop-layout{display:grid;grid-template-columns:300px minmax(0,1fr);gap:28px;align-items:start}
.ptqce-shop-sidebar{min-width:0}
.ptqce-shop-sidebar-sticky{position:sticky;top:22px;display:grid;gap:16px}
.ptqce-shop-filter-card,.ptqce-shop-toolbar,.ptqce-shop-card{background:#fff;border:1px solid rgba(21,21,21,.08);border-radius:24px;box-shadow:0 12px 28px rgba(16,24,40,.05)}
.ptqce-shop-filter-card{padding:18px 18px 16px}
.ptqce-shop-filter-card h3{margin:0 0 14px;font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:#7f7467;font-weight:800}
.ptqce-shop-filter-list{display:grid;gap:10px}
.ptqce-filter-check{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:16px;background:#faf7f2;border:1px solid rgba(15,15,15,.05);cursor:pointer;transition:background .18s ease,border-color .18s ease}
.ptqce-filter-check:hover{background:#f3efe8;border-color:rgba(15,15,15,.1)}
.ptqce-filter-check input{accent-color:#111;width:16px;height:16px}
.ptqce-filter-check-color .ptqce-shop-swatch{flex:0 0 16px}
.ptqce-shop-price-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.ptqce-shop-price-field{display:grid;gap:6px}
.ptqce-shop-price-field span{font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#8b8174}
.ptqce-shop-price-field input{height:44px;border:1px solid rgba(17,17,17,.08);border-radius:14px;background:#fff;padding:0 12px;font-size:14px;color:#171513}
.ptqce-shop-price-field input:focus{outline:none;border-color:rgba(17,17,17,.18)}
.ptqce-shop-filter-actions{display:grid;gap:10px}
.ptqce-shop-main{min-width:0;display:grid;gap:18px}
.ptqce-shop-toolbar{padding:16px 18px;display:grid;gap:14px}
.ptqce-shop-toolbar-main{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.ptqce-shop-counter{font-size:14px;font-weight:700;color:#655b50}
.ptqce-shop-toolbar-controls{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.ptqce-shop-search,.ptqce-shop-sort{height:48px;border:1px solid rgba(17,17,17,.08);border-radius:16px;background:#faf7f2;padding:0 15px;font-size:14px;color:#171513;outline:none}
.ptqce-shop-search{min-width:280px}
.ptqce-shop-search:focus,.ptqce-shop-sort:focus{border-color:rgba(17,17,17,.18);background:#fff}
.ptqce-shop-active-filters{display:grid;gap:10px}
.ptqce-shop-active-filters.is-empty{padding-top:2px}
.ptqce-shop-active-label{font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#8b8174}
.ptqce-shop-active-list{display:flex;flex-wrap:wrap;gap:8px}
.ptqce-shop-chip{display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;background:#f4efe7;border:1px solid #e7dfd3;color:#171513;text-decoration:none;font-size:13px;font-weight:600}
.ptqce-shop-chip strong{font-size:14px;line-height:1}
.ptqce-shop-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.ptqce-shop-card{overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.ptqce-shop-card:hover{transform:translateY(-2px);box-shadow:0 18px 32px rgba(16,24,40,.08)}
.ptqce-shop-card-media{position:relative;display:block;background:#f8f4ed;aspect-ratio:4/5;overflow:hidden}
.ptqce-shop-card-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:opacity .24s ease,transform .32s ease}
.ptqce-shop-card-image.is-secondary{opacity:0}
.ptqce-shop-card:hover .ptqce-shop-card-image.is-secondary{opacity:1;transform:scale(1.015)}
.ptqce-shop-card:hover .ptqce-shop-card-image.is-primary{opacity:0}
.ptqce-shop-card-body{padding:16px;display:grid;gap:10px}
.ptqce-shop-card-meta{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:#8b8174;font-weight:800}
.ptqce-shop-card-body h3{margin:0;font-size:18px;line-height:1.2;letter-spacing:-.02em}
.ptqce-shop-card-body h3 a{text-decoration:none;color:#171513}
.ptqce-shop-card-price{font-size:18px;font-weight:800;color:#171513}
.ptqce-shop-card-premium{display:flex;flex-wrap:wrap;gap:8px}
.ptqce-shop-pill{display:inline-flex;align-items:center;justify-content:center;padding:7px 10px;border-radius:999px;background:#f6f1ea;border:1px solid #e7dfd3;font-size:12px;color:#5f564a}
.ptqce-shop-card-swatches{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.ptqce-shop-swatch{width:16px;height:16px;border-radius:999px;border:1px solid rgba(0,0,0,.1);display:inline-block}
.ptqce-shop-pagination{margin-top:2px}
.ptqce-shop-pagination .page-numbers{display:flex;gap:8px;list-style:none;padding:0;margin:0}
.ptqce-shop-pagination a,.ptqce-shop-pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:40px;height:40px;border-radius:14px;border:1px solid #e7dfd3;background:#fff;color:#171513;text-decoration:none}
.ptqce-shop-pagination .current{background:#171513;color:#fff;border-color:#171513}
@media (max-width: 1200px){.ptqce-shop-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ptqce-shop-layout{grid-template-columns:260px minmax(0,1fr)}}
@media (max-width: 1024px){.ptqce-shop-layout,.ptqce-generated-product-grid-minimal{grid-template-columns:1fr}.ptqce-shop-sidebar-sticky{position:relative;top:auto}}
@media (max-width: 767px){.ptqce-shop-grid{grid-template-columns:1fr}.ptqce-shop-search{min-width:0;width:100%}.ptqce-shop-toolbar-main{align-items:stretch}.ptqce-shop-toolbar-controls{width:100%}}


/* v0.10.9.1 refinement */
.ptqce-studio-nav-heading{font-size:14px;font-weight:800;letter-spacing:.14em;color:#6f6558;padding:2px 8px}
.ptqce-studio-tab{font-size:13px;font-weight:600;min-height:42px;padding:10px 13px}
.ptqce-shop-filter-actions .ptqce-button{width:100%;justify-content:center;display:inline-flex;align-items:center}
.ptqce-shop-card-meta{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.ptqce-shop-style-link,.ptqce-inline-filter-link{display:inline-flex;align-items:center;padding:7px 10px;border-radius:999px;background:#f7f2eb;border:1px solid #e7dfd3;color:#171513;text-decoration:none;font-size:12px;font-weight:700;line-height:1.1}
.ptqce-shop-style-link:hover,.ptqce-inline-filter-link:hover{background:#fff;border-color:#d8cebf}
.ptqce-micro-labels{display:flex;flex-wrap:wrap;gap:8px}
.ptqce-micro-label{display:inline-flex;align-items:center;padding:6px 10px;border-radius:999px;background:#f4efe7;border:1px solid #e7dfd3;color:#5c554a;font-size:11px;font-weight:700;letter-spacing:.01em;line-height:1}
.ptqce-shop-card-premium{display:flex;flex-wrap:wrap;gap:8px}
.ptqce-inline-links{display:flex;flex-wrap:wrap;gap:8px;margin-top:2px}
.ptqce-generated-main .ptqce-micro-labels{margin-top:10px}
.ptqce-generated-product-info-minimal .ptqce-micro-labels{margin:6px 0 2px}

/* PTQ 10.9.2 shop refinements */
.ptqce-shop-filter-actions{padding-top:2px}
.ptqce-shop-reset{width:100%;min-height:48px;justify-content:center;display:flex;align-items:center}
.ptqce-shop-mobile-filter-toggle,
.ptqce-shop-drawer-close,
.ptqce-shop-overlay{display:none}
.ptqce-shop-sidebar-head{display:none}
.ptqce-shop-active-list{overflow:auto;scrollbar-width:none}
.ptqce-shop-active-list::-webkit-scrollbar{display:none}

@media (max-width: 1024px){
  .ptqce-shop-layout{grid-template-columns:1fr;position:relative}
  .ptqce-shop-sidebar{position:fixed;inset:0 auto 0 0;width:min(88vw,380px);max-width:380px;z-index:70;transform:translateX(-104%);transition:transform .28s ease;pointer-events:none}
  .ptqce-shop-sidebar.is-open{transform:translateX(0);pointer-events:auto}
  .ptqce-shop-sidebar-sticky{position:relative;top:0;height:100dvh;overflow:auto;padding:18px;background:#fcfaf6;border-right:1px solid rgba(21,21,21,.08);box-shadow:0 24px 54px rgba(0,0,0,.16);gap:14px}
  .ptqce-shop-sidebar-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:2px;padding:4px 2px 8px}
  .ptqce-shop-sidebar-head strong{font-size:18px;letter-spacing:-.02em}
  .ptqce-shop-drawer-close{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:14px;border:1px solid rgba(21,21,21,.08);background:#fff;color:#171513;font-size:24px;line-height:1;cursor:pointer}
  .ptqce-shop-overlay{position:fixed;inset:0;background:rgba(18,18,18,.24);z-index:60;border:0;padding:0;cursor:pointer}
  .ptqce-shop-mobile-filter-toggle{display:inline-flex;align-items:center;justify-content:center;height:48px;padding:0 16px;border-radius:16px;border:1px solid rgba(17,17,17,.08);background:#fff;color:#171513;font-size:14px;font-weight:700;cursor:pointer;white-space:nowrap}
  .ptqce-shop-toolbar{position:sticky;top:10px;z-index:20;background:rgba(255,255,255,.92);backdrop-filter:blur(12px)}
  .ptqce-shop-toolbar-main{display:grid;grid-template-columns:1fr;gap:12px}
  .ptqce-shop-toolbar-controls{display:grid;grid-template-columns:auto 1fr auto;gap:8px;align-items:center}
  .ptqce-shop-search{min-width:0;width:100%}
  .ptqce-shop-sort{min-width:120px;width:100%}
  .ptqce-shop-active-filters{gap:8px}
  .ptqce-shop-active-list{display:flex;flex-wrap:nowrap;overflow:auto;padding-bottom:2px}
  .ptqce-shop-chip{white-space:nowrap}
}

@media (max-width: 767px){
  .ptqce-shop-shell{padding-left:12px;padding-right:12px}
  .ptqce-shop-grid{grid-template-columns:1fr;gap:14px}
  .ptqce-shop-card{border-radius:20px}
  .ptqce-shop-card-body{padding:14px}
  .ptqce-shop-card-body h3{font-size:17px}
  .ptqce-shop-counter{font-size:13px}
  .ptqce-shop-toolbar{padding:12px;border-radius:18px}
  .ptqce-shop-toolbar-controls{grid-template-columns:auto 1fr}
  .ptqce-shop-sort{grid-column:1 / -1}
}


/* PTQ 0.10.9.3 shop alignment + mobile drawer */
.ptqce-shop-filter-actions{display:flex;align-items:center;justify-content:stretch;}
.ptqce-shop-reset{display:flex!important;align-items:center;justify-content:center;width:100%;max-width:100%;box-sizing:border-box;margin:0;text-align:center;}
.ptqce-shop-mobile-filter-toggle-icon{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;font-size:14px;line-height:1;}

@media (min-width: 1025px){
  .ptqce-shop-mobile-filter-toggle{display:none!important;}
}

@media (max-width: 1024px){
  .ptqce-shop-mobile-filter-toggle{display:inline-flex!important;gap:8px;}
}

@media (max-width: 767px){
  .ptqce-shop-toolbar-controls{grid-template-columns:auto 1fr!important;}
  .ptqce-shop-mobile-filter-toggle{height:44px;padding:0 14px;border-radius:14px;font-size:13px;}
  .ptqce-shop-sort{grid-column:1 / -1;}
  .ptqce-shop-sidebar{width:min(92vw,360px);}
}

/* v0.11 product/shop refinements */
.ptqce-generated-product-page-minimal,
.ptqce-generated-product-grid-minimal,
.ptqce-generated-product-info-minimal,
.ptqce-generated-product-info-minimal .ptqce-summary-card,
.ptqce-generated-product-info-minimal .ptqce-qty-card,
.ptqce-product-shell-minimal,
.ptqce-generated-product-page-minimal article {overflow:visible!important;}
.ptqce-tooltip{z-index:30;}
.ptqce-tooltip-bubble{z-index:40;max-width:280px;white-space:normal;box-shadow:0 14px 30px rgba(0,0,0,.2);}
.ptqce-qty-btn{display:inline-flex;align-items:center;justify-content:center;background:#111!important;color:#fff!important;font-weight:700;box-shadow:0 8px 18px rgba(0,0,0,.12);}
.ptqce-qty-btn span{display:block;transform:translateY(-1px);}
.ptqce-qty-input{appearance:auto;-moz-appearance:textfield;}
.ptqce-breadcrumbs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;margin:10px 0 18px;color:#7c7468;font-size:13px;font-weight:600;letter-spacing:.01em}
.ptqce-breadcrumbs a{color:#7c7468;text-decoration:none}
.ptqce-breadcrumb-sep{opacity:.55}
.ptqce-shipping-bar{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-top:10px}
.ptqce-shipping-pill{display:inline-flex;align-items:center;min-height:38px;padding:0 14px;border-radius:999px;background:#f5efe7;border:1px solid #e8dfd2;color:#5f584e;font-size:13px;font-weight:700}
.ptqce-shipping-pill.is-free{background:#e8f7ec;border-color:#cfe8d7;color:#187f39}
.ptqce-status-card{display:grid;gap:6px}
.ptqce-status-row{display:flex;align-items:center;gap:10px}
.ptqce-status-led{width:10px;height:10px;border-radius:999px;background:#c9c9c9;display:inline-block;box-shadow:0 0 0 6px rgba(0,0,0,.04)}
.ptqce-status-led.is-available{background:#1db954;box-shadow:0 0 0 6px rgba(29,185,84,.12)}
.ptqce-color-groups{display:grid;gap:12px}
.ptqce-color-group{display:grid;gap:8px;padding:12px 14px;border-radius:18px;background:#fcfaf7;border:1px solid #ece4d8}
.ptqce-color-group-head{display:flex;justify-content:space-between;gap:10px;align-items:center;font-size:13px;color:#746b5f}
.ptqce-inline-swatches{display:flex;flex-wrap:wrap;gap:8px}
.ptqce-shop-filter-actions{display:flex;align-items:stretch}
.ptqce-shop-reset{width:100%;margin:0!important;align-self:stretch}
.ptqce-shop-info-card{display:flex;align-items:flex-end;min-height:100%;padding:24px;border-radius:24px;border:1px solid rgba(17,17,17,.05);box-shadow:0 10px 28px rgba(16,24,40,.06)}
.ptqce-shop-info-card-inner{display:grid;gap:8px}
.ptqce-shop-info-eyebrow{font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#7f7567}
.ptqce-shop-info-card h3{margin:0;font-size:26px;line-height:1.08;color:#171513}
@media (max-width: 767px){
  .ptqce-breadcrumbs{font-size:12px;margin-bottom:12px}
  .ptqce-shop-info-card{min-height:180px;padding:20px}
  .ptqce-shop-info-card h3{font-size:22px}
}


/* v0.11.1 shop/mobile/shipping refinements */
.ptqce-shipping-pill[hidden]{display:none !important;}
.ptqce-shop-sidebar,.ptqce-shop-sidebar-sticky,.ptqce-shop-filter-actions{box-sizing:border-box;overflow-x:hidden;}
.ptqce-shop-reset{width:100%;max-width:100%;margin:0 !important;box-sizing:border-box;}
.ptqce-shop-info-card{padding:0;display:flex;flex-direction:column;min-height:0;height:100%;overflow:hidden;}
.ptqce-shop-info-card-media{display:block;aspect-ratio:4/5;background:transparent;}
.ptqce-shop-info-card-body{display:flex;flex-direction:column;justify-content:flex-end;min-height:0;flex:1;padding:16px;gap:8px;}
.ptqce-shop-info-card h3{margin:0;font-size:18px;line-height:1.2;color:#171513;}
.ptqce-shop-mobile-density{display:none;align-items:center;gap:6px;padding:4px;border:1px solid #e7dfd3;border-radius:14px;background:#fff;}
.ptqce-shop-density-option{position:relative;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;}
.ptqce-shop-density-option input{position:absolute;opacity:0;pointer-events:none;}
.ptqce-shop-density-option span{display:inline-flex;align-items:center;justify-content:center;min-width:34px;height:34px;padding:0 10px;border-radius:10px;color:#171513;font-size:13px;font-weight:800;line-height:1;}
.ptqce-shop-density-option input:checked + span{background:#171513;color:#fff;}
@media (max-width: 767px){
  .ptqce-shop-toolbar{width:95%;margin:0 auto 16px;}
  .ptqce-shop-toolbar-main{display:grid;grid-template-columns:auto 1fr;gap:8px;align-items:start;}
  .ptqce-shop-counter{display:flex;align-items:center;min-height:44px;white-space:nowrap;font-size:12px;}
  .ptqce-shop-toolbar-controls{display:grid !important;grid-template-columns:auto minmax(0,1fr) auto auto;gap:8px;align-items:center;width:100%;}
  .ptqce-shop-mobile-filter-toggle{height:44px;min-width:44px;padding:0 12px;border-radius:14px;font-size:13px;gap:6px;}
  .ptqce-shop-search{height:44px;min-width:0;width:100%;padding:0 12px;}
  .ptqce-shop-sort{height:44px;min-width:92px;max-width:110px;padding:0 10px;grid-column:auto;}
  .ptqce-shop-mobile-density{display:inline-flex;justify-self:end;}
  .ptqce-shop-active-filters{display:grid;gap:8px;}
  .ptqce-shop-active-label{font-size:11px;}
  .ptqce-shop-active-list{display:flex;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;padding-bottom:2px;}
  .ptqce-shop-grid--mobile-1{grid-template-columns:1fr !important;}
  .ptqce-shop-grid--mobile-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:12px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body{padding:12px;gap:8px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body h3{font-size:15px;line-height:1.15;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-price{font-size:16px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-meta{font-size:10px;letter-spacing:.1em;}
  .ptqce-shop-grid--mobile-2 .ptqce-micro-label{font-size:10px;padding:5px 8px;}
}

/* v0.11.2 shop layout refinements */
.ptqce-mobile-only{display:none}
.ptqce-shop-card-badges{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.ptqce-shop-badge{display:inline-flex;align-items:center;gap:6px;padding:5px 9px;border-radius:999px;background:#f7f2eb;border:1px solid #e7dfd3;color:#171513;text-decoration:none;font-size:10px;font-weight:700;line-height:1;letter-spacing:.02em}
.ptqce-shop-badge--style{background:#fbf8f3}
.ptqce-shop-badge-kicker{font-size:8px;letter-spacing:.14em;color:#8a8174;font-weight:800}
.ptqce-shop-style-link{padding:5px 9px;font-size:10px}
.ptqce-shop-toolbar{position:sticky;top:18px;z-index:16;background:#fff}
.ptqce-shop-sidebar-sticky{position:sticky;top:18px;max-height:calc(100vh - 36px);overflow:auto;padding-right:2px}
.ptqce-shop-filter-actions{display:block}
.ptqce-shop-reset{display:flex!important;align-items:center;justify-content:center;width:100%;max-width:none;margin:0!important;box-sizing:border-box}
.ptqce-shop-layout-options{display:grid;gap:10px}
.ptqce-shop-layout-option{display:flex;align-items:center;gap:10px;padding:14px 16px;border:1px solid #e7dfd3;border-radius:18px;background:#fbf8f3;color:#171513;font-size:14px;font-weight:600}
.ptqce-shop-layout-option input{width:18px;height:18px;accent-color:#171513}

@media (max-width: 767px){
  .ptqce-mobile-only{display:block}
  .ptqce-shop-layout{grid-template-columns:1fr!important;gap:16px}
  .ptqce-shop-sidebar{width:min(96vw,420px)}
  .ptqce-shop-sidebar-sticky{top:auto;max-height:none;overflow:visible;padding-right:0}
  .ptqce-shop-toolbar{width:96%;margin:0 auto 14px;position:sticky;top:10px;z-index:20}
  .ptqce-shop-toolbar-main{display:grid;grid-template-columns:1fr;gap:8px;align-items:stretch}
  .ptqce-shop-counter{font-size:11px;min-height:auto;line-height:1.1}
  .ptqce-shop-toolbar-controls{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto;gap:8px;align-items:center;width:100%}
  .ptqce-shop-mobile-filter-toggle{display:inline-flex!important;height:44px;min-width:44px;padding:0 12px;border-radius:14px;font-size:13px;gap:6px}
  .ptqce-shop-search{height:44px;min-width:0;width:100%;padding:0 12px}
  .ptqce-shop-sort{height:44px;min-width:0;max-width:112px;width:112px;padding:0 10px}
  .ptqce-shop-mobile-density{display:none!important}
  .ptqce-shop-active-filters{display:grid;gap:8px}
  .ptqce-shop-active-list{display:flex;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;padding-bottom:2px}
  .ptqce-shop-grid--mobile-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:12px}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body{padding:12px;gap:8px}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-badges{gap:6px}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-badge--macro,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-premium,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-swatches{display:none}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-badge{padding:4px 7px;font-size:9px}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-badge-kicker{font-size:7px}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body h3{font-size:15px;line-height:1.15}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-price{font-size:16px}
}

/* v0.11.3 final shop/app refinements */
@media (min-width: 1025px){
  .ptqce-shop-layout{align-items:start;}
  .ptqce-shop-sidebar{position:sticky;top:18px;align-self:start;height:calc(100vh - 36px);}
  .ptqce-shop-sidebar-sticky{position:relative;top:0;max-height:100%;height:100%;overflow:auto;padding-right:2px;}
  .ptqce-shop-toolbar{position:sticky;top:18px;z-index:18;}
  .ptqce-shop-badge{padding:4px 7px;font-size:9px;gap:4px;}
  .ptqce-shop-badge-kicker{font-size:6px;letter-spacing:.12em;}
}

.ptqce-shop-info-card{padding:0!important;display:flex;flex-direction:column;min-height:0;height:100%;overflow:hidden;border-radius:24px;}
.ptqce-shop-info-card-media{aspect-ratio:4/5;background-size:cover;background-position:center center;background-repeat:no-repeat;}
.ptqce-shop-info-card-body{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:8px;min-height:0;flex:1;padding:16px;}
.ptqce-shop-info-card h3{margin:0;font-size:18px;line-height:1.15;color:#171513;}
.ptqce-shop-info-card-text{margin:0;font-size:13px;line-height:1.4;color:#4f4a42;max-width:28ch;}
.ptqce-shop-info-card-cta{display:inline-flex;align-items:center;justify-content:center;min-height:36px;padding:0 12px;border-radius:999px;background:#171513;color:#fff;text-decoration:none;font-size:12px;font-weight:700;justify-self:center;align-self:center;}
.ptqce-shop-info-card .ptqce-shop-card-body{box-sizing:border-box;}

@media (max-width: 767px){
  .ptqce-shop-shell{padding-left:0;padding-right:0;}
  .ptqce-shop-main{padding-top:var(--ptq-shop-toolbar-space, 132px);}
  .ptqce-shop-toolbar{position:fixed!important;left:50%;transform:translateX(-50%);top:8px;z-index:48;width:96vw!important;max-width:96vw!important;box-sizing:border-box;margin:0!important;padding:10px 10px 8px;border-radius:18px;}
  .ptqce-shop-toolbar-main{display:grid!important;grid-template-columns:1fr;gap:6px;align-items:stretch;}
  .ptqce-shop-counter{font-size:10px;line-height:1;text-align:left;min-height:auto;padding:0 2px;white-space:nowrap;}
  .ptqce-shop-toolbar-controls{display:flex!important;flex-wrap:nowrap;align-items:center;gap:6px;width:100%;}
  .ptqce-shop-mobile-filter-toggle{flex:0 0 auto;min-width:42px;height:42px;padding:0 10px;font-size:12px;gap:5px;}
  .ptqce-shop-search{flex:1 1 auto;min-width:0;width:auto!important;height:42px;padding:0 10px;font-size:13px;}
  .ptqce-shop-sort{flex:0 0 94px;width:94px;min-width:94px;max-width:94px;height:42px;padding:0 8px;font-size:12px;grid-column:auto!important;}
  .ptqce-shop-active-filters{display:grid;gap:6px;}
  .ptqce-shop-active-label{font-size:10px;padding:0 2px;}
  .ptqce-shop-active-list{display:flex;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;gap:6px;padding:0 0 2px;scrollbar-width:none;}
  .ptqce-shop-active-list::-webkit-scrollbar{display:none;}
  .ptqce-shop-chip{padding:8px 10px;font-size:12px;gap:6px;}
  .ptqce-shop-sidebar{width:min(98vw,420px);}
  .ptqce-shop-sidebar-sticky{padding:16px 14px;background:#fcfaf6;}
  .ptqce-shop-grid--mobile-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:12px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body{padding:10px;gap:6px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-badges{gap:4px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-badge--macro,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-premium,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-swatches{display:none !important;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-badge{padding:3px 5px;font-size:8px;gap:3px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-badge-kicker{font-size:5px;letter-spacing:.1em;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body h3{font-size:11px;line-height:1.18;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-price{font-size:14px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card .ptqce-shop-card-media{aspect-ratio:4/5;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card-body{padding:10px;gap:6px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card h3{font-size:11px;line-height:1.18;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card-text{font-size:10px;line-height:1.3;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card-cta{min-height:28px;padding:0 9px;font-size:10px;}
}


/* v0.11.4 targeted fixes */
.ptqce-product-main-image{position:relative;}
.ptqce-product-main-image-tag{display:block;width:100%;height:auto;aspect-ratio:4/5;object-fit:cover;}
.ptqce-product-thumb-item{appearance:none;background:transparent;padding:0;border:0;cursor:pointer;}
.ptqce-product-thumb-item.is-active img{outline:2px solid #171513;outline-offset:-2px;}
.ptqce-shop-main,.ptqce-shop-layout,.ptqce-shop-toolbar,.ptqce-shop-toolbar-main,.ptqce-shop-toolbar-controls{min-width:0;max-width:100%;}
.ptqce-shop-toolbar,.ptqce-shop-toolbar *{box-sizing:border-box;}
.ptqce-shop-info-card .ptqce-shop-card-media{position:relative;overflow:hidden;}
.ptqce-shop-info-card .ptqce-shop-card-media img{display:block;width:100%;height:100%;object-fit:cover;position:absolute;inset:0;}
.ptqce-shop-info-card-body{text-align:center;justify-items:center;align-content:center;}
.ptqce-shop-info-card-text{max-width:28ch;text-align:center;}
.ptqce-shop-info-card-cta{justify-self:center;align-self:start;}
@media (max-width: 767px){
  .ptqce-shop-shell,.ptqce-shop-layout,.ptqce-shop-main{width:100%;max-width:100%;overflow-x:hidden;}
  .ptqce-shop-toolbar{width:96%!important;max-width:96%!important;margin:0 auto 12px;padding:10px 10px 8px;border-radius:18px;position:sticky;top:8px;z-index:24;}
  .ptqce-shop-toolbar-controls{display:flex!important;flex-wrap:nowrap;align-items:center;gap:6px;width:100%;min-width:0;}
  .ptqce-shop-toolbar-controls > *{min-width:0;}
  .ptqce-shop-mobile-filter-toggle{flex:0 0 auto;min-width:42px;}
  .ptqce-shop-search{flex:1 1 auto;min-width:0!important;width:auto!important;max-width:none;}
  .ptqce-shop-sort{flex:0 0 92px;width:92px;min-width:92px;max-width:92px;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body h3{font-size:10px;line-height:1.15;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card{height:100%;}
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card .ptqce-shop-card-media{aspect-ratio:4/5;}
}

/* v0.11.5 focused fixes */
.ptqce-generated-product-grid-minimal{align-items:start}
.ptqce-generated-product-gallery-minimal{position:sticky;top:18px;align-self:start}
.ptqce-related-style-section{margin-top:42px;display:grid;gap:18px}
.ptqce-related-style-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;flex-wrap:wrap}
.ptqce-related-style-head h2{margin:0;font-size:30px;line-height:1.05;letter-spacing:-.03em}
.ptqce-shop-grid-related{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.ptqce-product-copy-card{margin-top:16px}
.ptqce-product-copy-text{display:grid;gap:10px;color:#5f584e;font-size:15px;line-height:1.65}
.ptqce-product-copy-text p{margin:0}
.ptqce-product-faqs{margin-top:26px}
.ptqce-shop-info-card{position:relative;isolation:isolate;aspect-ratio:4/5;background:var(--ptq-info-bg,#F2EEE6);background-image:var(--ptq-info-image);background-size:cover;background-position:center center;background-repeat:no-repeat;display:flex;align-items:stretch;justify-content:center;padding:0;overflow:hidden}
.ptqce-shop-info-card-layer{position:absolute;inset:0;background:linear-gradient(180deg, rgba(18,18,18,0.06) 0%, rgba(18,18,18,0.28) 100%);z-index:0}
.ptqce-shop-info-card:not(.has-image) .ptqce-shop-info-card-layer{background:linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(18,18,18,0.05) 100%)}
.ptqce-shop-info-card-body{position:relative;z-index:1;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;min-height:100%;padding:20px 18px;gap:10px;color:#171513;background:transparent!important}
.ptqce-shop-info-card.has-image .ptqce-shop-info-card-body{color:#fff}
.ptqce-shop-info-card-text{margin:0;max-width:24ch;font-size:14px;line-height:1.45;text-align:center}
.ptqce-shop-info-card-cta{display:inline-flex;align-items:center;justify-content:center;align-self:center;justify-self:center;min-height:40px;padding:0 16px;border-radius:999px;background:#171513;color:#fff;text-decoration:none;font-size:13px;font-weight:700}
.ptqce-shop-info-card.has-image .ptqce-shop-info-card-cta{background:#fff;color:#171513}
.ptqce-shop-info-card h3{max-width:12ch;text-align:center}
.ptqce-shop-layout,.ptqce-shop-main,.ptqce-shop-shell{overflow:visible}
@media (max-width:1024px){
  .ptqce-generated-product-gallery-minimal{position:relative;top:auto}
}
@media (max-width:767px){
  .ptqce-shop-shell{padding-left:0!important;padding-right:0!important;overflow-x:hidden}
  .ptqce-shop-layout,.ptqce-shop-main{overflow-x:hidden}
  .ptqce-shop-toolbar{width:96%!important;max-width:96%!important;margin:0 auto 12px;position:sticky;top:8px;z-index:28}
  .ptqce-shop-toolbar-main{display:grid!important;grid-template-columns:1fr!important;gap:8px!important;align-items:stretch!important}
  .ptqce-shop-counter{display:block!important;font-size:10px!important;line-height:1.1!important;min-height:0!important}
  .ptqce-shop-toolbar-controls{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;gap:8px!important;align-items:center!important;width:100%!important;min-width:0!important}
  .ptqce-shop-mobile-filter-toggle,.ptqce-shop-search,.ptqce-shop-sort{min-width:0!important}
  .ptqce-shop-sort{width:104px!important;max-width:104px!important;grid-column:auto!important}
  .ptqce-shop-active-list{overflow-x:auto!important;-webkit-overflow-scrolling:touch}
  .ptqce-shop-grid-related{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
}


/* v0.11.5.2 info cards exact size fix */
.ptqce-shop-grid > .ptqce-shop-info-card{position:relative;display:flex!important;align-items:stretch!important;justify-content:center!important;overflow:hidden!important;min-height:0!important;height:auto!important;aspect-ratio:auto!important;padding:0!important;background:var(--ptq-info-bg,#F2EEE6)!important;background-image:var(--ptq-info-image,none)!important;background-size:cover!important;background-position:center center!important;background-repeat:no-repeat!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-card-media,.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-media{display:none!important;}
.ptqce-shop-grid > .ptqce-shop-info-card::before{content:"";display:block;width:100%;padding-top:calc(125% + 84px);}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-layer{position:absolute;inset:0;display:block!important;background:linear-gradient(180deg,rgba(255,255,255,.08) 0%,rgba(16,16,16,.18) 100%)!important;z-index:0;}
.ptqce-shop-grid > .ptqce-shop-info-card:not(.has-image) .ptqce-shop-info-card-layer{background:linear-gradient(180deg,rgba(255,255,255,.02) 0%,rgba(16,16,16,.06) 100%)!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-body{position:absolute!important;inset:0!important;z-index:1!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;padding:22px 18px!important;gap:10px!important;background:transparent!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-body > *{text-align:center!important;margin-left:auto!important;margin-right:auto!important;}
.ptqce-shop-grid > .ptqce-shop-info-card.has-image .ptqce-shop-info-eyebrow,.ptqce-shop-grid > .ptqce-shop-info-card.has-image h3,.ptqce-shop-grid > .ptqce-shop-info-card.has-image .ptqce-shop-info-card-text{color:#fff!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-eyebrow{font-size:11px!important;letter-spacing:.16em!important;}
.ptqce-shop-grid > .ptqce-shop-info-card h3{max-width:12ch!important;font-size:22px!important;line-height:1.08!important;margin:0!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-text{max-width:24ch!important;font-size:14px!important;line-height:1.45!important;margin:0!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-cta{display:inline-flex!important;align-items:center!important;justify-content:center!important;align-self:center!important;justify-self:center!important;min-height:38px!important;padding:0 16px!important;border-radius:999px!important;background:#171513!important;color:#fff!important;text-decoration:none!important;font-size:13px!important;font-weight:700!important;}

/* v0.11.6 commerce shell refinement */
.ptqce-commerce-header{margin:0 auto 28px!important;max-width:1440px!important;padding:0 22px!important;font-family:"Helvetica Neue",Arial,sans-serif!important;color:#171513!important}
.ptqce-commerce-header a,.ptqce-commerce-header button,.ptqce-commerce-header input,.ptqce-commerce-header summary{font-family:inherit!important}
.ptqce-commerce-promo{background:#fff!important;color:#8f8479!important;padding:0!important}
.ptqce-commerce-promo-inner{display:flex!important;justify-content:space-between!important;align-items:center!important;gap:16px!important;padding:10px 2px 8px!important;font-size:11px!important;letter-spacing:.08em!important;text-transform:uppercase!important}
.ptqce-commerce-utility-links{display:flex!important;gap:16px!important;flex-wrap:wrap!important}
.ptqce-commerce-utility-links a{color:#8f8479!important;text-decoration:none!important}
.ptqce-commerce-topbar{position:relative!important;display:grid!important;grid-template-columns:auto minmax(320px,1fr) auto!important;gap:24px!important;align-items:center!important;padding:8px 0 18px!important;background:#fff!important}
.ptqce-commerce-logo{display:inline-flex!important;align-items:center!important;gap:14px!important;text-decoration:none!important;color:#171513!important}
.ptqce-commerce-logo-media{display:inline-flex!important;align-items:center!important}
.ptqce-commerce-logo-image{display:block!important;max-width:220px!important;max-height:58px!important;width:auto!important;height:auto!important}
.ptqce-commerce-logo-mark{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-width:54px!important;height:54px!important;padding:0 14px!important;border:1px solid rgba(23,21,19,.06)!important;background:#fff!important;font-size:22px!important;font-weight:700!important;letter-spacing:.18em!important}
.ptqce-commerce-logo-copy{display:grid!important;gap:4px!important}
.ptqce-commerce-logo-title{font-size:16px!important;line-height:1!important;letter-spacing:.01em!important;font-weight:600!important}
.ptqce-commerce-logo-text{font-size:10px!important;letter-spacing:.16em!important;text-transform:uppercase!important;color:#8b7d70!important}
.ptqce-commerce-menu-toggle{display:none!important;appearance:none!important;border:1px solid rgba(23,21,19,.12)!important;background:#fff!important;width:48px!important;height:48px!important;padding:0!important}
.ptqce-commerce-menu-toggle span{display:block!important;width:18px!important;height:2px!important;background:#171513!important;margin:4px auto!important}
.ptqce-commerce-search{display:grid!important;grid-template-columns:1fr auto!important;gap:10px!important;max-width:520px!important;justify-self:end!important;width:100%!important}
.ptqce-commerce-search input,.ptqce-commerce-search button{height:48px!important;border:1px solid rgba(23,21,19,.08)!important;background:#fff!important}
.ptqce-commerce-search input{padding:0 20px!important;font-size:15px!important;min-width:0!important}
.ptqce-commerce-search button{padding:0 18px!important;font-weight:500!important;letter-spacing:0!important;text-transform:none!important;color:#171513!important}
.ptqce-commerce-actions{display:flex!important;gap:10px!important;align-items:center!important;justify-content:flex-end!important;flex-wrap:nowrap!important}
.ptqce-commerce-login,.ptqce-commerce-signup,.ptqce-commerce-cart{display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;min-height:44px!important;padding:0 18px!important;text-decoration:none!important;font-weight:500!important;font-size:14px!important}
.ptqce-commerce-login{border:1px solid #1f64d3!important;background:#fff!important;color:#1f64d3!important}
.ptqce-commerce-signup{border:1px solid #1f64d3!important;background:#1f64d3!important;color:#fff!important}
.ptqce-commerce-cart{color:#6c6259!important;padding:0 6px!important}
.ptqce-commerce-cart strong{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-width:20px!important;height:20px!important;padding:0 5px!important;background:#f0f4fb!important;color:#1f64d3!important;font-size:11px!important;font-weight:700!important}
.ptqce-commerce-nav{display:block!important;padding:0 18px 16px!important;background:#fff!important}
.ptqce-commerce-nav-row{display:flex!important;gap:34px!important;align-items:center!important;flex-wrap:wrap!important;border-top:1px solid rgba(23,21,19,.08)!important;padding-top:16px!important}
.ptqce-commerce-nav-row>a,.ptqce-commerce-mega summary{display:inline-flex!important;align-items:center!important;min-height:40px!important;padding:0!important;color:#171513!important;text-decoration:none!important;font-weight:600!important;background:transparent!important;border:0!important;cursor:pointer!important;list-style:none!important;letter-spacing:.16em!important;text-transform:uppercase!important;font-size:11px!important}
.ptqce-commerce-nav-row>a:hover,.ptqce-commerce-mega summary:hover{color:#5b524b!important}
.ptqce-commerce-nav-featured{margin-left:auto!important}
.ptqce-commerce-nav-featured a{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:40px!important;padding:0 16px!important;background:transparent!important;color:#1f64d3!important;text-decoration:none!important;font-weight:600!important;letter-spacing:.12em!important;text-transform:uppercase!important;font-size:11px!important;border-left:1px solid rgba(23,21,19,.12)!important}
.ptqce-commerce-mega{position:relative!important}
.ptqce-commerce-mega summary::-webkit-details-marker{display:none!important}
.ptqce-commerce-mega-panel{position:absolute!important;left:0!important;top:calc(100% + 22px)!important;z-index:40!important;display:grid!important;grid-template-columns:260px minmax(420px,1fr) 340px!important;gap:34px!important;min-width:1240px!important;padding:28px 8px 30px!important;border-top:1px solid rgba(23,21,19,.08)!important;background:#fff!important;box-shadow:0 20px 48px rgba(23,21,19,.05)!important}
.ptqce-commerce-mega-side{padding-right:6px!important}
.ptqce-commerce-mega-side-label{margin:0 0 18px!important;font-size:12px!important;letter-spacing:.12em!important;text-transform:uppercase!important;color:#9a8e83!important}
.ptqce-commerce-mega-side-links{display:grid!important;gap:8px!important}
.ptqce-commerce-mega-side-links a{display:flex!important;align-items:center!important;justify-content:space-between!important;padding:8px 0!important;color:#5f5750!important;text-decoration:none!important;font-size:18px!important;line-height:1.2!important;font-weight:500!important}
.ptqce-commerce-mega-side-links a::after{content:'›'!important;font-size:26px!important;line-height:1!important;color:#b1a69b!important}
.ptqce-commerce-mega-side-links a.is-active,.ptqce-commerce-mega-side-links a:hover{color:#171513!important}
.ptqce-commerce-mega-columns{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:30px!important;align-content:start!important}
.ptqce-commerce-mega-column{display:grid!important;gap:10px!important;align-content:start!important}
.ptqce-commerce-mega-column-title{margin:0 0 4px!important;font-size:12px!important;letter-spacing:.1em!important;color:#9a8e83!important}
.ptqce-commerce-mega-column a{display:block!important;color:#2d2823!important;text-decoration:none!important;font-size:15px!important;line-height:1.45!important}
.ptqce-commerce-mega-column a:hover,.ptqce-commerce-mega-column a[aria-current="page"]{color:#171513!important;text-decoration:underline!important;text-underline-offset:5px!important}
.ptqce-commerce-mega-highlight{display:grid!important;gap:18px!important;padding:26px!important;background:#f7efe4!important;align-content:start!important}
.ptqce-commerce-mega-eyebrow{margin:0!important;font-size:11px!important;letter-spacing:.12em!important;text-transform:uppercase!important;color:#8a7967!important}
.ptqce-commerce-mega-highlight h3{margin:0!important;font-size:22px!important;line-height:1.15!important;font-weight:500!important}
.ptqce-commerce-mega-highlight p{margin:0!important;font-size:15px!important;line-height:1.6!important;color:#403831!important}
.ptqce-commerce-mega-art{height:240px!important;background:
linear-gradient(135deg,#fae7a7 0%,#fae7a7 100%) 0 0/100% 100% no-repeat!important;
position:relative!important;overflow:hidden!important}
.ptqce-commerce-mega-art::before{content:''!important;position:absolute!important;left:42px!important;bottom:0!important;width:140px!important;height:190px!important;background:#b99162!important;clip-path:polygon(0 26%,52% 0,100% 28%,100% 100%,0 100%)!important}
.ptqce-commerce-mega-art::after{content:''!important;position:absolute!important;left:92px!important;top:46px!important;width:130px!important;height:150px!important;background:#fff!important;box-shadow:0 6px 18px rgba(23,21,19,.08)!important}
.ptqce-commerce-mega-art.is-alt::before{background:#dcc6aa!important}
.ptqce-commerce-mega-art.is-alt::after{left:120px!important;top:64px!important;width:110px!important;height:130px!important}
.ptqce-commerce-mega-cta{display:inline-flex!important;align-items:center!important;gap:12px!important;color:#1f64d3!important;text-decoration:none!important;font-size:12px!important;font-weight:700!important;letter-spacing:.16em!important;text-transform:uppercase!important}
.ptqce-commerce-mega-cta::after{content:'→'!important;font-size:20px!important;line-height:1!important}
.ptqce-commerce-mega:not([open]) .ptqce-commerce-mega-panel{display:none!important}
.ptqce-landing-hero,.ptqce-category-banner{display:grid!important;grid-template-columns:minmax(0,1.1fr) minmax(300px,.9fr)!important;gap:28px!important;align-items:center!important;margin-bottom:28px!important;padding:28px!important;border:1px solid rgba(23,21,19,.1)!important;background:linear-gradient(135deg,#f4ead9 0%,#fbf7f1 100%)!important}
.ptqce-category-banner-copy h1{margin:0 0 14px!important;font-size:clamp(34px,4vw,58px)!important;line-height:.95!important;letter-spacing:-.04em!important}
.ptqce-category-banner-copy p{font-size:16px!important;line-height:1.65!important;color:#52463b!important}
.ptqce-category-banner-points{display:flex!important;gap:10px!important;flex-wrap:wrap!important;margin:18px 0!important}
.ptqce-category-banner-points span{display:inline-flex!important;align-items:center!important;min-height:38px!important;padding:0 14px!important;border:1px solid rgba(23,21,19,.12)!important;background:rgba(255,255,255,.65)!important;font-size:13px!important;font-weight:600!important;color:#3f352d!important}
.ptqce-category-banner-actions{display:flex!important;gap:12px!important;flex-wrap:wrap!important;margin-top:20px!important}
.ptqce-category-banner-media{display:flex!important;align-items:stretch!important;justify-content:stretch!important;min-height:360px!important}
.ptqce-category-banner-media img,.ptqce-category-banner-placeholder{display:block!important;width:100%!important;height:100%!important;object-fit:cover!important}
.ptqce-category-banner-placeholder{display:grid!important;place-items:center!important;gap:12px!important;border:1px solid rgba(23,21,19,.1)!important;background:radial-gradient(circle at top,#fff 0%,#f1e4d1 100%)!important}
.ptqce-category-banner-placeholder span{font-size:96px!important;line-height:1!important;font-weight:700!important;color:#171513!important}
.ptqce-category-banner-placeholder small{font-size:12px!important;letter-spacing:.16em!important;text-transform:uppercase!important;color:#7c6b5d!important}
.ptqce-shop-intro{margin-bottom:18px}
.ptqce-category-faqs{margin-top:32px!important}
.ptqce-category-faqs h2{margin:0 0 16px!important;font-size:34px!important;line-height:1!important;letter-spacing:-.03em!important}
.ptqce-category-faq-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:14px!important}
.ptqce-category-faq-item{border:1px solid rgba(23,21,19,.1)!important;background:#fff!important;padding:18px!important}
.ptqce-category-faq-item summary{cursor:pointer!important;font-weight:700!important;font-size:18px!important;line-height:1.3!important}
.ptqce-category-faq-item p{margin:12px 0 0!important;font-size:15px!important;line-height:1.6!important;color:#564b41!important}
.ptqce-shop-filter-group summary{cursor:pointer;font-weight:700;list-style:none}
.ptqce-shop-filter-group summary::-webkit-details-marker{display:none}
.ptqce-shop-filter-group[open] summary{margin-bottom:12px}
.ptqce-generated-product-info-minimal>.ptqce-summary-card{margin-top:16px}
.ptqce-qty-card-simple .ptqce-qty-head-simple{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;align-items:end}
.ptqce-qty-card-simple .ptqce-qty-price-block{display:grid;gap:6px}
.ptqce-qty-card-simple .ptqce-qty-controls-simple{margin:18px 0 10px;max-width:320px}

/* remove rounded corners from requested commerce surfaces */
.ptqce-shell .ptqce-summary-card,
.ptqce-shell .ptqce-product-card,
.ptqce-shell .ptqce-step-card,
.ptqce-shell .ptqce-addon-card,
.ptqce-shell .ptqce-module-card,
.ptqce-shell .ptqce-shop-card,
.ptqce-shell .ptqce-shop-card-media,
.ptqce-shell .ptqce-product-main-image,
.ptqce-shell .ptqce-product-main-image img,
.ptqce-shell .ptqce-product-thumb-item,
.ptqce-shell .ptqce-product-thumb-item img,
.ptqce-shell .ptqce-shop-card img,
.ptqce-shell .ptqce-builder-media img,
.ptqce-commerce-header *,
.ptqce-category-faq-item,
.ptqce-category-banner{border-radius:0!important}

@media (max-width: 1024px){
  .ptqce-commerce-promo-inner{flex-direction:column;align-items:flex-start}
  .ptqce-commerce-topbar,.ptqce-landing-hero,.ptqce-category-banner{grid-template-columns:1fr!important}
  .ptqce-commerce-actions{justify-content:flex-start!important}
  .ptqce-commerce-nav-row{gap:18px!important}
  .ptqce-commerce-nav-featured{margin-left:0!important}
  .ptqce-commerce-mega-panel{position:static!important;min-width:0!important;grid-template-columns:1fr!important}
  .ptqce-commerce-mega-columns{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width: 767px){
  .ptqce-commerce-header{padding:0 12px!important}
  .ptqce-commerce-topbar{grid-template-columns:1fr auto!important;padding:16px!important}
  .ptqce-commerce-menu-toggle{display:inline-block!important;justify-self:end!important}
  .ptqce-commerce-search{grid-column:1 / -1!important;grid-template-columns:1fr!important}
  .ptqce-commerce-actions{grid-column:1 / -1!important;flex-wrap:wrap!important}
  .ptqce-commerce-nav{display:none!important;padding:14px!important}
  .ptqce-commerce-header.is-menu-open .ptqce-commerce-nav{display:grid!important}
  .ptqce-commerce-nav-row{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}
  .ptqce-commerce-nav-row>a,.ptqce-commerce-mega summary,.ptqce-commerce-nav-featured a{justify-content:space-between!important}
  .ptqce-commerce-mega-side-links a{font-size:18px!important}
  .ptqce-commerce-mega-columns{grid-template-columns:1fr!important}
  .ptqce-category-banner-copy h1{font-size:38px!important}
  .ptqce-category-faq-grid{grid-template-columns:1fr!important}
  .ptqce-qty-card-simple .ptqce-qty-head-simple{grid-template-columns:1fr}
  .ptqce-shop-grid-related .ptqce-shop-card-body{padding-top:12px}
  .ptqce-shop-grid-related .ptqce-shop-card-badges{margin-bottom:8px}
}
.ptqce-shop-grid > .ptqce-shop-info-card.has-image .ptqce-shop-info-card-cta{background:#fff!important;color:#171513!important;}
@media (max-width:767px){
  .ptqce-shop-grid > .ptqce-shop-info-card::before{padding-top:calc(125% + 72px);}
  .ptqce-shop-grid > .ptqce-shop-info-card h3{font-size:18px!important;}
  .ptqce-shop-grid--mobile-2 > .ptqce-shop-info-card::before{padding-top:calc(125% + 52px);}
  .ptqce-shop-grid--mobile-2 > .ptqce-shop-info-card h3{font-size:14px!important;max-width:11ch!important;}
  .ptqce-shop-grid--mobile-2 > .ptqce-shop-info-card .ptqce-shop-info-card-text{font-size:11px!important;max-width:18ch!important;}
  .ptqce-shop-grid--mobile-2 > .ptqce-shop-info-card .ptqce-shop-info-card-cta{min-height:30px!important;padding:0 10px!important;font-size:10px!important;}
}

/* v0.11.6.4 header reset: lighter, unified, app-like */
.ptqce-commerce-header{padding:0 24px!important;max-width:1440px!important}
.ptqce-commerce-promo{background:#fff!important;border-bottom:0!important}
.ptqce-commerce-promo-inner{padding:8px 0 6px!important;font-size:10px!important;letter-spacing:.14em!important;color:#aaa095!important}
.ptqce-commerce-utility-links{display:none!important}
.ptqce-commerce-topbar{display:grid!important;grid-template-columns:auto minmax(280px,1fr) auto!important;gap:20px!important;align-items:center!important;padding:8px 0 16px!important}
.ptqce-commerce-logo{gap:12px!important}
.ptqce-commerce-logo-mark{min-width:46px!important;height:46px!important;border:0!important;background:transparent!important;padding:0!important;font-size:20px!important;letter-spacing:.16em!important}
.ptqce-commerce-logo-copy{gap:2px!important}
.ptqce-commerce-logo-title{font-size:15px!important;font-weight:600!important;letter-spacing:0!important}
.ptqce-commerce-logo-text{font-size:9px!important;letter-spacing:.18em!important;color:#b0a59a!important}
.ptqce-commerce-search{max-width:420px!important;justify-self:end!important;grid-template-columns:1fr auto!important;gap:8px!important}
.ptqce-commerce-search input,.ptqce-commerce-search button{height:48px!important;border:1px solid rgba(23,21,19,.08)!important;background:#fff!important;border-radius:999px!important}
.ptqce-commerce-search input{padding:0 18px!important;font-size:14px!important}
.ptqce-commerce-search button{padding:0 18px!important;font-size:13px!important;font-weight:500!important}
.ptqce-commerce-actions{gap:10px!important}
.ptqce-commerce-login,.ptqce-commerce-signup{min-height:44px!important;padding:0 22px!important;border-radius:999px!important;font-size:14px!important}
.ptqce-commerce-login{border:1px solid #1f64d3!important;color:#1f64d3!important;background:#fff!important}
.ptqce-commerce-signup{border:1px solid #1f64d3!important;color:#fff!important;background:#1f64d3!important}
.ptqce-commerce-cart{min-height:40px!important;padding:0 4px!important;color:#8f8479!important;border-radius:999px!important}
.ptqce-commerce-cart strong{background:#eef4ff!important;color:#1f64d3!important;border-radius:999px!important}
.ptqce-commerce-nav{position:relative!important;padding:0 0 16px!important}
.ptqce-commerce-nav-row{gap:34px!important;border-top:1px solid rgba(23,21,19,.08)!important;padding-top:14px!important}

/* v0.11.10 refinement: full-width header, hover mega menu, softer wedding palette */
:root{
  --ptq-bg:#fcfaf7;
  --ptq-card:rgba(255,255,255,.94);
  --ptq-text:#1f1b18;
  --ptq-muted:#7b726a;
  --ptq-border:rgba(31,27,24,.08);
  --ptq-shadow:0 18px 40px rgba(44,33,24,.06);
}
.ptqce-theme-bypass-body{background:#fcfaf7!important}
.ptqce-theme-bypass-body .wp-site-blocks,
.ptqce-theme-bypass-body .site,
.ptqce-theme-bypass-body #page{margin:0!important;padding:0!important;max-width:none!important}
.ptqce-plugin-shell-active header.wp-block-template-part,
.ptqce-plugin-shell-active footer.wp-block-template-part,
.ptqce-plugin-shell-active .wp-block-template-part,
.ptqce-plugin-shell-active .site-header,
.ptqce-plugin-shell-active .site-footer{display:none!important}

.ptqce-commerce-header{
  max-width:none!important;
  width:100%!important;
  margin:0 0 34px!important;
  padding:0!important;
  background:#fffdf9!important;
  border-bottom:1px solid rgba(31,27,24,.08)!important;
}
.ptqce-commerce-promo-inner,
.ptqce-commerce-topbar,
.ptqce-commerce-nav-row{
  width:min(1480px,100%)!important;
  margin:0 auto!important;
  padding-left:32px!important;
  padding-right:32px!important;
  box-sizing:border-box!important;
}
.ptqce-commerce-promo{background:#fffdf9!important}
.ptqce-commerce-promo-inner{
  padding-top:10px!important;
  padding-bottom:8px!important;
  color:#9a8f85!important;
}
.ptqce-commerce-topbar{
  grid-template-columns:auto minmax(360px,1fr) auto!important;
  gap:28px!important;
  padding-top:10px!important;
  padding-bottom:20px!important;
}
.ptqce-commerce-search{max-width:560px!important;justify-self:center!important}
.ptqce-commerce-search input,
.ptqce-commerce-search button{
  border-color:rgba(31,27,24,.08)!important;
  background:#fff!important;
  box-shadow:none!important;
}
.ptqce-commerce-search input{color:#1f1b18!important}
.ptqce-commerce-search button{background:#faf6f0!important}
.ptqce-commerce-actions{gap:12px!important}
.ptqce-language-switcher{display:inline-flex!important;align-items:center!important;gap:2px!important;padding:3px!important;border:1px solid rgba(23,21,19,.08)!important;background:#fbfaf8!important}
.ptqce-language-link{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-width:34px!important;height:32px!important;padding:0 10px!important;text-decoration:none!important;color:#7b7269!important;font-size:11px!important;letter-spacing:.16em!important;text-transform:uppercase!important;font-weight:600!important}
.ptqce-language-link.is-active{background:#171513!important;color:#fff!important}
.ptqce-language-link:hover{color:#171513!important}
.ptqce-commerce-login{
  border-color:#1f5fd1!important;
  color:#1f5fd1!important;
  background:#fff!important;
}
.ptqce-commerce-signup{
  border-color:#1f5fd1!important;
  background:#1f5fd1!important;
  color:#fff!important;
}
.ptqce-commerce-nav{
  padding:0!important;
  background:#fffdf9!important;
}
.ptqce-commerce-nav-row{
  position:relative!important;
  gap:36px!important;
  min-height:58px!important;
  align-items:center!important;
  border-top:1px solid rgba(31,27,24,.08)!important;
  padding-top:0!important;
  padding-bottom:0!important;
}
.ptqce-commerce-nav-row > a,
.ptqce-commerce-mega summary{
  min-height:58px!important;
  letter-spacing:.14em!important;
  font-size:11px!important;
  font-weight:600!important;
}
.ptqce-commerce-mega{position:static!important}
.ptqce-commerce-mega summary{position:relative!important}
.ptqce-commerce-mega[open] summary::after{
  content:''!important;
  position:absolute!important;
  left:0!important;
  right:0!important;
  bottom:-1px!important;
  height:2px!important;
  background:#1f1b18!important;
}
.ptqce-commerce-mega-panel{
  left:32px!important;
  right:32px!important;
  transform:none!important;
  top:calc(100% + 1px)!important;
  width:auto!important;
  min-width:0!important;
  grid-template-columns:220px minmax(0,1fr) 320px!important;
  gap:34px!important;
  padding:28px 32px 34px!important;
  border:1px solid rgba(31,27,24,.08)!important;
  border-top:0!important;
  background:#fff!important;
  box-shadow:0 26px 56px rgba(31,27,24,.08)!important;
}
.ptqce-commerce-mega-side{padding-top:4px!important}
.ptqce-commerce-mega-side-label{margin-bottom:14px!important;color:#a2978d!important}
.ptqce-commerce-mega-side-links{gap:10px!important}
.ptqce-commerce-mega-side-links a{
  padding:6px 0!important;
  font-size:17px!important;
  font-weight:500!important;
}
.ptqce-commerce-mega-columns{
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:22px!important;
}
.ptqce-commerce-mega-column{gap:20px!important}
.ptqce-commerce-mega-section{display:grid!important;gap:9px!important;align-content:start!important}
.ptqce-commerce-mega-column-title{
  margin:0!important;
  font-size:11px!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  color:#9b8f85!important;
}
.ptqce-commerce-mega-column-title a{
  font-size:11px!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  color:#9b8f85!important;
}
.ptqce-commerce-mega-column a{
  font-size:14px!important;
  line-height:1.45!important;
  color:#2c2621!important;
}
.ptqce-commerce-mega-highlight{
  gap:16px!important;
  padding:24px!important;
  background:linear-gradient(180deg,#f7efe6 0%,#fdfaf6 100%)!important;
  border-left:1px solid rgba(31,27,24,.07)!important;
}
.ptqce-commerce-mega-highlight h3{
  font-size:26px!important;
  line-height:1.02!important;
  letter-spacing:-.03em!important;
}
.ptqce-commerce-mega-highlight p{
  font-size:14px!important;
  line-height:1.62!important;
  color:#5c5249!important;
}
.ptqce-commerce-mega-art{
  height:220px!important;
  background:linear-gradient(180deg,#f4e5cf 0%,#fbf6ef 100%)!important;
}
.ptqce-commerce-mega-art::before{background:#d4b38d!important}
.ptqce-commerce-mega-art::after{background:#fffdfb!important}

.ptqce-shop-shell{
  max-width:1480px!important;
  padding-left:20px!important;
  padding-right:20px!important;
}
.ptqce-category-banner{
  grid-template-columns:minmax(0,1.18fr) minmax(320px,.82fr)!important;
  gap:32px!important;
  padding:34px!important;
  border:1px solid rgba(31,27,24,.08)!important;
  background:linear-gradient(180deg,#fffdf9 0%,#f8f1e8 100%)!important;
  box-shadow:var(--ptq-shadow)!important;
}
.ptqce-category-banner-copy .ptqce-kicker{
  margin:0 0 12px!important;
  color:#a09387!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
  font-size:11px!important;
}
.ptqce-category-banner-copy h1{
  margin:0 0 12px!important;
  font-size:clamp(36px,4.4vw,64px)!important;
  line-height:.95!important;
  letter-spacing:-.045em!important;
  color:#1f1b18!important;
}
.ptqce-category-banner-copy p{
  max-width:60ch!important;
  color:#5f554d!important;
}
.ptqce-category-banner-points{
  gap:10px!important;
  margin:20px 0!important;
}
.ptqce-category-banner-points span{
  min-height:34px!important;
  padding:0 12px!important;
  border:1px solid rgba(31,27,24,.08)!important;
  background:rgba(255,255,255,.7)!important;
  color:#544a42!important;
  font-size:12px!important;
  letter-spacing:.03em!important;
}
.ptqce-category-banner-media{
  min-height:390px!important;
  background:#efe4d8!important;
}
.ptqce-category-banner-media img,
.ptqce-category-banner-placeholder{background:#efe4d8!important}
.ptqce-category-faq-item{
  border-color:rgba(31,27,24,.08)!important;
  background:#fff!important;
}

@media (max-width: 1024px){
  .ptqce-commerce-promo-inner,
  .ptqce-commerce-topbar,
  .ptqce-commerce-nav-row{padding-left:18px!important;padding-right:18px!important}
  .ptqce-commerce-topbar{grid-template-columns:1fr auto!important}
  .ptqce-commerce-search{grid-column:1 / -1!important;justify-self:stretch!important;max-width:none!important}
  .ptqce-commerce-mega-panel{
    position:static!important;
    transform:none!important;
    width:100%!important;
    left:auto!important;
    right:auto!important;
    grid-template-columns:1fr!important;
    padding:18px 0 22px!important;
    border:0!important;
    box-shadow:none!important;
  }
  .ptqce-commerce-mega-columns{grid-template-columns:1fr 1fr!important}
  .ptqce-commerce-mega-highlight{border-left:0!important;border-top:1px solid rgba(31,27,24,.08)!important}
  .ptqce-category-banner{grid-template-columns:1fr!important}
}
@media (max-width: 767px){
  .ptqce-commerce-header{margin-bottom:22px!important}
  .ptqce-commerce-promo-inner,
  .ptqce-commerce-topbar,
  .ptqce-commerce-nav-row{padding-left:14px!important;padding-right:14px!important}
  .ptqce-commerce-topbar{padding-top:14px!important;padding-bottom:14px!important}
  .ptqce-commerce-logo-image{max-width:160px!important;max-height:44px!important}
  .ptqce-commerce-nav{display:none!important;border-top:1px solid rgba(31,27,24,.08)!important}
  .ptqce-commerce-header.is-menu-open .ptqce-commerce-nav{display:block!important}
  .ptqce-commerce-nav-row{display:grid!important;gap:0!important;min-height:0!important;border-top:0!important}
  .ptqce-commerce-nav-row > a,
  .ptqce-commerce-mega summary,
  .ptqce-commerce-nav-featured a{
    min-height:50px!important;
    border-bottom:1px solid rgba(31,27,24,.08)!important;
  }
  .ptqce-commerce-mega[open] summary::after{display:none!important}
  .ptqce-commerce-mega-columns{grid-template-columns:1fr!important}
  .ptqce-shop-shell{padding-left:12px!important;padding-right:12px!important}
  .ptqce-category-banner{padding:22px!important}
  .ptqce-category-banner-media{min-height:260px!important}
}
.ptqce-commerce-nav-row>a,.ptqce-commerce-mega summary{min-height:34px!important;font-size:11px!important;font-weight:600!important;letter-spacing:.16em!important;text-transform:uppercase!important}
.ptqce-commerce-nav-featured{margin-left:auto!important}
.ptqce-commerce-nav-featured a{border-left:1px solid rgba(23,21,19,.12)!important;padding-left:20px!important;color:#1f64d3!important;background:transparent!important}
.ptqce-commerce-mega{position:static!important}
.ptqce-commerce-mega-panel{left:0!important;right:0!important;top:calc(100% + 16px)!important;width:100%!important;min-width:0!important;padding:28px 0 18px!important;border-top:1px solid rgba(23,21,19,.08)!important;background:#fff!important;box-shadow:none!important;display:grid!important;grid-template-columns:260px minmax(420px,1fr) 300px!important;gap:38px!important}
.ptqce-commerce-mega-side{padding-right:8px!important}
.ptqce-commerce-mega-side-label{margin:0 0 16px!important;font-size:11px!important;letter-spacing:.14em!important;color:#beb3a9!important;text-transform:uppercase!important}
.ptqce-commerce-mega-side-links{gap:10px!important}
.ptqce-commerce-mega-side-links a{padding:6px 0!important;font-size:18px!important;font-weight:500!important;color:#6e645c!important}
.ptqce-commerce-mega-side-links a::after{color:#d0c6bc!important}
.ptqce-commerce-mega-side-links a.is-active,.ptqce-commerce-mega-side-links a:hover{color:#171513!important}
.ptqce-commerce-mega-columns{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important}
.ptqce-commerce-mega-column{gap:8px!important}
.ptqce-commerce-mega-column-title{margin:0 0 8px!important;font-size:11px!important;letter-spacing:.12em!important;color:#beb3a9!important;text-transform:none!important}
.ptqce-commerce-mega-column a{font-size:15px!important;line-height:1.5!important;color:#2b2622!important}
.ptqce-commerce-mega-column a:hover,.ptqce-commerce-mega-column a[aria-current="page"]{text-decoration:none!important;color:#171513!important}
.ptqce-commerce-mega-highlight{gap:14px!important;padding:0!important;background:transparent!important;border:0!important}
.ptqce-commerce-mega-eyebrow{font-size:11px!important;letter-spacing:.14em!important;color:#beb3a9!important}
.ptqce-commerce-mega-highlight h3{font-size:20px!important;line-height:1.15!important;font-weight:500!important}
.ptqce-commerce-mega-highlight p{font-size:15px!important;line-height:1.6!important;color:#5e554d!important}
.ptqce-commerce-mega-art{height:230px!important;background:#f7f7f7!important;border:1px solid rgba(23,21,19,.06)!important}
.ptqce-commerce-mega-art::before{left:38px!important;bottom:0!important;width:134px!important;height:178px!important;background:#ded4c8!important}
.ptqce-commerce-mega-art::after{left:98px!important;top:40px!important;width:120px!important;height:142px!important;background:#fff!important;box-shadow:0 8px 24px rgba(23,21,19,.06)!important}
.ptqce-commerce-mega-cta{font-size:11px!important;letter-spacing:.16em!important;color:#1f64d3!important}

@media (max-width: 1024px){
  .ptqce-commerce-topbar{grid-template-columns:1fr!important}
  .ptqce-commerce-search{justify-self:start!important}
  .ptqce-commerce-actions{justify-content:flex-start!important}
  .ptqce-commerce-mega-panel{grid-template-columns:1fr!important;gap:24px!important}
  .ptqce-commerce-mega-columns{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media (max-width: 767px){
  .ptqce-commerce-header{padding:0 14px!important}
  .ptqce-commerce-topbar{grid-template-columns:1fr auto!important;padding:6px 0 14px!important}
  .ptqce-commerce-search{grid-column:1 / -1!important;max-width:none!important}
  .ptqce-commerce-actions{grid-column:1 / -1!important;gap:8px!important;flex-wrap:wrap!important}
  .ptqce-language-switcher{order:-1!important}
  .ptqce-commerce-login,.ptqce-commerce-signup{padding:0 16px!important}
  .ptqce-commerce-nav{display:none!important}
  .ptqce-commerce-header.is-menu-open .ptqce-commerce-nav{display:block!important}
  .ptqce-commerce-nav-row{display:grid!important;grid-template-columns:1fr!important;gap:10px!important}
  .ptqce-commerce-nav-row>a,.ptqce-commerce-mega summary,.ptqce-commerce-nav-featured a{justify-content:space-between!important}
  .ptqce-commerce-nav-featured{margin-left:0!important}
  .ptqce-commerce-nav-featured a{border-left:0!important;padding-left:0!important}
  .ptqce-commerce-mega-panel{position:static!important;padding:18px 0 4px!important}
  .ptqce-commerce-mega-columns{grid-template-columns:1fr!important}
}


/* v0.11.5.3 info card final sizing fix */
.ptqce-shop-grid > .ptqce-shop-info-card,
.ptqce-shop-info-card{aspect-ratio:auto !important;height:100% !important;min-height:0 !important;}
.ptqce-shop-grid > .ptqce-shop-info-card::before{display:none !important;padding-top:0 !important;}
.ptqce-shop-grid > .ptqce-shop-info-card{background-color:var(--ptq-info-bg,#F2EEE6)!important;background-image:var(--ptq-info-image,none)!important;background-size:cover!important;background-position:center center!important;background-repeat:no-repeat!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-layer{position:absolute!important;inset:0!important;display:block!important;z-index:0!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-body{position:relative!important;inset:auto!important;z-index:1!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;min-height:100%!important;padding:16px!important;gap:10px!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-body > *{margin-left:auto!important;margin-right:auto!important;text-align:center!important;}
.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-cta{align-self:center!important;}
@media (max-width: 767px){
  .ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-body{padding:12px!important;gap:8px!important;}
}

/* v0.11.12 home + smart filters + premium invitations */
.ptqce-home-hero{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);gap:36px;align-items:start;padding:30px 0 18px}
.ptqce-home-hero-copy{text-align:center;max-width:760px;margin:0 auto}
.ptqce-home-hero-copy h1{font-size:clamp(2.6rem,6vw,5rem);line-height:.98;letter-spacing:-.05em;margin:0 0 18px;color:#171513}
.ptqce-home-hero-copy p{font-size:1.05rem;line-height:1.7;color:#5e605f;max-width:640px;margin:0 auto 20px}
.ptqce-home-hero .ptqce-action-strip{justify-content:center}
.ptqce-home-hero-products{display:grid;gap:18px}
.ptqce-home-section,.ptqce-home-duo{padding:18px 0 12px}
.ptqce-home-section-head{display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:18px}
.ptqce-home-section-head h2{margin:0;font-size:clamp(1.45rem,2.6vw,2.4rem);line-height:1.08;letter-spacing:-.04em}
.ptqce-home-section-head p{margin:6px 0 0;color:#666866;max-width:640px}
.ptqce-home-product-grid,.ptqce-home-style-grid,.ptqce-home-category-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.ptqce-home-chip-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.ptqce-home-flow-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.ptqce-home-duo{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.ptqce-home-product-card,.ptqce-home-style-card,.ptqce-home-category-card,.ptqce-home-chip-card,.ptqce-home-story-card{padding:0;overflow:hidden}
.ptqce-home-product-media,.ptqce-home-style-media{display:block;aspect-ratio:4/5;background:#f3efe8}
.ptqce-home-product-media img,.ptqce-home-style-media img{width:100%;height:100%;object-fit:cover;display:block}
.ptqce-home-product-body,.ptqce-home-style-body,.ptqce-home-category-copy,.ptqce-home-chip-card,.ptqce-home-story-card{padding:20px}
.ptqce-home-product-body h3,.ptqce-home-style-body h3,.ptqce-home-category-copy h3{margin:6px 0 8px;font-size:1.15rem;line-height:1.15;letter-spacing:-.03em}
.ptqce-home-style-body p,.ptqce-home-category-copy p{margin:0;color:#696b69}
.ptqce-home-mini-kicker{display:inline-flex;font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:#787a77}
.ptqce-home-chip-card{display:grid;gap:10px;align-content:start;min-height:168px}
.ptqce-home-chip-card strong{font-size:1.1rem;line-height:1.15}
.ptqce-home-chip-card small{color:#656764}
.ptqce-home-flag{display:inline-flex;align-self:start;padding:6px 10px;background:#171513;color:#fff;font-size:.73rem;letter-spacing:.12em;text-transform:uppercase}
.ptqce-home-story-card{display:grid;gap:18px;align-content:start;padding:28px}
.ptqce-home-story-card h2{margin:0;font-size:clamp(1.4rem,2.4vw,2.3rem);line-height:1.08;letter-spacing:-.04em}
.ptqce-shop-filter-note{margin:10px 0 0;font-size:.92rem;line-height:1.55;color:#6d706d}
.ptqce-category-format-strip,.ptqce-category-premium-note{display:grid;gap:12px;padding:18px;border:1px solid rgba(23,21,19,.08);background:#fff}
.ptqce-category-format-strip-copy p,.ptqce-category-premium-note p{margin:6px 0 0;color:#666866}
.ptqce-category-format-strip-list{display:flex;flex-wrap:wrap;gap:10px}
.ptqce-category-format-chip{display:inline-flex;align-items:center;justify-content:center;padding:10px 14px;border:1px solid rgba(23,21,19,.12);background:#fff;color:#171513;text-decoration:none;font-size:.88rem;letter-spacing:.01em}
.ptqce-category-format-chip.is-active,.ptqce-category-format-chip:hover{background:#171513;color:#fff;border-color:#171513}
.ptqce-premium-kicker{display:inline-flex;align-self:flex-start;padding:7px 12px;background:#171513;color:#fff;font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;margin:0 0 10px}
.ptqce-premium-intro-card{background:#f6f2ea}
.ptqce-premium-intro-card p{margin:6px 0 0;color:#696b69}
.ptqce-generated-product-page.is-premium .ptqce-generated-product-grid{grid-template-columns:minmax(0,1.3fr) minmax(320px,.7fr)}
.ptqce-generated-product-page.is-premium .ptqce-product-main-image{min-height:780px}
.ptqce-generated-product-page.is-premium .ptqce-generated-product-info{padding-top:14px}
.ptqce-generated-product-page.is-premium .ptqce-product-title-minimal{font-size:clamp(2.4rem,4vw,4.3rem);line-height:.96}
@media (max-width: 1200px){
  .ptqce-home-hero{grid-template-columns:1fr}
  .ptqce-home-product-grid,.ptqce-home-style-grid,.ptqce-home-category-grid,.ptqce-home-chip-grid,.ptqce-home-flow-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 767px){
  .ptqce-home-product-grid,.ptqce-home-style-grid,.ptqce-home-category-grid,.ptqce-home-chip-grid,.ptqce-home-flow-grid,.ptqce-home-duo{grid-template-columns:1fr}
  .ptqce-home-hero{gap:22px;padding:18px 0 8px}
  .ptqce-home-hero-copy h1{font-size:clamp(2.2rem,12vw,3.4rem)}
  .ptqce-home-story-card{padding:22px}
  .ptqce-generated-product-page.is-premium .ptqce-generated-product-grid{grid-template-columns:1fr}
  .ptqce-generated-product-page.is-premium .ptqce-product-main-image{min-height:460px}
}

/* v0.11.12.1 cool-slate frontend palette */
:root{
  --ptq-bg:#E2E2E2;
  --ptq-card:rgba(255,255,255,.92);
  --ptq-text:#1C0F13;
  --ptq-muted:#6E7E85;
  --ptq-border:rgba(110,126,133,.22);
  --ptq-shadow:0 18px 38px rgba(28,15,19,.06);
}
.ptqce-theme-bypass-body{background:#E2E2E2!important;color:#1C0F13!important}
.ptqce-surface-card,.ptqce-shop-filter-card,.ptqce-shop-toolbar,.ptqce-shop-card,.ptqce-summary-card,.ptqce-step-card,.ptqce-status-card,.ptqce-qty-card,.ptqce-home-story-card,.ptqce-home-chip-card,.ptqce-home-category-card,.ptqce-home-style-card,.ptqce-home-product-card{background:#fff!important;border-color:rgba(110,126,133,.2)!important;box-shadow:var(--ptq-shadow)!important}
.ptqce-button,.ptqce-button-primary,.ptqce-shop-pagination .current,.ptqce-premium-kicker,.ptqce-home-flag,.ptqce-category-format-chip.is-active,.ptqce-category-format-chip:hover,.ptqce-shop-info-card-cta{background:#639292!important;border-color:#639292!important;color:#fff!important}
.ptqce-button-secondary,.ptqce-mini-button,.ptqce-shop-chip,.ptqce-shop-pill,.ptqce-shop-badge,.ptqce-filter-check,.ptqce-shop-search,.ptqce-shop-sort,.ptqce-language-link,.ptqce-composition-choice,.ptqce-generated-info-item{background:#fff!important;border-color:rgba(110,126,133,.2)!important;color:#1C0F13!important}
.ptqce-shop-search:focus,.ptqce-shop-sort:focus,.ptqce-filter-check:hover,.ptqce-composition-choice:hover{border-color:#639292!important}
.ptqce-commerce-signup,.ptqce-commerce-login,.ptqce-commerce-cart strong,.ptqce-commerce-nav-featured a{background:#639292!important;border-color:#639292!important;color:#fff!important}
.ptqce-language-link.is-active{background:#639292!important;color:#fff!important}
.ptqce-home-product-media,.ptqce-home-style-media,.ptqce-shop-card-media,.ptqce-product-main-image-minimal,.ptqce-shop-info-card,.ptqce-category-banner-placeholder{background:#BBBAC6!important}
.ptqce-home-hero-copy h1,.ptqce-home-section-head h2,.ptqce-product-title-minimal,.ptqce-page-header h1,.ptqce-category-banner h1{color:#1C0F13!important}
.ptqce-home-hero-copy p,.ptqce-home-section-head p,.ptqce-help,.ptqce-kicker,.ptqce-meta-line span,.ptqce-shop-filter-note,.ptqce-category-format-strip-copy p,.ptqce-category-premium-note p{color:#6E7E85!important}
.ptqce-home-hero,.ptqce-category-banner,.ptqce-premium-intro-card,.ptqce-category-format-strip,.ptqce-category-premium-note{background:#fff!important;border-color:rgba(110,126,133,.2)!important}
.ptqce-shop-info-card-layer,.ptqce-shop-grid > .ptqce-shop-info-card .ptqce-shop-info-card-layer{background:rgba(99,146,146,.08)!important}
.ptqce-shop-toolbar{background:var(--ptq-card)!important}

/* v0.11.12.2 shop/category cleanup + studio pagination */
.ptqce-category-banner.ptqce-category-banner-simple{
  display:block!important;
  margin-bottom:18px!important;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
}
.ptqce-category-banner.ptqce-category-banner-simple .ptqce-category-banner-copy{display:grid;gap:8px;max-width:64ch}
.ptqce-category-banner.ptqce-category-banner-simple .ptqce-category-banner-copy h1{margin:0!important;font-size:clamp(2rem,4vw,3.4rem)!important;line-height:.98!important;letter-spacing:-.04em!important}
.ptqce-category-banner.ptqce-category-banner-simple .ptqce-category-banner-copy p{margin:0!important;max-width:56ch;color:#6E7E85!important;font-size:1rem!important;line-height:1.65!important}
.ptqce-shop-inline-types{
  display:grid;
  gap:12px;
  margin:16px 0 18px;
  padding:16px 18px;
  border:1px solid rgba(110,126,133,.2);
}
.ptqce-shop-inline-types-copy{display:grid;gap:4px}
.ptqce-shop-inline-types-copy strong{font-size:1rem;line-height:1.2;color:#1C0F13}
.ptqce-shop-inline-types-copy span{color:#6E7E85;font-size:.94rem;line-height:1.5}
.ptqce-shop-inline-types-list{display:flex;flex-wrap:wrap;gap:10px}
.ptqce-studio-pagination-meta{
  margin:14px 0 10px;
  color:#6E7E85;
  font-size:.95rem;
}
.ptqce-studio-pagination{margin-top:4px}
.ptqce-studio-pagination .page-numbers{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0;
  margin:0;
  list-style:none;
}
.ptqce-studio-pagination a,
.ptqce-studio-pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  height:40px;
  padding:0 14px;
  border:1px solid rgba(110,126,133,.2);
  background:#fff;
  color:#1C0F13;
  text-decoration:none;
}
.ptqce-studio-pagination .current{
  background:#639292;
  border-color:#639292;
  color:#fff;
}
@media (max-width: 767px){
  .ptqce-shop-inline-types{padding:14px}
}

/* v0.11.12.6 shop cleanup */
.ptqce-shop-filter-card{box-shadow:none!important}
.ptqce-shop-price-grid,
.ptqce-shop-price-field{display:none!important}
.ptqce-category-faqs{margin-top:22px!important}
.ptqce-category-faqs h2{margin:0 0 10px!important;font-size:22px!important;line-height:1.05!important;letter-spacing:-.02em!important}
.ptqce-category-faq-grid{gap:10px!important}
.ptqce-category-faq-item{padding:12px 14px!important;box-shadow:none!important}
.ptqce-category-faq-item summary{font-size:14px!important;line-height:1.35!important;font-weight:600!important}
.ptqce-category-faq-item p{margin:8px 0 0!important;font-size:13px!important;line-height:1.5!important}
.ptqce-shop-mobile-active-filters{display:none}

/* v0.11.12.7 mobile shop/product stabilization */
@media (max-width: 767px){
  .ptqce-theme-bypass-body,
  .ptqce-theme-bypass-main,
  .ptqce-shop-shell,
  .ptqce-shop-layout,
  .ptqce-shop-main,
  .ptqce-product-shell,
  .ptqce-generated-product-page{
    width:100%!important;
    max-width:100%!important;
    overflow-x:hidden!important;
    overscroll-behavior-x:none;
  }
  .ptqce-shop-layout,
  .ptqce-shop-main{overflow-x:clip!important}
  .ptqce-shop-grid,
  .ptqce-shop-grid--mobile-2{width:100%!important;max-width:100%!important}
  .ptqce-shop-grid--mobile-2{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
  }
  .ptqce-shop-grid--mobile-2 > *{min-width:0!important;max-width:100%!important}
  .ptqce-shop-card,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-info-card{width:100%!important;max-width:100%!important}
  .ptqce-shop-toolbar .ptqce-shop-active-filters{display:none!important}
  .ptqce-shop-mobile-active-filters{
    display:grid!important;
    gap:8px;
    position:sticky;
    bottom:12px;
    z-index:26;
    margin-top:16px;
    padding:12px;
    background:var(--ptq-card)!important;
  }
  .ptqce-shop-mobile-active-filters .ptqce-shop-active-list{
    display:flex;
    flex-wrap:nowrap;
    gap:6px;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .ptqce-shop-mobile-active-filters .ptqce-shop-active-list::-webkit-scrollbar{display:none}
  .ptqce-commerce-header{
    position:sticky!important;
    top:0!important;
    z-index:58!important;
  }
}

/* v0.11.12.8 mobile toolbar + product shell hardening */
@media (max-width: 767px){
  html,
  body.ptqce-theme-bypass-body{
    width:100%!important;
    max-width:100%!important;
    overflow-x:hidden!important;
    overscroll-behavior-x:none!important;
    background:var(--ptq-bg)!important;
  }
  body.ptqce-theme-bypass-body .wp-site-blocks,
  body.ptqce-theme-bypass-body #page,
  body.ptqce-theme-bypass-body .site{
    margin:0!important;
    padding:0!important;
    max-width:none!important;
    overflow-x:hidden!important;
  }
  body.ptqce-plugin-shell-active .wp-site-blocks > header:not(.ptqce-commerce-header),
  body.ptqce-plugin-shell-active .wp-site-blocks > footer,
  body.ptqce-plugin-shell-active .wp-site-blocks > .wp-block-template-part,
  body.ptqce-plugin-shell-active > header:not(.ptqce-commerce-header),
  body.ptqce-plugin-shell-active > footer,
  body.ptqce-plugin-shell-active > .wp-block-template-part,
  body.ptqce-plugin-shell-active .site-header,
  body.ptqce-plugin-shell-active .site-footer{
    display:none!important;
  }
  body.ptqce-theme-bypass-body .ptqce-commerce-header,
  body.ptqce-theme-bypass-body .ptqce-commerce-header *,
  body.ptqce-theme-bypass-body .ptqce-shop-shell,
  body.ptqce-theme-bypass-body .ptqce-shop-shell *,
  body.ptqce-theme-bypass-body .ptqce-shop-layout,
  body.ptqce-theme-bypass-body .ptqce-shop-main{
    box-sizing:border-box!important;
  }
  .ptqce-commerce-header{
    position:sticky!important;
    top:0!important;
    z-index:60!important;
    max-width:100%!important;
    margin:0 0 16px!important;
    padding:0!important;
    background:var(--ptq-bg)!important;
  }
  .ptqce-commerce-promo-inner,
  .ptqce-commerce-topbar,
  .ptqce-commerce-nav{
    padding-left:12px!important;
    padding-right:12px!important;
  }
  .ptqce-shop-mobile-active-filters{
    display:none!important;
  }
  .ptqce-shop-main{
    display:block!important;
    min-width:0!important;
    width:100%!important;
    padding-top:0!important;
    padding-bottom:var(--ptq-shop-toolbar-space-bottom, 148px)!important;
  }
  .ptqce-shop-shell{
    width:100%!important;
    max-width:100%!important;
    padding-left:12px!important;
    padding-right:12px!important;
  }
  .ptqce-shop-main > .ptqce-shop-toolbar{
    width:auto!important;
    max-width:none!important;
    margin:0!important;
    padding:12px!important;
    z-index:42!important;
    background:#fff!important;
    border-radius:18px!important;
    box-shadow:0 12px 26px rgba(16,24,40,.10)!important;
    box-sizing:border-box!important;
  }
  .ptqce-shop-main > .ptqce-shop-toolbar.is-floating{
    position:fixed!important;
    left:12px!important;
    right:12px!important;
    bottom:12px!important;
    top:auto!important;
    transform:none!important;
  }
  .ptqce-shop-main > .ptqce-shop-toolbar.is-docked{
    position:relative!important;
    left:auto!important;
    right:auto!important;
    bottom:auto!important;
    top:auto!important;
    transform:none!important;
    margin-top:16px!important;
  }
  .ptqce-shop-main > .ptqce-shop-toolbar .ptqce-shop-toolbar-main{
    display:grid!important;
    gap:8px!important;
  }
  .ptqce-shop-main > .ptqce-shop-toolbar .ptqce-shop-toolbar-controls{
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr) auto!important;
    gap:8px!important;
    align-items:center!important;
    width:100%!important;
  }
  .ptqce-shop-main > .ptqce-shop-toolbar .ptqce-shop-active-filters{
    display:grid!important;
    gap:8px!important;
  }
  .ptqce-product-shell,
  .ptqce-product-shell-minimal,
  .ptqce-generated-product-page,
  .ptqce-generated-product-grid-minimal,
  .ptqce-generated-product-gallery-minimal,
  .ptqce-generated-product-info-minimal,
  .ptqce-related-style-section,
  .ptqce-product-thumb-grid-minimal,
  .ptqce-action-strip,
  .ptqce-breadcrumbs{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    overflow-x:hidden!important;
  }
  .ptqce-generated-product-page,
  .ptqce-generated-product-page *,
  .ptqce-generated-product-info-minimal,
  .ptqce-generated-product-info-minimal *,
  .ptqce-related-style-section,
  .ptqce-related-style-section *{
    box-sizing:border-box!important;
    min-width:0!important;
  }
  .ptqce-product-shell,
  .ptqce-product-shell-minimal{
    padding:18px 12px 34px!important;
  }
  .ptqce-generated-product-grid-minimal{
    grid-template-columns:1fr!important;
    gap:18px!important;
  }
  .ptqce-product-main-image-minimal,
  .ptqce-product-main-image-minimal img,
  .ptqce-product-thumb-grid-minimal img{
    max-width:100%!important;
  }
  .ptqce-product-thumb-grid-minimal{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:8px!important;
  }
  .ptqce-generated-product-info-minimal .ptqce-summary-card,
  .ptqce-generated-product-info-minimal .ptqce-qty-card,
  .ptqce-generated-product-info-minimal .ptqce-status-card{
    width:100%!important;
    max-width:100%!important;
    overflow-x:hidden!important;
  }
  .ptqce-product-meta-stack{
    width:100%!important;
    max-width:100%!important;
    overflow:hidden!important;
  }
  .ptqce-product-title-minimal{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    margin:8px 0 12px!important;
    font-size:34px!important;
    line-height:1.02!important;
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:break-word!important;
    text-wrap:balance!important;
  }
  .ptqce-meta-line{
    flex-wrap:wrap!important;
    row-gap:4px!important;
  }
  .ptqce-inline-filter-link,
  .ptqce-inline-links{
    max-width:100%!important;
    white-space:normal!important;
    word-break:break-word!important;
  }
  .ptqce-qty-card-simple .ptqce-qty-controls-simple{
    max-width:100%!important;
  }
  .ptqce-shop-grid-related{
    grid-template-columns:1fr!important;
    gap:12px!important;
    width:100%!important;
    max-width:100%!important;
  }
  .ptqce-breadcrumbs{
    gap:6px!important;
    font-size:12px!important;
    word-break:break-word!important;
  }
  .ptqce-action-strip{
    grid-template-columns:1fr!important;
  }
  .ptqce-build-badge{
    position:fixed!important;
    right:10px!important;
    bottom:10px!important;
    z-index:120!important;
    display:inline-flex!important;
    align-items:center!important;
    gap:6px!important;
    padding:7px 10px!important;
    background:rgba(28,15,19,.92)!important;
    color:#fff!important;
    font-size:11px!important;
    line-height:1!important;
    border-radius:999px!important;
    box-shadow:0 10px 22px rgba(16,24,40,.18)!important;
  }
  .ptqce-build-badge span{opacity:.7}
  .ptqce-shop-mobile-toolbar-anchor{
    width:100%!important;
    height:1px!important;
    margin-top:16px!important;
  }
  .ptqce-shop-layout,
  .ptqce-shop-main,
  .ptqce-shop-grid,
  .ptqce-category-faqs,
  .ptqce-shop-grid--mobile-2,
  .ptqce-shop-grid--mobile-2 > *{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
  }
  .ptqce-shop-layout{gap:14px!important}
  .ptqce-shop-grid--mobile-2{
    gap:10px!important;
  }
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-body,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-media,
  .ptqce-shop-grid--mobile-2 .ptqce-shop-card-image{
    max-width:100%!important;
  }
  .ptqce-shop-main > *{
    overflow-x:clip!important;
  }
}

/* v0.11.12.13 product mobile overflow final pass */
@media (max-width: 767px){
  body.ptqce-theme-bypass-body.single-product{
    overflow-x:hidden!important;
  }
  body.ptqce-theme-bypass-body.single-product,
  body.ptqce-theme-bypass-body.single-product .ptqce-commerce-header,
  body.ptqce-theme-bypass-body.single-product .ptqce-commerce-topbar,
  body.ptqce-theme-bypass-body.single-product .ptqce-commerce-actions,
  body.ptqce-theme-bypass-body.single-product .ptqce-commerce-search,
  body.ptqce-theme-bypass-body.single-product .ptqce-shell,
  body.ptqce-theme-bypass-body.single-product .ptqce-product-shell,
  body.ptqce-theme-bypass-body.single-product .ptqce-product-shell-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-page,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-page-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-grid-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-gallery-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-info-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-section,
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-head,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-grid-related,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-grid-related > *{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    box-sizing:border-box!important;
  }
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-page-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-grid-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-gallery-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-generated-product-info-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-section,
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-head,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-grid-related{
    overflow-x:clip!important;
    overflow-y:visible!important;
    contain:inline-size;
  }
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-head{
    align-items:flex-start!important;
  }
  body.ptqce-theme-bypass-body.single-product .ptqce-product-title-minimal,
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-head h2,
  body.ptqce-theme-bypass-body.single-product .ptqce-related-style-head a,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-grid-related h3,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-grid-related h3 a,
  body.ptqce-theme-bypass-body.single-product .ptqce-shipping-pill,
  body.ptqce-theme-bypass-body.single-product .ptqce-button{
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    word-break:break-word!important;
  }
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-card,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-card-media,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-card-image,
  body.ptqce-theme-bypass-body.single-product .ptqce-shop-card-body{
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
  }
}

/* v0.11.12.21 PTQ CRM and reserved area */
.ptqce-crm-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.ptqce-crm-stat{
  background:linear-gradient(180deg,#fff 0%,#fbf7f1 100%);
  border:1px solid var(--ptq-border);
  border-radius:22px;
  padding:18px 20px;
  display:grid;
  gap:6px;
}
.ptqce-crm-stat strong{
  font-size:28px;
  line-height:1;
  color:var(--ptq-text);
}
.ptqce-crm-stat span{
  color:var(--ptq-muted);
  font-size:14px;
  line-height:1.45;
}
.ptqce-crm-subnav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.ptqce-crm-subnav .ptqce-button-secondary.is-active{
  background:var(--ptq-accent)!important;
  border-color:var(--ptq-accent)!important;
  color:#fff!important;
}
.ptqce-crm-toolbar{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:end;
  flex-wrap:wrap;
}
.ptqce-crm-filter{
  min-width:min(100%,320px);
}
.ptqce-crm-filter label{
  display:grid;
  gap:8px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7b6e60;
}
.ptqce-crm-filter input{
  width:100%;
  min-height:46px;
  border-radius:16px;
}
.ptqce-crm-list{
  display:grid;
  gap:12px;
}
.ptqce-crm-list-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  padding:18px 20px;
  border-radius:24px;
  background:linear-gradient(180deg,#fff 0%,#fbf7f1 100%);
  border:1px solid rgba(28,15,19,0.08);
  box-shadow:0 10px 28px rgba(20,18,14,0.04);
}
.ptqce-crm-list-row.is-active{
  border-color:rgba(61,199,190,0.32);
  box-shadow:0 0 0 4px rgba(61,199,190,0.08),0 12px 30px rgba(20,18,14,0.05);
}
.ptqce-crm-list-main,
.ptqce-crm-list-side{
  display:grid;
  gap:10px;
}
.ptqce-crm-list-main{
  flex:1 1 auto;
  min-width:0;
}
.ptqce-crm-list-side{
  justify-items:end;
  min-width:220px;
}
.ptqce-crm-list-title{
  display:grid;
  gap:4px;
}
.ptqce-crm-list-title strong{
  font-size:20px;
  line-height:1.1;
  color:#17120f;
}
.ptqce-crm-list-title span{
  color:var(--ptq-muted);
  font-size:14px;
  line-height:1.5;
}
.ptqce-crm-funnel{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.ptqce-crm-funnel-step{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:18px;
  background:#f3efe8;
  border:1px solid rgba(28,15,19,0.06);
}
.ptqce-crm-funnel-step.is-active{
  background:linear-gradient(180deg,#f8fffd 0%,#eefaf8 100%);
  border-color:rgba(61,199,190,0.18);
}
.ptqce-crm-funnel-step strong{
  font-size:12px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:#7a6c5d;
}
.ptqce-crm-funnel-step span{
  font-size:14px;
  line-height:1.5;
  color:#2b211d;
}
.ptqce-crm-detail-shell{
  margin-top:18px;
}
.ptqce-crm-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.ptqce-crm-timeline{
  display:grid;
  gap:12px;
  margin-top:16px;
}
.ptqce-crm-timeline-item{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:16px;
  background:#faf6f0;
  border:1px solid rgba(28,15,19,0.08);
}
.ptqce-crm-timeline-item strong{
  font-size:13px;
  line-height:1.2;
}
.ptqce-crm-timeline-item span{
  color:var(--ptq-muted);
  font-size:14px;
  line-height:1.45;
}
.ptqce-crm-order-items{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.ptqce-crm-order-item{
  padding:14px 16px;
  border-radius:18px;
  background:#faf6f0;
  border:1px solid rgba(28,15,19,0.08);
}
.ptqce-crm-order-item > strong{
  display:block;
  margin-bottom:10px;
}
.ptqce-crm-order-fields{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.ptqce-crm-order-fields li{
  display:grid;
  gap:2px;
}
.ptqce-crm-order-fields span{
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#7b6e60;
}
.ptqce-crm-order-fields strong,
.ptqce-crm-order-fields a{
  font-size:14px;
  line-height:1.5;
  color:var(--ptq-text);
}
.ptqce-crm-preview-form{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(28,15,19,0.08);
}
.ptqce-crm-preview-form .ptqce-form-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.ptqce-crm-preview-form .ptqce-field{
  min-width:0;
}
.ptqce-crm-preview-form .ptqce-field label{
  display:grid;
  gap:8px;
  margin:0;
  font-size:14px;
  font-weight:700;
  line-height:1.3;
  color:var(--ptq-text);
}
.ptqce-crm-preview-form .ptqce-field input,
.ptqce-crm-preview-form .ptqce-field textarea,
.ptqce-crm-preview-form .ptqce-field select{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.ptqce-crm-preview-form .ptqce-field input[type="file"]{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--ptq-border);
  background:#fff;
  line-height:1.2;
}
.ptqce-crm-preview-form .ptqce-field input[disabled]{
  background:#faf6f0;
  color:#5f564d;
}
.ptqce-crm-preview-form .ptqce-field textarea{
  min-height:132px;
  resize:vertical;
}
.ptqce-crm-preview-form .ptqce-inline-actions{
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}
.ptqce-order-shell-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.ptqce-order-shell-head h3{
  margin:0 0 6px;
  font-size:30px;
  line-height:1;
}
.ptqce-order-shell-head .ptqce-help{
  margin:0;
}
.ptqce-crm-order-workspace{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(340px,.8fr);
  gap:18px;
  align-items:start;
}
.ptqce-crm-order-primary,
.ptqce-crm-order-side{
  display:grid;
  gap:16px;
  min-width:0;
}
.ptqce-collab-card{
  background:linear-gradient(180deg,#fff 0%,#fcfaf7 100%);
  border:1px solid rgba(28,15,19,0.08);
  border-radius:24px;
  padding:18px;
  box-shadow:0 12px 32px rgba(20,18,14,0.05);
  min-width:0;
}
.ptqce-collab-card-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:14px;
}
.ptqce-collab-card-head h4{
  margin:0 0 4px;
  font-size:22px;
  line-height:1.05;
}
.ptqce-collab-card-head p{
  margin:0;
  color:var(--ptq-muted);
  font-size:14px;
  line-height:1.55;
}
.ptqce-preview-summary{
  display:grid;
  gap:10px;
  margin-bottom:14px;
}
.ptqce-preview-summary p{
  margin:0;
}
.ptqce-revision-list{
  display:grid;
  gap:10px;
}
.ptqce-revision-item{
  display:grid;
  gap:8px;
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(28,15,19,0.08);
}
.ptqce-revision-item.is-current{
  border-color:rgba(61,199,190,0.3);
  box-shadow:0 0 0 4px rgba(61,199,190,0.06);
}
.ptqce-revision-main{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.ptqce-revision-main strong{
  color:#231916;
}
.ptqce-revision-main span{
  color:var(--ptq-muted);
  font-size:13px;
  line-height:1.5;
}
.ptqce-revision-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.ptqce-revision-actions a{
  font-weight:700;
}
.ptqce-revision-item p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#4a4036;
}
.ptqce-approval-form{
  margin-top:14px;
}
.ptqce-approval-check{
  display:flex!important;
  align-items:flex-start;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(28,15,19,0.08);
}
.ptqce-approval-check input{
  width:18px!important;
  height:18px!important;
  min-width:18px;
  margin-top:2px;
}
.ptqce-approval-check span{
  font-size:13px;
  line-height:1.6;
  color:#4a4036;
}
.ptqce-studio-sidebar{
  background:
    radial-gradient(circle at top left, rgba(61,199,190,0.12), transparent 34%),
    linear-gradient(180deg,#fff 0%,#fbf7f1 100%);
}
.ptqce-studio-topbar{
  background:linear-gradient(180deg,#fff 0%,#fcfaf7 100%);
  border:1px solid rgba(28,15,19,0.08);
  border-radius:28px;
  padding:20px 22px;
  box-shadow:var(--ptq-shadow);
}
.ptqce-studio-topbar h1{
  font-size:44px;
}
.ptqce-crm-app-shell{
  display:grid;
  width:100%;
  box-sizing:border-box;
  grid-template-columns:minmax(0,1fr) 280px;
  grid-template-areas:"main sidebar";
  gap:28px;
  align-items:start;
}
.ptqce-crm-main{
  grid-area:main;
  min-width:0;
  width:100%;
}
.ptqce-crm-sidebar{
  grid-area:sidebar;
  min-width:0;
  width:100%;
}
.ptqce-crm-sidebar-copy{
  display:grid;
  gap:8px;
  margin:16px 0 4px;
}
.ptqce-crm-sidebar-copy h2{
  margin:0;
  font-size:24px;
  line-height:1.05;
}
.ptqce-crm-sidebar-copy p{
  margin:0;
  color:var(--ptq-muted);
  font-size:14px;
  line-height:1.6;
}
.ptqce-crm-topbar{
  margin-bottom:18px;
}
.ptqce-crm-shell .ptqce-studio-topbar{
  position:relative;
  overflow:hidden;
}
.ptqce-crm-shell .ptqce-studio-topbar::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(61,199,190,0.36), rgba(61,199,190,0));
  pointer-events:none;
}
.ptqce-crm-sidebar .ptqce-studio-nav-stack{
  display:grid;
  gap:8px;
}
.ptqce-crm-sidebar .ptqce-studio-tab{
  min-height:52px;
}
.ptqce-studio-shell .ptqce-studio-notice{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:auto;
  max-width:min(calc(100vw - 28px),620px);
  margin:0;
  padding:12px 18px;
  border-radius:999px;
  box-shadow:0 18px 40px rgba(17,17,17,0.14);
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(16px);
  z-index:120;
}
.ptqce-preview-lock{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(46,174,96,0.1);
  border:1px solid rgba(46,174,96,0.16);
}
.ptqce-preview-lock strong{
  color:#175a39;
}
.ptqce-preview-lock p{
  margin:0;
  color:#2c4737;
  font-size:14px;
  line-height:1.6;
}
.ptqce-account-hero{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
  gap:18px;
  padding:28px;
  border-radius:32px;
  background:
    radial-gradient(circle at top left, rgba(61,199,190,0.18), transparent 36%),
    linear-gradient(180deg,#fffdf9 0%,#f7f3ec 100%);
  border:1px solid rgba(28,15,19,0.08);
  box-shadow:0 22px 60px rgba(20,18,14,0.08);
}
.ptqce-account-hero-guest{
  margin-bottom:10px;
}
.ptqce-account-hero-copy{
  display:grid;
  gap:14px;
  align-content:start;
}
.ptqce-account-eyebrow{
  margin:0;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#85786a;
}
.ptqce-account-hero h1{
  margin:0;
  font-size:clamp(34px,4.4vw,56px);
  line-height:.96;
  color:#16110d;
  text-wrap:balance;
}
.ptqce-account-hero p{
  margin:0;
  max-width:720px;
  color:#62584d;
  font-size:16px;
  line-height:1.65;
}
.ptqce-account-hero-aside{
  display:grid;
  gap:12px;
  align-content:start;
}
.ptqce-account-hero-stat{
  display:grid;
  gap:5px;
  padding:16px 18px;
  border-radius:22px;
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(28,15,19,0.08);
}
.ptqce-account-hero-stat strong{
  font-size:16px;
  line-height:1.3;
  color:#17120f;
}
.ptqce-account-hero-stat span{
  color:#706456;
  font-size:13px;
  line-height:1.5;
}
.ptqce-account-entry-grid,
.ptqce-account-overview-grid{
  align-items:start;
}
.ptqce-account-panel{
  border-radius:28px;
  box-shadow:0 18px 44px rgba(20,18,14,0.05);
}
.ptqce-account-panel h2,
.ptqce-account-orders-section h2{
  margin-bottom:10px;
  font-size:28px;
  line-height:1.05;
}
.ptqce-account-orders-section{
  display:grid;
  gap:16px;
}
.ptqce-account-section-head{
  align-items:end;
}
.ptqce-account-history-card{
  margin-bottom:18px;
  border-radius:30px;
  box-shadow:0 18px 44px rgba(20,18,14,0.05);
}
.ptqce-account-stats{
  margin-top:14px;
}
.ptqce-reserved-order-card{
  display:grid;
  gap:16px;
  border-radius:28px;
  box-shadow:0 18px 44px rgba(20,18,14,0.05);
}
.ptqce-reserved-order-item{
  padding:18px 20px;
  border-radius:22px;
  background:linear-gradient(180deg,#fdfbf8 0%,#f7f2eb 100%);
  border:1px solid rgba(28,15,19,0.08);
}
.ptqce-reserved-order-item > strong{
  display:block;
  margin-bottom:12px;
  font-size:18px;
  line-height:1.2;
}
.ptqce-reserved-preview-box{
  padding:22px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(61,199,190,0.12), transparent 30%),
    linear-gradient(180deg,#f8fffd 0%,#eefaf8 100%);
  border:1px solid rgba(61,199,190,0.18);
}
.ptqce-reserved-preview-box h4{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.08;
}
.ptqce-reserved-preview-box .ptqce-form-grid{
  margin-top:14px;
}
.ptqce-reserved-shell .ptqce-summary-card,
.ptqce-reserved-shell .ptqce-studio-notice{
  position:relative;
  overflow:hidden;
}
.ptqce-reserved-shell .ptqce-summary-card::before,
.ptqce-account-history-card::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:1px;
  background:linear-gradient(90deg, rgba(61,199,190,0.34), rgba(61,199,190,0));
  pointer-events:none;
}
.ptqce-reserved-shell .ptqce-form-grid{
  gap:16px;
}
.ptqce-reserved-shell .ptqce-field label{
  display:grid;
  gap:8px;
  margin:0;
  font-size:14px;
  font-weight:700;
  line-height:1.3;
  color:#201714;
}
.ptqce-reserved-shell .ptqce-field input,
.ptqce-reserved-shell .ptqce-field textarea,
.ptqce-reserved-shell .ptqce-field select{
  box-sizing:border-box;
}
.ptqce-reserved-shell .ptqce-button{
  min-height:48px;
}
.ptqce-studio-item.is-highlighted{
  border-color:rgba(61,199,190,0.44);
  box-shadow:0 0 0 4px rgba(61,199,190,0.08), var(--ptq-shadow);
}
@media (max-width: 960px){
  .ptqce-account-hero{
    grid-template-columns:1fr;
    padding:22px;
  }
  .ptqce-crm-stats{
    grid-template-columns:1fr;
  }
  .ptqce-crm-preview-form .ptqce-form-grid{
    grid-template-columns:1fr;
  }
  .ptqce-crm-order-workspace{
    grid-template-columns:1fr;
  }
  .ptqce-crm-app-shell{
    grid-template-columns:1fr;
    grid-template-areas:
      "sidebar"
      "main";
  }
  .ptqce-chat-message{
    max-width:100%;
  }
  .ptqce-order-shell-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .ptqce-crm-list-row{
    flex-direction:column;
  }
  .ptqce-crm-list-side{
    justify-items:start;
    min-width:0;
  }
  .ptqce-crm-funnel,
  .ptqce-crm-detail-grid{
    grid-template-columns:1fr;
  }
  .ptqce-studio-shell .ptqce-studio-notice{
    bottom:12px;
    padding:10px 14px;
    font-size:13px;
    line-height:1.4;
  }
}

/* v0.11.12.33 CRM layout realignment based on gestionale reference */
.ptqce-shell.ptqce-crm-shell{
  max-width:none;
  padding:0 24px 28px;
}
.ptqce-crm-app-shell{
  grid-template-columns:320px minmax(0,1fr);
  grid-template-areas:"sidebar main";
  gap:0;
  align-items:stretch;
}
.ptqce-crm-main{
  grid-area:main;
  padding:24px 0 32px 28px;
}
.ptqce-crm-sidebar{
  grid-area:sidebar;
}
.ptqce-crm-shell .ptqce-studio-sidebar{
  position:sticky;
  top:24px;
  min-height:calc(100vh - 48px);
  padding:20px 18px;
  border:1px solid #e4eaf2;
  border-radius:24px;
  box-shadow:none;
  background:#f8fafc;
}
.ptqce-crm-shell .ptqce-brand{
  width:auto;
  height:auto;
  min-height:58px;
  margin-bottom:16px;
  border-radius:18px;
  background:#fff;
  color:#111827;
  border:1px solid #e4eaf2;
  font-size:24px;
}
.ptqce-crm-shell .ptqce-brand.is-logo{
  padding:12px 14px;
}
.ptqce-crm-shell .ptqce-brand-image{
  max-width:150px;
  max-height:40px;
}
.ptqce-crm-sidebar-copy{
  gap:6px;
  margin:0 0 18px;
}
.ptqce-crm-sidebar-copy h2{
  font-size:18px;
  line-height:1.1;
  color:#111827;
}
.ptqce-crm-sidebar-copy p{
  color:#64748b;
  font-size:13px;
  line-height:1.55;
}
.ptqce-crm-shell .ptqce-studio-nav-heading{
  margin:0 0 8px;
  color:#64748b;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ptqce-crm-sidebar .ptqce-studio-nav-stack{
  gap:8px;
}
.ptqce-crm-sidebar .ptqce-studio-tab{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:0 14px;
  border:1px solid transparent;
  border-radius:12px;
  background:transparent;
  color:#64748b;
  font-size:13px;
  font-weight:600;
}
.ptqce-crm-sidebar .ptqce-studio-tab:hover{
  background:#fff;
  border-color:#e4eaf2;
  color:#111827;
  box-shadow:0 1px 2px rgba(15,23,42,0.03);
}
.ptqce-crm-sidebar .ptqce-studio-tab.is-active{
  background:#fff;
  border-color:#d5dfea;
  color:#2563eb;
  box-shadow:0 1px 2px rgba(15,23,42,0.03);
}
.ptqce-crm-nav-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  min-height:28px;
  padding:0 8px;
  border:1px solid #e4eaf2;
  border-radius:999px;
  background:#fff;
  color:#64748b;
  font-size:12px;
  font-weight:700;
}
.ptqce-crm-sidebar .ptqce-studio-tab.is-active .ptqce-crm-nav-count{
  color:#2563eb;
  border-color:#dbeafe;
  background:#eff6ff;
}
.ptqce-crm-shell .ptqce-studio-sidebar-tools{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid #e4eaf2;
}
.ptqce-crm-shell .ptqce-studio-side-action{
  min-height:44px;
  border-radius:12px;
}
.ptqce-crm-topbar{
  margin-bottom:20px;
}
.ptqce-crm-shell .ptqce-studio-topbar{
  background:#fff;
  border:1px solid #e4eaf2;
  border-radius:18px;
  box-shadow:0 1px 2px rgba(15,23,42,0.03);
  padding:18px 22px;
}
.ptqce-crm-shell .ptqce-studio-topbar h1{
  margin:0;
  font-size:32px;
  line-height:1;
  color:#111827;
}
.ptqce-crm-shell .ptqce-studio-create-box,
.ptqce-crm-shell .ptqce-collab-card,
.ptqce-crm-shell .ptqce-studio-item{
  border:1px solid #e4eaf2;
  border-radius:18px;
  background:#fff;
  box-shadow:0 1px 2px rgba(15,23,42,0.03);
}
.ptqce-crm-shell .ptqce-studio-create-box{
  padding:20px 22px;
}
.ptqce-crm-shell .ptqce-section-head h2,
.ptqce-crm-shell .ptqce-crm-toolbar h3{
  margin:0 0 6px;
  font-size:24px;
  line-height:1.08;
  color:#111827;
}
.ptqce-crm-shell .ptqce-table-caption,
.ptqce-crm-shell .ptqce-help{
  color:#64748b;
}
.ptqce-crm-shell .ptqce-crm-stats{
  gap:12px;
  margin-top:16px;
}
.ptqce-crm-shell .ptqce-crm-stat{
  padding:16px 18px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid #e4eaf2;
}
.ptqce-crm-shell .ptqce-crm-stat strong{
  font-size:24px;
  color:#111827;
}
.ptqce-crm-shell .ptqce-crm-stat span{
  font-size:13px;
  color:#64748b;
}
.ptqce-crm-shell .ptqce-crm-toolbar{
  gap:18px;
  align-items:center;
}
.ptqce-crm-shell .ptqce-crm-filter label{
  color:#64748b;
  font-size:11px;
}
.ptqce-crm-shell .ptqce-crm-filter input{
  min-height:44px;
  border-radius:12px;
  border:1px solid #d5dfea;
  background:#fff;
}
.ptqce-crm-shell .ptqce-crm-list{
  gap:10px;
}
.ptqce-crm-shell .ptqce-crm-list-row{
  padding:16px 18px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e4eaf2;
  box-shadow:none;
}
.ptqce-crm-shell .ptqce-crm-list-row.is-active{
  border-color:#bfdbfe;
  box-shadow:0 0 0 3px rgba(37,99,235,0.08);
}
.ptqce-crm-shell .ptqce-crm-list-title strong{
  font-size:17px;
  color:#111827;
}
.ptqce-crm-shell .ptqce-crm-list-title span{
  color:#64748b;
  font-size:13px;
}
.ptqce-crm-shell .ptqce-collab-card-head{
  margin-bottom:12px;
}
.ptqce-crm-shell .ptqce-collab-card-head h4{
  font-size:19px;
  color:#111827;
}
.ptqce-crm-shell .ptqce-collab-card-head p{
  color:#64748b;
  font-size:13px;
}
.ptqce-crm-shell .ptqce-crm-detail-grid{
  gap:14px;
}
.ptqce-crm-shell .ptqce-crm-timeline-item,
.ptqce-crm-shell .ptqce-crm-order-item{
  background:#f8fafc;
  border:1px solid #e4eaf2;
  border-radius:14px;
}
.ptqce-crm-shell .ptqce-order-shell-head h3{
  font-size:26px;
  color:#111827;
}
.ptqce-crm-shell .ptqce-crm-order-workspace{
  gap:16px;
}
@media (max-width: 960px){
  .ptqce-shell.ptqce-crm-shell{
    padding:0 16px 24px;
  }
  .ptqce-crm-app-shell{
    grid-template-columns:1fr;
    grid-template-areas:
      "sidebar"
      "main";
  }
  .ptqce-crm-main{
    padding:18px 0 24px;
  }
  .ptqce-crm-shell .ptqce-studio-sidebar{
    min-height:auto;
    top:16px;
  }
}

/* v0.11.12.34 CRM simplified views */
.ptqce-crm-app-shell{
  gap:24px;
}
.ptqce-crm-main{
  padding:24px 0 32px;
}
.ptqce-crm-shell .ptqce-studio-sidebar{
  overflow:hidden;
}
.ptqce-crm-shell .ptqce-studio-sidebar,
.ptqce-crm-shell .ptqce-studio-sidebar *{
  box-sizing:border-box;
}
.ptqce-crm-sidebar .ptqce-studio-tab{
  width:100%;
  max-width:100%;
}
.ptqce-crm-shell .ptqce-studio-side-action{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
.ptqce-crm-screen{
  display:grid;
  gap:18px;
}
.ptqce-crm-screen-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.ptqce-crm-screen-head h3{
  margin:12px 0 6px;
  font-size:28px;
  line-height:1.02;
  color:#111827;
}
.ptqce-crm-orders-card{
  display:grid;
  gap:14px;
}
.ptqce-crm-order-detail-shell{
  display:grid;
  gap:16px;
}
.ptqce-crm-order-detail-meta{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.ptqce-crm-order-note{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border:1px solid #e4eaf2;
  border-radius:14px;
  background:#f8fafc;
}
.ptqce-crm-order-note strong{
  font-size:13px;
  color:#111827;
}
.ptqce-crm-order-note p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:#475569;
}

/* v0.11.12.81 frontend direction: Gemma-inspired customer styling */
:root{
  --ptq-front-bg:#ffffff;
  --ptq-front-bg-light:#faf9f8;
  --ptq-front-text:#231f20;
  --ptq-front-text-light:#777777;
  --ptq-front-border:#eae5e1;
  --ptq-front-button:#c9b2aa;
  --ptq-front-button-hover:#b8a098;
  --ptq-front-accent:#95665e;
  --ptq-front-serif:"Cormorant Garamond",serif;
  --ptq-front-sans:"Montserrat",sans-serif;
}

body.ptqce-theme-bypass-body,
body.ptqce-theme-bypass-body button,
body.ptqce-theme-bypass-body input,
body.ptqce-theme-bypass-body select,
body.ptqce-theme-bypass-body textarea{
  font-family:var(--ptq-front-sans)!important;
  color:var(--ptq-front-text);
}

body.ptqce-theme-bypass-body{
  background:var(--ptq-front-bg)!important;
  color:var(--ptq-front-text)!important;
  line-height:1.6;
}

body.ptqce-theme-bypass-body h1,
body.ptqce-theme-bypass-body h2,
body.ptqce-theme-bypass-body h3,
body.ptqce-theme-bypass-body .ptqce-product-title-minimal,
body.ptqce-theme-bypass-body .ptqce-commerce-logo-title,
body.ptqce-theme-bypass-body .ptqce-shop-card-body h3,
body.ptqce-theme-bypass-body .ptqce-commerce-mega-highlight h3,
body.ptqce-theme-bypass-body .ptqce-product-copy-text h2,
body.ptqce-theme-bypass-body .ptqce-product-copy-text h3{
  font-family:var(--ptq-front-serif)!important;
  font-weight:300!important;
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body a{
  transition:color .2s ease,opacity .2s ease,border-color .2s ease,background .2s ease;
}

body.ptqce-theme-bypass-body .ptqce-inline-filter-link,
body.ptqce-theme-bypass-body .ptqce-commerce-mega-cta{
  color:var(--ptq-front-accent)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-header{
  max-width:none!important;
  margin:0 0 32px!important;
  padding:0 32px!important;
  background:#fff!important;
  border-bottom:1px solid var(--ptq-front-border)!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-promo{
  background:var(--ptq-front-bg-light)!important;
  border-bottom:1px solid var(--ptq-front-border)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-promo-inner,
body.ptqce-theme-bypass-body .ptqce-commerce-utility-links a{
  font-size:11px!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-topbar{
  min-height:80px!important;
  padding:0!important;
  gap:24px!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-logo{
  gap:14px!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-logo-title{
  font-size:26px!important;
  letter-spacing:.16em!important;
  text-transform:uppercase!important;
  font-weight:400!important;
  line-height:1!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-logo-text{
  font-size:11px!important;
  letter-spacing:.16em!important;
  text-transform:uppercase!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-search input,
body.ptqce-theme-bypass-body .ptqce-commerce-search button,
body.ptqce-theme-bypass-body .ptqce-commerce-login,
body.ptqce-theme-bypass-body .ptqce-commerce-signup{
  border-radius:0!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-nav{
  padding:0 0 14px!important;
  background:#fff!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-nav-row{
  gap:28px!important;
  border-top:1px solid var(--ptq-front-border)!important;
  padding-top:14px!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-nav-row>a,
body.ptqce-theme-bypass-body .ptqce-commerce-mega summary,
body.ptqce-theme-bypass-body .ptqce-commerce-nav-featured a,
body.ptqce-theme-bypass-body .ptqce-commerce-cart{
  font-family:var(--ptq-front-sans)!important;
  font-size:12px!important;
  font-weight:500!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-nav-featured a{
  color:var(--ptq-front-accent)!important;
  border-left:1px solid var(--ptq-front-border)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-panel{
  top:calc(100% + 1px)!important;
  padding:34px 30px!important;
  gap:30px!important;
  min-width:min(1240px,calc(100vw - 64px))!important;
  border:1px solid var(--ptq-front-border)!important;
  border-top:0!important;
  background:#fff!important;
  box-shadow:0 10px 15px rgba(0,0,0,.05)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-side-label,
body.ptqce-theme-bypass-body .ptqce-commerce-mega-column-title{
  margin:0 0 12px!important;
  padding-bottom:10px!important;
  border-bottom:1px solid var(--ptq-front-border)!important;
  font-family:var(--ptq-front-serif)!important;
  font-size:18px!important;
  letter-spacing:0!important;
  text-transform:none!important;
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-side-links a,
body.ptqce-theme-bypass-body .ptqce-commerce-mega-column a{
  padding:7px 0!important;
  font-family:var(--ptq-front-sans)!important;
  font-size:14px!important;
  line-height:1.5!important;
  font-weight:400!important;
  letter-spacing:normal!important;
  text-transform:none!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-side-links a::after{
  font-size:22px!important;
  color:#c8bcb2!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-side-links a:hover,
body.ptqce-theme-bypass-body .ptqce-commerce-mega-column a:hover,
body.ptqce-theme-bypass-body .ptqce-commerce-mega-column a[aria-current="page"]{
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-highlight{
  background:var(--ptq-front-bg-light)!important;
  padding:26px!important;
}

body.ptqce-theme-bypass-body .ptqce-commerce-mega-eyebrow{
  color:var(--ptq-front-text-light)!important;
  font-family:var(--ptq-front-sans)!important;
  letter-spacing:.14em!important;
}

body.ptqce-theme-bypass-body .ptqce-product-shell-minimal{
  max-width:1200px!important;
  padding-top:18px!important;
}

body.ptqce-theme-bypass-body .ptqce-breadcrumbs{
  margin-bottom:26px!important;
  color:var(--ptq-front-text-light)!important;
  font-size:12px!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-product-grid-minimal{
  grid-template-columns:minmax(0,1.26fr) minmax(320px,.74fr)!important;
  gap:54px!important;
  align-items:start!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-product-gallery-minimal{
  position:sticky!important;
  top:108px!important;
  align-self:start!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-product-gallery-minimal.has-thumbs{
  display:grid!important;
  grid-template-columns:112px minmax(0,1fr)!important;
  gap:14px!important;
  align-items:start!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal{
  position:relative!important;
  top:auto!important;
  align-self:start!important;
  max-height:none!important;
  overflow:visible!important;
  padding-right:0!important;
}

body.ptqce-theme-bypass-body .ptqce-product-main-image-minimal{
  background:var(--ptq-front-bg-light)!important;
  border:1px solid var(--ptq-front-border)!important;
  border-radius:0!important;
  overflow:hidden!important;
  aspect-ratio:4 / 5!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-product-gallery-minimal.has-thumbs .ptqce-product-main-image-minimal{
  grid-column:2!important;
  grid-row:1!important;
}

body.ptqce-theme-bypass-body .ptqce-product-main-image-minimal img{
  width:100%!important;
  height:100%!important;
  aspect-ratio:auto!important;
  object-fit:cover!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-product-gallery-minimal.has-thumbs .ptqce-product-thumb-grid-minimal{
  grid-column:1!important;
  grid-row:1!important;
}

body.ptqce-theme-bypass-body .ptqce-product-thumb-grid-minimal{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:12px!important;
  margin-top:0!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  max-height:min(78vh, 760px)!important;
  padding-right:4px!important;
  padding-bottom:0!important;
  scroll-snap-type:y proximity!important;
  -webkit-overflow-scrolling:touch!important;
}

body.ptqce-theme-bypass-body .ptqce-product-thumb-grid-minimal::-webkit-scrollbar{
  width:5px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-thumb-grid-minimal::-webkit-scrollbar-thumb{
  background:rgba(35,31,32,.18)!important;
  border-radius:999px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-thumb-item{
  scroll-snap-align:start!important;
  border:0!important;
  padding:0!important;
  background:transparent!important;
  width:100%!important;
}

body.ptqce-theme-bypass-body .ptqce-product-thumb-grid-minimal img{
  border-radius:0!important;
  border:1px solid var(--ptq-front-border)!important;
  background:var(--ptq-front-bg-light)!important;
  aspect-ratio:4 / 5!important;
  object-fit:cover!important;
}

body.ptqce-theme-bypass-body .ptqce-product-thumb-item.is-active img{
  border-color:var(--ptq-front-border)!important;
  outline:0!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-product-title-minimal{
  margin:0 0 14px!important;
  font-size:34px!important;
  line-height:1.18!important;
  letter-spacing:0!important;
}

body.ptqce-theme-bypass-body .ptqce-meta-line,
body.ptqce-theme-bypass-body .ptqce-meta-line span,
body.ptqce-theme-bypass-body .ptqce-help{
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-generated-price-minimal{
  font-size:20px!important;
  font-weight:400!important;
  letter-spacing:0!important;
  margin-bottom:20px!important;
}

body.ptqce-theme-bypass-body .ptqce-summary-card,
body.ptqce-theme-bypass-body .ptqce-qty-card,
body.ptqce-theme-bypass-body .ptqce-status-card,
body.ptqce-theme-bypass-body .ptqce-product-copy-card,
body.ptqce-theme-bypass-body .ptqce-color-groups-card,
body.ptqce-theme-bypass-body .ptqce-generated-options-minimal{
  background:#fff!important;
  border:1px solid var(--ptq-front-border)!important;
  border-radius:8px!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-card,
body.ptqce-theme-bypass-body .ptqce-shop-toolbar,
body.ptqce-theme-bypass-body .ptqce-shop-filter-card{
  border-radius:8px!important;
  border-color:var(--ptq-front-border)!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-card-media{
  background:var(--ptq-front-bg-light)!important;
  border-radius:0!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-card-image,
body.ptqce-theme-bypass-body .ptqce-style-story-media,
body.ptqce-theme-bypass-body .ptqce-style-story-media img{
  border-radius:0!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-card-body h3{
  font-size:22px!important;
  line-height:1.15!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-card-price{
  font-size:16px!important;
  font-weight:500!important;
}

body.ptqce-theme-bypass-body .ptqce-button,
body.ptqce-theme-bypass-body .ptqce-button-slim,
body.ptqce-theme-bypass-body .ptqce-button-primary,
body.ptqce-theme-bypass-body .ptqce-button-secondary{
  font-family:var(--ptq-front-sans)!important;
  font-size:12px!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  border-radius:0!important;
  min-height:54px!important;
}

body.ptqce-theme-bypass-body .ptqce-button-primary{
  background:var(--ptq-front-button)!important;
  border:1px solid var(--ptq-front-button)!important;
  color:#fff!important;
}

body.ptqce-theme-bypass-body .ptqce-button-primary:hover{
  background:var(--ptq-front-button-hover)!important;
  border-color:var(--ptq-front-button-hover)!important;
}

body.ptqce-theme-bypass-body .ptqce-button-secondary{
  background:transparent!important;
  border:1px solid var(--ptq-front-border)!important;
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-button-secondary:hover{
  border-color:var(--ptq-front-text)!important;
  background:transparent!important;
}

body.ptqce-theme-bypass-body .ptqce-personalize-fields,
body.ptqce-theme-bypass-body .ptqce-envelope-fields,
body.ptqce-theme-bypass-body .ptqce-wax-fields{
  background:var(--ptq-front-bg)!important;
  border:1px solid var(--ptq-front-border)!important;
  border-radius:8px!important;
}

body.ptqce-theme-bypass-body .ptqce-personalize-fields .ptqce-field input,
body.ptqce-theme-bypass-body .ptqce-personalize-fields .ptqce-field textarea,
body.ptqce-theme-bypass-body .ptqce-personalize-fields .ptqce-field select,
body.ptqce-theme-bypass-body .ptqce-envelope-fields .ptqce-field input,
body.ptqce-theme-bypass-body .ptqce-envelope-fields .ptqce-field select,
body.ptqce-theme-bypass-body .ptqce-wax-fields .ptqce-field input,
body.ptqce-theme-bypass-body .ptqce-shop-search,
body.ptqce-theme-bypass-body .ptqce-shop-sort{
  border:1px solid var(--ptq-front-border)!important;
  border-radius:0!important;
  background:transparent!important;
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-composition-choice,
body.ptqce-theme-bypass-body .ptqce-choice-card{
  border:1px solid var(--ptq-front-border)!important;
  border-radius:8px!important;
  background:#fff!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-composition-choice:hover,
body.ptqce-theme-bypass-body .ptqce-choice-card:hover{
  border-color:#d6cbc3!important;
  transform:none!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-composition-choice-input:checked + .ptqce-composition-choice-check{
  background:var(--ptq-front-text)!important;
  border-color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-choice-card.is-selected{
  background:var(--ptq-front-bg-light)!important;
  color:var(--ptq-front-text)!important;
  border-color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-choice-card.is-selected .ptqce-choice-copy,
body.ptqce-theme-bypass-body .ptqce-choice-copy,
body.ptqce-theme-bypass-body .ptqce-composition-choice-copy small{
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-choice-media{
  border-radius:0!important;
  border-color:var(--ptq-front-border)!important;
  background:var(--ptq-front-bg-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-swatch,
body.ptqce-theme-bypass-body .ptqce-color-swatch{
  border:1px solid var(--ptq-front-border)!important;
  box-shadow:inset 0 2px 4px rgba(0,0,0,.08)!important;
}

body.ptqce-theme-bypass-body .ptqce-choice-card-color.is-selected .ptqce-color-swatch{
  box-shadow:0 0 0 2px var(--ptq-front-text), inset 0 2px 4px rgba(0,0,0,.08)!important;
}

@media (max-width: 991px){
  body.ptqce-theme-bypass-body .ptqce-generated-product-grid-minimal{
    grid-template-columns:1fr!important;
    gap:28px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-generated-product-gallery-minimal{
    position:relative!important;
    top:auto!important;
  }

  body.ptqce-theme-bypass-body .ptqce-generated-product-gallery-minimal.has-thumbs{
    grid-template-columns:1fr!important;
    gap:14px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal{
    position:relative!important;
    top:auto!important;
    max-height:none!important;
    overflow:visible!important;
    padding-right:0!important;
  }
}

@media (max-width: 767px){
  body.ptqce-theme-bypass-body .ptqce-commerce-header{
    padding:0 16px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-product-title-minimal{
    font-size:30px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-product-thumb-grid-minimal{
    display:flex!important;
    gap:12px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    max-height:none!important;
    padding-right:0!important;
    padding-bottom:6px!important;
    scroll-snap-type:x proximity!important;
  }

  body.ptqce-theme-bypass-body .ptqce-product-thumb-grid-minimal::-webkit-scrollbar{
    width:auto!important;
    height:5px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-product-thumb-item{
    flex:0 0 min(34%, 124px)!important;
  }
}

/* v0.11.12.82 product page refinement */
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal,
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal .ptqce-summary-card,
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal .ptqce-qty-card,
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal .ptqce-status-card,
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal .ptqce-personalize-fields,
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal .ptqce-envelope-fields,
body.ptqce-theme-bypass-body .ptqce-generated-product-info-minimal .ptqce-wax-fields{
  border-radius:0!important;
}

body.ptqce-theme-bypass-body .ptqce-product-title-minimal{
  margin-bottom:10px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-size-line{
  display:flex!important;
  align-items:flex-end!important;
  justify-content:space-between!important;
  gap:18px!important;
  margin:0 0 22px!important;
  padding-bottom:16px!important;
  border-bottom:1px solid var(--ptq-front-border)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-size-line span{
  font-size:11px!important;
  font-weight:500!important;
  letter-spacing:.16em!important;
  text-transform:uppercase!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-size-line strong{
  font-size:16px!important;
  font-weight:500!important;
  color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-checklist-card{
  margin-top:0!important;
  padding:0 6px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-checklist{
  display:grid!important;
  gap:0!important;
}

body.ptqce-theme-bypass-body .ptqce-product-checklist .ptqce-composition-choice{
  margin:0!important;
  padding:15px 10px!important;
  border-left:0!important;
  border-right:0!important;
  border-top:0!important;
  border-bottom:1px solid var(--ptq-front-border)!important;
  border-radius:0!important;
  background:transparent!important;
}

body.ptqce-theme-bypass-body .ptqce-product-checklist .ptqce-composition-choice:last-child{
  border-bottom:0!important;
}

body.ptqce-theme-bypass-body .ptqce-product-checklist .ptqce-composition-choice.is-locked{
  cursor:default!important;
}

body.ptqce-theme-bypass-body .ptqce-product-checklist .ptqce-composition-choice.is-locked:hover{
  border-color:var(--ptq-front-border)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-discovery{
  display:grid!important;
  gap:12px!important;
  margin-top:18px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-discovery-badges{
  margin-top:18px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-discovery-badges .ptqce-shop-badge{
  text-decoration:none!important;
}

body.ptqce-theme-bypass-body .ptqce-product-discovery-badges .ptqce-shop-badge:hover{
  border-color:var(--ptq-front-text)!important;
}

body.ptqce-theme-bypass-body .ptqce-purchase-form-product{
  display:grid!important;
  gap:16px!important;
  margin-top:26px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-extra-tools{
  display:grid!important;
  gap:14px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-section-line{
  display:flex!important;
  align-items:center!important;
  gap:16px!important;
  color:var(--ptq-front-text-light)!important;
  font-size:11px!important;
  font-weight:500!important;
  letter-spacing:.16em!important;
  text-transform:uppercase!important;
}

body.ptqce-theme-bypass-body .ptqce-product-section-line::before,
body.ptqce-theme-bypass-body .ptqce-product-section-line::after{
  content:''!important;
  flex:1 1 auto!important;
  height:1px!important;
  background:var(--ptq-front-border)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-extra-buttons,
body.ptqce-theme-bypass-body .ptqce-product-secondary-actions{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:10px!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact{
  display:grid!important;
  gap:14px!important;
  padding:16px 18px!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-row-compact{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:18px!important;
  align-items:center!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-generated-price-minimal{
  margin:0!important;
  font-size:18px!important;
  display:flex!important;
  flex-wrap:wrap!important;
  align-items:baseline!important;
  gap:6px!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-controls-simple{
  display:grid!important;
  grid-template-columns:42px 74px 42px!important;
  gap:0!important;
  align-items:center!important;
  margin:0!important;
  max-width:none!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-btn{
  width:42px!important;
  height:42px!important;
  min-height:42px!important;
  border-radius:0!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-input{
  width:74px!important;
  min-height:42px!important;
  padding:0 10px!important;
  border:1px solid var(--ptq-front-border)!important;
  border-left:0!important;
  border-right:0!important;
  border-radius:0!important;
  text-align:center!important;
  font-size:14px!important;
  background:#fff!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-meta-compact{
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:12px!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-meta-compact .ptqce-help{
  margin:0!important;
  font-size:12px!important;
  line-height:1.45!important;
}

body.ptqce-theme-bypass-body .ptqce-unit-price-note{
  font-family:var(--ptq-front-sans)!important;
  font-size:11px!important;
  font-weight:500!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-total-wrap{
  display:grid!important;
  gap:3px!important;
  text-align:right!important;
}

body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-button{
  min-height:48px!important;
}

body.ptqce-theme-bypass-body .ptqce-status-card-delivery{
  padding:16px 18px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-rest-block{
  display:grid!important;
  gap:10px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-secondary-actions{
  margin-top:16px!important;
}

body.ptqce-theme-bypass-body .is-price-pulsing{
  animation:ptqcePricePulse .52s cubic-bezier(.22,.61,.36,1);
}

@keyframes ptqcePricePulse{
  0%{opacity:.45;transform:translateY(6px) scale(.985);filter:blur(.8px)}
  50%{opacity:1;transform:translateY(0) scale(1.01);filter:blur(0)}
  100%{opacity:1;transform:translateY(0)}
}

@media (max-width: 767px){
  body.ptqce-theme-bypass-body .ptqce-product-size-line,
  body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-row-compact,
  body.ptqce-theme-bypass-body .ptqce-qty-card-compact .ptqce-qty-meta-compact{
    grid-template-columns:1fr!important;
    flex-direction:column!important;
    align-items:flex-start!important;
  }

  body.ptqce-theme-bypass-body .ptqce-product-extra-buttons,
  body.ptqce-theme-bypass-body .ptqce-product-secondary-actions{
    grid-template-columns:1fr!important;
  }

  body.ptqce-theme-bypass-body .ptqce-product-discovery-badges{
    justify-content:center!important;
  }
}

/* v0.11.12.86 gallery rail + style storytelling */
body.ptqce-theme-bypass-body .ptqce-related-style-section{
  margin-top:48px!important;
  display:grid!important;
  gap:22px!important;
}

body.ptqce-theme-bypass-body .ptqce-shop-grid-related{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:18px!important;
}

body.ptqce-theme-bypass-body .ptqce-related-style-cta{
  display:flex!important;
  justify-content:center!important;
}

body.ptqce-theme-bypass-body .ptqce-related-style-cta .ptqce-button{
  width:auto!important;
  min-width:min(100%, 320px)!important;
  padding-inline:22px!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-section{
  display:grid!important;
  grid-template-columns:minmax(320px,.92fr) minmax(0,1.08fr)!important;
  gap:34px!important;
  align-items:center!important;
  margin-top:44px!important;
  padding:28px!important;
  border:1px solid var(--ptq-front-border)!important;
  background:linear-gradient(135deg,#faf7f2 0%,#ffffff 100%)!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-media{
  min-height:420px!important;
  background:var(--ptq-front-bg-light)!important;
  overflow:hidden!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-media img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-copy{
  display:grid!important;
  gap:16px!important;
  align-content:center!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-kicker{
  font-size:11px!important;
  font-weight:600!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-copy h2{
  margin:0!important;
  font-size:40px!important;
  line-height:1.02!important;
  letter-spacing:-.04em!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-text{
  font-size:15px!important;
  line-height:1.72!important;
  color:var(--ptq-front-text-light)!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-text p{
  margin:0!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-text p + p{
  margin-top:12px!important;
}

body.ptqce-theme-bypass-body .ptqce-style-story-copy .ptqce-button{
  width:auto!important;
  justify-self:start!important;
  padding-inline:22px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-notices{
  margin:0 0 22px!important;
}

body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-error,
body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-message,
body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-info{
  margin:0!important;
  padding:16px 18px!important;
  list-style:none!important;
  border:1px solid var(--ptq-front-border)!important;
  border-left:3px solid var(--ptq-front-accent)!important;
  background:#fff!important;
  color:var(--ptq-front-text)!important;
  box-shadow:none!important;
}

body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-error{
  border-left-color:#b55c54!important;
}

body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-message{
  border-left-color:var(--ptq-front-button)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-info{
  border-left-color:var(--ptq-front-accent)!important;
}

body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-error::before,
body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-message::before,
body.ptqce-theme-bypass-body .ptqce-product-notices .woocommerce-info::before{
  display:none!important;
}

body.ptqce-theme-bypass-body .ptqce-product-unavailable-card{
  display:grid!important;
  gap:12px!important;
}

@media (max-width: 991px){
  body.ptqce-theme-bypass-body .ptqce-shop-grid-related{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }

  body.ptqce-theme-bypass-body .ptqce-style-story-section{
    grid-template-columns:1fr!important;
    gap:22px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-style-story-media{
    min-height:320px!important;
  }
}

@media (max-width: 767px){
  body.ptqce-theme-bypass-body .ptqce-product-thumb-item{
    flex-basis:min(34%, 124px)!important;
  }
}

body.ptqce-theme-bypass-body .ptqce-lite-shell{
  display:grid!important;
  gap:36px!important;
  padding-block:32px 72px!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-hero{
  display:grid!important;
  gap:16px!important;
  padding:34px!important;
  border:1px solid var(--ptq-front-border)!important;
  background:#fff!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-hero.is-compact{
  gap:14px!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-search{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:12px!important;
  align-items:center!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-search input{
  flex:1 1 280px!important;
  min-width:0!important;
  padding:14px 16px!important;
  border:1px solid var(--ptq-front-border)!important;
  background:#fff!important;
  color:var(--ptq-front-text)!important;
  font:inherit!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-section{
  display:grid!important;
  gap:22px!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-grid{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:22px!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-card{
  display:grid!important;
  gap:14px!important;
  overflow:hidden!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-card-media{
  display:block!important;
  aspect-ratio:4 / 5!important;
  overflow:hidden!important;
  background:#f6f1ec!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-card-media img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
}

body.ptqce-theme-bypass-body .ptqce-lite-card-body{
  display:grid!important;
  gap:8px!important;
  padding:0 2px 4px!important;
}

@media (max-width: 991px){
  body.ptqce-theme-bypass-body .ptqce-lite-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}

@media (max-width: 767px){
  body.ptqce-theme-bypass-body .ptqce-lite-hero{
    padding:24px!important;
  }

  body.ptqce-theme-bypass-body .ptqce-lite-grid{
    grid-template-columns:1fr!important;
  }
}

.ptqce-help-shell{
  max-width:1120px;
  margin:0 auto;
  padding-top:0;
  padding-bottom:88px;
}

.ptqce-help-kb{
  display:grid;
  gap:0;
}

.ptqce-help-band{
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:var(--ptq-theme-help-band, #446a66);
}

.ptqce-help-band-inner{
  width:min(1120px, calc(100vw - 40px));
  margin:0 auto;
  padding:72px 0 64px;
}

.ptqce-help-kb-header{
  display:grid;
  gap:12px;
  justify-items:center;
  text-align:center;
}

.ptqce-help-kb-header h1{
  margin:0;
  font-size:clamp(42px,5vw,64px);
  line-height:1;
  letter-spacing:-0.04em;
  color:#fff;
}

.ptqce-help-kb-header p{
  max-width:680px;
  margin:0;
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.82);
}

.ptqce-help-search-wrap{
  position:relative;
  width:100%;
  max-width:none;
  margin:0 auto;
}

.ptqce-help-search-form{
  margin:0;
}

.ptqce-help-search-form input{
  width:100%;
  min-height:64px;
  padding:0 20px;
  border:1px solid rgba(23,21,19,.18);
  border-radius:0;
  background:#fff;
  color:#171513;
  font:inherit;
  font-size:18px;
}

.ptqce-help-search-form input:focus{
  outline:none;
  border-color:#ffffff;
  box-shadow:0 0 0 2px rgba(255,255,255,.18);
}

.ptqce-help-search-dropdown{
  position:absolute;
  top:calc(100% - 1px);
  left:0;
  right:0;
  z-index:20;
  background:#fff;
  border:1px solid rgba(23,21,19,.14);
  box-shadow:0 18px 40px rgba(23,21,19,.08);
}

.ptqce-help-search-dropdown-list{
  display:grid;
}

.ptqce-help-search-suggestion,
.ptqce-help-search-empty{
  display:grid;
  gap:6px;
  width:100%;
  padding:14px 16px;
  border:0;
  border-top:1px solid rgba(23,21,19,.08);
  background:#fff;
  text-align:left;
}

.ptqce-help-search-suggestion:first-child,
.ptqce-help-search-empty:first-child{
  border-top:0;
}

.ptqce-help-search-suggestion strong{
  font-size:16px;
  font-weight:600;
  color:#171513;
}

.ptqce-help-search-suggestion span,
.ptqce-help-search-empty{
  font-size:14px;
  color:#6a625c;
}

.ptqce-help-search-suggestion:hover,
.ptqce-help-search-suggestion:focus-visible{
  background:#f8f5f1;
  outline:none;
}

.ptqce-help-content{
  display:grid;
  gap:28px;
  margin-top:100px;
}

.ptqce-help-contact-strip{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin-bottom:6px;
  padding:22px 0 16px;
  border-bottom:1px solid rgba(23,21,19,.1);
}

.ptqce-help-contact-copy{
  display:grid;
  gap:8px;
  max-width:560px;
}

.ptqce-help-contact-copy strong{
  font-family:var(--wp--preset--font-family--cardo), Georgia, serif;
  font-size:30px;
  font-weight:700;
  line-height:1.05;
  letter-spacing:-0.02em;
  color:#2f2a27;
}

.ptqce-help-contact-copy p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:#6a625c;
}

.ptqce-help-contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  width:min(100%, 680px);
}

.ptqce-help-contact-action{
  display:grid;
  gap:6px;
  flex:1 1 0;
  min-width:280px;
  min-height:104px;
  padding:18px 22px;
  border:1px solid rgba(23,21,19,.12);
  background:#fff;
  transition:border-color .24s ease, background-color .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.ptqce-help-contact-action span{
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#6a625c;
}

.ptqce-help-contact-action strong{
  font-size:19px;
  line-height:1.25;
  color:#171513;
}

.ptqce-help-contact-action:hover,
.ptqce-help-contact-action:focus-visible{
  border-color:var(--ptq-theme-help-band, #446a66);
  background:color-mix(in srgb, var(--ptq-theme-help-band, #446a66) 10%, #fff);
  box-shadow:0 18px 32px color-mix(in srgb, var(--ptq-theme-help-band, #446a66) 18%, transparent);
  transform:translateY(-1px);
  outline:none;
}

.ptqce-help-contact-action:hover span,
.ptqce-help-contact-action:focus-visible span,
.ptqce-help-contact-action:hover strong,
.ptqce-help-contact-action:focus-visible strong{
  color:var(--ptq-theme-help-band, #446a66);
}

.ptqce-help-home{
  display:grid;
  gap:26px;
}

.ptqce-help-home-intro{
  margin:0;
  font-family:var(--wp--preset--font-family--cardo), Georgia, serif;
  font-size:28px;
  line-height:1.25;
  color:var(--ptq-theme-help-band, #446a66);
}

.ptqce-help-home-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:42px 64px;
}

.ptqce-help-topic-section{
  display:grid;
  gap:16px;
  align-content:start;
}

.ptqce-help-topic-section h2{
  margin:0;
  font-size:28px;
  line-height:1.12;
  font-weight:700;
  color:#2f2a27;
}

.ptqce-help-question-list{
  display:grid;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}

.ptqce-help-question-link,
.ptqce-help-topic-more,
.ptqce-help-results-link,
.ptqce-help-back-link{
  padding:0;
  border:0;
  background:none;
  color:#171513;
  font:inherit;
  text-align:left;
  cursor:pointer;
}

.ptqce-help-question-link,
.ptqce-help-results-link{
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.ptqce-help-question-link:hover,
.ptqce-help-question-link:focus-visible,
.ptqce-help-topic-more:hover,
.ptqce-help-topic-more:focus-visible,
.ptqce-help-results-link:hover,
.ptqce-help-results-link:focus-visible,
.ptqce-help-back-link:hover,
.ptqce-help-back-link:focus-visible{
  color:var(--ptq-theme-help-band, #446a66);
  outline:none;
}

.ptqce-help-question-link{
  font-size:18px;
  line-height:1.45;
}

.ptqce-help-topic-more{
  color:var(--ptq-theme-help-band, #446a66);
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.ptqce-help-results-view,
.ptqce-help-detail-view{
  display:grid;
  gap:22px;
}

.ptqce-help-back-link{
  font-size:16px;
  justify-self:start;
}

.ptqce-help-results-copy,
.ptqce-help-detail-group{
  margin:0;
  font-family:var(--wp--preset--font-family--cardo), Georgia, serif;
  font-size:24px;
  line-height:1.3;
  color:#2f2a27;
}

.ptqce-help-results-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0 0 0 28px;
}

.ptqce-help-results-list li{
  margin:0;
}

.ptqce-help-results-link{
  font-size:18px;
  font-weight:600;
  line-height:1.45;
}

.ptqce-help-results-empty{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#6a625c;
}

.ptqce-help-detail-view h2{
  margin:0;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-0.03em;
}

.ptqce-help-detail-copy{
  display:grid;
  gap:20px;
  max-width:1100px;
}

.ptqce-help-detail-copy p{
  margin:0;
  font-size:18px;
  line-height:1.7;
  color:#2d2927;
}

.ptqce-help-footer{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding-top:10px;
  border-top:1px solid rgba(23,21,19,.1);
}

.ptqce-help-footer-copy{
  display:grid;
  gap:4px;
}

.ptqce-help-footer-copy strong{
  font-size:16px;
}

.ptqce-help-footer-copy p{
  margin:0;
  font-size:15px;
  color:#6a625c;
}

.ptqce-help-footer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.ptqce-help-footer-actions a{
  color:#446a66;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

@media (max-width: 991px){
  .ptqce-help-band-inner{
    width:min(100vw - 32px, 1120px);
    padding:56px 0 52px;
  }

  .ptqce-help-content{
    margin-top:72px;
  }

  .ptqce-help-contact-strip{
    flex-direction:column;
  }

  .ptqce-help-home-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .ptqce-help-footer{
    flex-direction:column;
  }
}

@media (max-width: 767px){
  .ptqce-help-shell{
    padding-bottom:52px;
  }

  .ptqce-help-band-inner{
    width:min(100vw - 28px, 1120px);
    padding:40px 0 38px;
  }

  .ptqce-help-content{
    gap:22px;
    margin-top:56px;
  }

  .ptqce-help-kb-header h1{
    font-size:44px;
  }

  .ptqce-help-kb-header p,
  .ptqce-help-detail-copy p,
  .ptqce-help-question-link,
  .ptqce-help-results-link{
    font-size:16px;
  }

  .ptqce-help-contact-copy strong{
    font-size:24px;
  }

  .ptqce-help-contact-copy p{
    font-size:15px;
  }

  .ptqce-help-contact-actions{
    width:100%;
    flex-direction:column;
  }

  .ptqce-help-contact-action{
    min-width:0;
    width:100%;
  }

  .ptqce-help-home-intro,
  .ptqce-help-topic-section h2,
  .ptqce-help-results-copy,
  .ptqce-help-detail-group{
    font-size:22px;
  }

  .ptqce-help-detail-view h2{
    font-size:30px;
  }

  .ptqce-help-search-form input{
    min-height:58px;
    font-size:16px;
  }
}

.ptqce-generated-product-page .ptqce-product-color-variant-card{
  display:grid;
  gap:14px;
}

.ptqce-generated-product-page .ptqce-product-color-variant-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.ptqce-generated-product-page .ptqce-product-color-variant-head span{
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#88766d;
}

.ptqce-generated-product-page .ptqce-product-color-variant-head strong{
  font-size:16px;
  font-weight:600;
  color:#231f20;
}

.ptqce-generated-product-page .ptqce-product-color-variant-choices{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.ptqce-generated-product-page .ptqce-product-color-variant-choice{
  appearance:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:46px;
  padding:10px 14px;
  border:1px solid rgba(35, 31, 32, 0.12);
  border-radius:999px;
  background:#fff;
  color:#231f20;
  cursor:pointer;
  transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}

.ptqce-generated-product-page .ptqce-product-color-variant-choice:hover,
.ptqce-generated-product-page .ptqce-product-color-variant-choice:focus-visible{
  border-color:rgba(53, 94, 89, 0.34);
  box-shadow:0 10px 24px rgba(35, 31, 32, 0.08);
  transform:translateY(-1px);
  outline:none;
}

.ptqce-generated-product-page .ptqce-product-color-variant-choice.is-active{
  border-color:#355e59;
  background:#f8fbfa;
  box-shadow:0 0 0 2px rgba(53, 94, 89, 0.12);
}

.ptqce-generated-product-page .ptqce-product-color-variant-choice span:last-child{
  font-size:14px;
  font-weight:500;
  line-height:1.2;
}

.ptqce-generated-product-page .ptqce-product-color-variant-swatch{
  display:inline-flex;
  width:18px;
  height:18px;
  flex:0 0 18px;
  border-radius:999px;
  border:1px solid rgba(35, 31, 32, 0.14);
  background:var(--ptq-variant-swatch, #ffffff);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
}

@media (max-width: 767px){
  .ptqce-generated-product-page .ptqce-product-color-variant-head{
    align-items:flex-start;
    flex-direction:column;
    gap:6px;
  }

  .ptqce-generated-product-page .ptqce-product-color-variant-choice{
    width:100%;
    justify-content:flex-start;
  }
}
