@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(../fonts/inter-latin-400-normal.woff2) format("woff2");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url(../fonts/inter-latin-500-normal.woff2) format("woff2");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url(../fonts/inter-latin-600-normal.woff2) format("woff2");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url(../fonts/inter-latin-700-normal.woff2) format("woff2");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: url(../fonts/inter-latin-800-normal.woff2) format("woff2");
}

@font-face {
	font-family: Inter;
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(../fonts/inter-latin-900-normal.woff2) format("woff2");
}

/* -------------------------------------------------------------------------
   1. TOKENS
   ------------------------------------------------------------------------- */
:root {
	--buyt-purple: #7231ff;
	--buyt-purple-hover: #5405ff;
	--buyt-purple-deep: #4a04e0;
	--buyt-yellow: #ffc01d;
	--buyt-yellow-hover: #fab300;
	--buyt-ink: #06070a;

	--buyt-canvas: #f9f9fb;
	--buyt-card: #fff;
	--buyt-muted: #f1f1f4;
	--buyt-muted-fg: #5e626e;
	--buyt-body: #43474f;

	--buyt-ink-05: rgba(6, 7, 10, 0.05);
	--buyt-ink-08: rgba(6, 7, 10, 0.08);
	--buyt-ink-10: rgba(6, 7, 10, 0.1);
	--buyt-ink-12: rgba(6, 7, 10, 0.12);
	--buyt-ink-40: rgba(6, 7, 10, 0.4);
	--buyt-ink-55: rgba(6, 7, 10, 0.55);
	--buyt-purple-12: rgba(114, 49, 255, 0.12);
	--buyt-yellow-20: rgba(255, 192, 29, 0.2);
	--buyt-white-08: rgba(255, 255, 255, 0.08);
	--buyt-white-10: rgba(255, 255, 255, 0.1);
	--buyt-white-12: rgba(255, 255, 255, 0.12);
	--buyt-white-18: rgba(255, 255, 255, 0.18);
	--buyt-white-20: rgba(255, 255, 255, 0.2);
	--buyt-white-22: rgba(255, 255, 255, 0.22);
	--buyt-white-80: rgba(255, 255, 255, 0.8);
	--buyt-white-85: rgba(255, 255, 255, 0.85);
	--buyt-on-dark: #c4c8d0;
	--buyt-on-dark-soft: #9aa0ac;

	--buyt-success: #1fae84;
	--buyt-destructive: #ef4444;

	--buyt-font: "Inter", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, helvetica, arial, sans-serif;
	--buyt-heading-weight: 900;
	--buyt-heading-tracking: -0.025em;

	--buyt-radius: 1.5rem;
	--buyt-radius-card: 20px;
	--buyt-radius-pill: 9999px;

	--buyt-transition: 150ms ease;
}

/* -------------------------------------------------------------------------
   2. KEYFRAMES
   ------------------------------------------------------------------------- */
@keyframes buytPulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.6);
		opacity: 0.35;
	}
}

@keyframes buytFloat {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

/* -------------------------------------------------------------------------
   3. UTILITY CLASS HOOKS
   ------------------------------------------------------------------------- */
.buyt-eyebrow {
	font-family: var(--buyt-font);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 12px;
	color: var(--buyt-purple);
}

.buyt-card {
	background-color: var(--buyt-card);
	border: 1px solid var(--buyt-ink-10);
	border-radius: var(--buyt-radius-card);
}

.buyt-btn-dark {
	background-color: var(--buyt-ink);
	color: #fff;
	border: 1px solid var(--buyt-ink);
	border-radius: var(--buyt-radius-pill);
	font-family: var(--buyt-font);
	font-weight: 700;
	transition: opacity var(--buyt-transition);
}

.buyt-btn-dark:hover {
	opacity: 0.88;
	color: #fff;
}

/* -------------------------------------------------------------------------
   4. LIVE DEALS SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-live-deals {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 24px;
}

.buyt-live-deals__empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 32px;
	color: var(--buyt-muted-fg);
	font-family: var(--buyt-font);
}

/* Search results page */
.buyt-search {
	padding-top: 40px;
}

.buyt-search__form {
	margin-bottom: 32px;
}

.buyt-search__pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
}

.buyt-search__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: 8px;
	font-family: var(--buyt-font);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--buyt-ink);
	background: var(--buyt-surface);
	border: 1.5px solid var(--buyt-border);
	text-decoration: none;
	transition: background var(--buyt-transition), color var(--buyt-transition), border-color var(--buyt-transition);
}

.buyt-search__pagination .page-numbers:hover {
	background: var(--buyt-accent);
	color: #fff;
	border-color: var(--buyt-accent);
}

.buyt-search__pagination .page-numbers.current {
	background: var(--buyt-accent);
	color: #fff;
	border-color: var(--buyt-accent);
}

.buyt-search__pagination .page-numbers:focus-visible {
	outline: 2px solid var(--buyt-accent);
	outline-offset: 2px;
}

.buyt-deal-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
	transition: transform var(--buyt-transition), box-shadow var(--buyt-transition);
}

.buyt-deal-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 48px -24px var(--buyt-ink-10);
}

.buyt-deal-card__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	text-indent: -9999px;
}

.buyt-deal-card__media {
	position: relative;
	height: 168px;
	overflow: hidden;
	background-color: var(--buyt-muted);
}

.buyt-deal-card__media-shine {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.22), transparent 55%);
}

.buyt-deal-card__window {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-ink-55);
	color: #fff;
	font: 700 11px/1 var(--buyt-font);
	letter-spacing: 0.4px;
}

.buyt-deal-card__pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--buyt-yellow);
	animation: buytPulse 2s ease-in-out infinite;
}

.buyt-deal-card__discount {
	position: absolute;
	bottom: 12px;
	right: 12px;
	padding: 6px 12px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-yellow);
	color: var(--buyt-ink);
	font: 900 15px/1 var(--buyt-font);
	letter-spacing: -0.02em;
}

