/* Self-hosted custom font: WOFF2 + WOFF fallback */

/* Fizzie Purple: #424284  */
/* Fizzie Green : #a9b962  */

@font-face {
	font-family: "cc-thats-all-folks", sans-serif;
	font-weight: 400;
	font-style: normal;
}

:root { 
	--hdr: 72px; --hero-height: 0px; 
} 
* { box-sizing: border-box; }
html, body { 
	height: 100%; 
	margin: 0; 
}

/* Use custom font globally */
body {
	font-family: "cc-thats-all-folks", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: #424284;
	font-synthesis: none; /* prevent fake bold/italic */
	-webkit-text-stroke: 1px #a9b962;
	paint-order: stroke fill;
}

/* Form controls: suppress artistic stroke — needs clean, readable text */
input,
textarea,
select {
	-webkit-text-stroke: 0;
	paint-order: fill;
}

/* Ensure H1 uses the regular face unless you add a bold face */
h1 { 
	font-family: "cc-thats-all-folks", sans-serif; 
	font-weight: 400; 
	text-align: center; 
	font-size: 7.7rem;
}
h2 {
	font-weight: 400; 
	text-align: center; 
	font-size: 5.2rem; 
	padding-bottom: 0px; 
	padding-top: 0px;
	margin: 0;
}
h3 {
	font-weight: 400; 
	text-align: center; 
	font-size: 2.5rem; 
	padding-bottom: 0px; 
	padding-top: 0px;
}
.hug-up h3 {
	top: auto;
}
.easy-read {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"
}

.rainbow span {
  	display: inline-block;
}
.bigger {
	font-size: 20px;
}

.header-title{
	margin-left: auto;
	flex: 1 1 auto;
	min-width: 0;

	font-size: clamp(16px, 3.2vw, 72px);
	line-height: 1;

	-webkit-text-stroke: clamp(2px, 0.28vw, 5px) #fff;
	paint-order: stroke fill;

	white-space: nowrap;         /* KEY: prevents header growth */
	text-align: right;
}

.header-title p {
    font-size: 1.5rem;
    white-space: normal;
    color: #ffffff;
    -webkit-text-stroke: 1.5px #424284;
    paint-order: stroke fill;
    line-height: 1.5;
    max-width: min(80vw, 1400px);
    width: 80%;
    margin: 0.5rem auto 1rem;
    text-align: center;
    text-wrap: pretty;
}

.repeat-green-purple-glitter{
	background-image: url("../images/green_purple_glitter.png");
	background-repeat: repeat;
}

.repeat-green-glitter{
	background-image: url("../images/green_glitter.png");
	background-repeat: repeat;
}
.repeat-purple-glitter{
	background-image: url("../images/purple_glitter.png");
	background-repeat: repeat;
}
/* hamburger hidden on desktop */
.nav-toggle{
	display: none;

	/* force standard font */
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	font-weight: 700;
	margin-left: 12px;
	font-size: 28px;
	line-height: 1;
	background: rgba(255,255,255,0.15);
	border: 0;
	border-radius: 8px;
	padding: 8px 10px;
	color: #fff;
	-webkit-text-stroke: 0;
	cursor: pointer;
}

@media (max-width: 980px){
	header nav{ 
		display: none;
	}
	.nav-toggle{ 
		display: inline-flex; 
		align-items:center; 
		justify-content:center; 
	}
}
@media (max-width: 480px){
  .floating-br-image-lf{
    left: 16px;              /* free up space */
    width: min(240px, 60vw); /* smaller cap + more responsive */
  }
}

/* dropdown menu: absolutely positioned below header */
header.menu-open {
	overflow: visible;
}

