/* ==========================================================================
   WPWAX Product Carousel — main stylesheet
   1. Tokens & fonts   2. Base   3. Components   4. Header   5. Hero
   6. Trust   7. Layouts   8. Features   9. How it works   10. Store
   11. Reviews   12. Pricing   13. FAQ   14. CTA   15. Footer
   16. Inner pages   17. Motion & responsive
   ========================================================================== */

/* 1. Tokens & fonts
   ------------------------------------------------------------------------ */
@font-face {
	font-family: "Bricolage Grotesque";
	src: url("../fonts/BricolageGrotesque-Variable.woff2") format("woff2");
	font-weight: 200 800;
	font-display: swap;
}
@font-face {
	font-family: "DM Sans";
	src: url("../fonts/DMSans-Variable.woff2") format("woff2");
	font-weight: 100 1000;
	font-display: swap;
}

:root {
	--primary: #6a3df5;
	--primary-rgb: 106, 61, 245;
	--primary-dark: #4c1fd6;
	--primary-soft: #efeafe;
	--accent: #c2410c;
	--accent-rgb: 194, 65, 12;
	--accent-soft: #fdf1ea;
	--gold: #f59e0b;
	--green: #16a34a;
	--green-soft: #dcfce7;
	--pink: #ec4899;
	--blue: #3b82f6;
	--red: #ef4444;

	--background: #ffffff;
	--bg-soft: #f7f6fb;
	--bg-lavender: #ede9fb;
	--dark: #0f0b1f;
	--dark-2: #1a1332;
	--dark-3: #241b45;
	--dark-border: rgba(255, 255, 255, 0.09);
	--ink: #161326;
	--text: #4d4b5f;
	--muted: #7d7b93;
	--border: #e9e7f2;

	--font-heading: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
	--font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

	--card-radius: 20px;
	--radius-sm: 12px;
	--radius-pill: 999px;
	--container-width: 1200px;
	--gutter: 24px;

	--shadow-sm: 0 1px 2px rgba(22, 19, 38, 0.06), 0 4px 12px rgba(22, 19, 38, 0.05);
	--shadow-md: 0 8px 24px rgba(22, 19, 38, 0.08), 0 2px 6px rgba(22, 19, 38, 0.05);
	--shadow-lg: 0 24px 60px rgba(22, 19, 38, 0.14), 0 6px 16px rgba(22, 19, 38, 0.06);
	--shadow-primary: 0 10px 28px rgba(var(--primary-rgb), 0.35);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--dur: 0.35s;
}

/* 2. Base
   ------------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: var(--background);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-family: var(--font-heading);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--ink);
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; }
del { text-decoration: line-through; }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }
.section--dark :focus-visible { outline-color: #b9a6ff; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%); margin: -1px; padding: 0; border: 0; white-space: nowrap;
}
.skip-link:focus {
	position: fixed !important; top: 12px; left: 12px; z-index: 1000;
	width: auto; height: auto; clip: auto; clip-path: none; margin: 0;
	padding: 10px 16px; background: var(--primary); color: #fff; border-radius: 8px;
}

.container {
	width: 100%;
	max-width: calc(var(--container-width) + var(--gutter) * 2);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 900px; }

.section { position: relative; padding: 112px 0; }
.section--dark { background: var(--dark); color: #b6b2cc; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head--wide { max-width: 900px; }
.section-head .pill { margin-bottom: 22px; }
.section-title { font-size: clamp(34px, 4.2vw, 52px); }
.section-lead { max-width: 640px; margin: 20px auto 0; font-size: 17px; line-height: 1.65; color: var(--muted); }
.section--dark .section-lead { color: #b0aac8; }

/* 3. Components
   ------------------------------------------------------------------------ */
.icon { width: 1em; height: 1em; flex: none; }