.buyt-deal-card__category {
	position: absolute;
	bottom: 12px;
	left: 14px;
	font: 700 11px/1 var(--buyt-font);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
}

.buyt-deal-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 16px 18px 18px;
	font-family: var(--buyt-font);
}

.buyt-deal-card__head {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 8px;
}

.buyt-deal-card__head-text {
	min-width: 0;
}

.buyt-deal-card__name {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	overflow: hidden;
	font-weight: 800;
	font-size: 17px;
	line-height: 1.2;
	color: var(--buyt-ink);
	letter-spacing: -0.02em;
}

.buyt-deal-card__meta {
	margin-top: 1px;
	font-size: 13px;
	color: var(--buyt-muted-fg);
}

.buyt-deal-card__rating {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px 8px;
	border-radius: 8px;
	background: var(--buyt-muted);
	color: var(--buyt-yellow);
	font: 700 13px/1 var(--buyt-font);
	flex-shrink: 0;
}

.buyt-deal-card__rating span {
	color: var(--buyt-ink);
}

.buyt-deal-card__offer {
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 500;
	color: var(--buyt-body);
	min-height: 40px;
}

.buyt-deal-card__desc {
	margin-top: 4px;
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.4;
	color: rgb(67, 71, 79);
}

.buyt-deal-card__progress {
	margin-top: 14px;
	margin-bottom: 20px;
}

.buyt-deal-card__progress-track {
	height: 5px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-muted);
	overflow: hidden;
}

.buyt-deal-card__progress-fill {
	height: 100%;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-purple);
}

.buyt-deal-card__progress-label {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	color: var(--buyt-muted-fg);
}

.buyt-deal-card__cta {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	margin-top: auto;
	padding: 12px;
	border-radius: var(--buyt-radius-pill);
	text-align: center;
	text-decoration: none;
	font-size: 14px;
}

/* ---- Qoin split-payment badge & block ---- */
.buyt-deal-card__qoin-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px 6px 9px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-yellow);
	color: var(--buyt-ink);
	font: 900 13px/1 var(--buyt-font);
	letter-spacing: -0.01em;
}

.buyt-deal-card__qoin {
	margin-bottom: 14px;
	background: #f6f5fb;
	border: 1px solid rgba(6, 7, 10, 0.06);
	border-radius: 14px;
	padding: 13px 15px;
}

.buyt-deal-card__qoin-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 11px;
}

.buyt-deal-card__qoin-total {
	font-size: 13px;
	font-weight: 700;
	color: var(--buyt-ink);
}

.buyt-deal-card__qoin-pay {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: var(--buyt-purple);
}

.buyt-deal-card__qoin-bar {
	display: flex;
	height: 9px;
	border-radius: var(--buyt-radius-pill);
	overflow: hidden;
	background: #e7e5ef;
}

.buyt-deal-card__qoin-bar-cash {
	background: var(--buyt-ink);
}

.buyt-deal-card__qoin-bar-qoin {
	flex: 1;
	background: var(--buyt-yellow);
}

.buyt-deal-card__qoin-legend {
	display: flex;
	justify-content: space-between;
	margin-top: 9px;
	font-size: 13px;
}

.buyt-deal-card__qoin-cash {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--buyt-body);
	font-weight: 600;
}

.buyt-deal-card__qoin-amount {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--buyt-ink);
	font-weight: 700;
}

.buyt-deal-card__qoin-dot {
	width: 9px;
	height: 9px;
	border-radius: 3px;
	flex-shrink: 0;
}

.buyt-deal-card__qoin-dot--cash {
	background: var(--buyt-ink);
}

.buyt-deal-card__qoin-dot--qoin {
	background: var(--buyt-yellow);
}

/* -------------------------------------------------------------------------
   5. HERO SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-hero,
.buyt-hero * {
	font-family: var(--buyt-font) !important;
}

.buyt-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(150deg, var(--buyt-purple) 0%, var(--buyt-purple-hover) 60%, var(--buyt-purple-deep) 100%);
	padding-top: 62px; /* offset for fixed header */
}

.buyt-hero__blob {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.buyt-hero__blob--tr {
	top: -120px;
	right: -80px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgba(255, 192, 29, 0.22), transparent 70%);
}

.buyt-hero__blob--bl {
	bottom: -160px;
	left: -120px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
}

.buyt-hero__inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: center;
}

@media (max-width: 880px) {

	.buyt-hero__inner {
		grid-template-columns: 1fr;
		padding: 64px 24px 80px;
		gap: 48px;
	}
}

/* ---- Eyebrow pill ---- */
.buyt-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	margin-bottom: 28px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-white-10);
	border: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
}

.buyt-hero__ping {
	position: relative;
	width: 8px;
	height: 8px;
	display: inline-block;
}

.buyt-hero__ping-pulse,
.buyt-hero__ping-core {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--buyt-yellow);
}

.buyt-hero__ping-pulse {
	animation: buytPulse 2s ease-in-out infinite;
}

/* ---- Copy ---- */
.buyt-hero__title {
	margin: 0 0 20px;
	font-size: 64px;
	font-weight: var(--buyt-heading-weight);
	letter-spacing: -0.035em;
	line-height: 0.98;
	color: #fff;
}

.buyt-hero__lede {
	margin: 0 0 32px;
	max-width: 480px;
	font-size: 19px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
}

/* ---- Search bar ---- */
.buyt-hero__search {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 520px;
	padding: 0 10px;
	border-radius: 18px;
	background: var(--buyt-card);
	box-shadow: 0 24px 60px -20px rgba(6, 7, 10, 0.5);
}

.buyt-hero__search-loc {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	padding: 0 10px 0 14px;
	border-right: 1px solid var(--buyt-ink-10);
	color: var(--buyt-purple);
}