header.menu-open nav{
	display: flex;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;

	padding: clamp(6px, 6vw, 12px) clamp(10px, 6vw, 20px);
	gap: 12px;

	z-index: 9;

	background-image: url("../images/fizzie_banner.png");
	background-repeat: repeat;
	backdrop-filter: blur(2px);
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

header{
	position: fixed;
	inset: 0 0 auto 0;
	height: var(--hdr);          /* LOCKED */
	z-index: 10;

	display: flex;
	align-items: center;
	gap: 16px;
	padding: 0 20px;

	background-image: url("../images/fizzie_banner.png");
	background-repeat: repeat;
	background-position: left;
	backdrop-filter: blur(2px);
	box-shadow: 0 10px 30px rgba(0,0,0,.35);

	overflow: hidden;
}

  footer {
	display: flex; 
	align-items: center; 
	gap: 16px; 
	padding: 0 20px;
	background-image: url("../images/fizzie_banner.png");
	background-repeat: repeat;
	background-position: left;
	backdrop-filter: blur(2px);
	padding: 48px 20px;
	z-index: 0;
  }
footer a {
	color: #424284; 
	text-decoration: none; 
	padding: 8px 10px; 
	border-radius: 6px;
	background: rgba(105,105,180,0.15);
	-webkit-text-stroke: 5px #fff;
	paint-order: stroke fill;
}

 .logo{
  width: clamp(34px, 6vw, 68px);
  height: clamp(34px, 6vw, 68px);

  flex: 0 0 clamp(34px, 6vw, 68px);

  background-image: url("../images/LPG_Minimalist_Logo-01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

nav { 
	display: flex; 
	gap: 20px; 
	font-size: clamp(14px, 1vw, 28px);
}
nav a {
	color: #424284; 
	text-decoration: none; 
	padding: 8px 10px; 
	border-radius: 6px;
	background: rgba(105,105,180,0.15);
	-webkit-text-stroke: 5px #fff;
	paint-order: stroke fill;
}
nav a:hover {
	background: rgba(101,101,178,0.85);
}

.nav-subscribe-btn {
	background: rgba(155,89,182,0.75);
	color: #fff;
	border: none;
	padding: 8px 12px;
	border-radius: 6px;
	font-size: clamp(12px, 1vw, 20px);
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	font-family: inherit;
	letter-spacing: 0.04em;
	-webkit-text-stroke: 0;
}

.nav-subscribe-btn:hover { background: rgba(155,89,182,1); }

.subscribe-btn {
  display: inline-block;
  padding: 14px 36px;
  background: rgba(155,89,182,0.85);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 0;
  transition: background 0.2s;
}
.subscribe-btn:hover { background: rgba(155,89,182,1); }

header nav{
	flex: 0 0 auto;
}

/* ── Subscribe drawer ── */
.subscribe-drawer {
	position: fixed;
	top: var(--hdr);
	left: 0;
	right: 0;
	z-index: 11;
	background: rgba(28, 20, 40, 0.97);
	backdrop-filter: blur(6px);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.subscribe-drawer.open { max-height: 220px; }

.subscribe-drawer-inner {
	padding: 20px 24px;
	max-width: 640px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.subscribe-drawer h4 {
	color: #e0d4f7;
	font-size: 15px;
	font-weight: 600;
	margin: 0;
	-webkit-text-stroke: 0;
}

.subscribe-form {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
	flex: 1;
	min-width: 150px;
	padding: 9px 12px;
	border: 1px solid rgba(155,89,182,0.4);
	border-radius: 6px;
	background: rgba(255,255,255,0.08);
	color: #fff;
	font-size: 14px;
	font-family: inherit;
}

.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }

.subscribe-form input:focus {
	outline: none;
	border-color: #9b59b6;
	background: rgba(255,255,255,0.12);
}

.subscribe-submit-btn {
	padding: 9px 22px;
	background: #9b59b6;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	font-family: inherit;
	-webkit-text-stroke: 0;
}

.subscribe-submit-btn:hover { background: #8e44ad; }

.subscribe-msg {
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 5px;
	margin: 0;
	-webkit-text-stroke: 0;
}

.subscribe-msg-success { background: rgba(39,174,96,0.2); color: #6ddb98; }
.subscribe-msg-exists  { background: rgba(243,156,18,0.2); color: #f5c76e; }
.subscribe-msg-error   { background: rgba(231,76,60,0.2);  color: #f1938a; }
.fuzzy-text-glow {
	border-radius: 6px;
	background: rgba(105,105,180,0.15);
	-webkit-text-stroke: 5px #fff;
	paint-order: stroke fill;
}
.video-bg {
	position: fixed; top: var(--hdr); left: 0; width: 100vw; height: calc(100vh - var(--hdr));
	object-fit: cover; z-index: -3; pointer-events: none;
}
.video-overlay {
	position: fixed; top: var(--hdr); left: 0; width: 100vw; height: calc(100vh - var(--hdr));
	background: rgba(0,0,0,0); z-index: -1; pointer-events: none;
}
.image-bg-fixed {
	position: fixed; top: var(--hdr); left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,1); z-index: -1; pointer-events: none;
}
.image-bg {
	position: relative; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,1); z-index: -1; pointer-events: none;
}
.image-shadow {
	box-shadow: 0 10px 30px rgba(0,0,0.35);
}

main { 
	padding-top: var(--hdr);
	justify-content: center;
}
/*      .spacer { height: 40vh; }*/
.stack{
	position: relative;
	padding-top: var(--hdr);
}
.panel {
	background: url("../images/fizzie_fleece_bg.png");
	background-repeat: repeat;
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
	position: relative;
	z-index: 4;
	margin-top: var(--hero-height);
	min-height: calc(100vh - var(--hdr));
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 3rem;
	align-items: start;

	padding: 50px 7%;
}
.clear_panel-2 {
	min-height: calc(100vh - var(--hdr));
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
	position: relative;
	z-index: 0;
}
.clear_panel {
	height: calc(100vh - var(--hdr));
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
	z-index: -1;
}
.video-play-btn-wrap {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    pointer-events: auto;
    transition: opacity 0.3s;
}
.video-play-btn-wrap.is-hidden {
    opacity: 0;
    pointer-events: none;
}
.video-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 40px;
    background: rgba(155, 89, 182, 0.85);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    font-family: inherit;
    -webkit-text-stroke: 1.5px #424284;
    paint-order: stroke fill;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0,0,0,0.45);
    transition: background 0.2s, transform 0.15s;
}
.video-play-btn:hover {
    background: rgba(155, 89, 182, 1);
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .video-play-btn-wrap {
        bottom: 1.5rem;
    }
    .video-play-btn {
        padding: 11px 28px;
    }
}
.fur_panel {
	background: url("../images/fur.png");
	background-repeat: repeat;
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
	min-height: calc(100vh - var(--hdr));
	width: 100%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.fleece_panel {
	background: url("../images/fizzie_fleece_bg.png");
	background-repeat: repeat;
	box-shadow: 0 10px 30px rgba(0,0,0,.35);
	min-height: calc(100vh - var(--hdr));
	width: 100%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.clear_panel > :last-child,
.panel > :last-child,
.fur_panel > :last-child,
.fleece_panel > :last-child {
	margin-bottom: 0;
}
/* stays over video, but under the scrolling content */
.floating-br-image{
	position: fixed;
	right: 60px;
	top: 120px;
	z-index: -1;
	max-width: min(320px, 40vw);
	max-height: calc(100vh - var(--hdr) - 48px);
	pointer-events: none;
	filter: drop-shadow(0 12px 12px rgba(0,0,0,.35));
}
/* make the container the positioning context */
.floating-br-image-lf{
  /* keep your existing positioning */
  position: fixed;
  left: 60px;
  top: 120px;
  z-index: 5;
  display: grid;
  overflow: hidden;
  width: min(320px, 7vw);
/*  width: clamp(120px, 28vw, 320px);*/
}

.floating-br-image-lf a{
  display: block;
}

.floating-br-image-lf img{
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--hdr) - 60px);
}

/* label sits on top of the image, anchored to bottom */
.floating-br-image-lf .episode-label{
	grid-area: 1 / 1;
	align-self: center;
	justify-self: stretch;
	margin: 0 12px 12px 12px;

	padding: 10px 14px;

	color: #B41C1C;
	font-size: 18px;
	text-align: center;

	overflow: hidden;
	white-space: normal;
	text-overflow: ellipsis;

	z-index: 5;
	pointer-events: auto;
}
.circle-widget{
	position: fixed;          /* or absolute inside your floating container */
	left: 60px;
	top: 120px;
	width: 220px;             /* overall badge size */
	height: 220px;
	z-index: 8;               /* above page content, below header (10) and nav dropdown (9) */
}

/* The clickable circular "window" */
.circle-viewport{
	position: absolute;
	top: calc(9% + 9px);
	left: 9%;
	right: 9%;
	bottom: calc(9% - 13px);
	border-radius: 50%;
	overflow: hidden;         /* the actual mask */
	background: #fff;         /* optional if your inner images have transparency */
}

/* Slides stack on top of each other; only active is visible */
.circle-slide{
	position: absolute;
	inset: 0;
	/*  display: block;*/

	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 400ms ease;
	z-index: 0;
}

.circle-slide.is-active{
	opacity: 1;
	pointer-events: auto;     /* only active slide is clickable */
	visibility: visible;
	z-index: 10;
}

.circle-slide img{
	width: 100%;
	height: 100%;
	object-fit: cover;        /* fill the circle nicely */
	display: block;
}

/* Decorative frame goes above everything */
.circle-frame{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;     /* click passes through to the inner links */
}
.panel-intro-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem 0;
    width: 100%;
}
.contact-intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-intro-img img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.two-col-contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: stretch;
}

.two-col-contact .fleece_panel,
.two-col-contact .fur_panel{
  width: 100%;
  min-height: 400px; /* adjust as needed */
}

@media (max-width: 768px){
  .two-col-contact{
    grid-template-columns: 1fr;
    height: auto;
  }
  .two-col-contact .fleece_panel,
  .two-col-contact .fur_panel {
    min-height: auto;
  }
}
.contact-form{
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  padding: 24px;
}

.contact-form label{
  font-size: 20px;
  line-height: 1.1;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #CDC97C;
  border-radius: 10px;
  background: rgba(255,255,255,0.85);
  color: #424284;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  -webkit-text-stroke: 0;
  outline: none;
}

.contact-form textarea{
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: #B41C1C;
  box-shadow: 0 0 0 3px rgba(180,28,28,0.15);
}

.contact-form button{
  align-self: flex-start;
  padding: 12px 18px;
  border: 0;
  border-radius: 10px;
  background: #424284;
  color: #fff;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 20px;
  cursor: pointer;
  -webkit-text-stroke: 0;
}

.contact-form button:hover{
  background: #2a2860;
}

.contact-form .g-recaptcha {
  margin: 4px 0;
}

.contact-banner {
  padding: 16px 24px;
  margin: 16px;
  border-radius: 8px;
  font-size: 18px;
  text-align: center;
  -webkit-text-stroke: 0;
}
.contact-success {
  background: rgba(60, 160, 80, 0.88);
  color: #fff;
  -webkit-text-stroke: 1.5px #424284;
  paint-order: stroke fill;
}
.contact-error {
  background: rgba(180, 28, 28, 0.88);
  color: #fff;
  -webkit-text-stroke: 1.5px #424284;
  paint-order: stroke fill;
}
#loading-screen{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/fizzie_banner.png") repeat;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#loading-screen.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-inner{
  text-align: center;
}

.loading-logo{
  width: 96px;
  height: auto;
  display: block;
  margin: 0 auto 16px auto;
}

.loading-text{
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 28px;
  color: #B41C1C;
  -webkit-text-stroke: 1px #e5dcce;
  paint-order: stroke fill;
}
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
	justify-content: center;
	max-width: 1200px;
}

