/* ============================================================
   ProofCollective — dark mode theme
   ============================================================ */

/* ----- Web-only spacer ------------------------------------- */
.pc-web-spacer {
	display: block;
	clear: both;
	height: 53px;
	opacity: 0;
}
.app-mode .pc-web-spacer {
	display: none;
}

/* ----- Reset & base ---------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--pc-bg:          #121212;
	--pc-card-bg:     #1E1E1E;
	--pc-elevated-bg: #262626;
	--pc-text:        #FAFAFA;
	--pc-text-sec:    #A0A0A0;
	--pc-text-muted:  #737373;
	--pc-accent:      #6EE7B7;
	--pc-accent-hover:#34D399;
	--pc-border:      #363636;
	--pc-danger:      #EF4444;
	--pc-success:     #22C55E;
	--pc-radius:      12px;
	--pc-radius-sm:   8px;
	--pc-max-width:   640px;
	--pc-font:        system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--pc-header-h:    10px;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: var(--pc-font);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--pc-text);
	background: var(--pc-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--pc-accent);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--pc-accent-hover);
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
}

/* ----- Accessibility --------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.screen-reader-text:focus {
	background-color: var(--pc-elevated-bg);
	clip: auto;
	clip-path: none;
	color: var(--pc-text);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 12px 20px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ----- Layout ---------------------------------------------- */
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-main {
	flex: 1;
	padding-top: var(--pc-header-h);
	padding-bottom: 2rem;
}

.pc-container {
	width: 100%;
	max-width: var(--pc-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.pc-main {
	margin-top: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.pc-page-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--pc-text, #e5e5e5);
}

/* ----- Tabs (e.g. Favorites Active / Archived) -------------- */
.pc-tabs {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0 -1rem 1rem;
	padding: 0 1rem;
	border-bottom: 1px solid var(--pc-border);
	background: var(--pc-bg);
}

.pc-tabs__tab {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1rem;
	font-family: var(--pc-font);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
	color: var(--pc-text-muted);
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.pc-tabs__tab:hover {
	color: var(--pc-text-sec);
}

.pc-tabs__tab--active {
	color: var(--pc-text);
	font-weight: 600;
	border-bottom-color: var(--pc-accent);
}

/* ----- Header / Navbar ------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/*height: var(--pc-header-h);*/
	height: 53px;

	background: var(--pc-card-bg);
	border-bottom: 1px solid var(--pc-border);
	z-index: 1000;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--pc-max-width);
	margin: 0 auto;
	padding: 0 1rem;
	height: 100%;
}

.site-branding a {
	color: var(--pc-text);
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: -0.02em;
}

.site-branding img {
	height: 32px;
	width: auto;
}

/* --- Hamburger (CSS-only) ---------------------------------- */
.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 1010;
	position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--pc-text);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger {
	position: relative;
}

.hamburger::before,
.hamburger::after {
	content: "";
	position: absolute;
	left: 0;
}

.hamburger::before {
	top: -7px;
}

.hamburger::after {
	top: 7px;
}

.nav-toggle:checked ~ .nav-toggle-label .hamburger {
	background: transparent;
}

.nav-toggle:checked ~ .nav-toggle-label .hamburger::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle:checked ~ .nav-toggle-label .hamburger::after {
	top: 0;
	transform: rotate(-45deg);
}

/* --- Mobile slide nav -------------------------------------- */
.main-navigation {
	position: fixed;
	top: var(--pc-header-h);
	right: 0;
	bottom: 0;
	width: 260px;
	background: var(--pc-card-bg);
	border-left: 1px solid var(--pc-border);
	padding: 1.5rem 1rem;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	z-index: 999;
}

.nav-toggle:checked ~ .main-navigation {
	transform: translateX(0);
}

.main-navigation ul {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.main-navigation a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--pc-text);
	font-size: 1rem;
	font-weight: 500;
	border-radius: var(--pc-radius-sm);
	transition: background 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a:focus-visible {
	background: var(--pc-elevated-bg);
	text-decoration: none;
}

/* Close nav on overlay click */
.nav-toggle:checked ~ .main-navigation::before {
	content: "";
	position: fixed;
	top: var(--pc-header-h);
	left: 0;
	right: 260px;
	bottom: 0;
	z-index: -1;
}

/* Hamburger menu only at all screen sizes (no desktop inline nav) */

/* --- Nav item icons ---------------------------------------- */
/* Make the anchor a flex row so icon and text align cleanly */
.main-navigation a {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

/* Base icon pseudo-element */
.main-navigation li[class*="menu-item--"] a::before {
	content: '';
	display: inline-block;
	flex-shrink: 0;
	width: 1.2rem;
	height: 1.2rem;
	background-color: currentColor;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	opacity: 0.85;
}

/* Feed / Following → home */
.main-navigation li.menu-item--feed a::before,
.main-navigation li.menu-item--following a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

/* Discover → compass */
.main-navigation li.menu-item--discover a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-5.5-2.5l7.51-3.49L17.5 6.5 9.99 9.99 6.5 17.5zm5.5-6.6c.61 0 1.1.49 1.1 1.1s-.49 1.1-1.1 1.1-1.1-.49-1.1-1.1.49-1.1 1.1-1.1z'/%3E%3C/svg%3E");
}

/* Search → magnifying glass */
.main-navigation li.menu-item--search a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}

/* Spotlight / Spotlight Slots → star */
.main-navigation li.menu-item--spotlight a::before,
.main-navigation li.menu-item--spotlight-slots a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

/* Labs → flask */
.main-navigation li.menu-item--labs a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.8 18.4L14 10.67V6h1c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1h1v4.67L4.2 18.4C3.71 19.06 4.18 20 5 20h14c.82 0 1.29-.94.8-1.6z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.8 18.4L14 10.67V6h1c.55 0 1-.45 1-1s-.45-1-1-1H9c-.55 0-1 .45-1 1s.45 1 1 1h1v4.67L4.2 18.4C3.71 19.06 4.18 20 5 20h14c.82 0 1.29-.94.8-1.6z'/%3E%3C/svg%3E");
}

