.hero {
	position: relative;
	background:
		linear-gradient(rgba(0, 0, 0, 0.01), var(--shadow-overlay)),
		url("/images/hero1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--color-white);
	padding: 420px 160px 40px;
	text-align: center;
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	max-width: 800px;
}

.hero h1 {
	margin-bottom: var(--space-lg);
	color: var(--color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .perex {
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ── Tooltip ── */

.tooltip-trigger {
	position: relative;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
	cursor: help;
}

.tooltip-bubble {
	display: none;
	position: absolute;
	bottom: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%);
	width: 290px;
	padding: 14px 16px;
	background: var(--color-white);
	color: var(--color-black);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	z-index: 10;
	text-align: center;
	letter-spacing: 0;
	text-transform: none;
}

.tooltip-bubble::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: var(--color-white);
}

.tooltip-trigger:hover .tooltip-bubble,
.tooltip-trigger:focus .tooltip-bubble {
	display: block;
}

@media (max-width: 768px) {
	.tooltip-bubble {
		width: 260px;
		left: 0;
		transform: none;
	}

	.tooltip-bubble::after {
		left: 30px;
	}
}

.hero .perex {
	font-size: var(--text-xl);
	font-weight: 300;
	margin-bottom: 40px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.95;
	line-height: 1.8;
}

.hero-perex-wrap {
	display: flex;
	align-items: center;
	gap: 28px;
	max-width: 760px;
	margin: 0 auto 40px;
}

.hero-perex-wrap .perex {
	margin: 0;
	text-align: left;
	max-width: none;
}

.hero-author {
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	flex-shrink: 0;
	border-radius: 50%;
	cursor: pointer;
	isolation: isolate;
}

.hero-author-avatar {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	display: block;
	z-index: 1;
}

.hero-author-overlay {
	position: absolute;
	inset: 2px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: var(--color-white);
	font-size: var(--text-xl);
	font-family: var(--font-heading);
	padding: 0 8px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
	z-index: 2;
}

.hero-author:hover .hero-author-overlay,
.hero-author:focus-visible .hero-author-overlay {
	opacity: 1;
}

.hero .perex a {
	color: inherit;
	text-decoration: underline;
	transition: all 0.3s ease;
}

.hero .perex a:hover {
	text-decoration: none;
	transition: all 0.3s ease;
}

.hero .btn-primary--lg {
	padding: 1rem 3rem;
	font-size: var(--text-l);
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* ── Vendor Seal ── */

.seal {
	position: absolute;
	top: 47px;
	right: 47px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	z-index: 2;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.seal-badge-wrap {
	position: relative;
	width: 160px;
	height: 160px;
}

.seal-badge {
	width: 100%;
	height: 100%;
}


.seal-content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	pointer-events: none;
}

.seal-number {
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	color: var(--pastel-fuchsia-dark);
	line-height: 1;
}

.seal-label {
	margin-top: -3px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pastel-fuchsia-dark);
	line-height: 1.3;
	text-align: center;
}

.seal-pending {
	font-size: 11px;
	color: var(--color-red);
	font-weight: 600;
	line-height: 1em;
}

.seal-pending-plus {
	font-size: 22px;
	font-weight: 300;
	display: block;
	line-height: 0.4;
}

.seal-countdown {
	text-align: center;
	background: var(--pastel-violet-dark);
	border-radius: var(--radius-md);
	padding: 6px 12px;
	color: var(--pastel-violet);
}

.seal-countdown-label {
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	display: block;
	margin-bottom: 3px;
	opacity: 0.85;
}

.seal-countdown-timer {
	display: flex;
	gap: 4px;
	justify-content: center;
	align-items: baseline;
}

.seal-countdown-timer .cd-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 28px;
}

.seal-countdown-timer .cd-num {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--color-white);
	line-height: 1.2;
}

.seal-countdown-timer .cd-lbl {
	font-size: 8px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.7;
}

.seal-countdown-timer .cd-sep {
	font-size: 14px;
	opacity: 0.5;
	line-height: 1.3;
}

@media (max-width: 1024px) {
	.seal {
		top: 16px;
		right: 16px;
	}

	.seal-badge-wrap {
		width: 130px;
		height: 130px;
	}

	.seal-number {
		font-size: 30px;
	}

	.seal-label {
		font-size: 9px;
	}
}

@media (max-width: 768px) {
	.seal {
		top: 8px;
		right: 8px;
	}

	.seal-badge-wrap {
		width: 100px;
		height: 100px;
	}

	.seal-content {
		gap: 2px;
	}

	.seal-number {
		font-size: 28px;
	}

	.seal-label {
		font-size: 8px;
	}

	.seal-countdown,
	.seal-pending {
		display: none;
	}
}