.filter-btn {
    padding: 0.55rem 0.9rem;
    border: 1px solid #424284;
    background: #cfcc85;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
	font-family: "cc-thats-all-folks";
	color: #424284;
	-webkit-text-stroke: 1.5px #fff;
	paint-order: stroke fill;
}

.filter-btn:hover,
.filter-btn.active {
    background: #EDE866;
    color: #424284;
    border-color: #424284;
}
.gallery-filter-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	justify-content: center;
}

/* ── Gallery pagination controls ── */
.gallery-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 16px;
  gap: 12px;
  flex-wrap: wrap;
}

.gallery-controls label {
  font-size: 13px;
  margin-right: 6px;
  -webkit-text-stroke: 0;
}

.gallery-controls select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: inherit;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  -webkit-text-stroke: 0;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 0 8px;
}

.gallery-page-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: inherit;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  -webkit-text-stroke: 0;
  transition: background 0.15s;
}

.gallery-page-btn:hover:not(:disabled) { background: rgba(255,255,255,0.25); }
.gallery-page-btn:disabled { opacity: 0.35; cursor: default; }

.gallery-page-info {
  font-size: 13px;
  -webkit-text-stroke: 0;
}

.gallery-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  opacity: 0.6;
  -webkit-text-stroke: 0;
}
.gallery-filter-background {
	background-image: url("../images/fizzie_banner.png");
	background-repeat: repeat;
}
.gallery-section {
	max-width: 2000px;
	margin: 0 auto;
	padding: 20px;
	justify-content: center;
	flex: auto;
}
.gallery-section-background {
	background-image: url("../images/fur.png");
	background-repeat: repeat;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
	z-index: 1;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background: #424284;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.gallery-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    box-sizing: border-box;
    overflow-y: auto;
    text-align: center;
}