/* Favorites → bookmark */
.main-navigation li.menu-item--favorites a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 3H7c-1.1 0-2 .9-2 2v16l7-3 7 3V5c0-1.1-.9-2-2-2z'/%3E%3C/svg%3E");
}

/* More → ellipsis */
.main-navigation li.menu-item--more a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
}

/* Create Post → plus */
.main-navigation li.menu-item--create-post a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/%3E%3C/svg%3E");
}

/* My Account / Account → person */
.main-navigation li.menu-item--my-account a::before,
.main-navigation li.menu-item--account a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

/* Artist Profile → palette */
.main-navigation li.menu-item--artist-profile a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E");
}

/* Login / Sign In → login arrow */
.main-navigation li.menu-item--login a::before,
.main-navigation li.menu-item--log-in a::before,
.main-navigation li.menu-item--sign-in a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 7L9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 7L9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8v14z'/%3E%3C/svg%3E");
}

/* Register / Sign Up → person+ */
.main-navigation li.menu-item--register a::before,
.main-navigation li.menu-item--sign-up a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

/* Become a Supporter → heart */
.main-navigation li.menu-item--become-a-supporter a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

/* What Is ProofCollective → info circle */
.main-navigation li.menu-item--what-is-proofcollective a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

/* About Indie Dyed → water drop */
.main-navigation li.menu-item--about-indie-dyed a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2C20 10.48 17.33 6.55 12 2z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2C20 10.48 17.33 6.55 12 2z'/%3E%3C/svg%3E");
}

/* Log Out → logout arrow */
.main-navigation li.menu-item--logout a::before,
.main-navigation li.menu-item--log-out a::before,
.main-navigation li.menu-item--sign-out a::before {
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'/%3E%3C/svg%3E");
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z'/%3E%3C/svg%3E");
}

/* ----- Footer ---------------------------------------------- */
.site-footer {
	background: var(--pc-card-bg);
	border-top: 1px solid var(--pc-border);
	padding: 1.5rem 0;
}

.site-footer__inner {
	max-width: var(--pc-max-width);
	margin: 0 auto;
	padding: 0 1rem;
	text-align: center;
}

.footer-navigation ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-navigation a {
	color: var(--pc-text-sec);
	font-size: 0.8125rem;
}

.footer-navigation a:hover {
	color: var(--pc-text);
}

.site-info {
	color: var(--pc-text-muted);
	font-size: 0.75rem;
}

/* ----- App mode -------------------------------------------- */
.app-mode .site-header,
.app-mode .site-footer {
	display: none;
}



.app-mode body {
	background: var(--pc-bg);
}

/* ----- Buttons --------------------------------------------- */
.pc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	font-family: var(--pc-font);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	border: none;
	border-radius: var(--pc-radius-sm);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.pc-btn--primary {
	background: var(--pc-accent);
	color: #121212;
}

.pc-btn--primary:hover {
	background: var(--pc-accent-hover);
	text-decoration: none;
	color: #121212;
}

.pc-btn--outline {
	background: transparent;
	color: var(--pc-accent);
	border: 1px solid var(--pc-accent);
}

.pc-btn--outline:hover {
	background: var(--pc-accent);
	color: #fff;
	text-decoration: none;
}
.pc-btn--danger {
	background: transparent;
	color: #dc2626;
	border: 1px solid #dc2626;
}
.pc-btn--danger:hover:not(:disabled) {
	background: #dc2626;
	color: #fff;
	text-decoration: none;
}
.pc-btn--danger:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.pc-btn--sm {
	padding: 0.375rem 0.875rem;
	font-size: 0.8125rem;
}

.pc-btn--danger {
	background: var(--pc-danger);
	color: #fff;
}

.pc-btn--danger:hover {
	background: #DC2626;
}

.pc-btn[disabled] {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ----- Action buttons (icon + label) ----------------------- */
.pc-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	background: none;
	border: none;
	color: var(--pc-text-sec);
	font-family: var(--pc-font);
	font-size: 0.8125rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: var(--pc-radius-sm);
	transition: color 0.2s ease, background 0.2s ease;
}

.pc-action-btn:hover {
	color: var(--pc-text);
	background: var(--pc-elevated-bg);
}

.pc-action-btn.is-active {
	color: var(--pc-accent);
}

.pc-action-btn.is-active .pc-icon {
	fill: var(--pc-accent);
}

.pc-icon {
	flex-shrink: 0;
}