/* Pills */
.pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 13px; border-radius: var(--radius-pill);
	font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.4;
}
.pill--light { background: var(--primary-soft); color: var(--primary); }
.pill--dark { background: rgba(255, 255, 255, 0.06); color: #c9bfff; border: 1px solid rgba(185, 166, 255, 0.28); }
.pill--sparkle { text-transform: none; letter-spacing: 0; font-size: 12px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.pill--sparkle .icon { color: var(--gold); font-size: 12px; }

.pro-tag {
	position: absolute; top: 20px; right: 20px;
	padding: 3px 8px; border-radius: 6px;
	font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
	background: var(--primary-soft); color: var(--primary);
}
.pro-tag--inline { position: static; margin-left: 8px; }
.mini-tag {
	display: inline-block; padding: 2px 7px; margin-left: 6px; border-radius: 4px;
	font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
	background: var(--green-soft); color: var(--green);
}
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
}
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 13px 26px; border-radius: var(--radius-sm);
	font-weight: 700; font-size: 15px; line-height: 1.2; white-space: nowrap;
	border: 1px solid transparent;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur), color var(--dur), border-color var(--dur);
}
.btn .icon { font-size: 14px; margin-right: -2px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }
.btn--outline { background: #fff; color: var(--primary); border-color: #dcd5f5; }
.btn--outline:hover { border-color: var(--primary); color: var(--primary-dark); }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { color: var(--ink); background: #f3f1fb; }
.btn--soft { background: var(--primary-soft); color: var(--primary); }
.btn--soft:hover { background: #e4dcfd; color: var(--primary-dark); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--xl { padding: 18px 36px; font-size: 16px; border-radius: 14px; }
.btn--xs { padding: 7px 14px; font-size: 11px; border-radius: 8px; }
.btn--block { width: 100%; }
.btn--cart {
	width: 100%; padding: 11px 16px; border-radius: 10px; font-size: 13px;
	background: var(--accent-soft); color: var(--accent);
}
.btn--cart:hover { background: #fbe3d5; color: var(--accent); }
.btn--cart.is-solid { background: var(--accent); color: #fff; }
.btn--cart.is-solid:hover { background: #a63709; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* Product badges */
.badge {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	padding: 5px 10px; border-radius: 8px;
	font-size: 11px; font-weight: 700; line-height: 1.2; color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.badge--sale { background: var(--accent); }
.badge--best { background: var(--primary); }
.badge--featured, .badge--top { background: var(--green); }
.badge--new { background: var(--ink); }
.badge--dark { background: var(--ink); }
.badge--xs { top: 8px; left: 8px; padding: 3px 7px; font-size: 8px; border-radius: 5px; }

/* Stars */
.stars { display: inline-flex; gap: 1px; color: var(--gold); font-size: 13px; line-height: 1; vertical-align: middle; }
.stars .star .icon { width: 1em; height: 1em; }
.stars .star:not(.is-on) { color: #dedbe8; }
.stars--half .star:nth-child(5) { color: #f6cf79; }
.stars--sm { font-size: 11px; }
.stars--xs { font-size: 9px; }

/* Product card */
.product-card {
	position: relative; display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card__media { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f2f1f7; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.wishlist-btn {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
	background: #fff; color: var(--red); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
	transition: transform var(--dur) var(--ease);
}
.wishlist-btn .icon { font-size: 14px; }
.wishlist-btn:hover, .wishlist-btn[aria-pressed="true"] { transform: scale(1.12); }
.wishlist-btn[aria-pressed="false"] .icon { opacity: 0.85; }
.quickview-pill {
	position: absolute; top: 12px; right: 12px; z-index: 2;
	display: inline-flex; align-items: center; gap: 5px;
	padding: 5px 10px; border-radius: var(--radius-pill);
	background: var(--ink); color: #fff; font-size: 10px; font-weight: 700;
}
.quickview-pill .icon { font-size: 11px; color: #4ade80; }
.quickview-pill--static { position: static; }
.product-card__body { display: flex; flex-direction: column; gap: 6px; padding: 16px 18px 18px; }
.product-card__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.product-card__title { font-family: var(--font-body); font-size: 15px; font-weight: 600; letter-spacing: 0; line-height: 1.3; }
.product-card__title a { color: var(--ink); }
.product-card__price { display: flex; align-items: center; gap: 8px; margin: 0; font-size: 15px; }
.product-card__price .price { font-weight: 700; color: var(--ink); }
.price--regular { color: var(--muted); font-size: 0.88em; }
.product-card__rating { display: flex; align-items: center; gap: 6px; margin: 0 0 8px; font-size: 12px; color: var(--muted); }
.product-card--compact .product-card__body { padding: 12px 14px 14px; gap: 4px; }
.product-card--compact .product-card__title { font-size: 13px; }
.product-card--compact .product-card__price { font-size: 13px; gap: 6px; }
.product-card--compact .product-card__media { aspect-ratio: 4 / 5; }

/* Chips (floating labels) */
.chip {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 9px 14px 9px 10px; border-radius: 12px;
	background: #fff; color: var(--ink); box-shadow: var(--shadow-md); border: 1px solid var(--border);
	line-height: 1.2; white-space: nowrap;
}
.chip__dot { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.chip__dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.chip__text { display: flex; flex-direction: column; gap: 1px; }
.chip__text strong { font-size: 12px; font-weight: 700; }
.chip__text small { font-size: 10px; color: var(--muted); }
.chip--purple .chip__dot { background: var(--primary-soft); color: var(--primary); }
.chip--green .chip__dot { background: var(--green-soft); color: var(--green); }
.chip--orange .chip__dot { background: var(--accent-soft); color: var(--accent); }
.chip--pink .chip__dot { background: #fce7f3; color: var(--pink); }
.chip--blue .chip__dot { background: #dbeafe; color: var(--blue); }
.chip--float { position: absolute; z-index: 5; }
.section--dark .chip { background: var(--dark-2); color: #fff; border-color: var(--dark-border); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4); }
.section--dark .chip__text small { color: #9d97b8; }
.section--dark .chip--purple .chip__dot { background: rgba(var(--primary-rgb), 0.2); }
.section--dark .chip--green .chip__dot { background: rgba(22, 163, 74, 0.2); }
.section--dark .chip--orange .chip__dot { background: rgba(var(--accent-rgb), 0.2); }

/* Window chrome */
.win { border-radius: 18px; overflow: hidden; }
.win--light { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.win--dark { background: var(--dark-2); border: 1px solid var(--dark-border); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45); color: #c9c4de; }
.win__bar { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 12px; font-weight: 600; }
.win--light .win__bar { background: #f7f6fb; color: var(--ink); }
.win--dark .win__bar { background: rgba(255, 255, 255, 0.03); border-color: var(--dark-border); color: #fff; }
.win__dots { display: inline-flex; gap: 6px; }
.win__dots i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; }
.win__dots i:nth-child(2) { background: #febc2e; }
.win__dots i:nth-child(3) { background: #28c840; }
.win__url { flex: 1; max-width: 520px; padding: 7px 14px; border-radius: 8px; background: #fff; border: 1px solid var(--border); color: var(--muted); font-weight: 500; }
.win__body { padding: 24px; }

.shelf-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.shelf-head__title { font-size: 18px; letter-spacing: -0.01em; }
.shelf-head__sub { margin: 4px 0 0; font-size: 12px; color: var(--muted); }
.shelf-head--dark .shelf-head__title { color: #fff; font-size: 14px; }
.shelf-head--dark .shelf-head__sub { color: #9d97b8; font-size: 10px; }

.carousel-arrows { display: inline-flex; gap: 8px; flex: none; }
.carousel-arrow {
	width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
	background: #fff; border: 1px solid var(--border); color: var(--ink);
	transition: background-color var(--dur), color var(--dur), transform var(--dur) var(--ease);
}
.carousel-arrow .icon { font-size: 16px; }
.carousel-arrow:hover { background: var(--primary-soft); }
.carousel-arrow.is-primary { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-primary); }
.carousel-arrow.is-primary:hover { background: var(--primary-dark); }
.carousel-arrow:disabled { opacity: 0.4; cursor: default; }
.carousel-arrows--sm .carousel-arrow { width: 26px; height: 26px; }
.carousel-arrows--sm .carousel-arrow .icon { font-size: 12px; }
.shelf-head--dark .carousel-arrow { background: var(--dark-3); border-color: var(--dark-border); color: #fff; }
.shelf-head--dark .carousel-arrow.is-primary { background: var(--primary); }

/* Carousel */
.carousel { position: relative; --cols: 5; --gap: 16px; }
.carousel__track {
	display: flex; gap: var(--gap);
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	scrollbar-width: none; -ms-overflow-style: none;
	padding: 4px; margin: -4px;
	cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.carousel__track.is-dragging .product-card { pointer-events: none; }
.carousel__slide { flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols)); scroll-snap-align: start; }
.carousel__dots { display: flex; justify-content: center; gap: 6px; margin-top: 22px; }
.carousel__dots button, .carousel__dots i {
	display: block; width: 8px; height: 8px; border-radius: 4px;
	background: #dcd9e8; transition: width var(--dur) var(--ease), background-color var(--dur);
}
.carousel__dots button.is-active, .carousel__dots i.is-active { width: 22px; background: var(--primary); }
.carousel__dots--static { margin-top: 14px; }
.section--dark .carousel__dots i { background: rgba(255, 255, 255, 0.18); }
.section--dark .carousel__dots i.is-active { background: var(--primary); }

/* Tag list */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag-list li { padding: 6px 12px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--border); font-size: 12px; font-weight: 600; color: var(--ink); }

/* Check list */
.check-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #fff; }
.check-list .icon { width: 20px; height: 20px; padding: 4px; border-radius: 50%; background: rgba(var(--primary-rgb), 0.22); color: #c9bfff; }
.check-list .icon path { stroke-width: 3; }

/* Line placeholders */
.line { display: block; height: 6px; border-radius: 3px; background: #e6e3f0; }

/* Toast */
.toast {
	position: absolute; z-index: 6;
	display: flex; align-items: center; gap: 14px;
	min-width: 300px; padding: 16px 20px; border-radius: 14px;
	background: linear-gradient(90deg, #3a1f8a, #2a1866); color: #fff;
	border: 1px solid rgba(185, 166, 255, 0.35); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.toast__icon { width: 30px; height: 30px; padding: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); flex: none; }
.toast__icon .icon { width: 100%; height: 100%; }
.toast__text { display: flex; flex-direction: column; }
.toast__text strong { font-size: 14px; }
.toast__text small { font-size: 11px; color: #c9c0ec; }
.toast__cursor { position: absolute; right: 14px; bottom: -28px; width: 56px; height: 56px; }
.toast__cursor .icon { position: absolute; left: -8px; top: 0; font-size: 26px; color: #fff; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)); }
.toast__cursor img { position: absolute; right: 0; bottom: 0; width: 38px; height: 38px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; }

/* Radio list (mock UI) */
.radio-list { display: flex; flex-direction: column; gap: 6px; }
.radio-list li { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--ink); background: var(--bg-soft); }
.radio-list li i { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #c8c4da; flex: none; }
.radio-list li.is-active { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.radio-list li.is-active i { border-color: #fff; background: #fff; box-shadow: inset 0 0 0 3px var(--primary); }
.radio-list--dark li { background: rgba(255, 255, 255, 0.04); color: #d6d2e6; }
.radio-list--dark li i { border-color: #5b5477; }
.radio-list--dark li.is-active { background: var(--primary); color: #fff; }

/* Admin mock UI */
.win--admin .win__body { padding: 20px 22px; }
.admin-tabs { display: flex; gap: 6px; margin-bottom: 22px; }
.admin-tabs span { padding: 7px 12px; border-radius: 8px; font-size: 11px; font-weight: 600; color: #9d97b8; background: rgba(255, 255, 255, 0.05); }
.admin-tabs span.is-active { color: #fff; background: rgba(var(--primary-rgb), 0.28); border: 1px solid rgba(185, 166, 255, 0.5); }
.admin-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--dark-border); }
.admin-row:first-of-type { border-top: 0; }
.admin-row__label { font-size: 12px; color: #c9c4de; }
.admin-row__value { display: inline-flex; align-items: center; gap: 8px; }
.admin-input, .admin-select { padding: 6px 12px; border-radius: 6px; background: var(--dark-3); border: 1px solid var(--dark-border); font-size: 11px; font-weight: 600; color: #fff; }
.admin-select { color: #9d97b8; }
.swatch { width: 18px; height: 18px; border-radius: 5px; display: inline-block; }
.seg span { padding: 6px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; background: var(--dark-3); color: #9d97b8; }
.seg span.is-active { background: var(--primary); color: #fff; }
.admin-eyebrow { display: block; margin: 16px 0 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #8a83a8; }
.layout-picker { gap: 8px; }
.layout-picker__opt { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 60px; padding: 8px 6px; border-radius: 8px; background: var(--dark-3); font-size: 9px; color: #9d97b8; border: 1px solid transparent; }
.layout-picker__opt.is-active { color: #fff; border-color: rgba(185, 166, 255, 0.6); background: rgba(var(--primary-rgb), 0.28); }
.layout-picker__opt i { display: block; width: 26px; height: 16px; border-radius: 3px; background: repeating-linear-gradient(90deg, #b9a6ff 0 7px, transparent 7px 9px); }
.layout-picker__opt i.lp-grid { background: repeating-linear-gradient(90deg, #7a7297 0 7px, transparent 7px 9px), repeating-linear-gradient(0deg, #7a7297 0 7px, transparent 7px 9px); background-blend-mode: multiply; }
.code-box { padding: 14px 16px; margin-bottom: 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--dark-border); }
.code-box .admin-eyebrow { margin-top: 0; }
.code-box__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.code-box code { color: #fff; font-size: 12px; }
.elementor-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 12px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.elementor-card__e { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--primary); color: #fff; font-weight: 800; font-size: 14px; flex: none; }
.elementor-card__text { display: flex; flex-direction: column; }
.elementor-card__text strong { font-size: 13px; color: var(--ink); }
.elementor-card__text small { font-size: 11px; color: var(--muted); }
.elementor-card--dark { background: rgba(var(--primary-rgb), 0.12); border-color: rgba(185, 166, 255, 0.35); box-shadow: none; }
.elementor-card--dark .elementor-card__text strong { color: #fff; }
.elementor-card--dark .elementor-card__text small { color: #9d97b8; }
.code-chip { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; border-radius: 10px; background: var(--ink); color: #fff; }
.code-chip code { font-size: 12px; }
.btn.is-copied { background: var(--green); }

/* 4. Header
   ------------------------------------------------------------------------ */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(22, 19, 38, 0.06);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 80px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand__mark { flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-size: 15px; font-weight: 700; }
.brand__text small { font-size: 10px; color: var(--muted); }
.brand--light { color: #fff; }
.brand--light .brand__text small { color: #9d97b8; }
.custom-logo-link img { max-height: 44px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: flex-end; }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-right: 22px; }
.nav-menu a, .nav-link { display: block; padding: 8px 12px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 8px; transition: color var(--dur), background-color var(--dur); }
.nav-menu a:hover, .nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-menu .current-menu-item > a { color: var(--primary); }
.site-nav__actions { display: flex; align-items: center; gap: 10px; }
.nav-link--strong { font-weight: 700; color: var(--ink); }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; place-items: center; color: var(--ink); }
.nav-toggle .icon { font-size: 24px; }
.nav-toggle__close, .nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

/* 5. Hero
   ------------------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding: 72px 0 70px; }
.hero__bg {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(60% 70% at 8% 22%, rgba(196, 181, 253, 0.85) 0%, rgba(196, 181, 253, 0) 70%),
		radial-gradient(45% 55% at 92% 18%, rgba(253, 213, 175, 0.85) 0%, rgba(253, 213, 175, 0) 70%),
		radial-gradient(40% 45% at 96% 95%, rgba(183, 234, 226, 0.9) 0%, rgba(183, 234, 226, 0) 70%),
		radial-gradient(50% 50% at 5% 100%, rgba(232, 222, 253, 0.9) 0%, rgba(232, 222, 253, 0) 70%),
		linear-gradient(180deg, #f8f6fd 0%, #fbfaff 100%);
}
.hero__copy { max-width: 780px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.avatar-stack { display: flex; align-items: center; margin: 14px 0 26px; }
.avatar-stack img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -8px; box-shadow: var(--shadow-sm); }
.avatar-stack img:first-child { margin-left: 0; }
.avatar-stack__more { width: 34px; height: 34px; margin-left: -8px; border-radius: 50%; border: 2px solid #fff; display: grid; place-items: center; background: var(--primary); color: #fff; font-weight: 700; font-size: 16px; }
.hero__title { font-size: clamp(42px, 6.4vw, 84px); line-height: 1; letter-spacing: -0.035em; }
.text-gradient {
	background: linear-gradient(90deg, #6a3df5 0%, #8b5cf6 35%, #c026d3 75%, #e0359a 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { max-width: 640px; margin: 26px auto 34px; font-size: 17px; line-height: 1.7; color: var(--text); }
.hero__proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-top: 30px; font-size: 13px; color: var(--muted); }
.hero__proof li { display: inline-flex; align-items: center; gap: 6px; padding: 0 16px; border-left: 1px solid var(--border); }
.hero__proof li:first-child { border-left: 0; }
.hero__proof strong { color: var(--ink); font-weight: 700; }

.hero__demo { position: relative; max-width: 1080px; margin: 44px auto 0; }
.hero__window .win__body { padding: 32px 32px 26px; }
.chip--tr { top: -18px; right: -14px; transform: rotate(-4deg); }
.chip--bl { bottom: -6px; left: -24px; transform: rotate(-5deg); }
.chip--br { bottom: 4px; right: -36px; transform: rotate(4deg); }
.float-card { position: absolute; z-index: 6; }
.float-card--coat { top: -34px; left: 62px; width: 176px; transform: rotate(-8deg); transform-origin: bottom left; }
.float-card--watch { right: -38px; top: 190px; width: 230px; transform: rotate(6deg); }
.product-card--float { box-shadow: var(--shadow-lg); border-radius: 14px; }
.product-card--float .product-card__body { padding: 12px 14px 14px; }
.product-card--float .product-card__title { font-size: 13px; }
.product-card--float .product-card__price { font-size: 14px; }
.product-card--float .product-card__rating { display: none; }
.product-card--float .btn--cart { background: var(--accent); color: #fff; font-size: 11px; padding: 9px 12px; }
.product-card--qv { display: flex; flex-direction: row; }
.product-card--qv .product-card__media { width: 44%; aspect-ratio: auto; }
.product-card--qv .product-card__body { width: 56%; padding: 24px 12px 12px; }
.product-card--qv .product-card__cat { display: none; }
.product-card--qv .product-card__rating { display: flex; margin: 0; }
.product-card--qv .product-card__count { display: none; }
.float-card:hover .product-card { transform: none; }

/* 6. Trust
   ------------------------------------------------------------------------ */
.trust { padding: 56px 0 60px; background: #fff; }
.trust__title { margin: 0 0 32px; text-align: center; font-size: 14px; font-weight: 700; color: var(--ink); }
.trust__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 64px; }
.trust__logos img { height: 30px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity var(--dur), filter var(--dur); }
.trust__logos li:nth-child(4) img { height: 40px; }
.trust__logos li:nth-child(5) img { height: 40px; }
.trust__logos img:hover { opacity: 1; filter: none; }

/* 7. Layouts
   ------------------------------------------------------------------------ */
.layouts { overflow: hidden; padding-bottom: 130px; }
.layouts::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(50% 45% at 50% 100%, rgba(var(--primary-rgb), 0.45) 0%, rgba(var(--primary-rgb), 0) 100%),
		radial-gradient(40% 40% at 100% 0%, rgba(120, 60, 220, 0.2) 0%, transparent 100%);
}
.layouts .container { position: relative; }
.layouts__tabs {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
	max-width: 1080px; margin: 0 auto; border-radius: 20px;
	background: rgba(255, 255, 255, 0.04); border: 1px solid var(--dark-border);
	backdrop-filter: blur(8px);
}
.layouts__tab { position: relative; padding: 28px 30px; text-align: left; color: #b6b2cc; border-radius: 20px; transition: background-color var(--dur); }
.layouts__tab + .layouts__tab::before { content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: var(--dark-border); }
.layouts__tab:hover { background: rgba(255, 255, 255, 0.03); }
.layouts__tab.is-active { background: rgba(var(--primary-rgb), 0.16); box-shadow: inset 0 0 0 1px rgba(185, 166, 255, 0.35); }
.layouts__tab-title { font-size: 20px; color: #fff; margin-bottom: 10px; }
.layouts__tab-text { margin: 0; font-size: 13px; line-height: 1.6; }

.layouts__stage { position: relative; height: 470px; max-width: 1080px; margin: 60px auto 0; }
.layout-win { position: absolute; top: 0; width: 360px; transition: transform 0.6s var(--ease), opacity 0.6s, filter 0.6s; will-change: transform; }
.layout-win__label { position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--radius-pill); background: var(--dark-3); border: 1px solid var(--dark-border); color: #c9c4de; font-size: 11px; font-weight: 700; white-space: nowrap; }
.layout-win__label .dot { width: 6px; height: 6px; background: #6b6488; }
.layout-win__label--active { background: var(--primary); color: #fff; border-color: transparent; box-shadow: var(--shadow-primary); }
.layout-win__label--active .dot { background: #fff; }
.layout-win { overflow: visible; }
.layout-win .win__bar { border-radius: 18px 18px 0 0; }
.layout-win .win__body { padding: 18px; border-radius: 0 0 18px 18px; }
.layout-win--grid { left: 0; transform: translate(-8%, 60px) rotate(-6deg) scale(0.86); opacity: 0.85; z-index: 1; }
.layout-win--carousel { left: 50%; transform: translate(-50%, 0) scale(1); z-index: 3; }
.layout-win--slider { right: 0; transform: translate(8%, 40px) rotate(6deg) scale(0.86); opacity: 0.85; z-index: 1; }
.layouts__stage[data-active="grid"] .layout-win--grid { left: 50%; transform: translate(-50%, 0) scale(1); opacity: 1; z-index: 3; }
.layouts__stage[data-active="grid"] .layout-win--carousel { left: 0; transform: translate(-8%, 60px) rotate(-6deg) scale(0.86); opacity: 0.85; z-index: 1; }
.layouts__stage[data-active="slider"] .layout-win--slider { right: 50%; transform: translate(50%, 0) scale(1); opacity: 1; z-index: 3; }
.layouts__stage[data-active="slider"] .layout-win--carousel { left: auto; right: 0; transform: translate(8%, 40px) rotate(6deg) scale(0.86); opacity: 0.85; z-index: 1; }
.layouts__stage .layout-win__label--active { display: none; }
.layouts__stage .layout-win .layout-win__label:not(.layout-win__label--active) { display: inline-flex; }
.layouts__stage[data-active="carousel"] .layout-win--carousel .layout-win__label--active { display: inline-flex; }
.layouts__stage[data-active="grid"] .layout-win--grid .layout-win__label,
.layouts__stage[data-active="slider"] .layout-win--slider .layout-win__label { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.layouts__stage[data-active="grid"] .layout-win--grid .layout-win__label .dot,
.layouts__stage[data-active="slider"] .layout-win--slider .layout-win__label .dot { background: #fff; }
.chip--stage-l { top: -30px; left: 12%; transform: rotate(-3deg); }
.chip--stage-r { top: -22px; right: 14%; transform: rotate(3deg); }

.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.mini-card { position: relative; border-radius: 8px; overflow: hidden; background: var(--dark-3); aspect-ratio: 1 / 1; }
.mini-card img { width: 100%; height: 100%; object-fit: cover; }
.mini-card--tall { aspect-ratio: 3 / 4; }
.mini-card--wide { aspect-ratio: 16 / 10; border-radius: 10px; }
.mini-card__lines { position: absolute; left: 8px; right: 8px; bottom: 8px; display: flex; flex-direction: column; gap: 4px; }
.mini-card__lines i { display: block; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.85); }
.mini-card__lines i.is-accent { width: 40%; background: var(--gold); }

/* 8. Features
   ------------------------------------------------------------------------ */
.features { overflow: hidden; }
.features__bg {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(60% 50% at 0% 0%, rgba(196, 181, 253, 0.55) 0%, transparent 70%),
		radial-gradient(45% 40% at 100% 65%, rgba(253, 213, 175, 0.5) 0%, transparent 70%),
		linear-gradient(180deg, #f6f4fc 0%, #fbfaff 100%);
}
.feature-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.feature {
	position: relative; overflow: hidden;
	grid-column: span 2; min-height: 240px;
	display: flex; flex-direction: column;
	padding: 28px 28px 24px; border-radius: var(--card-radius);
	background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature--wide { grid-column: span 4; }
.feature--badges, .feature--styling, .feature--anywhere, .feature--swipe, .feature--resize { flex-direction: row; gap: 24px; }
.feature--anywhere { grid-column: span 3; }
.feature--styling { grid-column: span 3; }
.feature--swipe, .feature--resize { grid-column: span 3; }
.feature__copy { flex: 1; min-width: 0; }
.feature__title { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature__text { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.feature__visual { position: relative; flex: none; margin-top: 22px; }
.feature--badges .feature__visual, .feature--styling .feature__visual, .feature--anywhere .feature__visual, .feature--swipe .feature__visual, .feature--resize .feature__visual { margin-top: 0; }
.feature--badges .feature__copy { max-width: 46%; display: flex; flex-direction: column; }
.feature--badges .tag-list { margin-top: auto; padding-top: 20px; }

/* badges demo */
.feature--badges { background: linear-gradient(135deg, #fff 55%, #fdf3ee 100%); }
.badge-demo { position: relative; width: 210px; margin: 6px 40px 0 auto; transform: rotate(6deg); }
.badge-demo img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.badge-demo .badge { position: absolute; inset: auto; padding: 6px 11px; font-size: 11px; }
.badge-demo .badge-demo__b1 { top: 20px; left: -40px; transform: rotate(-10deg); }
.badge-demo .badge-demo__b2 { top: 70px; right: -46px; transform: rotate(8deg); }
.badge-demo .badge-demo__b3 { bottom: 60px; left: -50px; transform: rotate(-6deg); }
.badge-demo .badge-demo__b4 { bottom: 30px; right: -36px; transform: rotate(6deg); }

/* quick view demo */
.feature--quickview { background: linear-gradient(180deg, #fff 40%, #efeafe 100%); }
.qv-demo { position: relative; height: 130px; }
.qv-demo__img { position: absolute; left: 0; bottom: 0; width: 90px; height: 110px; object-fit: cover; border-radius: 12px; transform: rotate(-8deg); box-shadow: var(--shadow-md); }
.qv-demo__pop { position: absolute; left: 70px; right: 0; top: 0; bottom: 0; display: flex; gap: 12px; padding: 12px; border-radius: 14px; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.qv-demo__pop .quickview-pill { position: absolute; inset: -12px auto auto 12px; }
.qv-demo__pop > img { width: 80px; height: 100%; object-fit: cover; border-radius: 8px; }
.qv-demo__info { flex: 1; display: flex; flex-direction: column; gap: 6px; justify-content: center; }
.qv-demo__info strong { font-size: 15px; color: var(--ink); }
.qv-demo__info .btn { align-self: flex-start; }

/* wishlist demo */
.feature--wishlist { background: linear-gradient(180deg, #fff 30%, #fdf0f5 100%); }
.wish-demo { position: relative; display: flex; align-items: center; height: 120px; }
.wish-demo img { width: 80px; height: 90px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow-md); border: 3px solid #fff; }
.wish-demo img:first-child { transform: rotate(-8deg); z-index: 1; }
.wish-demo img:nth-child(2) { margin-left: -14px; transform: rotate(4deg); }
.wish-demo__heart { margin-left: auto; width: 68px; height: 68px; border-radius: 50%; display: grid; place-items: center; background: #fff; box-shadow: 0 0 0 10px rgba(236, 72, 153, 0.08), var(--shadow-md); color: var(--red); }
.wish-demo__heart .icon { font-size: 26px; }

/* pick demo */
.feature--pick { background: linear-gradient(180deg, #fff 40%, #f3effe 100%); }
.feature--pick .radio-list { transform: rotate(-2deg); }

/* responsive demo */
.feature--responsive { background: linear-gradient(180deg, #fff 30%, #e9f7f2 100%); }
.device-demo { display: flex; align-items: flex-end; justify-content: center; gap: 12px; height: 120px; }
.device { display: flex; gap: 4px; padding: 8px; border-radius: 10px; background: #fff; border: 2px solid #d9d5ec; box-shadow: var(--shadow-sm); }
.device i { display: block; width: 22px; height: 52px; border-radius: 4px; background: #d8ecf7; border-bottom: 5px solid var(--primary); }
.device--phone { padding: 8px; }
.device--tablet i { height: 58px; width: 24px; }
.device--desktop { padding: 10px; }
.device--desktop i { height: 66px; width: 22px; }

/* styling demo */
.feature--styling { background: linear-gradient(135deg, #fff 60%, #f6f1fe 100%); }
.swatch-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; max-width: 220px; }
.swatch-list li { display: flex; white-space: nowrap; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--border); font-size: 11px; font-weight: 600; color: var(--ink); }
.swatch-list li i { width: 14px; height: 14px; border-radius: 4px; }
.style-demo { position: relative; width: 150px; margin-left: auto; transform: rotate(4deg); }
.product-card--mini { width: 150px; }
.product-card--mini .product-card__body { padding: 10px 10px 12px; }
.product-card--mini .product-card__title { font-size: 11px; }
.product-card--mini .product-card__price { font-size: 12px; gap: 6px; }
.live-pill { position: absolute; bottom: -14px; right: -12px; display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: var(--radius-pill); background: var(--ink); color: #fff; font-size: 9px; font-weight: 700; }
.live-pill .dot { width: 6px; height: 6px; background: #4ade80; }

/* anywhere demo */
.feature--anywhere .feature__visual { display: flex; flex-direction: column; gap: 14px; width: 250px; }
.feature--anywhere .elementor-card { transform: rotate(-3deg); }
.feature--anywhere .elementor-card .line { width: 100%; }
.feature--anywhere .elementor-card { flex-wrap: wrap; }
.chip--inline { align-self: flex-end; }

/* swipe demo */
.swipe-demo { position: relative; display: flex; align-items: center; width: 220px; height: 130px; }
.swipe-demo img { width: 90px; height: 100px; object-fit: cover; border-radius: 12px; border: 3px solid #fff; box-shadow: var(--shadow-md); }
.swipe-demo img:nth-child(1) { transform: rotate(-10deg) translateY(6px); }
.swipe-demo img:nth-child(2) { margin-left: -24px; z-index: 1; }
.swipe-demo img:nth-child(3) { margin-left: -24px; transform: rotate(10deg) translateY(6px); }
.swipe-demo__cursor { position: absolute; left: 40px; bottom: 6px; color: var(--primary); }
.swipe-demo__cursor .icon { font-size: 28px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); }
.swipe-demo__tag { position: absolute; left: 62px; bottom: -8px; padding: 4px 9px; border-radius: 6px; background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; }

/* resize demo */
.resize-demo { display: flex; align-items: center; gap: 12px; }
.resize-demo__col { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.resize-demo__ragged { display: flex; flex-direction: column; gap: 6px; }
.resize-demo__ragged img { object-fit: cover; border-radius: 6px; border: 2px solid #fff; box-shadow: var(--shadow-sm); }
.resize-demo__ragged img:first-child { width: 72px; height: 46px; }
.resize-demo__ragged img:last-child { width: 72px; height: 72px; }
.resize-demo__tidy { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.resize-demo__tidy img { width: 42px; height: 54px; object-fit: cover; border-radius: 6px; border: 2px solid #fff; box-shadow: var(--shadow-sm); }
.resize-demo__label { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; color: var(--muted); }
.resize-demo__label.is-green { color: var(--green); }
.resize-demo__arrow { color: var(--accent); font-size: 18px; }

.section-cta { margin-top: 56px; text-align: center; }
.section-cta__note { margin: 16px 0 0; font-size: 13px; color: var(--muted); }

/* 9. How it works
   ------------------------------------------------------------------------ */
.hiw { overflow: hidden; }
.hiw::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background:
		radial-gradient(45% 35% at 50% 0%, rgba(var(--primary-rgb), 0.35) 0%, transparent 100%),
		radial-gradient(35% 40% at 0% 50%, rgba(var(--primary-rgb), 0.18) 0%, transparent 100%),
		radial-gradient(35% 40% at 100% 85%, rgba(var(--primary-rgb), 0.16) 0%, transparent 100%);
}
.hiw .container { position: relative; }
.step { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; margin-top: 90px; }
.step:first-of-type { margin-top: 60px; }
.step--reverse .step__copy { order: 2; }
.step--reverse .step__visual { order: 1; }
.step__num { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.step__num b { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--primary); color: #fff; font-size: 15px; font-weight: 700; box-shadow: var(--shadow-primary); }
.step__num i { width: 60px; height: 1px; background: rgba(255, 255, 255, 0.2); }
.step__title { font-size: clamp(28px, 3vw, 36px); color: #fff; margin-bottom: 16px; }
.step__text { margin: 0; font-size: 15.5px; line-height: 1.7; color: #b0aac8; }
.step__visual { position: relative; padding: 30px 0 50px; }
.chip--step-tr { top: -4px; right: -40px; transform: rotate(3deg); }
.chip--step-tl { top: -6px; left: -40px; transform: rotate(-3deg); }
.toast--step1 { left: -20px; right: -20px; bottom: 44px; }
.toast--step2 { left: -12px; right: 20px; bottom: 6px; }
.toast--step3 { left: -20px; right: -20px; bottom: 0; }
.float-card--style { position: absolute; right: -70px; top: 30px; width: 170px; transform: rotate(6deg); z-index: 5; }
.float-card--style .product-card--mini { width: 180px; }
.hiw__cta { margin-top: 90px; }

/* 10. Store showcase
   ------------------------------------------------------------------------ */
.store { overflow: hidden; }
.store__bg {
	position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(40% 35% at 0% 45%, rgba(252, 205, 227, 0.75) 0%, transparent 70%),
		radial-gradient(40% 35% at 100% 55%, rgba(199, 220, 252, 0.8) 0%, transparent 70%),
		radial-gradient(45% 35% at 0% 100%, rgba(199, 240, 226, 0.9) 0%, transparent 70%),
		linear-gradient(180deg, #f7f6fb 0%, #fbfaff 100%);
}
.store__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 40px; }
.store__tab {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 16px; border-radius: 10px; background: #fff; border: 1px solid var(--border);
	font-size: 13px; font-weight: 700; color: var(--text); box-shadow: var(--shadow-sm);
	transition: background-color var(--dur), color var(--dur), border-color var(--dur);
}
.store__tab .dot { width: 7px; height: 7px; display: none; }
.store__tab.is-active { color: var(--ink); border-color: #cfc6f5; box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1); }
.store__tab.is-active .dot { display: inline-block; }
.store__tab--pink .dot { background: var(--pink); }
.store__tab--blue .dot { background: var(--blue); }
.store__tab--green .dot { background: var(--green); }
.store__tab:hover { border-color: #cfc6f5; }
.store__panels { display: flex; flex-direction: column; gap: 22px; }
.store-panel {
	position: relative; overflow: hidden;
	display: grid; grid-template-columns: 1fr 1.25fr; gap: 40px; align-items: center;
	min-height: 320px; padding: 44px 44px; border-radius: 24px;
	background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-md);
}
.store-panel[hidden] { display: none; }
.store-panel--pink { background: linear-gradient(90deg, #fdf0f5 0%, #fff 55%, #f0f4ff 100%); }
.store-panel--blue { background: linear-gradient(90deg, #eef4ff 0%, #fff 50%, #fff 100%); }
.store-panel--green { background: linear-gradient(90deg, #eefbf4 0%, #fff 50%, #f4f8ff 100%); }
.store-panel--right .store-panel__copy { order: 2; }
.store-panel--right .store-panel__visual { order: 1; }
.store-panel__watermark {
	position: absolute; bottom: -18px; right: 40px; z-index: 0; pointer-events: none;
	font-family: var(--font-heading); font-size: 150px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
	color: rgba(22, 19, 38, 0.035);
}
.store-panel--right .store-panel__watermark { right: auto; left: 40px; }
.store-panel__copy, .store-panel__visual { position: relative; z-index: 1; }
.store-panel--pink .eyebrow { color: var(--pink); }
.store-panel--blue .eyebrow { color: var(--blue); }
.store-panel--green .eyebrow { color: var(--green); }
.store-panel .eyebrow .dot { width: 22px; height: 22px; display: grid; place-items: center; background: currentColor; opacity: 1; position: relative; }
.store-panel .eyebrow .dot { background: transparent; }
.store-panel .eyebrow .dot::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: currentColor; opacity: 0.15; }
.store-panel .eyebrow .dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.store-panel__title { font-size: clamp(26px, 2.6vw, 34px); margin: 14px 0 12px; }
.store-panel__text { margin: 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.store-panel .tag-list { margin-top: 20px; }
.store-panel__visual { position: relative; min-height: 280px; }
.fan { position: relative; height: 280px; }
.fan__item { position: absolute; top: 0; width: 34%; transition: transform var(--dur) var(--ease); }
.fan__item--0 { left: 0; transform: rotate(-10deg) translateY(30px); z-index: 1; }
.fan__item--1 { left: 24%; transform: rotate(-4deg) translateY(6px); z-index: 2; }
.fan__item--2 { left: 46%; transform: rotate(3deg) translateY(2px); z-index: 3; }
.fan__item--3 { left: 67%; transform: rotate(9deg) translateY(28px); z-index: 4; }
.store-panel--right .fan__item--0 { z-index: 4; }
.store-panel--right .fan__item--3 { z-index: 1; }
.product-card--fan { border: 4px solid #fff; box-shadow: var(--shadow-lg); border-radius: 14px; }
.product-card--fan:hover { transform: none; }
.product-card--fan .product-card__title { font-size: 12px; }
.product-card--fan .product-card__price { font-size: 12px; }
.product-card--fan .product-card__body { padding: 10px 10px 12px; }
.product-card--fan .product-card__media { aspect-ratio: 4 / 4.2; }
.chip--fan { bottom: -18px; left: 22%; transform: rotate(-2deg); }
.store-panel--right .chip--fan { left: auto; right: 22%; }

/* 11. Reviews
   ------------------------------------------------------------------------ */
.reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.reviews-col { display: flex; flex-direction: column; gap: 20px; }
.rating-card {
	padding: 28px 24px 24px; border-radius: 18px; color: #fff;
	background: linear-gradient(160deg, #2b1a6e 0%, #16102f 60%, #100b22 100%);
	box-shadow: var(--shadow-lg);
}
.rating-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.rating-card__score { font-family: var(--font-heading); font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.rating-card__meta { display: flex; flex-direction: column; gap: 4px; }
.rating-card__meta small { font-size: 12px; color: #c9c0ec; }
.rating-bars { display: flex; flex-direction: column; gap: 10px; }
.rating-bars li { display: grid; grid-template-columns: 26px 1fr 22px; align-items: center; gap: 10px; font-size: 11px; color: #c9c0ec; }
.rating-bars__track { height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.rating-bars__track i { display: block; height: 100%; border-radius: 2px; background: var(--gold); }
.rating-bars__count { text-align: right; color: #fff; }
.rating-card__foot { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.rating-card__foot .icon { width: 26px; height: 26px; color: #fff; }
.rating-card__foot span { display: flex; flex-direction: column; }
.rating-card__foot strong { font-size: 12px; }
.rating-card__foot small { font-size: 11px; color: #c9c0ec; }
.review-card { padding: 24px 24px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review-card__who { display: flex; flex-direction: column; gap: 3px; }
.review-card__who strong { font-size: 12px; color: var(--ink); }
.review-card__wp { margin-left: auto; color: #c6c2d6; }
.review-card__wp .icon { width: 18px; height: 18px; }
.review-card__title { font-family: var(--font-body); font-size: 14px; font-weight: 700; letter-spacing: 0; margin-bottom: 8px; }
.review-card__text { margin: 0; font-size: 13px; line-height: 1.65; color: var(--muted); }

/* 12. Pricing
   ------------------------------------------------------------------------ */
.pricing { background: var(--bg-soft); }
.pricing .section-title { font-size: clamp(30px, 3.6vw, 44px); }
.billing-toggle { display: flex; justify-content: center; gap: 4px; width: max-content; margin: 0 auto 44px; padding: 4px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.billing-toggle button { display: inline-flex; align-items: center; padding: 8px 18px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; color: var(--text); transition: background-color var(--dur), color var(--dur); }
.billing-toggle button.is-active { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
.plan { position: relative; padding: 28px 24px 30px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured { margin-top: -16px; padding-top: 44px; color: #c9c0ec; background: linear-gradient(170deg, #2a1873 0%, #150f2c 55%, #0f0b1f 100%); border-color: transparent; box-shadow: var(--shadow-lg); }
.plan--featured:hover { transform: translateY(-6px); }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 6px 14px; border-radius: var(--radius-pill); background: var(--primary); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; box-shadow: var(--shadow-primary); }
.plan__name { font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.plan--featured .plan__name { color: #c9c0ec; }
.plan__price { display: flex; align-items: baseline; gap: 4px; margin: 0 0 10px; color: var(--ink); }
.plan--featured .plan__price { color: #fff; }
.plan__currency { font-size: 16px; font-weight: 700; align-self: center; }
.plan__amount { font-family: var(--font-heading); font-size: 44px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.plan__period { font-size: 12px; color: var(--muted); margin-left: 4px; }
.plan--featured .plan__period { color: #c9c0ec; }
.plan__desc { min-height: 42px; margin: 0 0 20px; font-size: 12.5px; line-height: 1.55; color: var(--muted); }
.plan--featured .plan__desc { color: #c9c0ec; }
.plan__features { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
.plan--featured .plan__features { border-color: rgba(255, 255, 255, 0.1); }
.plan__features li { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.45; color: var(--ink); }
.plan--featured .plan__features li { color: #e8e4f7; }
.plan__features .icon { width: 16px; height: 16px; padding: 3px; border-radius: 50%; flex: none; margin-top: 1px; background: var(--green-soft); color: var(--green); }
.plan__features .icon path { stroke-width: 3; }
.plan--featured .plan__features .icon { background: rgba(255, 255, 255, 0.14); color: #fff; }
.plan__features li.is-off { color: var(--muted); }
.plan__features li.is-off .icon { background: var(--bg-soft); color: #b3b0c4; }
.plan__amount.is-changing { animation: priceSwap 0.35s var(--ease); }
@keyframes priceSwap { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.pricing__note { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin: 44px 0 0; font-size: 13px; color: var(--muted); }
.pricing__note .icon { width: 16px; height: 16px; padding: 3px; border-radius: 50%; background: var(--green-soft); color: var(--green); }
.pricing__note .icon path { stroke-width: 3; }

/* 13. FAQ
   ------------------------------------------------------------------------ */
.faq { background: #fff; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion__item { border-radius: 14px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: border-color var(--dur), background-color var(--dur); }
.accordion__item.is-open { background: #f8f6fe; border-color: #d8cffb; }
.accordion__heading { font-family: var(--font-body); font-size: 14.5px; font-weight: 700; letter-spacing: 0; }
.accordion__trigger { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 22px 24px; text-align: left; color: var(--ink); border-radius: 14px; }
.accordion__item.is-open .accordion__trigger { color: var(--primary); }
.accordion__icon { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); color: var(--ink); flex: none; transition: background-color var(--dur), color var(--dur), transform var(--dur) var(--ease); }
.accordion__icon .icon { font-size: 13px; }
.accordion__icon .icon path { stroke-width: 2.5; }
.accordion__item.is-open .accordion__icon { background: var(--primary); color: #fff; }
.accordion__icon .icon-close, .accordion__item.is-open .accordion__icon .icon-open { display: none; }
.accordion__item.is-open .accordion__icon .icon-close { display: block; }
.accordion__panel { overflow: hidden; }
.accordion__panel.is-animating { transition: height 0.32s var(--ease); }
.accordion__content { padding: 0 24px 22px; font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* 14. CTA
   ------------------------------------------------------------------------ */
.cta { padding: 120px 0; overflow: hidden; background: linear-gradient(90deg, #12102a 0%, #2d1a6b 22%, #4c2bb4 50%, #2a1b47 78%, #3a1d1e 100%); }
.cta__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(40% 60% at 50% 30%, rgba(var(--primary-rgb), 0.45) 0%, transparent 100%); }
.cta .container { position: relative; }
.cta .section-head { margin-bottom: 36px; }
.cta .section-lead { color: #d9d4ec; }
.cta__note { margin: 26px 0 0; text-align: center; font-size: 13px; color: #b0aac8; }

/* 15. Footer
   ------------------------------------------------------------------------ */
.site-footer { padding: 64px 0 36px; background: #0d0a1a; color: #9d97b8; font-size: 13px; }
.footer-widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-widgets .widget-title { font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-widgets ul { display: flex; flex-direction: column; gap: 10px; }
.footer-widgets a { color: #b6b2cc; }
.footer-widgets a:hover { color: #fff; }
.footer-widgets .search-field { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-tagline { max-width: 320px; margin: 22px 0 0; line-height: 1.65; }
.footer-col__title { font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 22px; }
.footer-menu { display: flex; flex-direction: column; gap: 12px; }
.footer-menu a { color: #b6b2cc; transition: color var(--dur); }
.footer-menu a:hover { color: #fff; }
.footer-menu--inline { flex-direction: row; gap: 28px; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.footer-copy { margin: 0; font-size: 12px; }

/* 16. Inner pages
   ------------------------------------------------------------------------ */
.site-main--inner { padding: 72px 0 96px; }
.page-header { margin-bottom: 40px; }
.page-title, .entry-title { font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; }
.entry--list { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--border); }
.entry--list .entry-title { font-size: 28px; }
.entry--list .entry-title a { color: var(--ink); }
.entry-meta { display: flex; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.entry-thumbnail { margin: 24px 0; }
.entry-thumbnail img { border-radius: var(--card-radius); }
.entry-content { font-size: 17px; line-height: 1.75; }
.entry-content h2 { font-size: 30px; margin: 1.6em 0 0.6em; }
.entry-content h3 { font-size: 24px; margin: 1.4em 0 0.5em; }
.entry-content img { border-radius: 12px; }
.entry-content blockquote { margin: 1.5em 0; padding-left: 20px; border-left: 3px solid var(--primary); color: var(--ink); }
.entry-content pre { padding: 18px; border-radius: 12px; background: var(--ink); color: #fff; overflow: auto; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin: 1em 0; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { text-decoration: underline; }
.entry-tags a { display: inline-block; margin: 0 6px 6px 0; padding: 4px 10px; border-radius: 6px; background: var(--bg-soft); font-size: 12px; }
.post-navigation { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.post-navigation .nav-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.pagination .nav-links { display: flex; gap: 8px; }
.pagination .page-numbers { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--border); }
.pagination .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.search-form { display: flex; gap: 8px; max-width: 480px; }
.search-field { flex: 1; padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); font: inherit; }
.error-404 { text-align: center; padding: 40px 0; }
.error-404 .lead { max-width: 520px; margin: 16px auto 28px; color: var(--muted); }
.error-404 .btn-row { justify-content: center; }
.error-404__search { display: flex; justify-content: center; margin-top: 32px; }
.wp-block-image img, .alignwide, .alignfull { max-width: 100%; }
.comment-list { padding: 0; }
.comment-body { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); font: inherit; }
.comment-form .submit { padding: 12px 24px; border-radius: 10px; background: var(--primary); color: #fff; font-weight: 700; border: 0; }
.site-main--woocommerce .woocommerce ul.products li.product a img { border-radius: 14px; }
.site-main--woocommerce .woocommerce a.button, .site-main--woocommerce .woocommerce button.button { border-radius: 10px; background: var(--accent); color: #fff; }

/* 17. Motion & responsive
   ------------------------------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
	[data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1240px) {
	.float-card--watch { right: 0; }
	.chip--br { right: -8px; }
	.chip--bl { left: -8px; }
	.chip--step-tr { right: 0; }
	.chip--step-tl { left: 0; }
	.float-card--style { right: 0; }
	.toast--step1, .toast--step3 { left: 0; right: 0; }
}

@media (max-width: 1080px) {
	.section { padding: 88px 0; }
	.nav-menu { margin-right: 8px; gap: 0; }
	.nav-menu a, .nav-link { padding: 8px 9px; font-size: 13px; }
	.carousel { --cols: 3; }
	.float-card--coat { left: 10px; width: 150px; }
	.float-card--watch { width: 200px; top: 150px; }
	.feature--wide { grid-column: span 6; }
	.feature--anywhere, .feature--styling, .feature--swipe, .feature--resize { grid-column: span 3; }
	.feature--quickview, .feature--wishlist, .feature--pick, .feature--responsive { grid-column: span 3; }
	.step { gap: 40px; }
	.layouts__stage { height: 420px; }
	.layout-win { width: 320px; }
	.store-panel { grid-template-columns: 1fr 1.1fr; padding: 36px; }
	.feature--pick .radio-list { transform: none; }
	.plans { grid-template-columns: repeat(2, 1fr); }
	.plan--featured { margin-top: 0; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.nav-toggle { display: grid; }
	.site-nav {
		position: absolute; left: 0; right: 0; top: 100%;
		flex-direction: column; align-items: stretch; gap: 8px;
		padding: 12px var(--gutter) 20px; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
		display: none;
	}
	.site-nav.is-open { display: flex; }
	.nav-menu { flex-direction: column; align-items: stretch; margin: 0; gap: 2px; }
	.nav-menu a { padding: 12px 10px; font-size: 15px; }
	.site-nav__actions { flex-direction: column; align-items: stretch; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
	.site-nav__actions .btn { width: 100%; }
	.nav-link--strong { text-align: center; }

	.hero { padding: 48px 0 56px; }
	.hero__title { font-size: clamp(38px, 9.5vw, 56px); }
	.hero__lead { font-size: 16px; }
	.hero__proof li { padding: 4px 12px; }
	.hero__window .win__body { padding: 20px 18px; }
	.carousel { --cols: 2; --gap: 12px; }
	.float-card--coat, .float-card--watch, .chip--tr, .chip--br { display: none; }
	.chip--bl { left: 8px; bottom: -14px; }
	.win__url { display: none; }

	.section-title { font-size: clamp(30px, 6.5vw, 40px); }
	.layouts__tabs { grid-template-columns: 1fr; }
	.layouts__tab + .layouts__tab::before { top: 0; bottom: auto; left: 24px; right: 24px; width: auto; height: 1px; }
	.layouts__tab { padding: 22px 24px; }
	.layouts__stage { height: auto; margin-top: 40px; }
	.layout-win { position: relative; width: 100%; max-width: 420px; margin: 0 auto; }
	.layout-win--grid, .layout-win--slider, .layout-win--carousel,
	.layouts__stage[data-active="grid"] .layout-win--grid, .layouts__stage[data-active="grid"] .layout-win--carousel,
	.layouts__stage[data-active="slider"] .layout-win--slider, .layouts__stage[data-active="slider"] .layout-win--carousel { left: auto; right: auto; transform: none; opacity: 1; }
	.layouts__stage .layout-win { display: none; }
	.layouts__stage[data-active="grid"] .layout-win--grid, .layouts__stage[data-active="carousel"] .layout-win--carousel, .layouts__stage[data-active="slider"] .layout-win--slider { display: block; }
	.chip--stage-l, .chip--stage-r { display: none; }
	.layouts { padding-bottom: 100px; }

	.feature-grid { grid-template-columns: 1fr; gap: 16px; }
	.feature, .feature--wide, .feature--anywhere, .feature--styling, .feature--swipe, .feature--resize, .feature--quickview, .feature--wishlist, .feature--pick, .feature--responsive { grid-column: span 1; flex-direction: column; }
	.feature--badges .feature__copy { max-width: none; }
	.feature__visual, .feature--badges .feature__visual, .feature--styling .feature__visual, .feature--anywhere .feature__visual, .feature--swipe .feature__visual, .feature--resize .feature__visual { margin-top: 24px; }
	.badge-demo { width: 180px; margin: 10px auto 20px; }
	.style-demo { margin: 10px auto 24px; }
	.feature--anywhere .feature__visual { width: 100%; }
	.swipe-demo, .resize-demo { margin: 0 auto 12px; }

	.step, .step--reverse { grid-template-columns: 1fr; gap: 36px; margin-top: 64px; }
	.step--reverse .step__copy { order: 1; }
	.step--reverse .step__visual { order: 2; }
	.step__visual { padding: 24px 0 64px; }
	.chip--step-tr, .chip--step-tl { position: static; display: inline-flex; margin-bottom: 14px; transform: none; }
	.float-card--style { display: none; }
	.toast { min-width: 0; left: 0; right: 0; }
	.toast__cursor { display: none; }
	.win--admin .win__body { padding: 16px; }
	.admin-tabs { flex-wrap: wrap; }

	.store__tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding: 4px 4px 12px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
	.store__tabs::-webkit-scrollbar { display: none; }
	.store__tab { flex: none; }
	.store-panel, .store-panel--right { grid-template-columns: 1fr; padding: 28px 22px 60px; gap: 28px; }
	.store-panel--right .store-panel__copy { order: 1; }
	.store-panel--right .store-panel__visual { order: 2; }
	.store-panel__watermark { font-size: 90px; }
	.fan { height: 230px; }
	.fan__item { width: 40%; }
	.fan__item--0 { left: -4%; }
	.fan__item--1 { left: 18%; }
	.fan__item--2 { left: 40%; }
	.fan__item--3 { left: 62%; }
	.store-panel .chip--fan, .store-panel--right .chip--fan { bottom: -38px; left: 50%; right: auto; transform: translateX(-50%); max-width: calc(100% - 8px); white-space: normal; }

	.reviews-grid { grid-template-columns: 1fr; }
	.plans { grid-template-columns: 1fr; }
	.billing-toggle { width: auto; max-width: 320px; }
	.accordion__trigger { padding: 18px 18px; font-size: 14px; }
	.accordion__content { padding: 0 18px 18px; }
	.cta { padding: 88px 0; }
	.btn--xl { width: 100%; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.footer-menu--inline { flex-wrap: wrap; gap: 14px 22px; }
}

@media (max-width: 520px) {
	:root { --gutter: 18px; }
	.section { padding: 72px 0; }
	.hero__title { font-size: clamp(34px, 10.5vw, 44px); }
	.btn-row:not(.btn-row--center) .btn, .hero .btn-row .btn { width: 100%; }
	.hero__proof { flex-direction: column; align-items: center; gap: 6px; }
	.hero__proof li { border-left: 0; }
	.carousel { --cols: 1.25; }
	.carousel__slide { scroll-snap-align: center; }
	.trust__logos { gap: 20px 32px; }
	.trust__logos img { height: 24px; }
	.trust__logos li:nth-child(4) img, .trust__logos li:nth-child(5) img { height: 32px; }
	.feature { padding: 22px 20px; }
	.badge-demo { width: 150px; }
	.badge-demo .badge-demo__b1, .badge-demo .badge-demo__b3 { left: -22px; }
	.badge-demo .badge-demo__b2, .badge-demo .badge-demo__b4 { right: -22px; }
	.fan__item { width: 44%; }
	.fan__item--3 { display: none; }
	.fan__item--0 { left: 0; }
	.fan__item--1 { left: 26%; }
	.fan__item--2 { left: 54%; }
	.step__title { font-size: 26px; }
	.rating-card__score { font-size: 44px; }
	.plan__amount { font-size: 40px; }
}