.lightbox.open {
    display: block;
}

.lightbox img {
    max-width: 90%;
    max-height: 75vh;
    margin: 0 auto 1rem auto;
    display: block;
}

.lightbox-caption {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    -webkit-text-stroke: 0;
}

.lightbox-caption h3,
.lightbox-caption p {
    -webkit-text-stroke: 0;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    line-height: 1;
    border: none;
    background: transparent;
    color: #fff;
    -webkit-text-stroke: 1.5px #424284;
    paint-order: stroke fill;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 65vh;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    -webkit-text-stroke: 1.5px #424284;
    paint-order: stroke fill;
    font-size: 2rem;
    padding: 0.6rem 0.9rem;
    cursor: pointer;
    border-radius: 4px;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 1.5rem;
        padding: 0.45rem 0.7rem;
    }
}
.twenty-percent {
	transform: scale(0.2);
	transform-origin: top left;
}
.fifty-percent {
	transform: scale(0.5);
	transform-origin: top left;
}
.seventy-percent {
	transform: scale(0.7);
	transform-origin: top left;
}
.top-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.middle {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	padding-top: 2rem;
}
.bottom-right {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: 8rem; /* this creates the lower right image look */
}
.top-left img,
.bottom-right img {
	width: 100%;
	max-width: 270px;
	height: auto;
	display: block;
}
.top-left p,
.bottom-right p {
	max-width: 320px;
	margin: 0;
}
.middle p {
	margin: 0 0 20 0;
}
.side-image img {
    display: block;
}

/* =============================================================
   EPISODES PAGE
   ============================================================= */

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.episodes-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  grid-column: 1 / -1;
}

.episode-card {
  background: rgba(25,0,92,0.73);
  border: 1px solid rgba(25,0,92,0.82);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.episode-card:hover,
.episode-card:focus {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(0,0,0,0.65);
  outline: none;
}

.episode-thumbnail {
  position: relative;
  background: #111;
}

.episode-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.episode-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  font-size: 3rem;
  color: #fff;
  -webkit-text-stroke: 1.5px #424284;
  paint-order: stroke fill;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.episode-card:hover .episode-play-overlay,
.episode-card:focus .episode-play-overlay {
  opacity: 1;
}

.episode-info {
  padding: 0.9rem 1.1rem 1.1rem;
}

.episode-number {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
  -webkit-text-stroke: 0;
}

.episode-title {
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 0 0.3rem 0;
  color: #fff;
  -webkit-text-stroke: 0;
  text-align: left;
}

.episode-date {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 0.5rem 0;
  -webkit-text-stroke: 0;
}

.episode-description {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  margin: 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-text-stroke: 0;
}

/* ── Episode modal ── */

.episode-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}

.episode-modal.open {
  display: flex;
}

.episode-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}

.episode-modal-content {
  position: relative;
  z-index: 1;
  width: min(900px, 96vw);
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.75);
}

.episode-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border: none;
  color: #fff;
  -webkit-text-stroke: 1.5px #424284;
  paint-order: stroke fill;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  cursor: pointer;
}

.episode-modal-close:hover {
  background: rgba(180,28,28,0.85);
}

.episode-player-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.episode-player-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Custom controls bar ── */

.episode-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #0d0d1a;
}

.ep-ctrl-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
  -webkit-text-stroke: 0;
}

.ep-ctrl-btn:hover {
  background: rgba(255,255,255,0.14);
}

.ep-progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.ep-progress-fill {
  height: 100%;
  width: 0%;
  background: #B41C1C;
  border-radius: 3px;
  pointer-events: none;
  transition: width 0.25s linear;
}

.ep-time {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-text-stroke: 0;
}

.episode-modal-info {
  padding: 1rem 1.3rem 1.3rem;
}

.episode-modal-info h3 {
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0 0 0.45rem 0;
  color: #fff;
  text-align: left;
  -webkit-text-stroke: 0;
}

.episode-modal-info p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.5;
  -webkit-text-stroke: 0;
}

@media (max-width: 600px) {
  .episodes-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1.2rem;
  }
  .episode-controls {
    gap: 5px;
    padding: 6px 8px;
  }
  .ep-time {
    display: none;
  }
}

/* =============================================================
   MOBILE RESPONSIVE ADDITIONS
   ============================================================= */