/* ----- Cards ----------------------------------------------- */
.pc-card {
	background: var(--pc-card-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.pc-card:hover {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pc-card__image-link {
	display: block;
}

.pc-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

/* Minimal card (feed/discover): image + save only */
.pc-card--minimal {
	position: relative;
}
.pc-card--minimal .pc-card__actions--overlay {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
}
.pc-card--minimal .pc-card__actions--overlay .pc-save-btn,
.pc-card--minimal .pc-card__actions--overlay .pc-action-btn.pc-save-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
}

.pc-card--minimal .pc-card__actions--overlay .pc-save-btn .pc-card__save-icon {
	flex-shrink: 0;
}

.pc-card--minimal .pc-card__actions--overlay .pc-save-btn.pc-card__save--active .pc-card__save-icon {
	fill: var(--pc-accent);
}

.pc-card--minimal .pc-card__actions--overlay .pc-card__edit-pencil--overlay {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border-radius: 50%;
}
.pc-card--minimal .pc-card__actions--overlay .pc-card__edit-pencil--overlay:hover {
	background: var(--pc-accent);
	color: #fff;
}

.pc-card__body {
	padding: 1rem;
}

.pc-card__title {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.375rem;
}

.pc-card__title a {
	color: var(--pc-text);
}

.pc-card__title a:hover {
	color: var(--pc-accent);
	text-decoration: none;
}

.pc-card__excerpt {
	color: var(--pc-text-sec);
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.pc-card__meta {
	color: var(--pc-text-muted);
	font-size: 0.75rem;
}

/* ----- Feed layout ----------------------------------------- */
.pc-feed {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* ----- Favorites: 3 across, image-only links (flex, no grid) ----- */
.pc-fav-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.pc-fav-grid .pc-card--image-only {
	flex: 0 0 calc((100% - 1rem) / 3);
	box-sizing: border-box;
}

/* Search: form-inline look */
.pc-search-field .pc-form-input {
	width: 100%;
}

/* Search results: artists 3 per row, avatar + name, no follow */
.pc-artist-grid .pc-artist-card {
	flex: 0 0 calc((100% - 1rem) / 3);
	box-sizing: border-box;
	display: block;
	text-align: center;
	text-decoration: none;
	color: var(--pc-text);
}
.pc-artist-card__avatar {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 0.375rem;
}
.pc-artist-card__name {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--pc-text);
}
.pc-artist-card:hover .pc-artist-card__name {
	color: var(--pc-accent);
}

.pc-card--image-only .pc-card__image-link {
	display: block;
}

.pc-card--image-only .pc-card__image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.pc-card--has-edit {
	position: relative;
}
.pc-card--has-edit .pc-card__edit-pencil {
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	z-index: 2;
	display: inline-flex;
	padding: 0.25rem;
	background: rgba(0,0,0,0.5);
	border-radius: var(--pc-radius-sm);
	color: #fff;
}
.pc-card--has-edit .pc-card__edit-pencil:hover {
	background: var(--pc-accent);
	color: #fff;
}
.pc-card__header .pc-card__edit-pencil {
	display: inline-flex;
	margin-left: auto;
	padding: 0.25rem;
	color: var(--pc-text-muted);
}
.pc-card__header .pc-card__edit-pencil:hover {
	color: var(--pc-accent);
}

.pc-profile__grid {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/* ----- Grid (discover / search): simple stack ----------------- */
.pc-grid {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pc-grid__item {
	position: relative;
	overflow: hidden;
}

.pc-grid__item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: opacity 0.2s ease;
}

.pc-grid__item:hover img {
	opacity: 0.85;
}

/* ----- Post detail ----------------------------------------- */
.pc-post-detail {
	background: var(--pc-card-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	overflow: hidden;
	margin-top: 1rem;
	margin-bottom: 2rem;
}


.pc-post-detail__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--pc-border);
}

.pc-post-detail__edit-pencil {
	display: inline-flex;
	padding: 0.25rem;
	color: var(--pc-text-muted);
}
.pc-post-detail__edit-pencil:hover {
	color: var(--pc-accent);
}

.pc-post-detail__artist {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--pc-text);
	text-decoration: none;
}

.pc-post-detail__artist:hover {
	text-decoration: none;
}

.pc-post-detail__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--pc-border);
}

.pc-post-detail__artist-name {
	font-weight: 600;
	font-size: 0.875rem;
}

.pc-post-detail__image-wrap {
	width: 100%;
}

.pc-post-detail__image {
	width: 100%;
	display: block;
}

.pc-post-detail__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid var(--pc-border);
}

.pc-post-detail__actions .pc-action-btn {
	margin-left: auto;
	flex-shrink: 0;
}

.pc-post-detail__body {
	padding: 1rem;
}

.pc-post-detail__caption {
	font-size: 0.9375rem;
	line-height: 1.5;
	margin-bottom: 0.75rem;
	color: var(--pc-text);
}

.pc-post-detail__caption-author {
	margin-right: 0.375rem;
}

.pc-post-detail__cta {
	margin-bottom: 1rem;
}

.pc-post-detail__cta .pc-btn {
	width: 100%;
}

.pc-post-detail__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}

.pc-tag {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	background: var(--pc-elevated-bg);
	color: var(--pc-accent);
	font-size: 0.8125rem;
	font-weight: 500;
	border-radius: 20px;
	transition: background 0.2s ease;
}

.pc-tag:hover {
	background: var(--pc-accent);
	color: #fff;
	text-decoration: none;
}

.pc-post-detail__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: var(--pc-text-muted);
	font-size: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid var(--pc-border);
}

.pc-post-detail__meta .pc-action-btn--text {
	color: var(--pc-text-muted);
	background: none;
	border: none;
	padding: 0.25rem 0;
	font-size: 0.75rem;
}

.pc-post-detail__meta .pc-action-btn--text:hover {
	color: var(--pc-text);
}

.pc-post-detail__disclaimer {
	
	margin-bottom: 1.25rem;
	/*padding-top: 0.75rem;
	border-top: 1px solid var(--pc-border);*/
	font-size: 0.8rem;
	/*color: var(--pc-text-muted);*/
	line-height: 1.4;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

/* ----- Create Post (card same as detail: image, title, caption, CTA, tags, publish) ----- */
.pc-create-post .pc-create-post__image-wrap {
	position: relative;
	background: var(--pc-elevated-bg);
	min-height: 200px;
}

.pc-create-post .pc-form__upload {
	display: block;
	width: 100%;
	min-height: 200px;
	max-height: 80vh;
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.pc-create-post .pc-form__file-input {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	min-height: 200px;
	max-height: 80vh;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}

.pc-create-post .pc-form__upload-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
	color: var(--pc-text-muted);
	font-size: 0.9375rem;
	border: 2px dashed var(--pc-border);
	margin: 0.5rem;
	border-radius: var(--pc-radius-sm);
	pointer-events: none;
}

.pc-create-post .pc-form__upload-preview {
	/*position: absolute;*/
	left: 0;
	top: 0;
	width: 100%;
	display: block;
	aspect-ratio: 1;
	object-fit: cover;
	pointer-events: none;

}

.pc-create-post__title-row {
	display: block;
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid var(--pc-border);
}

.pc-create-post__title-input {
	width: 100%;
	padding: 0;
	font-family: var(--pc-font);
	font-size: 1rem;
	font-weight: 600;
	color: var(--pc-text);
	background: none;
	border: none;
	outline: none;
}

.pc-create-post__title-input::placeholder {
	color: var(--pc-text-muted);
	font-weight: 500;
}

.pc-create-post .pc-form__group {
	margin-bottom: 1rem;
}

.pc-create-post .pc-form__label {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--pc-text);
}

.pc-create-post .pc-form__input,
.pc-create-post .pc-form__textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius-sm);
	color: var(--pc-text);
	font-family: var(--pc-font);
	font-size: 0.9375rem;
}

.pc-create-post .pc-form__textarea {
	min-height: 100px;
	resize: vertical;
}

.pc-create-post .pc-form__char-count {
	margin-top: 0.25rem;
	font-size: 0.75rem;
	color: var(--pc-text-muted);
}