.featured-categories {
	padding: 100px 40px;
	text-align: center;
}

.featured-categories h2 {
	margin-bottom: 60px;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.category-card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3/2;
	background: var(--color-snow);
}

.category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.category-card:hover img {
	transform: scale(1.05);
}

.category-card .card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.category-card h3 {
	color: var(--color-white);
	margin-bottom: var(--space-sm);
}

.category-card .count {
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.categories-bubbles {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-lg);
	max-width: 1320px;
	margin: 0 auto;
}

.category-bubble {
	text-decoration: none;
	color: var(--color-black);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-lg);
	min-width: 153px;
}

.category-bubble .bubble {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--color-rose);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease,
		background 0.3s ease;
}

.category-bubble .bubble .category-icon {
	width: 50px;
	height: 50px;
	color: var(--color-primary);
	transition:
		color 0.3s ease,
		transform 0.4s ease;
}

.category-bubble:hover .bubble {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px var(--shadow-md);
	background: var(--color-primary);
}

.category-bubble:hover .bubble .category-icon {
	color: var(--color-white);
	transform: scale(1.1);
}

.category-bubble .label {
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.empty-categories {
	margin-top: 80px;
}

.categories-bubbles--muted {
	opacity: 0.45;
}

.category-bubble--muted {
	cursor: default;
}

/* ── Instagram Strip ── */

.instagram-strip {
	padding: 40px 0 0;
	text-align: center;
	overflow: hidden;
}

.instagram-strip-header {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	text-decoration: none;
	color: var(--color-iron);
	font-size: var(--text-md);
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: var(--space-md);
	transition: color var(--transition-fast);
}

.instagram-strip-header:hover {
	color: var(--color-primary);
}

.instagram-strip-scroll {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 0 20px;
}

.instagram-strip-scroll::-webkit-scrollbar {
	display: none;
}

.instagram-strip-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
	width: 180px;
	height: 180px;
	overflow: hidden;
	display: block;
}

.instagram-strip-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

.instagram-strip-item:hover img {
	transform: scale(1.08);
	opacity: 0.9;
}

@media (max-width: 768px) {
	.instagram-strip-item {
		width: 140px;
		height: 140px;
	}
}

.promoter-cta {
	padding: 60px 40px 70px;
	margin-top: 40px;
	text-align: center;
	background: var(--color-snow);
	position: relative;
}

.promoter-cta::before {
	content: "";
	position: absolute;
	top: -80px;
	left: 0;
	right: 0;
	height: 80px;
	z-index: -1;
	background: var(--color-snow);
	-webkit-mask-image: url("/images/lace.svg");
	mask-image: url("/images/lace.svg");
	-webkit-mask-size: auto 100%;
	mask-size: auto 100%;
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
	-webkit-mask-position: center bottom;
	mask-position: center bottom;
	pointer-events: none;
}

.promoter-cta h2,
.promoter-cta p,
.promoter-cta a {
	z-index: 1;
}

.promoter-cta p {
	max-width: 700px;
	margin: 0 auto var(--space-xl);
}

.recent-blog-lace {
	height: 80px;
	background: var(--color-snow);
	position: relative;
	pointer-events: none;
}

.recent-blog-lace::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--color-blush);
	-webkit-mask-image: url("/images/lace.svg");
	mask-image: url("/images/lace.svg");
	-webkit-mask-size: auto 100%;
	mask-size: auto 100%;
	-webkit-mask-repeat: repeat-x;
	mask-repeat: repeat-x;
	-webkit-mask-position: center bottom;
	mask-position: center bottom;
}