.buyt-hero__search .buyt-hero__search-select {
	height: auto !important;
	min-height: 0 !important;
	line-height: 1.2 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	color: var(--buyt-ink) !important;
	padding: 12px 22px 12px 4px !important;
	margin: 0 !important;
	cursor: pointer;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: none !important;
	max-width: 160px;
}

.buyt-hero__search .buyt-hero__search-select:focus-visible {
	outline: 2px solid var(--buyt-purple);
	outline-offset: 2px;
}

.buyt-hero__search .buyt-hero__search-input {
	flex: 1;
	min-width: 0;
	height: auto !important;
	min-height: 0 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 15px !important;
	color: var(--buyt-ink) !important;
	padding: 12px 6px !important;
	margin: 0 !important;
}

.buyt-hero__search .buyt-hero__search-input:focus-visible {
	outline: 2px solid var(--buyt-purple);
	outline-offset: 2px;
	border-radius: 10px;
}

.buyt-hero__search .buyt-hero__search-input::placeholder {
	color: var(--buyt-muted-fg);
	opacity: 1;
}

.buyt-hero__search .buyt-hero__search-btn {
	flex-shrink: 0;
	height: auto !important;
	padding: 13px 26px !important;
	border: none !important;
	border-radius: 12px !important;
	background: var(--buyt-purple) !important;
	color: #fff !important;
	font-weight: 700 !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
	text-shadow: none !important;
	cursor: pointer;
	transition: background var(--buyt-transition);
}

.buyt-hero__search .buyt-hero__search-btn:hover {
	background: var(--buyt-purple-hover) !important;
}


/* ---- Popular chips row ---- */
.buyt-hero__popular {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 22px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.72);
}

.buyt-hero__popular-item {
	font-weight: 600;
	color: #fff;
}

.buyt-hero__popular-sep {
	opacity: 0.4;
}

/* ---- Featured floating card stack ---- */
.buyt-hero__featured {
	position: relative;
	justify-self: center;
}

.buyt-hero__featured-shadow {
	position: absolute;
	top: 28px;
	left: -28px;
	width: 220px;
	height: 150px;
	border-radius: 18px;
	background: linear-gradient(135deg, #c98a3c, #8a5a1f);
	box-shadow: 0 30px 60px -24px var(--buyt-ink-40);
	opacity: 0.65;
	transform: rotate(-5deg);
}

.buyt-hero__featured-stack {
	position: relative;
	width: 320px;
	height: 315px;
}

.buyt-hero__featured-card {
	position: absolute;
	top: 0;
	left: 0;
	width: 320px;
	padding: 16px;
	border-radius: 22px;
	background: var(--buyt-card);
	box-shadow: 0 40px 80px -30px rgba(6, 7, 10, 0.65);
	opacity: 0;
	transform: translateY(20px) scale(0.9);
	transition: opacity 0.5s ease, transform 0.5s ease;
	animation: none;
	z-index: 1;
	pointer-events: none;
}

.buyt-hero__featured-card.is-next {
	opacity: 0.45;
	transform: translateY(14px) scale(0.96);
	z-index: 2;
}

.buyt-hero__featured-card.is-active {
	opacity: 1;
	transform: none;
	z-index: 3;
	animation: buytFloat 6s 0.5s ease-in-out infinite;
	pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

	.buyt-hero__featured-card.is-active {
		animation: none;
	}
}

.buyt-hero__featured-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.buyt-hero__featured-media {
	position: relative;
	height: 168px;
	margin-bottom: 14px;
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(135deg, #8b54ff, var(--buyt-purple-hover));
	background-size: cover;
	background-position: center;
}

.buyt-hero__featured-shine {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.25), transparent 55%);
}

.buyt-hero__featured-window {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 10px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-ink-55);
	color: #fff;
	font: 700 11px/1 var(--buyt-font);
	letter-spacing: 0.5px;
}

.buyt-hero__featured-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--buyt-yellow);
	animation: buytPulse 2s ease-in-out infinite;
}

.buyt-hero__featured-discount {
	position: absolute;
	bottom: 12px;
	right: 12px;
	padding: 6px 12px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-yellow);
	color: var(--buyt-ink);
	font: 900 15px/1 var(--buyt-font);
	letter-spacing: -0.02em;
}

.buyt-hero__featured-qoin-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 6px 12px 6px 9px;
	border-radius: var(--buyt-radius-pill);
	background: var(--buyt-yellow);
	color: var(--buyt-ink);
	font: 900 13px/1 var(--buyt-font);
	letter-spacing: -0.01em;
}

.buyt-hero__featured-qoin {
	margin-top: 12px;
}

.buyt-hero__featured-head {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 8px;
}

.buyt-hero__featured-head-text {
	min-width: 0;
}

.buyt-hero__featured-name {
	font-weight: 800;
	font-size: 17px;
	color: var(--buyt-ink);
	letter-spacing: -0.02em;
}

.buyt-hero__featured-meta {
	margin-top: 2px;
	font-size: 13px;
	color: var(--buyt-muted-fg);
}

.buyt-hero__featured-rating {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	flex-shrink: 0;
	padding: 4px 8px;
	border-radius: 8px;
	background: var(--buyt-muted);
	color: var(--buyt-yellow);
	font: 700 13px/1 var(--buyt-font);
}

.buyt-hero__featured-rating span {
	color: var(--buyt-ink);
}

.buyt-hero__featured-offer {
	margin-top: 10px;
	font-size: 14px;
	font-weight: 500;
	color: var(--buyt-body);
}


/* -------------------------------------------------------------------------
   6. DEALS SECTION SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-deals {
	max-width: 1200px;
	margin: 0 auto;
	padding: 72px 32px 24px;
	font-family: var(--buyt-font);
}

/* ---- Section header row ---- */
.buyt-deals__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}

/* ---- Eyebrow ---- */
.buyt-deals__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--buyt-purple);
}