.pc-create-post .pc-form__status {
	padding: 0.75rem 1rem;
	border-radius: var(--pc-radius-sm);
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.pc-create-post .pc-form__status--error {
	background: rgba(239, 68, 68, 0.15);
	color: #FCA5A5;
}

.pc-create-post .pc-form__status--success {
	background: rgba(34, 197, 94, 0.15);
	color: #86EFAC;
}

.pc-supporter-badge {
	display: inline-block;
	padding: 0.2em 0.65em;
	border-radius: 999px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.pc-supporter-badge--active {
	background: rgba(20, 184, 166, 0.1);
	color: #5EEAD4;
	border: 1px solid rgba(20, 184, 166, 0.25);
}
.pc-supporter-badge--inactive {
	background: rgba(255, 255, 255, 0.06);
	color: var(--pc-text-muted);
}

/* ----- Labs page ------------------------------------------- */
.pc-labs-teaser {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pc-labs-teaser p {
	color: var(--pc-text-sec);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0;
}

.pc-labs-teaser .pc-btn {
	align-self: flex-start;
	margin-top: 0.5rem;
}

.pc-labs-intro {
	color: var(--pc-text-sec);
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
}

.pc-labs-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pc-lab-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	background: var(--pc-card-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	padding: 1rem 1.25rem;
}

.pc-lab-item--locked {
	opacity: 0.6;
}

.pc-lab-item__body {
	flex: 1;
}

.pc-lab-item__label {
	font-weight: 600;
	font-size: 0.9375rem;
	margin-bottom: 0.25rem;
}

.pc-lab-item__desc {
	font-size: 0.8125rem;
	color: var(--pc-text-sec);
	line-height: 1.5;
}

.pc-lab-item__locked-note {
	font-size: 0.75rem;
	color: var(--pc-text-muted);
	margin-top: 0.35rem;
}

/* Toggle switch */
.pc-lab-toggle {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 26px;
	flex-shrink: 0;
	cursor: pointer;
}

.pc-lab-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.pc-lab-toggle__slider {
	position: absolute;
	inset: 0;
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	transition: background 0.2s, border-color 0.2s;
}

.pc-lab-toggle__slider::before {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	left: 3px;
	top: 3px;
	background: var(--pc-text-muted);
	border-radius: 50%;
	transition: transform 0.2s, background 0.2s;
}

.pc-lab-toggle input:checked + .pc-lab-toggle__slider {
	background: rgba(139, 92, 246, 0.25);
	border-color: var(--pc-accent);
}

.pc-lab-toggle input:checked + .pc-lab-toggle__slider::before {
	transform: translateX(18px);
	background: var(--pc-accent);
}

.pc-lab-toggle input:disabled + .pc-lab-toggle__slider {
	cursor: not-allowed;
}

/* Mode picker */
.pc-mode-picker {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.pc-mode-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
	width: 100%;
	background: var(--pc-card-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	padding: 1rem 1.25rem;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.2s, background 0.2s;
}

.pc-mode-card:hover {
	border-color: var(--pc-accent);
	background: var(--pc-elevated-bg);
}

.pc-mode-card__label {
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--pc-text);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pc-mode-card__lab {
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #5EEAD4;
	background: rgba(20, 184, 166, 0.1);
	border: 1px solid rgba(20, 184, 166, 0.25);
	border-radius: 999px;
	padding: 0.1em 0.5em;
}

.pc-mode-card__desc {
	font-size: 0.8125rem;
	color: var(--pc-text-sec);
	line-height: 1.5;
}

/* Restock picker list */
.pc-restock-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.pc-restock-item {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	background: var(--pc-card-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius-sm);
	padding: 0.625rem 0.875rem;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.pc-restock-item:hover {
	border-color: var(--pc-accent);
	background: var(--pc-elevated-bg);
}

.pc-restock-item__thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: var(--pc-radius-sm);
	flex-shrink: 0;
}

.pc-restock-item__thumb--empty {
	background: var(--pc-elevated-bg);
}

.pc-restock-item__title {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--pc-text);
}

/* Pipeline tab list */
.pc-pipeline-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.pc-pipeline-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	background: var(--pc-surface);
	border: 1px solid var(--pc-border);
	border-radius: 10px;
	padding: 0.75rem;
}

.pc-pipeline-item__thumb {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.pc-pipeline-item__thumb--empty {
	background: var(--pc-elevated-bg);
}

.pc-pipeline-item__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.pc-pipeline-item__title {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--pc-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.pc-pipeline-item__actions {
	display: flex;
	gap: 0.5rem;
}

.pc-pipeline-item__status {
	font-size: 0.8125rem;
	padding: 0.25rem 0;
}

.pc-btn--sm {
	font-size: 0.8125rem;
	padding: 0.3rem 0.75rem;
}

/* Bypass link on Shopify form */
.pc-labs-bypass {
	margin-top: 1rem;
	text-align: center;
}

.pc-btn-link {
	background: none;
	border: none;
	padding: 0;
	color: var(--pc-text-muted);
	font-size: 0.8125rem;
	cursor: pointer;
	text-decoration: underline;
}

.pc-btn-link:hover {
	color: var(--pc-text-sec);
}

.pc-create-post__helper {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--pc-text-muted);
	margin-bottom: 1rem;
}

.pc-create-post__disclaimer {
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--pc-text-muted);
	margin-top: 0.5rem;
	margin-bottom: 0;
}

.pc-create-post__submit {
	width: 100%;
	padding: 0.75rem 1.25rem;
}

/* ----- Search bar ------------------------------------------ */
.pc-search {
	position: relative;
	margin-bottom: 1rem;
}

.pc-search__input {
	width: 100%;
	padding: 0.75rem 1rem 0.75rem 2.75rem;
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	color: var(--pc-text);
	font-family: var(--pc-font);
	font-size: 0.9375rem;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-search__input::placeholder {
	color: var(--pc-text-muted);
}

.pc-search__input:focus {
	border-color: var(--pc-accent);
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.pc-search__icon {
	position: absolute;
	left: 0.875rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--pc-text-muted);
	pointer-events: none;
}

/* ----- Forms ----------------------------------------------- */
.pc-form-group {
	margin-bottom: 1rem;
}

.pc-form-label {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--pc-text-sec);
}

.pc-form-input,
.pc-form-textarea,
.pc-form-select {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius-sm);
	color: var(--pc-text);
	font-family: var(--pc-font);
	font-size: 0.9375rem;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pc-form-input:focus,
.pc-form-textarea:focus,
.pc-form-select:focus {
	border-color: var(--pc-accent);
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.pc-form-textarea {
	min-height: 120px;
	resize: vertical;
}

/* ----- Contact Form 7 (match theme forms) ------------------ */
.wpcf7-form p {
	margin-bottom: 1rem;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--pc-text-sec);
}

.wpcf7-form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
	width: 100%;
	padding: 0.75rem 1rem;
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius-sm);
	color: var(--pc-text);
	font-family: var(--pc-font);
	font-size: 0.9375rem;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wpcf7-form .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):focus {
	border-color: var(--pc-accent);
	box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.wpcf7-form textarea.wpcf7-form-control {
	min-height: 120px;
	resize: vertical;
}

.wpcf7-form select.wpcf7-form-control {
	appearance: none;
	cursor: pointer;
}

.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
	accent-color: var(--pc-accent);
	vertical-align: middle;
}