.recent-blog {
	background: var(--color-blush);
	padding: 60px 60px 100px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.recent-blog .catalog-grid--magazine {
	max-width: 1380px;
	margin: 0 auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.recent-blog-deco {
	position: absolute;
	bottom: 0;
	width: 270px;
	pointer-events: none;
	z-index: 0;
}

.recent-blog-deco--left {
	left: 0;
}

.recent-blog-deco--right {
	right: 0;
	width: 600px;
}

.recent-blog > *:not(.recent-blog-deco) {
	position: relative;
	z-index: var(--z-base);
}

.recent-blog h2 {
	margin-bottom: var(--space-lg);
}

.recent-blog .catalog-grid {
	margin-bottom: var(--space-2xl);
}

.recent-blog p {
	color: var(--color-iron);
	font-size: var(--text-xl);
}

.btn-secondary {
	background: var(--color-teal);
	color: var(--color-white);
}

.btn-secondary:hover {
	background: var(--color-teal-dark);
	color: var(--color-white);
}

.btn-secondary:disabled {
	background: var(--color-ash);
	color: var(--color-white);
	cursor: not-allowed;
	opacity: 0.6;
}

.btn-secondary:disabled:hover {
	background: var(--color-ash);
}

.btn-muted {
	background: var(--color-blue-muted);
	color: #fff;
}

.btn-muted:hover {
	background: var(--color-iron);
	color: #fff;
}

.btn-danger {
	background: var(--color-red);
	color: var(--color-white);
}

.btn-danger:hover {
	background: var(--color-red-dark);
	color: var(--color-white);
}

.btn-small {
	height: 36px;
	padding: 0 16px;
	font-size: var(--text-md);
}

.input-disabled,
input:disabled,
select:disabled,
textarea:disabled {
	background: var(--color-snow);
	color: var(--color-text-muted);
	cursor: not-allowed;
	opacity: 0.7;
}

/* Impersonation bar */
.impersonation-bar {
	background: var(--color-black);
	color: var(--color-white);
	padding: 6px 0;
	font-size: 13px;
	position: sticky;
	top: 0;
	z-index: 10000;
}

.impersonation-bar strong {
	color: var(--color-primary);
}

.impersonation-bar-btn {
	background: var(--color-white);
	color: var(--color-black);
	padding: 4px 14px;
	border-radius: var(--radius-full);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.15s;
}

.impersonation-bar-btn:hover {
	background: var(--color-primary-dark);
	color: var(--color-white);
}

.email-verification-banner {
	background: var(--color-cream);
	border-bottom: 1px solid var(--color-vanilla-dark);
	padding: 12px 0;
}

.email-verification-banner p {
	margin: 0;
	font-size: 14px;
	color: var(--color-steel);
}

.email-verification-banner a {
	color: var(--color-primary-dark);
	font-weight: 600;
	text-decoration: underline;
	margin-left: 8px;
}

.breadcrumbs {
	background: var(--color-white);
	padding: 20px 0;
	border-bottom: 1px solid var(--color-silver);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.breadcrumbs a {
	color: var(--color-text-muted);
}

.breadcrumbs a:hover {
	color: var(--color-primary);
}

.breadcrumbs .separator {
	margin: 0 12px;
	color: var(--color-silver);
}

.breadcrumbs .current {
	color: var(--color-black);
}

main {
}

main > .container:has(.flash) {
	padding-top: 30px;
	padding-bottom: 0;
}

main > .container:empty {
	display: none;
}

.flashes {
	padding: 30px 0 0;
	background: var(--color-white);
}

.flashes .container {
	padding: 0 40px;
}

.flash {
	padding: 16px 24px;
	margin-bottom: 20px;
	border: 1px solid;
}

.flash:last-child {
	margin-bottom: 0;
}

.flash.success {
	background: var(--color-green-light);
	color: var(--pastel-green-dark);
	border-color: var(--color-success);
}

.flash.error {
	background: var(--color-rose);
	color: var(--color-red);
	border-color: var(--color-blush-dark);
}

.flash.info {
	background: var(--color-blue-very-light);
	color: var(--pastel-blue-dark);
	border-color: var(--color-blue-border);
}

footer {
	background: var(--color-teal);
	color: var(--color-white);
	padding: 86px 40px;
	position: relative;
	overflow: hidden;
}

.footer-deco {
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.footer-deco--left {
	bottom: 0;
	left: -242px;
	width: 484px;
	opacity: 0.15;
}

.footer-deco--right {
	bottom: 0;
	right: -290px;
	width: 580px;
	opacity: 0.15;
}

footer > .container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: var(--z-base);
}

footer h4,
footer h5,
footer a,
footer button {
	color: inherit;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: var(--space-lg);
	margin-bottom: 48px;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.footer-col ul a {
	text-decoration: none;
	opacity: 0.75;
	transition: opacity var(--transition-fast);
}

.footer-col ul a:hover {
	opacity: 1;
}

.footer-col .filter-count {
	background: var(--color-silver);
	color: var(--color-teal-dark);
}

.footer-social {
	display: flex;
	gap: var(--space-md);
	margin-top: var(--space-sm);
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-full);
	background: rgba(255, 255, 255, 0.15);
	transition: background var(--transition-fast);
}

.footer-social a:hover {
	background: rgba(255, 255, 255, 0.3);
}

.footer-newsletter {
	margin-top: var(--space-lg);
}

.footer-newsletter-btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--radius-full);
	background: transparent;
	font-size: var(--text-md);
	font-weight: 600;
	font-family: var(--font-sans);
	cursor: pointer;
	transition: all var(--transition-fast);
}

.footer-newsletter-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.7);
}

