/* FITNEXTT Online Yoga — Phase 1 */
:root {
	--yg-teal: #00b29c;
	--yg-teal-dark: #089a87;
	--yg-ink: #18252b;
	--yg-muted: #5d666a;
	--yg-line: #e4eeec;
	--yg-soft: #f4faf9;
	--yg-deep: #10191d;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body.yg-body {
	font-family: "Nunito", "Segoe UI", sans-serif;
	color: var(--yg-ink);
	background: #fff;
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: inherit;
}

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

.yg-container {
	width: 90%;
	max-width: 1180px;
	margin: 0 auto;
}

/* Header */
.yg-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
	backdrop-filter: blur(8px);
}

.yg-navbar {
	min-height: 76px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	position: relative;
}

.yg-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.yg-logo img {
	width: 140px;
	height: auto;
}

.yg-logo-mark {
	font-size: 13px;
	font-weight: 800;
	color: var(--yg-teal);
	border-left: 2px solid var(--yg-line);
	padding-left: 10px;
	line-height: 1.2;
	white-space: nowrap;
}

.yg-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
}

.yg-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--yg-ink);
	border-radius: 2px;
}

.yg-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
	justify-content: flex-end;
	font-size: 13px;
	font-weight: 700;
}

.yg-nav a:hover,
.yg-nav a.is-active {
	color: var(--yg-teal);
}

.yg-navcta {
	background: var(--yg-teal);
	color: #fff !important;
	padding: 10px 16px;
	border-radius: 30px;
}

.yg-navcta:hover {
	background: var(--yg-teal-dark);
	color: #fff !important;
}

/* Hero */
.yg-hero {
	position: relative;
	overflow: hidden;
	min-height: min(92vh, 640px);
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at 82% 18%, rgba(0, 178, 156, 0.22), transparent 32%),
		radial-gradient(circle at 12% 88%, rgba(8, 124, 117, 0.14), transparent 30%),
		linear-gradient(160deg, #e8f7f4 0%, #f7fbfa 45%, #eef6f4 100%);
}

.yg-hero-inner {
	width: 100%;
	padding: 72px 0 64px;
	position: relative;
	z-index: 2;
}

.yg-brand-hero {
	font-size: clamp(28px, 4.5vw, 42px);
	font-weight: 800;
	letter-spacing: -0.8px;
	line-height: 1.1;
	margin-bottom: 18px;
	color: var(--yg-ink);
}

.yg-brand-hero span {
	color: var(--yg-teal);
}

.yg-tag {
	display: inline-block;
	background: #e9faf5;
	color: #16846c;
	padding: 7px 16px;
	border-radius: 25px;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 16px;
}

.yg-hero h1 {
	font-size: clamp(30px, 4.6vw, 48px);
	line-height: 1.08;
	letter-spacing: -1.2px;
	margin-bottom: 16px;
	font-weight: 800;
	max-width: 18ch;
}

.yg-hero-lead {
	font-size: 18px;
	color: var(--yg-muted);
	max-width: 560px;
	margin-bottom: 28px;
}

.yg-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.yg-btn {
	padding: 14px 24px;
	border-radius: 30px;
	font-weight: 800;
	display: inline-block;
	transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
	border: 0;
	cursor: pointer;
	font-family: inherit;
	font-size: 15px;
}

.yg-btn:hover {
	transform: translateY(-2px);
}

.yg-btn-primary {
	background: var(--yg-teal);
	color: #fff;
}

.yg-btn-primary:hover {
	background: var(--yg-teal-dark);
	color: #fff;
}

.yg-btn-secondary {
	border: 2px solid var(--yg-ink);
	background: transparent;
	color: var(--yg-ink);
}

.yg-btn-ghost {
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	background: transparent;
}

.yg-hero-visual {
	position: absolute;
	right: 6%;
	top: 50%;
	transform: translateY(-50%);
	width: min(380px, 38%);
	aspect-ratio: 1;
	border-radius: 36px;
	background: linear-gradient(145deg, #00b29c, #067e72);
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: yg-float 6s ease-in-out infinite;
	pointer-events: none;
}

.yg-hero-visual-inner {
	width: 84%;
	height: 84%;
	background: #fff;
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 24px;
}

.yg-hero-visual-inner strong {
	font-size: clamp(22px, 2.6vw, 32px);
	line-height: 1.25;
	font-weight: 800;
}

@keyframes yg-float {
	0%,
	100% {
		transform: translateY(-50%);
	}
	50% {
		transform: translateY(calc(-50% - 10px));
	}
}

/* Quick answers strip */
.yg-answers {
	background: var(--yg-ink);
	color: #fff;
	padding: 36px 0;
}

.yg-answers-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}