/* Tablet (max 768px): stack panel columns, fix widgets, fix banner text wrapping */
@media (max-width: 768px) {
  .panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 30px 5%;
  }
  .bottom-right {
    margin-top: 0;
  }
  .circle-widget {
    left: 10px;
    top: 80px;
    width: 140px;
    height: 140px;
  }
  section.header-title {
    white-space: normal;
  }
  section.header-title h2 {
    font-size: clamp(1.8rem, 10vw, 5.2rem);
  }
}

/* Tablet only — larger play button touch target (does not override the 480px phone rule) */
@media (min-width: 481px) and (max-width: 768px) {
  .floating-br-image-lf {
    left: 20px;
    width: min(200px, 25vw);
  }
}

/* Phone (max 480px): tighten panel spacing, size circle widget for small screens, scale panel headings */
@media (max-width: 480px) {
  .panel {
    gap: 1rem;
    padding: 20px 4%;
  }
  .circle-widget {
    left: 6px;
    top: 76px;
    width: 110px;
    height: 110px;
  }
  .panel h2 {
    font-size: clamp(2rem, 12vw, 5.2rem);
  }
  .panel h3 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
}

/* ── Hamburger dropdown: stack links vertically on mobile ── */
@media (max-width: 768px) {
  header.menu-open nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 20px 16px;
  }
}

/* ── Footer: stack and wrap on mobile ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 20px;
  }
  footer nav {
    flex-wrap: wrap;
    gap: 4px 2px;
  }
  footer p {
    text-align: left !important;
    width: 100%;
    margin: 0;
  }
}

/* ── Play button: consistent size across all mobile (overrides earlier rules) ── */
@media (max-width: 768px) {
  .floating-br-image-lf {
    left: 16px;
    width: min(160px, 22vw);
  }
}

/* =============================================================
   STORE PAGE
   ============================================================= */

/* ── Catalog layout: sidebar + grid ── */

.store-catalog-layout {
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - var(--hdr));
}

/* Sidebar column stretches to match the product grid height */
.store-filter-sidebar {
  width: 210px;
  min-width: 210px;
  flex-shrink: 0;
  position: relative;
}

/* Full-height bg div holds the rotated texture and clips it,
   separate from the sticky inner so overflow:hidden never
   traps position:sticky */
.store-filter-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.store-filter-bg::before {
  content: '';
  position: absolute;
  width: 10000px;
  height: 10000px;
  top: 50%;
  left: 50%;
  margin-top: -5000px;
  margin-left: -5000px;
  background: url('../images/fizzie_fleece_bg.png') repeat;
  transform: rotate(90deg);
}

/* Filter content is sticky, independent of the bg layer */
.store-filter-inner {
  position: sticky;
  top: var(--hdr);
  z-index: 1;
  padding: 1.25rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-height: calc(100vh - var(--hdr));
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(66,66,132,0.5) transparent;
}

.store-catalog-main {
  flex: 1;
  min-width: 0;
}

/* ── Filter buttons ── */

.store-filter-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: #424284;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  -webkit-text-stroke: 0;
  text-shadow: none;
  margin-bottom: 0.4rem;
  transition: background 0.15s ease;
}

.store-filter-btn.active,
.store-filter-btn:hover {
  background: #2a2860;
}

.store-filter-group {
  margin-bottom: 0.2rem;
}

.store-filter-type-btn {
  display: block;
  width: 100%;
  padding: 8px 28px 8px 12px;
  background: rgba(66,66,132,0.72);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  text-align: left;
  -webkit-text-stroke: 0;
  text-shadow: none;
  transition: background 0.15s ease;
  position: relative;
}