/* ---- H2 + count ---- */
.buyt-deals .buyt-deals__title {
	margin: 0;
	font-family: var(--buyt-font) !important;
	font-size: 41.6px;
	font-weight: 900 !important;
	letter-spacing: -0.03em;
	color: var(--buyt-ink);
	line-height: 1;
}

.buyt-deals__count {
	margin: 10px 0 0;
	font-size: 16px;
	color: var(--buyt-muted-fg);
	font-family: var(--buyt-font);
}

/* ---- Sort control ---- */
.buyt-deals__sort {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.buyt-deals__sort-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--buyt-muted-fg);
}

.buyt-deals .buyt-deals__sort-select {
	width: auto !important;
	height: auto !important;
	min-height: 0 !important;
	line-height: 1.2 !important;
	margin: 0 !important;
	border: 1px solid var(--buyt-ink-08) !important;
	background-color: var(--buyt-card) !important;
	/* stylelint-disable-next-line function-url-quotes, max-line-length */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2306070a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
	background-repeat: no-repeat !important;
	background-position: right 14px center !important;
	box-shadow: none !important;
	border-radius: var(--buyt-radius-pill) !important;
	padding: 10px 38px 10px 16px !important;
	font-family: var(--buyt-font) !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	color: var(--buyt-ink) !important;
	cursor: pointer;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
}

.buyt-deals .buyt-deals__sort-select:focus-visible {
	outline: 2px solid var(--buyt-purple);
	outline-offset: 2px;
}

/* ---- Filter row (chips + sort) ---- */
.buyt-deals__filter-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}

/* ---- Category chips ---- */
.buyt-deals__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 32px;
}

.buyt-deals__filter-row .buyt-deals__chips {
	margin-bottom: 0;
}

.buyt-deals-chip {
	display: inline-block;
	padding: 9px 18px;
	border-radius: var(--buyt-radius-pill);
	border: 1px solid var(--buyt-ink-08);
	background: var(--buyt-card);
	color: var(--buyt-body);
	font-family: var(--buyt-font);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background var(--buyt-transition), border-color var(--buyt-transition), color var(--buyt-transition);
}

.buyt-deals-chip:hover {
	background: var(--buyt-muted);
	border-color: var(--buyt-ink-10);
}

.buyt-deals-chip--active {
	background: var(--buyt-ink);
	border-color: var(--buyt-ink);
	color: #fff;
}

.buyt-deals-chip--active:hover {
	background: var(--buyt-ink);
	opacity: 0.88;
	color: #fff;
}

/* ---- Show more footer ---- */
.buyt-deals__footer {
	text-align: center;
	margin-top: 40px;
}

.buyt-deals__more {
	display: inline-block;
	text-decoration: none;
	background: transparent;
	color: var(--buyt-ink);
	border: 1px solid var(--buyt-ink-08);
	font-family: var(--buyt-font);
	font-weight: 700;
	font-size: 15px;
	padding: 13px 28px;
	border-radius: var(--buyt-radius-pill);
	transition: background var(--buyt-transition);
}

.buyt-deals__more:hover {
	background: var(--buyt-muted);
	color: var(--buyt-ink);
}

.buyt-deals__more[hidden] {
	display: none;
}

/* -------------------------------------------------------------------------
   7. HOW IT WORKS SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-how {
	max-width: 1200px;
	margin: 0 auto;
	padding: 72px 32px;
	font-family: var(--buyt-font);
}

.buyt-how__head {
	text-align: center;
	margin-bottom: 48px;
}

.buyt-how__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--buyt-purple);
}

.buyt-how .buyt-how__title {
	margin: 12px 0 0;
	font-family: var(--buyt-font) !important;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: 900 !important;
	letter-spacing: -0.03em;
	color: var(--buyt-ink);
	line-height: 1;
}

.buyt-how__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.buyt-how__card {
	background: var(--buyt-card);
	border: 1px solid var(--buyt-ink-08);
	border-radius: var(--buyt-radius-card);
	padding: 32px;
}

.buyt-how__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	border-radius: 14px;
	background: var(--buyt-purple-12);
	color: var(--buyt-purple);
}

.buyt-how__num {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--buyt-purple);
}

.buyt-how .buyt-how__card-title {
	margin: 0 0 8px;
	font-family: var(--buyt-font) !important;
	font-size: 20px;
	font-weight: 800 !important;
	letter-spacing: -0.02em;
	color: var(--buyt-ink);
}

.buyt-how__card-copy {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--buyt-body);
}

/* -------------------------------------------------------------------------
   8. STATS BAND SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-stats {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 32px 72px;
	font-family: var(--buyt-font);
}

.buyt-stats__band {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 32px;
	padding: 56px 40px;
	background: var(--buyt-ink);
	border-radius: 24px;
}

.buyt-stats__item {
	text-align: center;
}

.buyt-stats__value {
	font-size: 48px;
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--buyt-yellow);
}

.buyt-stats__label {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--buyt-on-dark);
}

/* -------------------------------------------------------------------------
   9. FOR BUSINESS BAND SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-business {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px 72px;
	font-family: var(--buyt-font);
}

.buyt-business__band {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
	overflow: hidden;
	padding: 56px 48px;
	background: linear-gradient(135deg, var(--buyt-purple), var(--buyt-purple-hover));
	border-radius: 24px;
	color: #fff;
}

.buyt-business__blob {
	position: absolute;
	top: -80px;
	right: -40px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--buyt-yellow-20), transparent 70%);
}

.buyt-business__main {
	position: relative;
}

.buyt-business__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--buyt-white-80);
}

.buyt-business .buyt-business__title {
	margin: 12px 0 14px;
	font-family: var(--buyt-font) !important;
	font-size: clamp(1.8rem, 2.8vw, 2.4rem);
	font-weight: 900 !important;
	letter-spacing: -0.03em;
	line-height: 1.02;
	color: #fff;
}

.buyt-business__copy {
	margin: 0 0 28px;
	max-width: 460px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--buyt-white-85);
}

.buyt-business__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.buyt-business__btn {
	text-decoration: none;
	font-weight: 700;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: var(--buyt-radius-pill);
	transition: background var(--buyt-transition);
}

.buyt-business__btn--primary {
	background: var(--buyt-yellow);
	color: var(--buyt-ink);
	font-weight: 800;
}

.buyt-business__btn--primary:hover {
	background: var(--buyt-yellow-hover);
	color: var(--buyt-ink);
}

.buyt-business__btn--ghost {
	background: var(--buyt-white-12);
	color: #fff;
	border: 1px solid var(--buyt-white-22);
}

.buyt-business__btn--ghost:hover {
	background: var(--buyt-white-20);
	color: #fff;
}

.buyt-business__stats {
	position: relative;
	display: grid;
	gap: 14px;
}

.buyt-business__stat {
	padding: 18px 20px;
	background: var(--buyt-white-12);
	border: 1px solid var(--buyt-white-18);
	border-radius: 16px;
}

.buyt-business__stat-value {
	font-size: 30px;
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--buyt-yellow);
}

.buyt-business__stat-label {
	margin-top: 2px;
	font-size: 13px;
	color: var(--buyt-white-80);
}

/* ---- Responsive ---- */
@media (max-width: 880px) {

	.buyt-business__band {
		grid-template-columns: 1fr;
	}
}