.wpcf7-form .wpcf7-list-item {
	display: inline-flex;
	align-items: center;
	margin-right: 1rem;
	margin-bottom: 0.5rem;
}

.wpcf7-form .wpcf7-list-item-label {
	font-size: 0.9375rem;
	color: var(--pc-text);
}

.wpcf7-form input.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	font-family: var(--pc-font);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	color: #fff;
	background: var(--pc-accent);
	border: none;
	border-radius: var(--pc-radius-sm);
	cursor: pointer;
	transition: background 0.2s ease;
}

.wpcf7-form input.wpcf7-submit:hover {
	background: var(--pc-accent-hover);
}

.wpcf7-form .wpcf7-not-valid {
	border-color: var(--pc-danger) !important;
}

.wpcf7-form .wpcf7-not-valid:focus {
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

.wpcf7-form .wpcf7-form-control.pc-report-readonly {
	border: none;
	background: transparent;
	color: var(--pc-text);
	font-weight: 500;
	cursor: default;
}

.wpcf7-form .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem 1rem;
	border-radius: var(--pc-radius-sm);
	font-size: 0.875rem;
	border: none;
}

.wpcf7-form .wpcf7-mail-sent-ok {
	background: rgba(34, 197, 94, 0.15);
	color: #86EFAC;
}

.wpcf7-form .wpcf7-validation-errors,
.wpcf7-form .wpcf7-mail-sent-ng {
	background: rgba(239, 68, 68, 0.15);
	color: #FCA5A5;
}

.pc-cf7-content {
	max-width: var(--pc-max-width);
	margin: 0 auto;
}

/* ----- Artist profile ---------------------------------------- */
.pc-profile {
	text-align: center;
	padding: 2rem 1rem;
	margin-bottom: 1rem;
}

.pc-profile__avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--pc-accent);
	margin: 0 auto 1rem;
}

.pc-profile__avatar--supporter {
	border-color: #14B8A6;
	box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.pc-supporter-badge-star {
	display: inline-flex;
	align-items: center;
	gap: 0.25em;
	padding: 0.15em 0.55em;
	background: rgba(20, 184, 166, 0.1);
	color: #5EEAD4;
	border: 1px solid rgba(20, 184, 166, 0.25);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1.4;
	white-space: nowrap;
}

.pc-profile__name-wrap {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}
.pc-profile__name {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}
.pc-profile__edit-pencil {
	display: inline-flex;
	color: var(--pc-text-muted);
	transition: color 0.2s ease;
}
.pc-profile__edit-pencil:hover {
	color: var(--pc-accent);
}

/* Edit profile page */
.pc-edit-profile__title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}
.pc-edit-profile__avatar-wrap {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
}
.pc-edit-profile__avatar-preview {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	background: var(--pc-border);
}
.pc-edit-profile__avatar-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Edit post: remove / delete section */
.pc-edit-post__remove {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--pc-border);
}
.pc-edit-post__remove-title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--pc-text);
}
.pc-edit-post__remove-intro {
	font-size: 0.875rem;
	color: var(--pc-text-muted);
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
.pc-edit-post__remove .pc-btn--outline {
	margin-bottom: 1.25rem;
}
.pc-edit-post__delete {
	margin-top: 1rem;
	padding: 1rem;
	background: rgba(220, 38, 38, 0.08);
	border: 1px solid rgba(220, 38, 38, 0.3);
	border-radius: var(--pc-radius-sm);
}
.pc-edit-post__delete-warning {
	font-size: 0.875rem;
	color: var(--pc-text-sec);
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
.pc-edit-post__delete-confirm {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--pc-text);
	margin-bottom: 0.75rem;
	cursor: pointer;
}
.pc-edit-post__delete-confirm input {
	width: 1rem;
	height: 1rem;
}

.pc-profile__bio {
	color: var(--pc-text-sec);
	font-size: 0.875rem;
	max-width: 400px;
	margin: 0 auto 1rem;
}

.pc-profile__stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1rem;
}

.pc-profile__stat {
	text-align: center;
}

.pc-profile__stat-value {
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
}

.pc-profile__stat-label {
	font-size: 0.75rem;
	color: var(--pc-text-muted);
}

/* ----- Empty state ----------------------------------------- */
.pc-empty-state {
	text-align: center;
	padding: 4rem 1rem;
	color: var(--pc-text-sec);
}

.pc-empty-state h2 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--pc-text);
}

.pc-empty {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--pc-text-muted);
}

.pc-empty p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--pc-text-sec);
}

.pc-empty p + p {
	margin-top: 0.4rem;
	font-size: 0.95rem;
	color: var(--pc-text-muted);
}

/* ----- 404 ------------------------------------------------- */
.pc-error-404 {
	text-align: center;
	padding: 6rem 1rem;
}

.pc-error-404 .page-title {
	font-size: 5rem;
	font-weight: 800;
	color: var(--pc-accent);
	margin-bottom: 1rem;
}