.yg-answer h3 {
	font-size: 13px;
	color: var(--yg-teal);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 8px;
}

.yg-answer p {
	font-size: 14px;
	color: #c5d0d4;
	line-height: 1.45;
}

/* Sections */
.yg-section {
	padding: 78px 0;
}

.yg-section-soft {
	background: var(--yg-soft);
}

.yg-section-deep {
	background: linear-gradient(160deg, #0f3d3a 0%, #145c55 55%, #0d2f2d 100%);
	color: #fff;
}

.yg-heading {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 42px;
}

.yg-heading .yg-tag {
	background: none;
	padding: 0;
	color: var(--yg-teal);
	text-transform: uppercase;
	letter-spacing: 2px;
}

.yg-heading h2 {
	font-size: clamp(26px, 3.4vw, 38px);
	line-height: 1.15;
	margin: 6px 0 12px;
	font-weight: 800;
}

.yg-heading p {
	color: var(--yg-muted);
}

.yg-section-deep .yg-heading p {
	color: rgba(255, 255, 255, 0.78);
}

.yg-grid2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.yg-grid3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.yg-grid4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.yg-card {
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 20px;
	padding: 28px;
	transition: transform 0.25s, box-shadow 0.25s;
}

.yg-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.yg-card h3 {
	font-size: 18px;
	margin-bottom: 8px;
	font-weight: 800;
}

.yg-card p {
	color: var(--yg-muted);
	font-size: 14px;
}

.yg-card-accent {
	background: linear-gradient(135deg, #18252b 0%, #2b4149 100%);
	border-color: #18252b;
}

.yg-card-accent .yg-tag {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.yg-card-accent h3,
.yg-card-accent p {
	color: #fff;
}

.yg-heading-left {
	text-align: left;
	margin: 0 0 28px;
}

.yg-benefits-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
	gap: 30px;
	align-items: center;
}

.yg-benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.yg-benefit-card {
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.yg-benefit-card h3 {
	font-size: 18px;
	margin: 0 0 8px;
}

.yg-benefit-card p {
	color: var(--yg-muted);
	font-size: 14px;
	margin: 0;
}

.yg-benefit-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: #e9faf5;
	color: var(--yg-teal);
	display: grid;
	place-items: center;
	margin-bottom: 14px;
}

.yg-benefit-icon svg {
	width: 26px;
	height: 26px;
	display: block;
	fill: currentColor;
}

.yg-benefits-visual {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.yg-benefits-visual-card {
	position: relative;
	min-height: 460px;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(135deg, #00b29c 0%, #0a8f7e 100%);
	box-shadow: 0 24px 44px rgba(0, 178, 156, 0.24);
}

.yg-benefits-orb {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
}

.yg-benefits-orb-a {
	width: 220px;
	height: 220px;
	top: -40px;
	right: -60px;
}

.yg-benefits-orb-b {
	width: 170px;
	height: 170px;
	left: -45px;
	bottom: 34px;
}

.yg-benefits-figure {
	position: absolute;
	left: 50%;
	top: 54%;
	transform: translate(-50%, -50%);
	width: 190px;
	height: 250px;
}

.yg-benefits-figure-head,
.yg-benefits-figure-body,
.yg-benefits-figure-arm,
.yg-benefits-figure-leg-left,
.yg-benefits-figure-leg-right {
	position: absolute;
	background: #fff;
}

.yg-benefits-figure-head {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	left: 72px;
	top: 12px;
}

.yg-benefits-figure-body {
	width: 28px;
	height: 98px;
	border-radius: 20px;
	left: 81px;
	top: 58px;
}

.yg-benefits-figure-arm {
	width: 124px;
	height: 18px;
	border-radius: 18px;
	left: 33px;
	top: 98px;
	transform: rotate(-8deg);
}

.yg-benefits-figure-leg-left,
.yg-benefits-figure-leg-right {
	width: 22px;
	height: 106px;
	border-radius: 16px;
	top: 146px;
}

.yg-benefits-figure-leg-left {
	left: 60px;
	transform: rotate(34deg);
	transform-origin: top center;
}

.yg-benefits-figure-leg-right {
	right: 60px;
	transform: rotate(-34deg);
	transform-origin: top center;
}

.yg-benefits-chip {
	position: absolute;
	background: #fff;
	color: #0d5c52;
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 800;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.yg-benefits-chip-top {
	top: 26px;
	left: 24px;
}

.yg-benefits-chip-right {
	right: 20px;
	top: 180px;
}

.yg-benefits-chip-bottom {
	left: 28px;
	bottom: 24px;
}

.yg-benefits-mini {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.yg-benefits-mini-card {
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 18px;
	padding: 16px 14px;
	text-align: center;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.yg-benefits-mini-card strong {
	display: block;
	font-size: 20px;
	line-height: 1.1;
}

.yg-benefits-mini-card span {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	color: var(--yg-muted);
}

.yg-hero-sublead {
	margin-top: 12px;
	color: var(--yg-ink);
	font-size: 18px;
	font-weight: 800;
	max-width: 720px;
}

.yg-value-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.yg-value-points span {
	background: #e9faf5;
	border: 1px solid rgba(0, 178, 156, 0.18);
	border-radius: 999px;
	color: #0d5c52;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 14px;
}

.yg-hero-note {
	margin-top: 14px;
	color: var(--yg-muted);
	font-weight: 700;
}

.yg-step-num {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--yg-teal);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 800;
	margin-bottom: 14px;
}

/* Plans */
.yg-plan {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.yg-plan-popular {
	border-color: var(--yg-teal);
	box-shadow: 0 12px 34px rgba(0, 178, 156, 0.16);
}

.yg-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--yg-teal);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	padding: 5px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.yg-plan-price {
	font-size: 32px;
	font-weight: 800;
	color: var(--yg-ink);
	margin: 10px 0 4px;
}

.yg-plan-price span {
	font-size: 14px;
	font-weight: 700;
	color: var(--yg-muted);
}

.yg-plan-meta {
	list-style: none;
	margin: 16px 0 22px;
	flex: 1;
}

.yg-plan-meta li {
	font-size: 13px;
	color: var(--yg-muted);
	padding: 6px 0;
	border-bottom: 1px solid #f0f4f3;
}

.yg-plan .yg-btn {
	text-align: center;
	width: 100%;
}

/* Schedule table */
.yg-table-wrap {
	overflow-x: auto;
	border-radius: 18px;
	border: 1px solid var(--yg-line);
	background: #fff;
}

.yg-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 520px;
}

.yg-table th,
.yg-table td {
	padding: 16px 18px;
	text-align: left;
	border-bottom: 1px solid var(--yg-line);
	font-size: 14px;
}

.yg-table th {
	background: #eaf7f4;
	font-weight: 800;
	color: #0d5c52;
}

.yg-table tr:last-child td {
	border-bottom: 0;
}

.yg-note {
	margin-top: 16px;
	font-size: 14px;
	color: var(--yg-muted);
}

/* Instructors / testimonials */
.yg-person-role {
	color: var(--yg-teal);
	font-weight: 800;
	font-size: 13px;
	margin-bottom: 10px;
}

.yg-quote {
	font-size: 15px;
	color: var(--yg-muted);
	font-style: italic;
}

.yg-quote-name {
	margin-top: 14px;
	font-weight: 800;
	font-style: normal;
	color: var(--yg-ink);
	font-size: 14px;
}

/* FAQ */
.yg-faq details {
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 14px;
	padding: 16px 18px;
	margin-bottom: 12px;
}

.yg-faq summary {
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.yg-faq summary::-webkit-details-marker {
	display: none;
}

.yg-faq details[open] summary {
	color: var(--yg-teal);
	margin-bottom: 8px;
}

.yg-faq details p {
	color: var(--yg-muted);
	font-size: 14px;
}

/* Disclaimer / CTA band */
.yg-disclaimer {
	background: #fff8e8;
	border: 1px solid #f0dfb0;
	border-radius: 16px;
	padding: 22px 24px;
	font-size: 14px;
	color: #6a5a2e;
}

.yg-cta-band {
	text-align: center;
	padding: 56px 0;
}

.yg-cta-band h2 {
	font-size: clamp(26px, 3.2vw, 36px);
	margin-bottom: 12px;
	font-weight: 800;
}

.yg-cta-band p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 24px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

/* Page hero (inner pages) */
.yg-page-hero {
	padding: 56px 0 28px;
	background:
		radial-gradient(circle at 90% 10%, rgba(0, 178, 156, 0.16), transparent 28%),
		var(--yg-soft);
}

.yg-page-hero h1 {
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 10px;
}

.yg-page-hero p {
	color: var(--yg-muted);
	max-width: 620px;
	font-size: 17px;
}

/* Stub */
.yg-stub {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 22px;
	padding: 40px 32px;
}

.yg-stub h1 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 12px;
}

.yg-stub p {
	color: var(--yg-muted);
	margin-bottom: 24px;
}

/* Footer */
.yg-footer {
	background: var(--yg-deep);
	color: #fff;
	padding: 55px 0 20px;
}

.yg-footergrid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr;
	gap: 32px;
	margin-bottom: 32px;
}

.yg-footer p,
.yg-footer a {
	color: #98a5a9;
	font-size: 13px;
}

.yg-footer h4 {
	margin-bottom: 12px;
	font-weight: 800;
}

.yg-footer a {
	display: block;
	margin: 7px 0;
}

.yg-footer a:hover {
	color: var(--yg-teal);
}

.yg-logo-footer img {
	filter: brightness(0) invert(1);
	width: 130px;
}

.yg-logo-footer .yg-logo-mark {
	border-left-color: #334044;
	color: #7fd9cb;
}

.yg-footer .yg-logo {
	margin-bottom: 12px;
}

.yg-bottom {
	border-top: 1px solid #293438;
	padding-top: 18px;
	color: #718084;
	font-size: 12px;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.yg-bottom a {
	display: inline;
	margin: 0 4px;
	color: #718084;
}

.yg-bottom a:hover {
	color: var(--yg-teal);
}

.yg-prose {
	max-width: 760px;
	margin: 0 auto;
}

.yg-prose p,
.yg-prose li {
	color: var(--yg-muted);
	margin-bottom: 12px;
	font-size: 16px;
}

.yg-prose ul {
	padding-left: 20px;
	margin-bottom: 18px;
}

.yg-prose h2 {
	font-size: 24px;
	font-weight: 800;
	margin: 28px 0 12px;
}

/* Responsive */
@media (max-width: 1100px) {
	.yg-hero-visual {
		display: none;
	}

	.yg-benefits-layout {
		grid-template-columns: 1fr;
	}

	.yg-answers-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.yg-grid4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.yg-nav-toggle {
		display: inline-flex;
	}

	.yg-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 12px 5%;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
		gap: 0;
	}

	.yg-nav.is-open {
		display: flex;
	}

	.yg-nav a {
		padding: 12px 4px;
		border-bottom: 1px solid #f0f4f3;
	}

	.yg-navcta {
		text-align: center;
		margin: 8px 0 4px;
	}

	.yg-logo-mark {
		display: none;
	}

	.yg-grid2,
	.yg-grid3,
	.yg-footergrid {
		grid-template-columns: 1fr;
	}

	.yg-benefits-grid,
	.yg-benefits-mini {
		grid-template-columns: 1fr;
	}

	.yg-benefits-visual-card {
		min-height: 380px;
	}

	.yg-value-points {
		justify-content: flex-start;
	}
}

@media (max-width: 640px) {
	.yg-answers-grid,
	.yg-grid4 {
		grid-template-columns: 1fr;
	}

	.yg-section {
		padding: 56px 0;
	}

	.yg-hero-inner {
		padding: 48px 0 40px;
	}
}

/* Registration / forms */
.yg-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.yg-steps li {
	background: #eef5f3;
	border-radius: 999px;
	color: #5d666a;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 14px;
}

.yg-steps li.is-current {
	background: var(--yg-teal);
	color: #fff;
}

.yg-form {
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 22px;
	max-width: 860px;
	margin: 0 auto;
	padding: 28px;
}

.yg-form-intro {
	color: var(--yg-muted);
	margin-bottom: 18px;
}

.yg-form-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 16px;
}

.yg-form label,
.yg-form fieldset {
	display: block;
}

.yg-form label > span,
.yg-form legend {
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 6px;
}

.yg-form input[type="text"],
.yg-form input[type="email"],
.yg-form input[type="tel"],
.yg-form input[type="password"],
.yg-form input[type="date"],
.yg-form select {
	border: 1px solid #d7e3e0;
	border-radius: 12px;
	font: inherit;
	padding: 12px 14px;
	width: 100%;
}

.yg-form input:focus,
.yg-form select:focus {
	border-color: var(--yg-teal);
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 178, 156, 0.15);
}

.yg-check,
.yg-radio {
	align-items: flex-start;
	color: var(--yg-muted);
	display: flex;
	font-size: 14px;
	font-weight: 600;
	gap: 10px;
	margin: 10px 0;
}

.yg-check input,
.yg-radio input {
	margin-top: 3px;
}

.yg-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.yg-alert {
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	margin: 0 auto 18px;
	max-width: 860px;
	padding: 14px 16px;
}

.yg-alert-info {
	background: #e8f7f4;
	color: #0b6b5f;
}

.yg-alert-success {
	background: #e7f8ef;
	color: #1b6b3a;
}

.yg-alert-error {
	background: #fdecec;
	color: #9b1c1c;
}

.yg-alert-warning {
	background: #fff8e8;
	border: 1px solid #f0dfb0;
	color: #6a5a2e;
}

.yg-health-list {
	display: grid;
	gap: 12px;
	margin-bottom: 18px;
}

.yg-health-item {
	background: var(--yg-soft);
	border: 1px solid var(--yg-line);
	border-radius: 14px;
	padding: 14px 16px;
}

.yg-health-item .yg-radio {
	display: inline-flex;
	margin-right: 18px;
}

.yg-consent-list {
	border-top: 1px solid var(--yg-line);
	margin-top: 8px;
	padding-top: 12px;
}

@media (max-width: 700px) {
	.yg-form-grid {
		grid-template-columns: 1fr;
	}
}

.yg-form-section-title {
	font-size: 16px;
	font-weight: 800;
	margin: 22px 0 12px;
}

.yg-batch-list {
	display: grid;
	gap: 10px;
	margin-bottom: 8px;
}

.yg-batch-option {
	align-items: flex-start;
	background: var(--yg-soft);
	border: 1px solid var(--yg-line);
	border-radius: 14px;
	cursor: pointer;
	display: flex;
	gap: 12px;
	padding: 14px 16px;
}

.yg-batch-option.is-full {
	opacity: 0.85;
}

.yg-batch-option input {
	margin-top: 4px;
}

.yg-batch-option-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.yg-batch-option-body strong {
	font-size: 15px;
}

.yg-seats {
	color: var(--yg-teal);
	font-size: 13px;
	font-weight: 800;
}

.yg-seats.is-full {
	color: #9b1c1c;
}

.yg-day-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}

.yg-day-chip {
	cursor: pointer;
}

.yg-day-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.yg-day-chip span {
	background: #fff;
	border: 1px solid var(--yg-line);
	border-radius: 999px;
	display: inline-block;
	font-size: 13px;
	font-weight: 800;
	padding: 8px 14px;
}

.yg-day-chip input:checked + span {
	background: var(--yg-teal);
	border-color: var(--yg-teal);
	color: #fff;
}

.yg-summary-list {
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.yg-summary-list li {
	border-bottom: 1px solid #f0f4f3;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	padding: 12px 0;
}

.yg-summary-list li span {
	color: var(--yg-muted);
	font-size: 14px;
}

.yg-summary-list li strong {
	font-size: 14px;
	text-align: right;
}

.yg-summary-list li.is-total strong {
	color: var(--yg-teal);
	font-size: 18px;
}

.yg-prep-list {
	color: var(--yg-muted);
	font-size: 14px;
	margin: 10px 0 0;
	padding-left: 18px;
}

.yg-prep-list li {
	margin: 6px 0;
}

.yg-alert-success {
	background: #e7f8ef;
	color: #1b6b3a;
}

.yg-dash {
	max-width: 960px;
}

.yg-next-card {
	margin-bottom: 22px;
	padding: 32px;
}

.yg-next-card h2 {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	margin: 8px 0 10px;
}

.yg-dash-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 22px;
}

.yg-week-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.yg-week-list li {
	border-bottom: 1px solid #f0f4f3;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	font-size: 14px;
}

.yg-week-list li span {
	color: var(--yg-muted);
}

.yg-btn[disabled] {
	cursor: not-allowed;
	opacity: 0.55;
	transform: none;
}

/* Member profile photo */
.yg-profile-photo-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	border: 1px solid #dce3e5;
	border-radius: 16px;
	background: #f7fafb;
}

.yg-profile-photo-preview {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	background: #e9faf5;
	border: 2px solid #00b29c;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.8rem;
	font-weight: 700;
	color: #16846c;
	text-align: center;
	padding: 0.5rem;
}

.yg-profile-photo-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.yg-profile-photo-upload {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	font-weight: 700;
	flex: 1;
	min-width: 200px;
}

.yg-profile-photo-upload small {
	font-weight: 600;
	color: var(--yg-muted);
	font-size: 0.82rem;
}

.yg-dash-photo {
	margin-bottom: 0.85rem;
}

.yg-dash-photo img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #00b29c;
	display: block;
}

.yg-admin-photo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #dce3e5;
	vertical-align: middle;
}

@media (max-width: 800px) {
	.yg-dash-grid {
		grid-template-columns: 1fr;
	}
}