/* -------------------------------------------------------------------------
   10. FOOTER SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-footer {
	background: var(--buyt-ink);
	color: #fff;
	font-family: var(--buyt-font);
}

.buyt-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 32px 40px;
}

.buyt-footer__logo {
	display: block;
	height: 28px !important;
	margin-bottom: 18px;
}

.buyt-footer__blurb {
	margin: 0;
	max-width: 280px;
	font-size: 15px;
	line-height: 1.6;
	color: var(--buyt-on-dark-soft);
}

.buyt-footer__col-title {
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--buyt-muted-fg);
}

.buyt-footer__links {
	display: grid;
	gap: 12px;
}

.buyt-footer__link {
	text-decoration: none;
	font-size: 15px;
	color: var(--buyt-on-dark);
	transition: color var(--buyt-transition);
}

.buyt-footer__link:hover {
	color: #fff;
}

.buyt-footer__bottom {
	border-top: 1px solid var(--buyt-white-08);
}

.buyt-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 22px 32px;
}

.buyt-footer__legal,
.buyt-footer__tagline {
	font-size: 13px;
	color: var(--buyt-muted-fg);
}

/* ---- Responsive ---- */
@media (max-width: 880px) {

	.buyt-footer__top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {

	.buyt-footer__top {
		grid-template-columns: 1fr;
	}
}

/* -------------------------------------------------------------------------
   11. HEADER SHORTCODE
   ------------------------------------------------------------------------- */
.buyt-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--buyt-canvas);
	border-bottom: 1px solid var(--buyt-ink-08);
	font-family: var(--buyt-font);
	transition: background var(--buyt-transition), border-color var(--buyt-transition), box-shadow var(--buyt-transition);
}

.buyt-header.is-scrolled {
	box-shadow: 0 1px 24px rgba(6, 7, 10, 0.06);
}

/* Offset for the WordPress admin bar so the fixed header is not hidden. */
.admin-bar .buyt-header {
	top: 32px;
}

@media screen and (max-width: 782px) {

	.admin-bar .buyt-header {
		top: 46px;
	}
}

.buyt-header__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 14px 32px;
}

.buyt-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.buyt-header__logo img {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: block;
}

.buyt-header__wordmark {
	font-weight: 900;
	font-size: 22px;
	letter-spacing: -0.04em;
	color: var(--buyt-ink);
}

.buyt-header__dot {
	color: var(--buyt-yellow);
}

.buyt-header__nav {
	display: flex;
	align-items: center;
	gap: 28px;
	flex: 1;
}

.buyt-header__nav-link {
	text-decoration: none;
	color: var(--buyt-body);
	font-weight: 600;
	font-size: 15px;
	transition: color var(--buyt-transition);
}

.buyt-header__nav-link:hover {
	color: var(--buyt-purple);
}

.buyt-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.buyt-header__login {
	text-decoration: none;
	color: var(--buyt-ink);
	font-weight: 700;
	font-size: 15px;
	transition: color var(--buyt-transition);
}

.buyt-header__login:hover {
	color: var(--buyt-purple);
}

.buyt-header__signup {
	text-decoration: none;
	background: var(--buyt-purple);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	padding: 11px 22px;
	border-radius: var(--buyt-radius-pill);
	transition: background var(--buyt-transition);
}

.buyt-header__signup:hover {
	background: var(--buyt-purple-hover);
	color: #fff;
}

/* Account menu (logged-in) */
.buyt-header__account {
	position: relative;
}

.buyt-header__account-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--buyt-canvas);
	border: 1px solid var(--buyt-ink-12);
	border-radius: var(--buyt-radius-pill);
	padding: 5px 12px 5px 5px;
	cursor: pointer;
	transition: box-shadow var(--buyt-transition);
}

.buyt-header__account-btn:hover {
	box-shadow: 0 4px 16px -6px rgba(6, 7, 10, 0.25);
}

.buyt-header__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--buyt-purple);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.02em;
}

.buyt-header__account-caret {
	color: var(--buyt-muted-fg);
}

.buyt-header__menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	z-index: 61;
	width: 240px;
	padding: 8px;
	background: var(--buyt-canvas);
	border: 1px solid var(--buyt-ink-10);
	border-radius: 18px;
	box-shadow: 0 24px 60px -20px rgba(6, 7, 10, 0.35);
}

.buyt-header__menu-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--buyt-ink);
	font-weight: 600;
	font-size: 15px;
	transition: background var(--buyt-transition), color var(--buyt-transition);
}

.buyt-header__menu-item:hover {
	background: var(--buyt-purple-12);
	color: var(--buyt-purple);
}