.pc-error-404__message {
	color: var(--pc-text-sec);
	font-size: 1.125rem;
	margin-bottom: 2rem;
}

/* ----- Page ------------------------------------------------ */
.pc-page {
	padding: rem 0;
}
/* change padding for not: app mode */
.pc-page {
	padding: 3rem 0;
}
.app-mode .pc-page {
	padding: 2rem 0;
}

.pc-page__title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.pc-page__content {
	color: var(--pc-text-sec);
	font-size: 1rem;
	line-height: 1.7;
}

.pc-page__content h2 {
	color: var(--pc-text);
	font-size: 1.375rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.pc-page__content h3 {
	color: var(--pc-text);
	font-size: 1.125rem;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.pc-page__content p {
	margin-bottom: 1rem;
}

.pc-page__content ul,
.pc-page__content ol {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
	list-style: disc;
}

.pc-page__content ol {
	list-style: decimal;
}

.pc-page__content blockquote {
	border-left: 3px solid var(--pc-accent);
	padding: 0.75rem 1rem;
	margin: 1.5rem 0;
	background: var(--pc-elevated-bg);
	border-radius: 0 var(--pc-radius-sm) var(--pc-radius-sm) 0;
}

/* ----- Single blog post ------------------------------------ */
.pc-blog-post {
	max-width: 720px;
	margin: 0 auto;
	padding-bottom: 3rem;
}

.pc-blog-post__header {
	margin-bottom: 1.5rem;
}

.pc-blog-post__title {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.25;
}

.pc-blog-post__meta {
	color: var(--pc-text-muted);
	font-size: 0.875rem;
}

.pc-blog-post__thumbnail {
	margin-bottom: 1.75rem;
}

.pc-blog-post__thumbnail img {
	width: 100%;
	border-radius: var(--pc-radius);
	display: block;
}

.pc-blog-post__content {
	color: var(--pc-text-sec);
	font-size: 1rem;
	line-height: 1.7;
}

.pc-blog-post__content h2 { color: var(--pc-text); font-size: 1.375rem; font-weight: 700; margin: 1.75rem 0 0.75rem; }
.pc-blog-post__content h3 { color: var(--pc-text); font-size: 1.125rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.pc-blog-post__content p  { margin-bottom: 1rem; }
.pc-blog-post__content ul,
.pc-blog-post__content ol { padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.pc-blog-post__content ol { list-style: decimal; }
.pc-blog-post__content a  { color: var(--pc-accent); text-decoration: underline; }
.pc-blog-post__content blockquote {
	border-left: 3px solid var(--pc-accent);
	padding: 0.75rem 1rem;
	margin: 1.5rem 0;
	background: var(--pc-elevated-bg);
	border-radius: 0 var(--pc-radius-sm) var(--pc-radius-sm) 0;
}
.pc-blog-post__content img {
	max-width: 100%;
	border-radius: var(--pc-radius-sm);
	margin: 1rem 0;
}

.pc-blog-post__footer {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--pc-border);
}

.pc-blog-post__back {
	color: var(--pc-text-muted);
	font-size: 0.875rem;
	text-decoration: none;
}

.pc-blog-post__back:hover {
	color: var(--pc-accent);
}

/* ----- Pagination ------------------------------------------ */
.pc-pagination {
	margin-top: 2rem;
	text-align: center;
}

.pc-pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.375rem;
}

.pc-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.5rem;
	background: var(--pc-elevated-bg);
	color: var(--pc-text-sec);
	font-size: 0.875rem;
	border-radius: var(--pc-radius-sm);
	transition: background 0.2s ease, color 0.2s ease;
}

.pc-pagination .page-numbers:hover {
	background: var(--pc-accent);
	color: #fff;
	text-decoration: none;
}

.pc-pagination .page-numbers.current {
	background: var(--pc-accent);
	color: #fff;
}

/* ----- Loading spinner ------------------------------------- */
.pc-spinner {
	display: flex;
	justify-content: center;
	padding: 2rem;
}

.pc-spinner::after {
	content: "";
	width: 32px;
	height: 32px;
	border: 3px solid var(--pc-border);
	border-top-color: var(--pc-accent);
	border-radius: 50%;
	animation: pc-spin 0.8s linear infinite;
}

@keyframes pc-spin {
	to { transform: rotate(360deg); }
}

/* ----- Toast / notifications ------------------------------- */
.pc-toast {
	position: fixed;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%) translateY(100px);
	background: var(--pc-elevated-bg);
	color: var(--pc-text);
	padding: 0.75rem 1.25rem;
	border-radius: var(--pc-radius);
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
	z-index: 10000;
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	pointer-events: none;
}

.pc-toast.is-visible {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

/* ----- Responsive ------------------------------------------ */
@media (max-width: 479px) {
	.pc-profile__stats {
		gap: 1.5rem;
	}

	.pc-post-detail__cta .pc-btn {
		font-size: 0.8125rem;
	}
}

@media (min-width: 480px) {
	.pc-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

/* ----- Print ----------------------------------------------- */
@media print {
	.site-header,
	.site-footer,
	.pc-action-btn,
	.js-follow-btn {
		display: none;
	}

	body {
		background: #fff;
		color: #000;
	}

	.pc-card,
	.pc-post-detail {
		border-color: #ccc;
		box-shadow: none;
	}
}

/* ----- Homepage (no-title template) ------------------------ */
.pc-homepage {
	padding-top: 2rem;
	padding-bottom: 3rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

/*me*/
.six40 {
	max-width: 640px;
	margin: 0 auto;
	padding: 0 1rem;
}
body.admin-bar .site-header{ margin-top: 32px}

.pc-card {
    border: 2px solid transparent; 
	transition: border 0.2s ease;
}
.pc-card.pc-card--has-spotlight{
  /*slight glow*/
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.3);
  transition: box-shadow 0.2s ease;
}

.pc-card:has(.pc-card__save--active) {
    border: 2px solid var(--pc-accent) !important;
	transition: border 0.2s ease;
}


/* ----- ProofCollective Login plugin (no modals) ------------------- */
.pc-login-form,
.pc-register-form,
.pc-password-lost-form,
.pc-password-reset-form {
	margin-top: 1rem;
}

.pc-login-messages {
	margin-bottom: 1rem;
	padding: 0.75rem 1rem;
	border-radius: var(--pc-radius-sm);
}

.pc-login-messages--error {
	background: rgba(239, 68, 68, 0.15);
	color: #FCA5A5;
}

.pc-login-messages--info {
	background: rgba(34, 197, 94, 0.15);
	color: #86EFAC;
}

.pc-login-form__links,
.pc-register-form__intro,
.pc-register-form__note,
.pc-password-lost-form__intro {
	margin-bottom: 1rem;
	color: var(--pc-text-sec);
	font-size: 0.9375rem;
}

.pc-login-form__links a {
	display: inline-block;
	margin-top: 0.5rem;
}

.pc-form-hint {
	font-size: 0.8125rem;
	color: var(--pc-text-muted);
	margin: -0.5rem 0 1rem;
}

.pc-form-checkbox {
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
	accent-color: var(--pc-accent);
	vertical-align: middle;
}

.pc-recaptcha-container {
	margin-bottom: 1rem;
}

/* Intent: Favorite & Follow | Post as Artist (side-by-side buttons) */
.pc-intent-label {
	display: block;
	margin-bottom: 0.5rem;
}

.pc-intent-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.pc-intent-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 0;
	padding: 0.75rem 1rem;
	font-family: var(--pc-font);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--pc-text-sec);
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius-sm);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pc-intent-btn:hover {
	background: var(--pc-card-bg);
	color: var(--pc-text);
}