.store-filter-type-btn::after {
  content: '▸';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.store-filter-group:has(.store-filter-cats.open) .store-filter-type-btn::after {
  transform: translateY(-50%) rotate(90deg);
}

.store-filter-type-btn.active,
.store-filter-type-btn:hover {
  background: rgba(66,66,132,0.95);
}

.store-filter-cats {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 3px 0 3px 10px;
}

.store-filter-cats.open {
  display: flex;
}

.store-filter-cat-btn {
  display: block;
  width: 100%;
  padding: 6px 10px;
  background: rgba(169,185,98,0.3);
  color: #2a2860;
  border: none;
  border-radius: 5px;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  text-align: left;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 3px rgba(255,255,255,0.5);
  transition: background 0.15s ease;
}

.store-filter-cat-btn.active {
  background: #a9b962;
  color: #2a2860;
}

.store-filter-cat-btn:hover {
  background: rgba(169,185,98,0.55);
}

/* ── Mobile filter toggle (hidden on desktop) ── */

.store-filter-toggle {
  display: none;
  margin: 1rem 2rem;
  padding: 10px 16px;
  background: #424284;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.store-card {
  display: flex;
  flex-direction: column;
  background: rgba(66,66,132,0.82);
  border: 1px solid rgba(66,66,132,0.5);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.store-card:hover {
  transform: translateY(-4px);
  background: rgba(66,66,132,0.97);
}

.store-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.store-card:hover .store-card-image img {
  transform: scale(1.04);
}

.store-card-info {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.store-card-name {
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 1.05rem;
  margin: 0;
  color: #fff;
  -webkit-text-stroke: 0;
}

.store-card-price {
  font-size: 1rem;
  color: #EDE866;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-card-status {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-stock-out {
  color: #ff8080;
}

.store-stock-preorder {
  color: #EDE866;
}

.store-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #424284;
  font-size: 1.2rem;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

.store-empty a {
  color: #2a2860;
  text-decoration: underline;
}

/* ── Product image carousel ── */

.store-carousel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.store-carousel-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  background: rgba(66,66,132,0.06);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.carousel-slide {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  display: flex;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Video slide */
.carousel-video-thumb {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  -webkit-text-stroke: 0;
  text-shadow: none;
  transition: background 0.2s ease;
  width: 100%;
}

.carousel-play-btn:hover {
  background: rgba(0,0,0,0.55);
}

.carousel-video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Thumbnail nav strip */
.carousel-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.carousel-prev,
.carousel-next {
  flex-shrink: 0;
  background: rgba(66,66,132,0.75);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  -webkit-text-stroke: 0;
  text-shadow: none;
  transition: background 0.15s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #424284;
}

.carousel-thumbs {
  display: flex;
  gap: 5px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.carousel-thumbs::-webkit-scrollbar { display: none; }

.carousel-thumb-btn {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease;
}

.carousel-thumb-btn.active {
  border-color: #424284;
}

.carousel-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Single-image fallback (no StoreImages rows yet) */
.store-single-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ── Detail view ── */

.store-detail {
  padding: 3rem 5%;
}

.store-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.store-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.store-detail-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255,255,255,0.92);
  padding: 2rem;
  border-radius: 10px;
}

.store-detail-info h2 {
  text-align: left;
  font-size: 2.5rem;
  color: #2a2860;
  -webkit-text-stroke: 0;
}

.store-category {
  font-size: 0.9rem;
  color: #424284;
  margin: 0;
  -webkit-text-stroke: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.store-price {
  font-size: 2rem;
  color: #6b7a32;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-price-was {
  font-size: 1.2rem;
  color: #888;
  margin: 0;
  -webkit-text-stroke: 0;
  text-decoration: line-through;
}

.store-sale-price {
  font-size: 2rem;
  color: #c0392b;
  font-weight: 700;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-sale-msg {
  font-size: 0.95rem;
  color: #c0392b;
  font-weight: 600;
  margin: 2px 0 0;
  -webkit-text-stroke: 0;
}

.store-sale-ends {
  font-size: 0.85rem;
  color: #856404;
  background: #fff3cd;
  border-radius: 4px;
  padding: 4px 10px;
  display: inline-block;
  margin-top: 6px;
  -webkit-text-stroke: 0;
}

.store-card-price-was {
  font-size: 0.8rem;
  color: #aaa;
  text-decoration: line-through;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-card-sale-price {
  font-size: 1rem;
  color: #c0392b;
  font-weight: 700;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-stock {
  font-size: 0.9rem;
  color: #424284;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-description {
  font-size: 1rem;
  color: #2a2860;
  line-height: 1.6;
  margin: 0;
  -webkit-text-stroke: 0;
}

.store-buy-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #424284;
  color: #fff;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 10px;
  -webkit-text-stroke: 0;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.store-buy-btn:hover {
  background: #2a2860;
}

.store-back-btn {
  font-size: 0.9rem;
  color: #424284;
  text-decoration: underline;
  align-self: flex-start;
  -webkit-text-stroke: 0;
}

.store-back-btn:hover {
  color: #2a2860;
}

/* Detail-view overrides: stock status on light background needs dark colors */
.store-detail-info .store-stock-out { color: #c0392b; }
.store-detail-info .store-stock-preorder { color: #6b7a32; }

.store-section-header {
  text-align: center;
  padding: 2rem 2rem 0;
  color: #fff;
  -webkit-text-stroke: 1.5px #424284;
  paint-order: stroke fill;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
}

/* ── Pre-order interest form ── */
.preorder-wrap {
  border-top: 1px solid rgba(0,0,0,0.15);
  padding-top: 1rem;
}

.preorder-label {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.6);
  margin: 0 0 0.6rem;
  -webkit-text-stroke: 0;
}

.preorder-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.preorder-form input,
.preorder-input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.7);
  color: #333;
  font-size: 0.95rem;
  font-family: inherit;
}

.preorder-input.field-error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.08);
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.25);
}

.field-error-msg {
  color: #e74c3c;
  font-size: 0.8rem;
  margin: 4px 0 0 2px;
  -webkit-text-stroke: 0;
}

.preorder-form input::placeholder,
.preorder-input::placeholder { color: rgba(0,0,0,0.4); }
.preorder-form input:focus,
.preorder-input:focus {
  outline: none;
  border-color: #9b59b6;
  box-shadow: 0 0 0 3px rgba(155,89,182,0.2);
}

.preorder-btn {
  display: inline-block;
  padding: 11px 24px;
  background: #a9b962;
  color: #2a2860;
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s ease;
  -webkit-text-stroke: 0;
}
.preorder-btn:hover { background: #8fa04e; }

.preorder-msg {
  font-size: 0.9rem;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0;
  -webkit-text-stroke: 0;
}
.preorder-success {
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.35);
  color: #1a6b3a;
}
.preorder-exists {
  background: rgba(52,152,219,0.15);
  border: 1px solid rgba(52,152,219,0.35);
  color: #1a5276;
}

@media (max-width: 768px) {
  .store-detail-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .store-detail-info h2 {
    text-align: center;
    font-size: 2rem;
  }
  .store-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    padding: 1rem;
    gap: 1rem;
  }

  /* Catalog sidebar collapses on mobile */
  .store-catalog-layout {
    flex-direction: column;
  }

  .store-filter-sidebar {
    width: 100%;
    min-width: 0;
    position: static;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .store-filter-sidebar.mobile-open {
    max-height: 60vh;
    overflow-y: auto;
  }

  /* Hide the decorative bg column on mobile */
  .store-filter-bg {
    display: none;
  }

  .store-filter-inner {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: none;
    padding: 0.75rem;
  }

  .store-filter-btn,
  .store-filter-type-btn,
  .store-filter-cat-btn {
    width: auto;
  }

  .store-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================================
   GLITTER PANEL READABILITY
   Purple text with green stroke needs a white glow on the
   fizzie_fleece_bg / fizzie_banner glitter backgrounds so it
   separates from the busy, similarly-coloured pattern.
   fur_panel is white, so purple text there is already fine.
   ============================================================= */

.panel h3:not(.fuzzy-text-glow),
.panel h2:not(.fuzzy-text-glow),
.panel p,
.panel li,
.fleece_panel > h3,
.fleece_panel > div > h3,
.fleece_panel > div > p,
.fleece_panel .contact-intro-text h3,
.fleece_panel .contact-intro-text p,
.gallery-filter-background h3,
.gallery-filter-section h3 {
  text-shadow: 0 1px 6px rgba(255,255,255,0.75), 0 0 14px rgba(255,255,255,0.45);
}

/* Contact form labels sit directly on the fleece panel glitter */
.contact-form label {
  text-shadow: 0 1px 4px rgba(255,255,255,0.65);
}

/* Store detail info box: already light/white background — suppress stroke
   so the dark-on-light text stays crisp */
.store-detail-info,
.store-detail-info h2,
.store-detail-info p,
.store-detail-info a {
  -webkit-text-stroke: 0;
  text-shadow: none;
}

/* =============================================================
   EPISODES — CATALOG ADDITIONS
   ============================================================= */

/* Section headers between status groups */
.ep-section-header {
  padding: 2rem 2rem 0.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.ep-section-header h3 {
  font-size: 1.3rem;
  color: rgba(25,0,92,0.52);
  font-weight: 400;
  text-align: left;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  -webkit-text-stroke: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.5rem;
}

/* Unreleased cards — static, non-interactive */
.episode-card--unreleased {
  cursor: default;
  opacity: 0.78;
  text-decoration: none;
}

.episode-card--unreleased:hover,
.episode-card--unreleased:focus {
  transform: none;
  background: rgba(255,255,255,0.07);
  outline: none;
}

/* Status badge on unreleased cards */
.ep-status-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-text-stroke: 0;
  margin-bottom: 0.3rem;
}

.ep-status--post          { background: #2980b9; color: #fff; -webkit-text-stroke: 1.5px #424284; paint-order: stroke fill; }
.ep-status--production    { background: #d35400; color: #fff; -webkit-text-stroke: 1.5px #424284; paint-order: stroke fill; }
.ep-status--preproduction { background: #7d3c98; color: #fff; -webkit-text-stroke: 1.5px #424284; paint-order: stroke fill; }
.ep-status--pitch         { background: #5d6d7e; color: #fff; -webkit-text-stroke: 1.5px #424284; paint-order: stroke fill; }
.ep-status--unknown       { background: #5d6d7e; color: #fff; -webkit-text-stroke: 1.5px #424284; paint-order: stroke fill; }

/* No-image placeholder fills the thumbnail area with a tinted bg */
.ep-no-image {
  width: 100%;
  height: 100%;
}

.ep-no-image--post          { background: rgba(52,152,219,0.18);  }
.ep-no-image--production    { background: rgba(230,126,34,0.18);  }
.ep-no-image--preproduction { background: rgba(155,89,182,0.18);  }
.ep-no-image--pitch         { background: rgba(127,140,141,0.12); }
.ep-no-image--unknown       { background: rgba(127,140,141,0.1);  }

/* =============================================================
   EPISODES — DETAIL PAGE
   ============================================================= */

.ep-detail-section {
  padding: 3rem 5%;
}

.ep-detail-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.ep-detail-back {
  display: inline-block;
  font-size: 0.88rem;
  color: #424284;
  text-decoration: none;
  margin-bottom: 1.25rem;
  -webkit-text-stroke: 0;
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.ep-detail-back:hover {
  opacity: 1;
  text-decoration: underline;
}

.ep-detail-title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: #2a2860;
  text-align: left;
  margin: 0 0 0.4rem;
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 6px rgba(255,255,255,0.75), 0 0 14px rgba(255,255,255,0.45);
}

.ep-detail-date {
  font-size: 0.88rem;
  color: #424284;
  margin: 0 0 1.5rem;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 4px rgba(255,255,255,0.6);
  opacity: 0.8;
}

.ep-detail-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.ep-detail-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ep-detail-description {
  font-size: 1.05rem;
  color: #2a2860;
  line-height: 1.65;
  margin: 0 0 2rem;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 4px rgba(255,255,255,0.6);
}

.ep-detail-shownotes {
  border-top: 1px solid rgba(66,66,132,0.2);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.ep-detail-shownotes h4,
.ep-detail-images h4 {
  font-size: 1.15rem;
  color: #2a2860;
  margin: 0 0 1rem;
  font-weight: 400;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 4px rgba(255,255,255,0.6);
  text-align: left;
}

.ep-shownotes-body {
  font-size: 0.95rem;
  color: #2a2860;
  line-height: 1.75;
  -webkit-text-stroke: 0;
  text-shadow: 0 1px 3px rgba(255,255,255,0.5);
}

.ep-detail-images {
  border-top: 1px solid rgba(66,66,132,0.2);
  padding-top: 1.5rem;
}

.ep-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.ep-image-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  background: rgba(66,66,132,0.15);
}

.ep-image-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.ep-image-item:hover img {
  transform: scale(1.04);
}

.ep-image-caption {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  padding: 5px 8px;
  background: rgba(0,0,0,0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-text-stroke: 0;
}

/* =============================================================
   FUR PANEL FEATURE LAYOUT  (homepage section 3)
   Three alternating rows: large image / text / small image,
   each row nudged to a different x-position and elements
   offset vertically for an asymmetric, hand-drawn feel.
   ============================================================= */

.fp-layout {
  padding: 5vmin 3vw 7vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  min-height: inherit;
  gap: 5vmin;
}

.fp-row {
  display: flex;
  align-items: center;
  gap: 2.5vw;
}

/* Horizontal stagger per row */
.fp-row--1 { padding-left: 0;    padding-right: 4vw;  }
.fp-row--2 { padding-left: 6vw;                       }
.fp-row--3 { padding-left: 2.5vw; padding-right: 2vw; }

/* Large landscape image slot */
.fp-large       { flex: 0 0 37%; }
.fp-large img   { width: 100%; height: auto; display: block; }

/* Small accent image slot */
.fp-small       { flex: 0 0 12%; }
.fp-small img   { width: 100%; height: auto; display: block; }

/* Text block */
.fp-text {
  flex: 1;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Per-element vertical nudges — the asymmetric offset feel */
.fp-row--1 .fp-large { transform: translateY( 1.5vmin); }
.fp-row--1 .fp-small { transform: translateY(-2vmin);   }
.fp-row--2 .fp-small { transform: translateY( 1vmin);   }
.fp-row--2 .fp-large { transform: translateY(-1vmin);   }
.fp-row--3 .fp-small { transform: translateY( 2.5vmin); }
.fp-row--3 .fp-text  { text-align: center;              }

/* Mobile: stack everything single-column */
@media (max-width: 768px) {
  .fp-layout { gap: 8vw; padding: 8vw 6vw; }
  .fp-row {
    flex-wrap: wrap;
    justify-content: center;
    padding-left:  0 !important;
    padding-right: 0 !important;
  }
  .fp-row--1 .fp-large, .fp-row--1 .fp-small,
  .fp-row--2 .fp-small, .fp-row--2 .fp-large,
  .fp-row--3 .fp-large, .fp-row--3 .fp-small { transform: none; }
  .fp-row--3 .fp-text { text-align: left; }
  .fp-large { flex: 0 0 90%; }
  .fp-small { flex: 0 0 40%; }
  .fp-text  { flex: 0 0 100%; }
}

@media (max-width: 600px) {
  .ep-detail-section { padding: 2rem 4%; }
  .ep-images-grid { grid-template-columns: repeat(2, 1fr); }
  .ep-image-item img { height: 130px; }
}

/* =============================================================
   ABOUT SECTION  (show.cfm — above the gallery)
   Three groups: left text | center company+people | right text+imgs
   Desktop: three columns. Mobile: groups stack A → B → C.
   ============================================================= */

.about-section {
  background: url("../images/brick_bg_large.png");
  background-repeat: repeat;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  width: 100%;
}

/* White text over brick background — scoped only to this section */
.about-section * {
  color: #ffffff;
  -webkit-text-stroke: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 3fr 4fr 3fr;
  gap: 1.5rem 2.5rem;
  padding: 3rem 2.5rem;
  align-items: start;
}

/* ── Group A: left text ── */
.about-text {
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
  line-height: 1.7;
  margin: 0;
  text-align: center;
  -webkit-text-stroke: 0;
}

/* Paragraph text in the left/right text columns gets a Fizzie Purple stroke
   to help white text pop against the brick background.
   h3 / .about-company-name / image containers are intentionally excluded. */
.about-text--left p,
.about-text--right p {
  -webkit-text-stroke: 4px #424284;
  paint-order: stroke fill;
}

/* ── Group B: center column ── */
.about-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.about-group-img {
  width: 100%;
  height: auto;
  display: block;
}

.about-company-name {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  text-align: center;
  margin: 0.2rem 0 0.6rem;
  -webkit-text-stroke: 0;
}

.about-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.about-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.about-person-name {
  font-family: "cc-thats-all-folks", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin: 0;
  -webkit-text-stroke: 0;
}

.about-person img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Group C: right column ── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-right-imgs {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

.about-right-imgs img {
  flex: 1;
  width: 0;
  min-width: 0;
  height: auto;
  display: block;
}

/* ── Mobile: single column, groups stack A → B → C ── */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    gap: 1.75rem;
  }

  .about-text--left { order: 1; }
  .about-center     { order: 2; }
  .about-right      { order: 3; }

  /* right-column images go side by side on mobile */
  .about-right-imgs {
    flex-direction: row;
  }
  .about-right-imgs img { flex: 1; }
}

/* =============================================================
   CORK BOARD SECTION  (show.cfm — above the about/brick section)
   Image is 1320×874px landscape. Full height always shown;
   sides clip on viewports narrower than min-width.
   ============================================================= */

.cork-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0; /* remove gap below inline img */
}

.cork-bg-img {
  display: block;
  width: 100%;
  height: auto;
  min-width: 768px; /* prevents image shrinking too small; sides clip below this */
  margin: 0 auto;   /* keep it centered when it overflows */
}

.cork-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}