.buyt-header__menu-item--logout {
	color: var(--buyt-muted-fg);
}

.buyt-header__menu-item--logout:hover {
	background: var(--buyt-ink-05);
	color: var(--buyt-ink);
}

.buyt-header__menu-divider {
	height: 1px;
	margin: 8px 6px;
	background: var(--buyt-ink-08);
}

/* Nav links inside the account dropdown — mobile only */
.buyt-header__menu-nav {
	display: none;
}

/* Burger button — hidden on desktop */
.buyt-header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 6px;
	background: none;
	border: none;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: auto;
}

.buyt-header__burger span {
	display: block;
	height: 2px;
	background: var(--buyt-ink);
	border-radius: 2px;
	transition: transform var(--buyt-transition), opacity var(--buyt-transition);
}

.buyt-header__burger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.buyt-header__burger.is-open span:nth-child(2) {
	opacity: 0;
}

.buyt-header__burger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.buyt-header__mobile-nav {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 12px 24px 20px;
	border-top: 1px solid var(--buyt-ink-08);
}

.buyt-header__mobile-link {
	text-decoration: none;
	color: var(--buyt-body);
	font-weight: 600;
	font-size: 16px;
	padding: 10px 0;
}

.buyt-header__mobile-link:hover {
	color: var(--buyt-purple);
}

.buyt-header__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 12px;
}

.buyt-header__mobile-actions .buyt-header__signup {
	text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {

	.buyt-header__nav,
	.buyt-header__actions {
		display: none;
	}

	.buyt-header__burger {
		display: flex;
	}

	.buyt-header__mobile-nav:not([hidden]) {
		display: flex;
	}

	/* Logged in: the account pill replaces the burger + mobile nav */
	.buyt-header--auth .buyt-header__actions {
		display: flex;
		margin-left: auto;
	}

	.buyt-header--auth .buyt-header__burger,
	.buyt-header--auth .buyt-header__mobile-nav {
		display: none;
	}

	.buyt-header--auth .buyt-header__menu-nav {
		display: block;
	}
}

/* -------------------------------------------------------------------------
   12. MOBILE FIXES (≤ 480px)
   ------------------------------------------------------------------------- */
@media (max-width: 480px) {

	/* Hero: extra bottom room so the card stack clears the edge */
	.buyt-hero__inner {
		padding-bottom: 120px;
	}

	/* Search bar (hero + deals): shrink location dropdown for input */
	.buyt-hero__search-loc {
		padding: 0 6px 0 10px;
	}

	.buyt-hero__search .buyt-hero__search-select {
		max-width: 80px !important;
		font-size: 13px !important;
		padding: 12px 8px 12px 4px !important;
	}

	.buyt-hero__search .buyt-hero__search-input {
		font-size: 13px !important;
	}

	.buyt-hero__search .buyt-hero__search-btn {
		padding: 13px 16px !important;
		font-size: 13px !important;
	}
}


/* -------------------------------------------------------------------------
   PRODUCT / DEAL DETAIL PAGE
   ------------------------------------------------------------------------- */

/* Suppress the Listeo/Dokan store titlebar + breadcrumb on single products. */
body.single-product .store-titlebar,
body.single-product .single-product-titlebar,
body.single-product .dokan-store-tabs,
body.single-product .woocommerce-breadcrumb {
	display: none !important;
}

.buyt-product {
	color: var(--buyt-body);
	text-align: left !important;
	width: 100%;
	background: transparent !important;
}

/* Force the brand font over the Elementor/theme font on the whole component. */
.buyt-product,
.buyt-product * {
	font-family: var(--buyt-font) !important;
}

/* Neutralise inherited centring from the Elementor/theme shortcode wrapper. */
.elementor-widget-shortcode .buyt-product,
.elementor-shortcode .buyt-product,
.buyt-product .buyt-product__inner,
.buyt-product .buyt-product__main,
.buyt-product .buyt-product__section,
.buyt-product .buyt-product__header,
.buyt-product .buyt-product__title,
.buyt-product .buyt-product__h2,
.buyt-product .buyt-product__blurb,
.buyt-product .buyt-product__col,
.buyt-product .buyt-product__eyebrow,
.buyt-product .buyt-product__fineprint {
	text-align: left !important;
}

/* Strip any theme/Elementor background applied to the wrapped sections. */
.buyt-product .buyt-product__inner,
.buyt-product .buyt-product__main,
.buyt-product .buyt-product__section,
.buyt-product .buyt-product__header,
.buyt-product .buyt-product__col {
	background: transparent !important;
	box-shadow: none !important;
}

/*
 * Force the immediate Elementor/theme shortcode wrapper transparent so the
 * component sits flush on the page background. Scoped to wrappers that contain
 * the product component so other shortcodes are unaffected.
 */
.elementor-widget-shortcode:has(> .elementor-widget-container > .buyt-product),
.elementor-widget-shortcode:has(> .elementor-widget-container > .buyt-product) > .elementor-widget-container,
.elementor-shortcode:has(> .buyt-product) {
	background: transparent !important;
	box-shadow: none !important;
	padding: 0 !important;
	border: 0 !important;
}

.buyt-product__inner {
	max-width: 1120px;
	margin: 0 auto;
	padding: 28px 32px 80px;
}

.buyt-product__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.buyt-product__breadcrumb {
	font-size: 13px;
	font-weight: 600;
	color: var(--buyt-muted-fg);
}

.buyt-product__back {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
	padding: 9px 16px;
	background: var(--buyt-card);
	color: var(--buyt-ink);
	border: 1px solid var(--buyt-ink-12);
	border-radius: var(--buyt-radius-pill);
	font-family: var(--buyt-font);
	font-weight: 700;
	font-size: 13px;
	text-decoration: none;
	transition: background var(--buyt-transition);
}

.buyt-product__back:hover,
.buyt-product__back:focus {
	background: var(--buyt-ink-05);
	color: var(--buyt-ink);
}

.buyt-product__back svg {
	flex-shrink: 0;
}

.buyt-product__breadcrumb-link {
	color: var(--buyt-purple);
	text-decoration: none;
}

.buyt-product__breadcrumb-sep {
	margin: 0 8px;
	opacity: 0.5;
}

.buyt-product__breadcrumb-current {
	color: var(--buyt-ink);
}

.buyt-product__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 36px;
	align-items: start;
}