.pc-intent-input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}

.pc-intent-btn:has(.pc-intent-input:checked) {
	background: var(--pc-accent);
	border-color: var(--pc-accent);
	color: #fff;
}

.pc-intent-btn:has(.pc-intent-input:checked):hover {
	background: var(--pc-accent-hover);
	border-color: var(--pc-accent-hover);
	color: #fff;
}

.pc-intent-btn__text {
	pointer-events: none;
}

.pc-intent-hint {
	margin-top: 0.375rem;
	font-size: 0.8125rem;
	color: var(--pc-text-muted);
}

.pc-intent-hint--error {
	color: #FCA5A5;
}

.pc-login-form__actions,
.pc-register-form__actions,
.pc-password-lost-form__actions,
.pc-password-reset-form__actions {
	margin-top: 1rem;
}

.pc-verify-email-form__intro {
	margin-bottom: 1rem;
	color: var(--pc-text-sec);
	font-size: 0.9375rem;
}

.pc-verify-email-form__resend {
	margin-top: 1rem;
}

.pc-verify-email-form__actions {
	margin-top: 1.5rem;
}

/* ----- Slots page ------------------------------------------ */
/* ----- Slots page gate ------------------------------------ */
.pc-slopc-gate {
	text-align: center;
	padding: 4rem 1.5rem;
	max-width: 420px;
	margin: 0 auto;
}

.pc-slopc-gate__icon {
	font-size: 2.5rem;
	color: var(--pc-accent);
	margin-bottom: 1rem;
}

.pc-slopc-gate__title {
	font-size: 1.375rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.pc-slopc-gate__body {
	color: var(--pc-text-sec);
	line-height: 1.6;
}

/* ----- Slots page layout ---------------------------------- */
.pc-slopc-page {
	padding-top: 0.5rem;
	padding-bottom: 3rem;
}

.pc-slopc-hero {
	padding: 1.5rem 0 1.25rem;
}

.pc-slopc-hero__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.4rem;
}

.pc-slopc-hero__jump {
	flex-shrink: 0;
	font-size: 0.8125rem;
	padding: 0.35rem 0.875rem;
}

.pc-slopc-hero__title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0;
}

.pc-slopc-hero__lead {
	color: var(--pc-text-sec);
	line-height: 1.6;
	font-size: 0.9375rem;
}

.pc-slopc-section {
	border-top: 1px solid var(--pc-border);
	padding: 1.5rem 0;
}

.pc-slopc-section--highlight {
	background: var(--pc-elevated-bg);
	border-radius: var(--pc-radius);
	border: 1px solid var(--pc-border);
	padding: 1.25rem;
	margin: 0.5rem 0;
}

.pc-slopc-section__title {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pc-text-muted);
	margin-bottom: 0.875rem;
}

.pc-slopc-section__body {
	color: var(--pc-text-sec);
	line-height: 1.65;
	margin-bottom: 0.75rem;
}

.pc-slopc-section__body:last-child {
	margin-bottom: 0;
}

/* ----- Free slot eyebrow ---------------------------------- */
.pc-slopc-free__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pc-accent);
	margin-bottom: 0.4rem;
}

/* ----- Rule cards ----------------------------------------- */
.pc-slopc-rules {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin-top: 0.75rem;
}

.pc-slopc-rule {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.pc-slopc-rule__icon {
	font-size: 1.25rem;
	line-height: 1;
	flex-shrink: 0;
	width: 1.75rem;
	text-align: center;
	margin-top: 0.1rem;
}

.pc-slopc-rule strong {
	display: block;
	color: var(--pc-text);
	font-size: 0.9375rem;
	margin-bottom: 0.15rem;
}

.pc-slopc-rule span {
	color: var(--pc-text-sec);
	font-size: 0.875rem;
	line-height: 1.55;
}

/* ----- Numbered steps ------------------------------------- */
.pc-slopc-steps {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin-top: 0.75rem;
}

.pc-slopc-step {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
}

.pc-slopc-step__num {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--pc-accent);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.05rem;
}

.pc-slopc-step__body {
	color: var(--pc-text-sec);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.pc-slopc-step__body strong {
	color: var(--pc-text);
}

.pc-slopc-step__body a {
	color: var(--pc-accent);
}

/* ----- Coming soon banner --------------------------------- */
.pc-slopc-coming-soon {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	border: 1px dashed var(--pc-accent);
	border-radius: var(--pc-radius-sm);
	padding: 0.875rem 1.125rem;
	color: var(--pc-accent);
	font-size: 0.9375rem;
	font-weight: 500;
	margin: 0.25rem 0 0.5rem;
}

.pc-slopc-coming-soon__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--pc-accent);
	flex-shrink: 0;
}

/* ----- Slot status cards ---------------------------------- */
.pc-slot-cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.25rem;
	list-style: none;
}

