body {
	color: #111827;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.store-shell {
	max-width: none;
	width: 100%;
	margin: 0;
	background: #f4f4f7;
	min-height: 100vh;
}

.campaign-status-bar {
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(-12px);
	width: 100%;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid #e7eaf1;
	padding: .45rem .75rem .5rem;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s ease, transform .35s ease;
	z-index: 120;
}

.campaign-status-bar.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.campaign-status-bar__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: .2rem;
}

.campaign-status-bar__label {
	display: block;
	font-size: .62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #6b7280;
}

.campaign-status-bar__count {
	display: flex;
	align-items: baseline;
	gap: .24rem;
}

.campaign-status-bar__count > span {
	font-size: 1rem;
	font-weight: 900;
	color: var(--store-secondary, #d61f7a);
}

.campaign-status-bar__count > small {
	font-size: .72rem;
	color: #9ca3af;
}

.campaign-status-bar__price {
	font-size: 1rem;
	font-weight: 900;
	color: #111827;
}

.campaign-status-bar__progress {
	width: 100%;
	height: 6px;
	border-radius: 999px;
	background: #edf0f5;
	overflow: hidden;
}

.campaign-status-bar__inner,
.campaign-status-bar__progress {
	max-width: 430px;
	margin-left: auto;
	margin-right: auto;
}

.campaign-status-bar__progress-fill {
	width: 0%;
	height: 100%;
	background: linear-gradient(90deg, var(--store-secondary, #d61f7a), var(--store-primary, #ff5722));
	transition: width .45s cubic-bezier(.22, .61, .36, 1);
	position: relative;
	overflow: hidden;
}

.campaign-status-bar__progress-fill::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
	animation: status-shimmer 2s linear infinite;
}

.hero-wrap {
	position: relative;
	overflow: hidden;
	background: #0f172a;
}

.hero-banner {
	width: 100%;
	object-fit: cover;
	display: block;
}

.hero-fallback {
	height: 220px;
	background: var(--store-gradient, linear-gradient(120deg, #5827a2, #ef4f91));
}

.hero-top-title {
	position: static;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--store-secondary, #8d2a98);
	letter-spacing: .03em;
	background: #fff;
	padding: 10px 8px;
	border-bottom: 1px solid #eceff4;
}

.hero-badge {
	position: absolute;
	right: 12px;
	top: 14px;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: linear-gradient(120deg, var(--store-secondary, #ff4f67), var(--store-accent, #ff742e));
	color: #fff;
	padding: .55rem .7rem;
	border-radius: 26px;
	box-shadow: 0 8px 18px rgba(255, 93, 54, .35);
	font-size: .72rem;
}

.hero-badge i {
	font-size: 1rem;
}

.hero-badge-title {
	font-size: .86rem;
	font-weight: 800;
}

.feature-strip {
	background: var(--store-primary, #ff5a1f);
	color: #fff;
	font-size: .72rem;
	font-weight: 600;
	padding: .38rem 0;
	overflow: hidden;
	white-space: nowrap;
}

.feature-strip__track {
	display: inline-flex;
	align-items: center;
	gap: .9rem;
	min-width: max-content;
	animation: feature-marquee 18s linear infinite;
	padding-inline: .5rem;
}

.feature-strip i {
	margin-right: .25rem;
}

@keyframes feature-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.collab-note {
	background: #ffffff;
	color: #475569;
	font-size: .72rem;
	text-align: center;
	padding: .35rem .5rem;
	border-bottom: 1px solid #e5e7eb;
}

.store-content {
	padding: .75rem;
	display: flex;
	flex-direction: column;
	gap: .65rem;
	max-width: 430px;
	margin: 0 auto;
	width: 100%;
}

.section-box,
.delivery-card {
	background: #fff;
	border: 1px solid #e6e9ef;
	border-radius: 12px;
	padding: .75rem;
}

.section-title {
	display: flex;
	align-items: center;
	gap: .35rem;
	font-size: .88rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: .55rem;
}

.campaign-list {
	display: flex;
	gap: .45rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: .2rem;
}

.campaign-list::-webkit-scrollbar {
	display: none;
}

.campaign-item {
	flex: 0 0 calc((100% - (.45rem * 2)) / 2.2);
	border: 1px solid color-mix(in srgb, var(--store-primary, #ff5722) 55%, #ffffff);
	border-radius: 16px;
	padding: .68rem .68rem .62rem;
	background: #fff;
	text-decoration: none;
	color: #111827;
	scroll-snap-align: start;
}

.campaign-item-title {
	font-size: 1.02rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: .38rem;
	line-height: 1.2;
	color: var(--store-primary, #f04d23);
	min-height: 2.5rem;
}

.campaign-item-mid {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: .3rem;
	margin-bottom: .5rem;
}

.campaign-item-people {
	font-size: .84rem;
	font-weight: 700;
	color: var(--store-accent, #16a34a);
	display: inline-flex;
	align-items: center;
	gap: .16rem;
}

.campaign-item-sub {
	font-size: .76rem;
	color: #7b8494;
	text-align: center;
}

.campaign-item-star {
	font-size: .82rem;
	color: #ffcd3c;
}

.campaign-item-meta {
	display: flex;
	justify-content: space-between;
	font-size: .68rem;
	color: #475569;
	align-items: center;
	padding-top: .45rem;
	border-top: 1px solid #eef1f5;
}

.campaign-item-meta strong {
	font-size: 1rem;
	line-height: 1;
	font-weight: 900;
	color: #111827;
}

.campaign-item-meta span {
	font-size: 11px;
	font-weight: 600;
	color: var(--store-secondary, #ef4444);
	display: inline-flex;
	align-items: center;
	gap: .2rem;
}

.campaign-item.is-active {
	border-color: var(--store-primary, #ff5722);
	background: #fff;
	box-shadow: inset 0 0 0 1px var(--store-primary, #ff5722);
}

.campaign-dots {
	display: flex;
	justify-content: center;
	gap: 4px;
	margin-top: .5rem;
	min-height: 8px;
}

.campaign-dots span {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(100, 116, 139, .75);
	transition: all .25s ease;
}

.campaign-dots span.is-active {
	width: 14px;
	background: var(--store-primary, #ff5722);
}

.kpi-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .5rem;
}

.kpi-item {
	border: 1px solid #e6e9ef;
	border-radius: 10px;
	padding: .45rem .55rem;
}

.kpi-item small {
	display: block;
	font-size: .66rem;
	color: #64748b;
}

.kpi-item strong {
	font-size: .86rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .55rem;
}

.products-showcase {
	background: linear-gradient(
		160deg,
		color-mix(in srgb, var(--store-secondary, #f44336) 7%, #ffffff) 0%,
		color-mix(in srgb, var(--store-accent, #ff9800) 6%, #ffffff) 45%,
		color-mix(in srgb, var(--store-primary, #ff5722) 5%, #ffffff) 100%
	);
	border: 1px solid #e8e4ee;
	border-radius: 14px;
	padding: .6rem;
}

.product-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
	display: flex;
	flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
}

.product-card.is-selected {
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--store-primary, #ff5722) 55%, #ffffff), 0 6px 18px rgba(15, 23, 42, .12);
	animation: selected-pop .28s ease;
}

.product-img {
	height: 255px;
	width: 100%;
	min-width: 100%;
	object-fit: cover;
	display: block;
	background: #edf1f6;
}

.product-media {
	position: relative;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.product-media::-webkit-scrollbar {
	display: none;
}

.product-img-track {
	display: flex;
}

.product-img-track .product-img {
	scroll-snap-align: center;
}

.product-img--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .72rem;
	color: #64748b;
}

.product-meta {
	padding: .5rem .62rem .62rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.product-card-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	color: #fff;
	font-size: .6rem;
	font-weight: 700;
	border-radius: 999px;
	padding: .2rem .45rem;
	line-height: 1;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: .2rem;
	text-transform: capitalize;
}

.product-card-selected-badge {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #22c55e;
	color: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: .78rem;
	z-index: 2;
	animation: badge-pop .3s ease;
}

.product-card.is-selected .product-card-selected-badge {
	display: inline-flex;
}

.product-card-strip {
	position: relative;
	height: 22px;
	overflow: hidden;
}

.product-card-strip-track {
	display: flex;
	flex-direction: column;
	animation: product-strip-slide 6s infinite;
}

.product-card-strip-item {
	height: 22px;
	font-size: .66rem;
	font-weight: 800;
	letter-spacing: .01em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .2rem;
}

.product-zoom-btn {
	position: absolute;
	left: 8px;
	top: 226px;
	width: 24px;
	height: 24px;
	border-radius: 7px;
	background: rgba(17, 24, 39, .62);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .72rem;
	z-index: 2;
	border: 0;
}

.product-dots {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 232px;
	display: flex;
	gap: 4px;
	z-index: 2;
}

.product-dots span {
	width: 5px;
	height: 5px;
	border-radius: 99px;
	background: rgba(255, 255, 255, .55);
}

.product-dots span.is-active {
	width: 12px;
	background: #fff;
}

.product-name {
	font-size: .95rem;
	font-weight: 700;
	line-height: 1.2;
	min-height: 2.2rem;
	margin-bottom: .2rem;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: capitalize;
}

.product-proof {
	height: 18px;
	overflow: hidden;
	position: relative;
	margin-bottom: .35rem;
}

.product-proof-track {
	display: flex;
	flex-direction: column;
	animation: product-proof-slide 7.5s infinite;
}

.product-proof-track span {
	height: 18px;
	font-size: .68rem;
	font-weight: 700;
	color: var(--store-primary, #ef5a24);
	display: flex;
	align-items: center;
	gap: .2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 18px;
}

.product-proof-track i {
	font-size: .62rem;
	flex: 0 0 auto;
}

.product-sku {
	font-size: .74rem;
	color: #6b7280;
	line-height: 1.25;
	min-height: 2.3rem;
	margin-bottom: .2rem;
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product-btn,
.cta-btn {
	width: 100%;
	border: 0;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(90deg, var(--store-primary, #ff5722), var(--store-secondary, #f44336));
	padding: .45rem .65rem;
	margin-top: .5rem;
}

.product-btn {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .36rem;
	transition: transform .18s ease, filter .25s ease, background .25s ease;
}

.product-btn i {
	font-size: .9em;
}

.cta-btn:disabled {
	opacity: .55;
	cursor: not-allowed;
	filter: grayscale(.15);
}

.product-btn.is-remove {
	background: linear-gradient(90deg, #ef4444, #dc2626);
}

.product-btn:active {
	transform: scale(.97);
}

.product-btn:hover {
	filter: brightness(1.05);
}

.size-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .6rem;
}

.size {
	border: 1px solid #dbe1ea;
	border-radius: 14px;
	background: #fff;
	padding: .82rem .45rem;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	color: #374151;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	transition: all .2s ease;
}

.size.is-selected {
	border-color: var(--store-primary, #ff5722);
	box-shadow: inset 0 0 0 1px var(--store-primary, #ff5722);
	color: var(--store-primary, #ff5722);
	background: color-mix(in srgb, var(--store-primary, #ff5722) 8%, #ffffff);
}

.delivery-note {
	font-size: .8rem;
	color: #6b7280;
	margin-bottom: .6rem;
}

.total-box {
	border: 1px dashed #d7dce5;
	border-radius: 14px;
	padding: .72rem .78rem;
	background: #fff;
}

.line {
	display: flex;
	justify-content: space-between;
	margin-bottom: .32rem;
	font-size: .9rem;
}

.line-total {
	font-size: 1.16rem;
	font-weight: 800;
	color: var(--store-primary, #0e7490);
	margin-top: .45rem;
}

.selected-list {
	display: grid;
	gap: .65rem;
}

.selected-products.section-box {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.selected-products .section-title {
	font-size: 2rem;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: .85rem;
}

.selected-products .section-title i {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--store-primary, #ff5722);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.size-section.section-box,
.delivery-section.delivery-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

.size-section .section-title,
.delivery-section .section-title {
	font-size: 2rem;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: .85rem;
}

.size-section .section-title i,
.delivery-section .section-title i {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--store-primary, #ff5722);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.selected-row {
	display: flex;
	align-items: center;
	gap: .82rem;
	border: 1px dashed #d8dde7;
	border-radius: 18px;
	padding: .85rem;
	min-height: 94px;
	font-size: .92rem;
	color: #64748b;
	background: #f7f5fa;
}

.selected-no {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	background: #eef2f7;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2.1rem;
	font-weight: 800;
	color: var(--store-secondary, #c0268b);
}

.selected-placeholder {
	flex: 1;
	color: #9aa3b2;
}

.selected-chevron {
	color: #c2c9d5;
	font-size: .9rem;
}

.selected-row--filled {
	border: 2px solid var(--store-primary, #ff5722);
	border-color: var(--store-primary, #ff5722);
	background: #fff;
}

.selected-thumb {
	width: 64px;
	height: 64px;
	border-radius: 14px;
	overflow: hidden;
	background: #eef2f7;
	flex: 0 0 auto;
}

.selected-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

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

.selected-title {
	font-size: 1.02rem;
	font-weight: 700;
	color: #1f2937;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: capitalize;
}

.selected-state {
	font-size: .9rem;
	color: #22c55e;
	margin-top: .24rem;
	font-weight: 600;
}

.selected-remove {
	border: 0;
	background: transparent;
	color: #9ca3af;
	font-size: 1.05rem;
	padding: .2rem;
	line-height: 1;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: .65rem;
	margin-bottom: .65rem;
}

.mock-input {
	width: 100%;
	background: #fff;
	border: 1px solid #dbe1ea;
	border-radius: 12px;
	padding: .78rem .75rem;
	color: #94a3b8;
	font-size: .92rem;
}

textarea.mock-input {
	resize: vertical;
	min-height: 70px;
}

.mock-input:focus {
	outline: none;
	border-color: var(--store-primary, #ff5722);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--store-primary, #ff5722) 22%, #ffffff);
	color: #374151;
}

.mock-input-full {
	grid-column: 1 / -1;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: .45rem;
}

.faq-after-order {
	margin-top: .15rem;
	background: #fff;
	border-radius: 14px;
	padding: .75rem;
	border: 1px solid #e6e9ef;
}

.faq-after-order .section-title {
	font-size: 2rem;
	font-weight: 800;
	color: #1f2937;
	margin-bottom: .85rem;
}

.faq-after-order .section-title i {
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--store-primary, #ff5722);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
}

.faq-item {
	background: #f7f5fa;
	border: 1px dashed #d8dde7;
	border-radius: 14px;
	padding: .65rem .7rem;
}

.faq-item summary {
	font-size: .82rem;
	font-weight: 700;
	cursor: pointer;
	color: #1f2937;
}

.faq-item p {
	font-size: .76rem;
	color: #475569;
	margin: .4rem 0 0;
	line-height: 1.45;
}

.empty-note {
	grid-column: 1 / -1;
	font-size: .75rem;
	color: #64748b;
}

.store-shell .site-collab-footer {
	background: #f7f9fc;
	border-top: 1px solid #e2e8f0;
	padding: .72rem .82rem .95rem;
	color: #64748b;
	font-size: .74rem;
	text-align: center;
}

.store-shell .site-collab-footer__quick {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .45rem;
	padding-bottom: .6rem;
	margin-bottom: .62rem;
	border-bottom: 1px solid #e6ebf2;
}

.store-shell .site-collab-footer__quick-item {
	font-size: .62rem;
	font-weight: 700;
	color: #64748b;
	line-height: 1.2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .18rem;
}

.store-shell .site-collab-footer__quick-icon {
	width: 22px;
	height: 22px;
	border-radius: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: .72rem;
}

.store-shell .site-collab-footer__quick-icon--green { background: #22c55e; }
.store-shell .site-collab-footer__quick-icon--blue { background: #3b82f6; }
.store-shell .site-collab-footer__quick-icon--orange { background: #f59e0b; }
.store-shell .site-collab-footer__quick-icon--purple { background: #a855f7; }

.store-shell .site-collab-footer__brand {
	display: block;
	font-size: 1.08rem;
	font-weight: 900;
	letter-spacing: .02em;
	color: color-mix(in srgb, var(--store-primary, #ff5722) 70%, #7c2d12);
}

.store-shell .site-collab-footer__subline {
	display: block;
	font-size: .64rem;
	color: #94a3b8;
	margin-top: .16rem;
}

.store-shell .site-collab-footer__text {
	margin-top: .32rem;
	font-size: .62rem;
	color: #8a97a9;
}

.store-shell .site-collab-footer__text strong {
	color: #334155;
}

@keyframes product-proof-slide {
	0%, 28% { transform: translateY(0); }
	33%, 61% { transform: translateY(-18px); }
	66%, 94% { transform: translateY(-36px); }
	100% { transform: translateY(0); }
}

@keyframes status-shimmer {
	0% { transform: translateX(-100%); }
	100% { transform: translateX(100%); }
}

@keyframes selected-pop {
	0% { transform: scale(.98); }
	100% { transform: scale(1); }
}

@keyframes badge-pop {
	0% { transform: scale(.2); opacity: 0; }
	100% { transform: scale(1); opacity: 1; }
}

body.no-scroll {
	overflow: hidden;
}

.product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.product-lightbox.is-open {
	display: block;
}

.product-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .82);
}

.product-lightbox__panel {
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 14px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.product-lightbox__close {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-lightbox__count {
	align-self: flex-end;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	padding: .28rem .62rem;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 700;
}

.product-lightbox__main {
	flex: 1;
	min-height: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #0b0b0d;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-lightbox__main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-lightbox__thumbs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.product-lightbox__info {
	border: 1px solid rgba(255, 255, 255, .16);
	background: rgba(15, 23, 42, .35);
	border-radius: 12px;
	padding: .62rem .72rem;
	color: #e5e7eb;
}

.product-lightbox__title {
	font-size: 1rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.25;
}

.product-lightbox__desc {
	font-size: .82rem;
	line-height: 1.35;
	margin-top: .2rem;
	color: #cbd5e1;
}

.product-lightbox__sizes {
	font-size: .76rem;
	color: #f8fafc;
	margin-top: .35rem;
	font-weight: 600;
}

.product-lightbox__thumbs button {
	border: 2px solid transparent;
	padding: 0;
	border-radius: 12px;
	overflow: hidden;
	background: transparent;
}

.product-lightbox__thumbs button.is-active {
	border-color: var(--store-primary, #fb923c);
}

.product-lightbox__thumbs img {
	width: 100%;
	height: 72px;
	object-fit: cover;
	display: block;
}

.help-fab {
	position: fixed;
	right: 12px;
	bottom: 76px;
	width: 56px;
	height: 56px;
	border: 0;
	border-radius: 999px;
	padding: 0;
	background: linear-gradient(135deg, #0f77f0 0%, #1d4ed8 100%);
	box-shadow: 0 12px 28px rgba(15, 23, 42, .34);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 1095;
}

.help-fab__core {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: radial-gradient(circle at 60% 38%, #182b62 0%, #7c2035 58%, #1e3a8a 100%);
	border: 2px solid rgba(255, 255, 255, .88);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
}

.help-fab__badge {
	position: absolute;
	top: -5px;
	left: -4px;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #34d399;
	color: #073b2f;
	font-size: .72rem;
	font-weight: 900;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
}

.help-panel {
	position: fixed;
	inset: 0;
	z-index: 1100;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .28s ease, visibility .28s ease;
}

.help-panel.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.help-panel__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .45);
	backdrop-filter: blur(2px);
}

.help-panel__dialog {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%) translateY(18px);
	width: min(100%, 520px);
	background: #f6eded;
	border-radius: 24px 24px 0 0;
	padding: .9rem 1rem 1rem;
	box-shadow: 0 -14px 35px rgba(15, 23, 42, .22);
	opacity: .2;
	transition: transform .32s ease, opacity .32s ease;
}

.help-panel.is-open .help-panel__dialog {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.help-panel__handle {
	width: 46px;
	height: 4px;
	border-radius: 99px;
	background: #d5dbe5;
	margin: 0 auto .7rem;
}

.help-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: .35rem;
}

.help-panel__chip {
	display: inline-flex;
	align-items: center;
	gap: .36rem;
	font-size: .73rem;
	font-weight: 800;
	letter-spacing: .18em;
	color: #64748b;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	padding: .3rem .62rem;
}

.help-panel.is-open .help-panel__chip {
	animation: help-chip-pop .38s ease;
}

.help-panel__chip span {
	width: 8px;
	height: 8px;
	border-radius: 99px;
	background: #34d399;
}

.help-panel__close {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 0;
	background: #f1f5f9;
	color: #64748b;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.help-panel__title {
	font-size: 2rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: .5rem;
}

.help-panel__text {
	font-size: .86rem;
	color: #64748b;
	line-height: 1.5;
	margin-bottom: .85rem;
}

.help-panel__card {
	background: #f2ecec;
	border: 1px solid #ebe1e1;
	border-radius: 18px;
	padding: .9rem .85rem;
	display: flex;
	align-items: center;
	gap: .75rem;
	text-decoration: none;
}

.help-panel__card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #ff4f2c;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
}

.help-panel__card-main {
	flex: 1;
	min-width: 0;
}

.help-panel__card-title {
	font-size: 1rem;
	font-weight: 800;
	color: #111827;
}

.help-panel__card-title small {
	font-size: .62rem;
	letter-spacing: .16em;
	color: #64748b;
	background: #e2e8f0;
	padding: .18rem .35rem;
	border-radius: 8px;
	margin-left: .35rem;
	vertical-align: middle;
}

.help-panel__card-desc {
	margin-top: .15rem;
	font-size: .8rem;
	color: #64748b;
}

.help-panel__card-arrow {
	color: #b8c1ce;
	font-size: 1rem;
}

.help-panel__coming {
	margin-top: .75rem;
	background: #eef1f5;
	border-radius: 16px;
	padding: .8rem;
	font-size: .82rem;
	color: #64748b;
	line-height: 1.45;
}

.help-panel__coming strong {
	display: block;
	font-size: .68rem;
	letter-spacing: .2em;
	color: #94a3b8;
	margin-bottom: .35rem;
}

.sale-toast {
	position: fixed;
	left: 10px;
	bottom: 76px;
	width: min(calc(100% - 20px), 330px);
	background: #fff;
	border: 1px solid #f1b093;
	border-radius: 12px;
	padding: .42rem;
	display: flex;
	gap: .55rem;
	align-items: center;
	box-shadow: 0 8px 24px rgba(15, 23, 42, .18);
	z-index: 1088;
	opacity: 0;
	transform: translateX(-14px);
	pointer-events: none;
}

.sale-toast.is-enter {
	animation: sale-toast-in .36s ease;
}

.sale-toast.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.sale-toast__media {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	overflow: hidden;
	background: #f1f5f9;
	position: relative;
	flex: 0 0 auto;
}

.sale-toast__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sale-toast__check {
	position: absolute;
	right: -2px;
	bottom: -2px;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: #22c55e;
	color: #fff;
	font-size: .58rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
}

.sale-toast__main {
	flex: 1;
	min-width: 0;
}

.sale-toast__line {
	display: flex;
	justify-content: space-between;
	gap: .4rem;
	font-size: .72rem;
}

.sale-toast__line strong {
	color: #111827;
	font-weight: 700;
}

.sale-toast__line span {
	color: #94a3b8;
	white-space: nowrap;
}

.sale-toast__meta {
	font-size: .74rem;
	color: #64748b;
	margin-top: .05rem;
}

.sale-toast__meta span:first-child {
	color: #f97316;
	font-weight: 700;
}

.sale-toast__product {
	font-size: .98rem;
	font-weight: 800;
	color: #1f2937;
	line-height: 1.15;
	margin-top: .1rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sale-toast__hint {
	font-size: .62rem;
	color: #6b7280;
	margin-top: .12rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@keyframes sale-toast-in {
	0% {
		opacity: 0;
		transform: translateX(-20px) scale(.97);
	}
	100% {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes help-chip-pop {
	0% {
		opacity: 0;
		transform: translateY(4px) scale(.96);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes product-strip-slide {
	0%, 45% { transform: translateY(0); }
	50%, 95% { transform: translateY(-22px); }
	100% { transform: translateY(0); }
}