.buyt-product__cover {
	position: relative;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	background: linear-gradient(135deg, #8b54ff, var(--buyt-purple-hover));
}

.buyt-product__cover-shine {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.22), transparent 55%);
}

.buyt-product__cover-window {
	position: absolute;
	top: 18px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--buyt-ink-55);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.5px;
	padding: 7px 14px;
	border-radius: var(--buyt-radius-pill);
}

.buyt-product__pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--buyt-yellow);
	animation: buytPulse 2s ease-in-out infinite;
}

.buyt-product__pulse--dark {
	width: 7px;
	height: 7px;
	background: var(--buyt-ink);
}

.buyt-product__cover-qoin {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--buyt-yellow);
	color: var(--buyt-ink);
	font-weight: 900;
	font-size: 15px;
	padding: 8px 15px;
	border-radius: var(--buyt-radius-pill);
}

.buyt-product__cover-cat {
	position: absolute;
	bottom: 18px;
	left: 20px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--buyt-white-85);
}

.buyt-product__header {
	margin-top: 28px;
}

.buyt-product__title {
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: var(--buyt-heading-weight) !important;
	letter-spacing: -0.03em;
	color: var(--buyt-ink);
	margin: 0;
	line-height: 1.02;
}

.buyt-product__meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 12px;
	flex-wrap: wrap;
	font-size: 15px;
	font-weight: 600;
	color: var(--buyt-body);
}

.buyt-product__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.buyt-product__meta-item svg {
	flex-shrink: 0;
}

.buyt-product__meta-item--place svg {
	stroke: var(--buyt-purple);
}

.buyt-product__meta-item--rating strong {
	color: var(--buyt-ink);
}

.buyt-product__verified {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--buyt-success);
	background: rgba(31, 174, 132, 0.1);
	padding: 5px 11px;
	border-radius: var(--buyt-radius-pill);
}

.buyt-product__section {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid var(--buyt-ink-08);
}

.buyt-product__h2 {
	font-size: 20px;
	font-weight: 800 !important;
	letter-spacing: -0.02em;
	color: var(--buyt-ink);
	margin: 0 0 14px;
}

.buyt-product__blurb {
	font-size: 17px;
	line-height: 1.6;
	color: var(--buyt-body);
	margin: 0 0 18px;
}

.buyt-product__blurb > :first-child {
	margin-top: 0;
}

.buyt-product__blurb > :last-child {
	margin-bottom: 0;
}

.buyt-product__blurb p {
	margin: 0 0 12px;
}

.buyt-product__blurb ul,
.buyt-product__blurb ol {
	margin: 0 0 12px;
	padding-left: 1.35em;
}

.buyt-product__blurb ul {
	list-style: disc;
}

.buyt-product__blurb ol {
	list-style: decimal;
}

.buyt-product__blurb li {
	margin: 0 0 6px;
}

.buyt-product__blurb a {
	color: var(--buyt-purple);
	text-decoration: underline;
}

.buyt-product__blurb strong,
.buyt-product__blurb b {
	font-weight: 700;
}

.buyt-product__blurb em,
.buyt-product__blurb i {
	font-style: italic;
}

.buyt-product__included {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.buyt-product__included-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.buyt-product__included-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--buyt-ink);
}

.buyt-product__check {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--buyt-purple-12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--buyt-purple);
}

.buyt-product__cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.buyt-product__eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--buyt-purple);
	margin-bottom: 12px;
}

.buyt-product__hours {
	display: grid;
	gap: 9px;
}

.buyt-product__hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
}

.buyt-product__hours-day {
	color: var(--buyt-body);
	font-weight: 600;
}

.buyt-product__hours-time {
	color: var(--buyt-ink);
	font-weight: 600;
}

.buyt-product__fineprint {
	margin: 0;
	padding-left: 18px;
	display: grid;
	gap: 8px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--buyt-body);
}

.buyt-product__where {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 600;
	color: var(--buyt-body);
}

.buyt-product__where-pin {
	flex-shrink: 0;
	margin-top: 2px;
	stroke: var(--buyt-purple);
}

.buyt-product__map {
	position: relative;
	height: 220px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, #eceaf6, #e2eef0);
	border: 1px solid var(--buyt-ink-08);
}

.buyt-product__map-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.buyt-product__map-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--buyt-purple-12) 1px, transparent 1px),
		linear-gradient(90deg, var(--buyt-purple-12) 1px, transparent 1px);
	background-size: 34px 34px;
}

.buyt-product__map-pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%);
	display: block;
	line-height: 0;
}

.buyt-product__reviews-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.buyt-product__reviews-head .buyt-product__h2 {
	margin: 0;
}

.buyt-product__reviews-score {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 15px;
	font-weight: 600;
	color: var(--buyt-body);
}

.buyt-product__reviews-score svg {
	flex-shrink: 0;
}

.buyt-product__reviews-score strong {
	color: var(--buyt-ink);
}

.buyt-product__reviews {
	display: grid;
	gap: 14px;
}

.buyt-product__review {
	background: var(--buyt-card);
	border: 1px solid var(--buyt-ink-08);
	border-radius: 16px;
	padding: 18px 20px;
}

.buyt-product__review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.buyt-product__review-name {
	font-weight: 700;
	font-size: 15px;
	color: var(--buyt-ink);
}

.buyt-product__review-when {
	font-size: 13px;
	color: var(--buyt-on-dark-soft);
}

.buyt-product__review-text {
	font-size: 15px;
	line-height: 1.55;
	color: var(--buyt-body);
	margin: 0;
}