.pc-slot-card {
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius-sm);
	padding: 0.875rem 1rem;
}

.pc-slot-card__header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.4rem;
}

.pc-slot-card__badge {
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: var(--pc-accent);
	color: #fff;
	border-radius: 999px;
	padding: 0.15rem 0.55rem;
}

.pc-slot-card__status {
	font-size: 0.875rem;
	font-weight: 500;
}

.pc-slot-card__status--active   { color: var(--pc-success); }
.pc-slot-card__status--expiring { color: #f59e0b; }
.pc-slot-card__status--unused   { color: var(--pc-text-muted); }

.pc-slot-card__meta {
	font-size: 0.8125rem;
	color: var(--pc-text-sec);
	margin-top: 0.2rem;
}

.pc-slot-card__meta a {
	color: var(--pc-accent);
}

.pc-slot-card__meta--muted {
	color: var(--pc-text-muted);
}

/* ----- Feed header + pill toggle --------------------------- */
.pc-feed-header__title-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.pc-shuffle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: rgba(255,255,255,0.35);
	transition: color 0.15s;
	line-height: 0;
}

.pc-shuffle-btn:hover,
.pc-shuffle-btn--active {
	color: #6EE7B7;
}

.pc-feed-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0 0 0.75rem;
}

.pc-feed-header .pc-page-title {
	margin-bottom: 0;
}

.pc-discover-hint {
	font-size: 0.78rem;
	color: var(--pc-text-muted);
	text-align: center;
	margin: -0.25rem 0 0.75rem;
	letter-spacing: 0.01em;
	pointer-events: none;
	will-change: opacity;
}

.pc-filter-toggle {
	display: inline-flex;
	background: var(--pc-elevated-bg);
	border: 1px solid var(--pc-border);
	border-radius: 999px;
	padding: 3px;
	gap: 2px;
}

.pc-filter-btn {
	appearance: none;
	border: none;
	background: transparent;
	color: var(--pc-text-sec);
	font-size: 0.8125rem;
	font-weight: 500;
	padding: 0.3rem 0.875rem;
	border-radius: 999px;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	white-space: nowrap;
	line-height: 1.4;
}

.pc-filter-btn:hover {
	color: var(--pc-text);
}

.pc-filter-btn--active {
	background: var(--pc-accent);
	color: #fff;
}

.pc-filter-btn--active:hover {
	background: var(--pc-accent-hover);
	color: #fff;
}

/* ----- Spotlight button-group bar (feed cards) ------------- */
.pc-card__spotlight-bar {
	display: flex;
	gap: 6px;
	padding: 8px 10px 6px;
}

.pc-card__spotlight-left {
	flex: 3 1 0;        /* 60% */
	min-width: 0;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.8125rem;
	padding: 0.65rem 0.75rem;
}

.pc-card__spotlight-left--empty {
	display: block;
	flex: 3 1 0;
}

.pc-card__spotlight-right {
	flex: 2 1 0;        /* 40% */
	text-align: center;
	font-size: 0.8125rem;
	padding: 0.65rem 0.75rem;
	white-space: nowrap;
}

/* Save overlay moves above the spotlight bar so it doesn't cover Details */
.pc-card--has-spotlight.pc-card--minimal .pc-card__actions--overlay {
	bottom: calc(0.5rem + 60px);
}

/* ----- Spotlight select (edit-post) ------------------------ */
.pc-form__spotlight {
	border-top: 1px solid var(--pc-border);
	padding-top: 1.25rem;
	margin-top: 0.25rem;
}

.pc-spotlight-select {
	cursor: pointer;
}

/* ----- FAQ Accordion --------------------------------------- */
.pc-faq {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 1.5rem 0;
}

.pc-faq__title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--pc-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 0.25rem;
}

.pc-faq__item {
	background: var(--pc-card-bg);
	border: 1px solid var(--pc-border);
	border-radius: var(--pc-radius);
	overflow: hidden;
	transition: box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pc-faq__item:hover {
	background: var(--pc-elevated-bg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.pc-faq__item[open] {
	border-color: var(--pc-accent);
	background: var(--pc-elevated-bg);
}

.pc-faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.1rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--pc-text);
	cursor: pointer;
	list-style: none;
	user-select: none;
}

.pc-faq__question::-webkit-details-marker {
	display: none;
}

.pc-faq__question::after {
	content: '';
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23A0A0A0' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 7l4.5 4.5L13.5 7'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: transform 0.25s ease;
}

.pc-faq__item[open] > .pc-faq__question {
	color: var(--pc-accent);
}

.pc-faq__item[open] > .pc-faq__question::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%236EE7B7' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 7l4.5 4.5L13.5 7'/%3E%3C/svg%3E");
	transform: rotate(180deg);
}

.pc-faq__answer {
	padding: 0 1.1rem 1.1rem;
	padding-top: 0.75rem;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--pc-text-sec);
	border-top: 1px solid var(--pc-border);
}

.pc-faq__answer strong {
	color: var(--pc-text);
	font-weight: 500;
}

/* ==========================================================================
   Image lightbox (app-mode only) — remove block + js/lightbox.js + enqueue
   to back this off.
   ========================================================================== */

.pc-lightbox {
	position: fixed;
	inset: 0;
	background: #000;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.pc-lightbox--open {
	opacity: 1;
	pointer-events: auto;
}

.pc-lightbox__img {
	max-width: 100vw;
	max-height: 100vh;
	object-fit: contain;
	transform-origin: center center;
	will-change: transform;
	user-select: none;
	-webkit-user-select: none;
}

/* Prevent page scroll while lightbox is open */
body.pc-lightbox-active {
	overflow: hidden;
}

/* Make the post image show it's tappable */
.app-mode .pc-post-detail__image {
	cursor: zoom-in;
}

.supporter-active .menu-item.supporter-active {
	display: block !important;
}
.supporter-active .menu-item.supporter-inactive {
	display: none !important;
}
.supporter-inactive .menu-item.supporter-inactive {
	display: block !important;
}
.supporter-inactive .menu-item.supporter-active {
	display: none !important;
}
.menu-item--search { border-bottom: 1px #A0A0A0 solid}