/* ── Newsletter Modal ── */
#newsletterModal .registration-choice {
	margin-top: 0;
}

#newsletterModal .newsletter-desc {
	color: var(--color-steel);
}

.newsletter-email-row {
	display: flex;
	gap: var(--space-sm);
	align-items: stretch;
}

.newsletter-email-row input {
	flex: 1;
	min-width: 0;
}

.newsletter-email-row .btn-primary {
	white-space: nowrap;
	flex-shrink: 0;
}

/* ── Newsletter Progress ── */
.newsletter-progress {
	display: flex;
	gap: var(--space-md);
	margin-bottom: var(--space-lg);
}

.newsletter-progress-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
}

.newsletter-progress-block {
	height: 6px;
	border-radius: var(--radius-sm);
	background: var(--color-silver);
	transition: background var(--transition-fast);
}

.newsletter-progress-step.active .newsletter-progress-block {
	background: var(--color-blush);
}

.newsletter-progress-step.completed .newsletter-progress-block {
	background: var(--color-blush);
}

.newsletter-progress-label {
	font-size: var(--text-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--color-text-muted);
	transition: color var(--transition-fast);
}

.newsletter-progress-step.active .newsletter-progress-label {
	color: var(--color-blush-dark);
}

.newsletter-progress-step.completed .newsletter-progress-label {
	color: var(--color-blush-dark);
}

#newsletterModal .checkbox-fancy {
	margin-top: var(--space-sm);
	padding: var(--space-sm) 0;
}

#newsletterModal .newsletter-step-hidden {
	display: none;
}

#newsletterModal .newsletter-error {
	display: none;
	color: var(--color-red);
	font-size: var(--text-sm);
	margin-top: var(--space-sm);
}

#newsletterModal .newsletter-result {
	display: none;
}

.newsletter-success {
	text-align: center;
	padding: var(--space-lg) var(--space-md);
}

.newsletter-success svg {
	margin-bottom: var(--space-md);
}

.newsletter-success-title {
	font-family: var(--font-heading);
	font-size: var(--text-3xl);
	font-weight: 500;
	color: var(--color-teal-dark);
	margin: 0 0 var(--space-sm);
}

.newsletter-success-text {
	color: var(--color-steel);
	margin: 0;
}

.footer-bottom {
	text-align: center;
	padding-top: var(--space-lg);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-award {
	display: block;
	width: 50px;
	height: 50px;
	margin: 0 auto var(--space-sm);
	color: #fff;
}

.footer-bottom p {
	opacity: 0.6;
	letter-spacing: 0.1em;
	font-size: var(--text-sm);
	margin-bottom: 0;
}

@media (max-width: 768px) {
	footer {
		padding: 40px 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-lg);
	}
}

@media (max-width: 480px) {
	footer {
		padding: 60px 20px 40px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: var(--space-lg);
	}
}

.no-categories {
	color: var(--color-text-muted);
	font-size: var(--text-xl);
}

.no-categories-cta {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}




.cta-category-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-sm);
	margin-bottom: var(--space-xl);
}

.cta-category-item {
	display: inline-block;
	padding: 8px 20px;
	border-radius: 999px;
	background: var(--color-rose);
	color: var(--color-black);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

/* Homepage - Categories bubbles responsive (1024px) */
@media (max-width: 1024px) {
	.categories-bubbles {
		gap: var(--space-xl) var(--space-md);
	}

	.category-bubble {
		gap: var(--space-sm);
	}

	.category-bubble .bubble {
		width: 80px;
		height: 80px;
	}

	.category-bubble .bubble .category-icon {
		width: 36px;
		height: 36px;
	}
}
/* Homepage responsive (768px) */
@media (max-width: 768px) {
	.hero {
		display: flex;
		align-items: flex-end;
		padding: 20px;
		min-height: 50vh;
	}

	.hero-content {
		margin-bottom: 20px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero .perex,
	.hero-perex-wrap {
		display: none;
	}

	.hero .btn-primary--lg {
		padding: 0.75rem 2rem;
		font-size: var(--text-md);
	}

	.featured-categories,
	.recent-blog {
		padding: 60px 20px;
	}

}

/* Homepage - Categories bubbles responsive (640px) */
@media (max-width: 640px) {
	.category-bubble .bubble {
		width: 70px;
		height: 70px;
	}
}

/* Homepage - Categories bubbles responsive (480px) */
@media (max-width: 480px) {
	.categories-bubbles {
		gap: var(--space-sm);
	}
}