.buyt-product__aside {
	position: sticky;
	top: 120px;
}

.buyt-product__panel {
	background: var(--buyt-card);
	border: 1px solid var(--buyt-ink-10);
	border-radius: 22px;
	padding: 24px;
	box-shadow: 0 24px 60px -30px rgba(6, 7, 10, 0.35);
}

.buyt-product__panel-window {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--buyt-yellow-20);
	border: 1px solid rgba(255, 192, 29, 0.5);
	padding: 6px 12px;
	border-radius: var(--buyt-radius-pill);
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 800;
	color: var(--buyt-ink);
}

.buyt-product__panel-total {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.buyt-product__panel-price {
	font-size: 40px;
	font-weight: 900;
	letter-spacing: -0.03em;
	color: var(--buyt-ink);
}

.buyt-product__panel-price del {
	font-size: 22px;
	font-weight: 700;
	color: var(--buyt-muted-fg);
}

.buyt-product__panel-total-label {
	font-size: 15px;
	color: var(--buyt-muted-fg);
	font-weight: 600;
}

.buyt-product__split {
	margin-top: 18px;
	background: #f6f5fb;
	border: 1px solid rgba(6, 7, 10, 0.06);
	border-radius: 16px;
	padding: 16px 18px;
}

.buyt-product__split-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 12px;
}

.buyt-product__split-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--buyt-ink);
}

.buyt-product__split-pct {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 13px;
	font-weight: 700;
	color: var(--buyt-purple);
}

.buyt-product__split-pct svg {
	flex-shrink: 0;
}

.buyt-product__split-bar {
	display: flex;
	height: 11px;
	border-radius: var(--buyt-radius-pill);
	overflow: hidden;
	background: #e7e5ef;
}

.buyt-product__split-bar-cash {
	background: var(--buyt-ink);
}

.buyt-product__split-bar-qoin {
	flex: 1;
	background: var(--buyt-yellow);
}

.buyt-product__split-legend {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
}

.buyt-product__split-leg--right {
	text-align: right;
}

.buyt-product__split-leg-label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--buyt-muted-fg);
}

.buyt-product__split-dot {
	width: 9px;
	height: 9px;
	border-radius: 3px;
}

.buyt-product__split-dot--cash {
	background: var(--buyt-ink);
}

.buyt-product__split-dot--qoin {
	background: var(--buyt-yellow);
}

.buyt-product__split-leg-amount {
	display: block;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--buyt-ink);
	margin-top: 3px;
}

.buyt-product__buy {
	margin-top: 18px;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	background: var(--buyt-purple) !important;
	color: #fff !important;
	border: none !important;
	text-decoration: none;
	font-family: var(--buyt-font);
	font-weight: 800;
	font-size: 16px;
	padding: 16px;
	border-radius: var(--buyt-radius-pill) !important;
	cursor: pointer;
	transition: background var(--buyt-transition);
}

.buyt-product__buy:hover,
.buyt-product__buy:focus {
	background: var(--buyt-purple-hover) !important;
	color: #fff !important;
}

.buyt-product__buy svg {
	flex-shrink: 0;
}

/* Mobile sticky Buy-now bar — hidden on desktop, shown at <= 900px. */
.buyt-product__mobile-bar {
	display: none;
}

.buyt-product__mobile-buy {
	margin-top: 0;
}

.buyt-product__actions {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.buyt-product__action {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	background: var(--buyt-card);
	color: var(--buyt-ink);
	border: 1px solid var(--buyt-ink-12);
	font-family: var(--buyt-font);
	font-weight: 700;
	font-size: 14px;
	padding: 11px;
	border-radius: var(--buyt-radius-pill);
	cursor: pointer;
	transition: background var(--buyt-transition);
}

.buyt-product__action:hover {
	background: var(--buyt-ink-05);
}

.buyt-product__share {
	position: relative;
	flex: 1;
	display: flex;
}

.buyt-product__share .buyt-product__action {
	flex: 1;
}

.buyt-product__share-menu {
	position: absolute;
	bottom: calc(100% + 8px);
	right: 0;
	min-width: 180px;
	background: var(--buyt-card);
	border: 1px solid var(--buyt-ink-12);
	border-radius: var(--buyt-radius-md, 14px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
	padding: 6px;
	z-index: 20;
}

.buyt-product__share-menu[hidden] {
	display: none;
}

.buyt-product__share-item {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 9px 10px;
	border: 0;
	background: transparent;
	color: var(--buyt-ink);
	font-family: var(--buyt-font);
	font-weight: 600;
	font-size: 14px;
	text-align: left;
	text-decoration: none;
	border-radius: var(--buyt-radius-sm, 10px);
	cursor: pointer;
}

.buyt-product__share-item:hover {
	background: var(--buyt-ink-05);
}

.buyt-product__share-item svg {
	flex-shrink: 0;
}

.buyt-product__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	font-size: 13px;
	color: var(--buyt-on-dark-soft);
	margin-top: 12px;
}

.buyt-product__secure-lock {
	flex-shrink: 0;
}

@media (max-width: 900px) {

	/* Extra bottom room so the sticky bar never covers the last content. */
	.buyt-product__inner {
		padding: 20px 20px 96px;
	}

	.buyt-product__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.buyt-product__cols {
		grid-template-columns: 1fr;
	}

	.buyt-product__aside {
		position: static;
	}

	.buyt-product__mobile-bar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 40;
		display: block;
		padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 255, 255, 0.92);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-top: 1px solid var(--buyt-ink-10);
		box-shadow: 0 -8px 24px -18px rgba(6, 7, 10, 0.5);
		transition: transform 220ms ease, opacity 220ms ease;
	}

	/* Auto-hidden (via JS) once the claim panel scrolls into view. */
	.buyt-product__mobile-bar.is-hidden {
		transform: translateY(120%);
		opacity: 0;
		pointer-events: none;
	}
}

