/**
 * ArtisanConnect Gallery — matches base44 Gallery (SAC Online Shop products).
 */

:root {
	--acg-bg: #faf7f2;
	--acg-dark: #2d2926;
	--acg-muted: #5a5652;
	--acg-accent: #c45b28;
	--acg-accent-hover: #a84920;
	--acg-peach: #e8a87c;
	--acg-border: #e8e2d9;
	--acg-teal: #1a5f5f;
	--acg-footer: #1a1918;
	--acg-font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, sans-serif;
	--acg-font-heading: var(--acg-font-body);
	--acg-max: min(1280px, 92vw);
	--acg-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--acg-duration: 0.35s;
}

.artisan-connect-gallery-page {
	margin: 0;
	font-family: var(--acg-font-body);
	font-size: 17px;
	line-height: 1.55;
	color: var(--acg-dark);
	background: var(--acg-bg);
}

.artisan-connect-gallery-page *,
.artisan-connect-gallery-page *::before,
.artisan-connect-gallery-page *::after {
	box-sizing: border-box;
}

.acg-skip {
	position: absolute;
	left: -9999px;
}
.acg-skip:focus {
	left: 8px;
	top: 8px;
	z-index: 100;
	padding: 8px 16px;
	background: #fff;
	color: var(--acg-dark);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Header — always solid (frosted white) on every page. */
.acg-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 rgba(45, 41, 38, 0.06);
}

.acg-header__inner {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
@media (min-width: 1024px) {
	.acg-header__inner {
		height: 96px;
	}
}

.acg-logo img {
	display: block;
	height: 56px;
	width: auto;
}
@media (min-width: 1024px) {
	.acg-logo img {
		height: 64px;
	}
}

.acg-nav {
	display: none;
	align-items: center;
	gap: 1.35rem;
}
@media (min-width: 1024px) {
	.acg-nav {
		display: flex;
	}
}

.acg-nav > a,
.acg-nav-dropdown__toggle {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--acg-dark);
	text-decoration: none;
	transition: color var(--acg-duration) var(--acg-ease);
}

.acg-nav > a:hover,
.acg-nav > a.is-active,
.acg-nav-dropdown.is-active > .acg-nav-dropdown__toggle,
.acg-nav-dropdown__toggle:hover,
.acg-nav-dropdown__toggle.is-active {
	color: var(--acg-accent);
}

.acg-nav-dropdown {
	position: relative;
}

.acg-nav-dropdown__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0;
	border: 0;
	background: transparent !important;
	box-shadow: none !important;
	font-family: inherit;
	line-height: 1.2;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.acg-header .acg-nav-dropdown__toggle:hover,
.acg-header .acg-nav-dropdown__toggle:focus,
.acg-header .acg-nav-dropdown__toggle:focus-visible,
.acg-header .acg-nav-dropdown__toggle:active,
.acg-header .acg-nav-dropdown__toggle.is-active {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: 0 !important;
}

.acg-nav-dropdown__chevron {
	transition: transform var(--acg-duration) var(--acg-ease);
}

.acg-nav-dropdown.is-open .acg-nav-dropdown__chevron,
.acg-nav-dropdown:hover .acg-nav-dropdown__chevron,
.acg-nav-dropdown:focus-within .acg-nav-dropdown__chevron {
	transform: rotate(180deg);
}

.acg-nav-dropdown__menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	z-index: 60;
	min-width: 250px;
	padding: 8px;
	border: 0;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 18px 50px rgba(45, 41, 38, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition: opacity var(--acg-duration) var(--acg-ease), transform var(--acg-duration) var(--acg-ease), visibility var(--acg-duration) var(--acg-ease);
}

.acg-header .acg-nav-dropdown__menu a,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"] {
	display: block;
	padding: 12px 14px;
	border: 0 !important;
	border-radius: 10px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--acg-dark);
	text-decoration: none !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0 !important;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease);
}

.acg-header .acg-nav-dropdown__menu a:hover,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"]:hover {
	background: #fbf8f3 !important;
	color: var(--acg-accent) !important;
	text-decoration: none !important;
}

.acg-header .acg-nav-dropdown__menu a.is-active,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"].is-active,
.acg-header .acg-nav-dropdown__menu a:focus,
.acg-header .acg-nav-dropdown__menu a:focus-visible,
.acg-header .acg-nav-dropdown__menu a:active,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"]:focus,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"]:focus-visible,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"]:active {
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	text-decoration: none !important;
}

.acg-header .acg-nav-dropdown__menu a.is-active,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"].is-active {
	background: transparent !important;
	color: var(--acg-accent) !important;
	font-weight: 700;
}

.acg-header .acg-nav-dropdown__menu a.is-active:hover,
.acg-header .acg-nav-dropdown__menu a[role="menuitem"].is-active:hover {
	background: #fbf8f3 !important;
	color: var(--acg-accent) !important;
}

@media (min-width: 1024px) {
	.acg-nav-dropdown:hover .acg-nav-dropdown__menu,
	.acg-nav-dropdown:focus-within .acg-nav-dropdown__menu,
	.acg-nav-dropdown.is-open .acg-nav-dropdown__menu {
		opacity: 1;
		visibility: visible;
		transform: translate(-50%, 0);
	}
}

.acg-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.acg-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	color: var(--acg-dark);
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease);
}

.acg-cart-link:hover,
.acg-cart-link:focus-visible {
	background: rgba(45, 41, 38, 0.08);
	color: var(--acg-accent);
}

.acg-cart-link__count {
	position: absolute;
	top: 3px;
	right: 1px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--acg-accent);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
}

.acg-btn-donate {
	display: none;
	padding: 10px 22px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #fff;
	background: var(--acg-accent);
	border: none;
	border-radius: 999px;
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease);
}
@media (min-width: 768px) {
	.acg-btn-donate {
		display: inline-block;
	}
}
.acg-btn-donate:hover {
	background: var(--acg-accent-hover);
	color: #fff;
}

.acg-menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	background: transparent;
	color: var(--acg-dark);
	cursor: pointer;
	border-radius: 8px;
}
@media (min-width: 1024px) {
	.acg-menu-btn {
		display: none;
	}
}

/* Mobile menu */
.acg-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: var(--acg-dark);
	padding: 24px;
	overflow-y: auto;
}
.acg-mobile-menu[hidden] {
	display: none;
}
.acg-mobile-menu__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 48px;
}
.acg-mobile-menu__title {
	font-family: var(--acg-font-heading);
	font-size: 1.75rem;
	font-weight: 600;
	color: #fff;
}
.acg-mobile-menu__close {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 8px;
}
.acg-mobile-menu nav a {
	display: block;
	font-size: 1.75rem;
	font-weight: 300;
	color: #fff;
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.acg-mobile-menu nav a:hover,
.acg-mobile-menu nav a.is-active {
	color: var(--acg-peach);
}

.acg-mobile-nav-label {
	margin: 18px 0 4px;
	padding: 0;
	border: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.acg-mobile-nav-child {
	padding-left: 18px !important;
	font-size: 1.35rem !important;
}

body.acg-menu-open {
	overflow: hidden;
}

/* Hero */
.acg-hero {
	padding: 128px 24px 64px;
	background: linear-gradient(180deg, #2d2926 0%, #3d3936 100%);
	text-align: center;
}
.acg-hero__eyebrow {
	margin: 0 0 16px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--acg-peach);
}
.acg-hero__title {
	margin: 0 0 24px;
	font-family: var(--acg-font-heading);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 300;
	line-height: 1.15;
	color: #fff;
}
.acg-hero__title strong {
	font-weight: 600;
	color: var(--acg-peach);
}
.acg-hero__lead {
	margin: 0 auto;
	max-width: 40rem;
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.7);
}

/* Sticky bar */
.acg-sticky {
	position: sticky;
	top: 80px;
	z-index: 30;
	background: rgba(250, 247, 242, 0.95);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--acg-border);
	padding: 16px 0;
}
@media (min-width: 1024px) {
	.acg-sticky {
		top: 96px;
	}
}

.acg-sticky__inner {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: stretch;
}
@media (min-width: 1024px) {
	.acg-sticky__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.acg-search-wrap {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}
@media (min-width: 1024px) {
	.acg-search-wrap {
		width: 22rem;
		flex-shrink: 0;
	}
}

/* Magnifier only — not the clear button’s icon */
.acg-search-wrap > svg {
	position: absolute;
	left: 16px;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: var(--acg-muted);
	pointer-events: none;
}

.acg-search {
	box-sizing: border-box;
	width: 100%;
	padding: 14px 52px 14px 48px;
	border: 1px solid var(--acg-border);
	border-radius: 999px;
	font-family: inherit;
	font-size: 1rem;
	background: #fff;
	outline: none;
	transition: border-color var(--acg-duration) var(--acg-ease), box-shadow var(--acg-duration) var(--acg-ease);
}
.acg-search:focus {
	border-color: var(--acg-accent);
	box-shadow: 0 0 0 1px var(--acg-accent);
}

.acg-search-clear {
	position: absolute;
	right: 6px;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: none;
	cursor: pointer;
	color: var(--acg-muted);
	line-height: 0;
	transform: translateY(-50%);
}

.acg-search-clear:hover {
	color: var(--acg-dark);
	background: rgba(45, 41, 38, 0.06);
}

.acg-search-clear svg {
	position: static;
	width: 18px;
	height: 18px;
	transform: none;
	pointer-events: none;
}

.acg-pills {
	display: flex;
	gap: 8px;
	min-width: 0;
	justify-content: flex-start;
	overflow-x: auto;
	padding: 2px 4px 4px;
	scroll-padding-inline: 12px;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.acg-pills::-webkit-scrollbar {
	display: none;
}
@media (min-width: 1024px) {
	.acg-pills {
		width: auto;
		flex: 1;
		justify-content: flex-start;
		padding-bottom: 2px;
	}
}

.acg-pill {
	flex-shrink: 0;
	padding: 10px 18px;
	border: none;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	background: #fff;
	color: var(--acg-muted);
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease);
}
.acg-pill:hover {
	background: var(--acg-border);
}
.acg-pill.is-active {
	background: var(--acg-accent);
	color: #fff;
}

.acg-layout-toggle {
	display: none;
	align-items: center;
	gap: 4px;
	padding: 4px;
	background: #fff;
	border-radius: 999px;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.acg-layout-toggle {
		display: flex;
	}
}

.acg-layout-toggle button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--acg-muted);
	cursor: pointer;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease);
}
.acg-layout-toggle button.is-active {
	background: var(--acg-dark);
	color: #fff;
}

/* Main layout */
.acg-main {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 48px 24px 64px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}
@media (min-width: 1024px) {
	.acg-main {
		flex-direction: row;
		align-items: flex-start;
		gap: 48px;
	}
}

.acg-sidebar {
	display: none;
	width: 16rem;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.acg-sidebar {
		display: block;
	}
}

.acg-sidebar__sticky {
	position: sticky;
	top: 176px;
}

.acg-sidebar h2 {
	margin: 0 0 16px;
	font-family: var(--acg-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: #0f0e0d;
}

.acg-sidebtn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 4px;
	border: none;
	border-radius: 12px;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	background: transparent;
	color: #0f0e0d;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease);
}
.acg-sidebtn:hover {
	background: rgba(45, 41, 38, 0.08);
	color: #000;
}
.acg-sidebtn.is-active {
	background: var(--acg-accent);
	color: #fff;
}
.acg-sidebtn.is-active .acg-sidebtn__count {
	color: rgba(255, 255, 255, 0.82);
}
.acg-sidebtn__count {
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(15, 14, 13, 0.55);
}
.acg-sidebtn:hover .acg-sidebtn__count {
	color: rgba(15, 14, 13, 0.72);
}
.acg-sidebtn.is-active:hover {
	color: #fff;
}

/* Expandable category groups — single full-width row (accordion) */
.acg-sidegroup {
	margin-bottom: 6px;
}

.acg-sidebtn--parent {
	display: flex;
	align-items: center;
	gap: 10px;
	text-align: left;
	border-radius: 12px;
}

.acg-sidebtn__chevron-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	color: rgba(15, 14, 13, 0.55);
	transition: color var(--acg-duration) var(--acg-ease);
}

.acg-sidebtn--parent:hover .acg-sidebtn__chevron-wrap,
.acg-sidegroup.is-open .acg-sidebtn--parent .acg-sidebtn__chevron-wrap {
	color: inherit;
}

.acg-sidebtn--parent .acg-sidebtn__name {
	flex: 0 1 auto;
	min-width: 0;
}

.acg-sidebtn--parent .acg-sidebtn__count {
	flex: 0 0 auto;
	margin-left: auto;
}

.acg-chevron {
	display: block;
	transition: transform 0.25s var(--acg-ease);
}
.acg-sidegroup.is-open .acg-chevron {
	transform: rotate(180deg);
}

.acg-sidechildren {
	margin: 0 0 8px 0;
}
.acg-sidechildren--list {
	display: block;
	padding: 4px 0 2px 0;
	margin: 0 0 0 12px;
	border-left: 2px solid rgba(15, 14, 13, 0.12);
}
.acg-sidechildren--list .acg-sidebtn--child {
	width: calc(100% - 12px);
	margin: 0 0 2px 10px;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: left;
}
.acg-sidechildren--list .acg-sidebtn--child .acg-sidebtn__count {
	font-size: 0.8125rem;
	font-weight: 600;
}
.acg-sidechildren[hidden] {
	display: none;
}

.acg-visit-box {
	margin-top: 32px;
	padding: 24px;
	background: var(--acg-dark);
	border-radius: 16px;
	color: #fff;
}
.acg-visit-box h3 {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 600;
}
.acg-visit-box p {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.5;
}

.acg-content {
	flex: 1;
	min-width: 0;
}

.acg-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 48px 24px;
	text-align: center;
	color: var(--acg-muted);
	font-size: 1.0625rem;
}

.acg-showing {
	margin: 0 0 32px;
	color: var(--acg-muted);
}
.acg-showing strong {
	color: var(--acg-dark);
	font-weight: 600;
}

.acg-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media (max-width: 767px) {
	.artisan-connect-gallery-page:not(.artisan-connect-workshops-page) .acg-grid {
		grid-template-columns: 1fr;
	}
}
@media (min-width: 768px) {
	.acg-grid:not(.acg-grid--large) {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 768px) {
	.acg-grid.acg-grid--large {
		grid-template-columns: repeat(2, 1fr);
	}
}

.acg-card__link {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	font: inherit;
	text-align: left;
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

.acg-card__link:focus-visible {
	outline: 3px solid var(--acg-accent);
	outline-offset: 4px;
	border-radius: 18px;
}

.acg-card {
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.acg-card__frame {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 2px 12px rgba(45, 41, 38, 0.06);
	aspect-ratio: 3 / 4;
	transition: box-shadow 0.5s var(--acg-ease), transform 0.5s var(--acg-ease);
}
.acg-grid--large .acg-card__frame {
	aspect-ratio: 4 / 5;
}
.acg-card:hover .acg-card__frame {
	box-shadow: 0 16px 40px rgba(45, 41, 38, 0.12);
}

.acg-card__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--acg-ease);
}
.acg-card:hover .acg-card__frame img {
	transform: scale(1.08);
}

.acg-card__shade {
	position: absolute;
	inset: 0;
	/* Dark scrim so type stays readable; fades out on hover */
	background: linear-gradient(
		to top,
		rgba(18, 16, 15, 0.96) 0%,
		rgba(18, 16, 15, 0.88) 22%,
		rgba(18, 16, 15, 0.72) 42%,
		rgba(18, 16, 15, 0.45) 62%,
		rgba(18, 16, 15, 0.2) 82%,
		transparent 100%
	);
	opacity: 1;
	transition: opacity 0.4s var(--acg-ease);
	pointer-events: none;
}
.acg-card:hover .acg-card__shade {
	opacity: 0;
}

.acg-card__meta {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	padding: 22px 26px;
	transform: translateY(0);
	opacity: 1;
	transition: padding 0.4s var(--acg-ease), justify-content 0.4s var(--acg-ease), align-items 0.4s var(--acg-ease);
}
@media (min-width: 768px) {
	.acg-card__meta {
		padding: 24px 28px;
	}
}
.acg-card:hover .acg-card__meta {
	justify-content: center;
	align-items: center;
	padding: 0;
}

/* Hover: hide all copy and price; only the arrow stays (centered via flex) */
.acg-card:hover .acg-card__badges,
.acg-card:hover .acg-card__title,
.acg-card:hover .acg-card__artist,
.acg-card:hover .acg-card__price {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.acg-card__badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	max-width: calc(100% - 24px);
	pointer-events: none;
}
@media (min-width: 768px) {
	.acg-card__badges {
		top: 14px;
		left: 14px;
		gap: 8px;
		max-width: calc(100% - 28px);
	}
}

.acg-card__badge {
	margin: 0;
	line-height: 1.3;
}

.acg-card__badge--pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: capitalize;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
	.acg-card__badge--pill {
		font-size: 0.75rem;
		padding: 5px 12px;
	}
}

.acg-card__badge--primary {
	background: var(--acg-accent);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.acg-card__badge--sub {
	background: rgba(255, 255, 255, 0.94);
	color: var(--acg-dark);
	border: 1px solid rgba(45, 41, 38, 0.12);
}

.acg-card__title {
	margin: 0 0 6px;
	font-family: inherit;
	font-size: 1.3125rem;
	font-weight: 600;
	color: #fff;
	line-height: 1.25;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
	.acg-card__title {
		font-size: 1.4375rem;
	}
}

.acg-card__artist {
	margin: 0 0 14px;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.75);
}
@media (min-width: 768px) {
	.acg-card__artist {
		font-size: 1.0625rem;
	}
}

.acg-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	transition: justify-content 0.4s var(--acg-ease), width 0.4s var(--acg-ease);
}
.acg-card:hover .acg-card__row {
	justify-content: center;
	width: auto;
}

.acg-card__price {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--acg-peach);
}
@media (min-width: 768px) {
	.acg-card__price {
		font-size: 1.1875rem;
	}
}

.acg-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	transition: width 0.4s var(--acg-ease), height 0.4s var(--acg-ease), background 0.4s var(--acg-ease), color 0.4s var(--acg-ease), box-shadow 0.4s var(--acg-ease), transform 0.4s var(--acg-ease);
}
.acg-card__icon svg {
	width: 20px;
	height: 20px;
	transition: width 0.4s var(--acg-ease), height 0.4s var(--acg-ease);
}
.acg-card:hover .acg-card__icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--acg-dark);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	transform: scale(1.02);
}
.acg-card:hover .acg-card__icon svg {
	width: 24px;
	height: 24px;
}

.acg-load-wrap {
	text-align: center;
	margin-top: 48px;
}

.acg-load-more {
	padding: 18px 40px;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: var(--acg-dark);
	border: none;
	border-radius: 999px;
	cursor: pointer;
	transition: background var(--acg-duration) var(--acg-ease);
}
.acg-load-more:hover {
	background: #3d3936;
}
.acg-load-more[hidden] {
	display: none;
}

/* Product quick-view modal */
body.acg-modal-open {
	overflow: hidden;
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
}

.acg-modal[hidden] {
	display: none;
}

.acg-modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.acg-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(18, 16, 15, 0.72);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.acg-modal__panel {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1080px, 100%);
	max-height: min(820px, calc(100vh - 48px));
	overflow: hidden;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.acg-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: var(--acg-dark);
	cursor: pointer;
	box-shadow: 0 6px 24px rgba(45, 41, 38, 0.15);
}

.acg-modal__close:hover {
	background: #fff;
}

.acg-modal__media {
	background: #f0e9df;
}

.acg-modal__media img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 420px;
	object-fit: contain;
}

.acg-modal__content {
	padding: clamp(28px, 5vw, 48px);
	min-height: 0;
}

.acg-modal__eyebrow {
	margin: 0 0 10px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--acg-accent);
}

.acg-modal__title {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.08;
	color: var(--acg-dark);
}

.acg-modal__artist {
	margin: 0 0 20px;
	font-size: 1.15rem;
	color: var(--acg-muted);
}

.acg-modal__summary {
	margin: 0 0 24px;
	color: var(--acg-muted);
}

.acg-modal__summary[hidden] {
	display: none;
}

.acg-modal__details {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	margin: 0 0 28px;
	overflow: hidden;
	border: 1px solid var(--acg-border);
	border-radius: 18px;
	background: var(--acg-border);
}

.acg-modal__details div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 16px;
	background: #fbf8f3;
}

.acg-modal__details dt {
	font-weight: 700;
	color: var(--acg-dark);
}

.acg-modal__details dd {
	margin: 0;
	text-align: right;
	color: var(--acg-muted);
}

.acg-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.acg-modal__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 24px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease), transform var(--acg-duration) var(--acg-ease);
}

.acg-modal__btn:hover {
	transform: translateY(-1px);
}

.acg-modal__btn[hidden] {
	display: none;
}

.acg-modal__btn--primary {
	background: var(--acg-accent);
	color: #fff;
}

.acg-modal__btn--primary:hover {
	background: var(--acg-accent-hover);
	color: #fff;
}

.acg-modal__btn--secondary {
	background: var(--acg-dark);
	color: #fff;
}

.acg-modal__btn--secondary:hover {
	background: #3d3936;
	color: #fff;
}

@media (min-width: 900px) {
	.acg-modal__panel {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	}

	.acg-modal__media,
	.acg-modal__content {
		min-height: 0;
	}

	.acg-modal__content {
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.acg-modal__media img {
		max-height: none;
		min-height: 100%;
	}
}

@media (max-width: 899px) {
	.acg-modal {
		padding: 12px;
		align-items: flex-end;
	}

	.acg-modal__panel {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-height: min(92dvh, calc(100vh - 24px));
		max-height: min(92vh, calc(100vh - 24px));
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
		border-radius: 22px 22px 0 0;
	}

	.acg-modal__content {
		overflow: visible;
		flex: 0 0 auto;
	}

	.acg-modal__media {
		flex: 0 0 auto;
	}

	.acg-modal__media img {
		max-height: min(42dvh, 320px);
		max-height: min(42vh, 320px);
	}

	.acg-modal__actions {
		flex-direction: column;
	}

	.acg-modal__btn {
		width: 100%;
	}
}

/* Modern WooCommerce cart */
.sac-cart-modern-page .sac-cart-hero {
	padding-bottom: 72px;
}

.sac-cart-modern-page .sac-cart-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 56px 24px 96px;
}

.sac-cart-modern-page .woocommerce {
	color: var(--acg-dark);
}

.sac-cart-modern-page .woocommerce-notices-wrapper,
.sac-cart-modern-page .woocommerce-message,
.sac-cart-modern-page .woocommerce-info,
.sac-cart-modern-page .woocommerce-error {
	max-width: var(--acg-max);
	margin-left: auto;
	margin-right: auto;
}

.sac-cart-modern-page .woocommerce-message,
.sac-cart-modern-page .woocommerce-info,
.sac-cart-modern-page .woocommerce-error {
	border: 1px solid var(--acg-border);
	border-radius: 18px;
	background: #fff;
	color: var(--acg-dark);
	box-shadow: 0 12px 36px rgba(45, 41, 38, 0.08);
}

.sac-cart-modern-page .woocommerce-message::before,
.sac-cart-modern-page .woocommerce-info::before {
	color: var(--acg-accent);
}

.sac-cart-modern-page .woocommerce-cart-form,
.sac-cart-modern-page .cart_totals,
.sac-cart-modern-page .woocommerce .cart-empty,
.sac-cart-modern-page .woocommerce .return-to-shop {
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
}

.sac-cart-modern-page .woocommerce-cart-form {
	overflow: hidden;
}

.sac-cart-modern-page table.shop_table {
	margin: 0;
	border: 0;
	border-collapse: collapse;
	border-radius: 0;
	background: transparent;
}

.sac-cart-modern-page table.shop_table th {
	padding: 20px 18px;
	border: 0;
	background: #fbf8f3;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acg-muted);
}

.sac-cart-modern-page table.shop_table td {
	padding: 20px 18px;
	border-top: 1px solid var(--acg-border);
	color: var(--acg-dark);
}

.sac-cart-modern-page .woocommerce-cart-form__cart-item .product-thumbnail img {
	width: 96px;
	border-radius: 14px;
	background: #f0e9df;
}

.sac-cart-modern-page .product-name a {
	font-weight: 700;
	color: var(--acg-dark);
	text-decoration: none;
}

.sac-cart-modern-page .product-name a:hover {
	color: var(--acg-accent);
}

.sac-cart-modern-page .product-price,
.sac-cart-modern-page .product-subtotal,
.sac-cart-modern-page .cart_totals .amount {
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-cart-modern-page .quantity .qty {
	width: 82px;
	min-height: 44px;
	border: 1px solid var(--acg-border);
	border-radius: 999px;
	background: #fbf8f3;
	color: var(--acg-dark);
	font-weight: 700;
	text-align: center;
}

.sac-cart-modern-page .product-remove a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	color: var(--acg-muted) !important;
	font-size: 1.35rem;
	line-height: 1;
}

.sac-cart-modern-page .product-remove a.remove:hover {
	background: rgba(196, 91, 40, 0.1);
	color: var(--acg-accent) !important;
}

.sac-cart-modern-page table.shop_table .actions {
	padding: 24px;
	background: #fbf8f3;
}

.sac-cart-modern-page .coupon {
	display: flex;
	gap: 10px;
}

.sac-cart-modern-page .coupon label {
	display: none;
}

.sac-cart-modern-page .coupon .input-text {
	width: min(280px, 100%) !important;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid var(--acg-border);
	border-radius: 999px;
	background: #fff;
	color: var(--acg-dark);
}

.sac-cart-modern-page .woocommerce a.button,
.sac-cart-modern-page .woocommerce button.button,
.sac-cart-modern-page .woocommerce input.button,
.sac-cart-modern-page .woocommerce #respond input#submit {
	min-height: 48px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--acg-dark);
	color: #fff;
	font-family: var(--acg-font-body);
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease), transform var(--acg-duration) var(--acg-ease);
}

.sac-cart-modern-page .woocommerce a.button:hover,
.sac-cart-modern-page .woocommerce button.button:hover,
.sac-cart-modern-page .woocommerce input.button:hover,
.sac-cart-modern-page .woocommerce #respond input#submit:hover {
	background: #3d3936;
	color: #fff;
	transform: translateY(-1px);
}

.sac-cart-modern-page .woocommerce a.button.alt,
.sac-cart-modern-page .woocommerce button.button.alt,
.sac-cart-modern-page .wc-proceed-to-checkout a.checkout-button {
	background: var(--acg-accent);
	color: #fff;
}

.sac-cart-modern-page .woocommerce a.button.alt:hover,
.sac-cart-modern-page .woocommerce button.button.alt:hover,
.sac-cart-modern-page .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--acg-accent-hover);
	color: #fff;
}

.sac-cart-modern-page .woocommerce button.button:disabled,
.sac-cart-modern-page .woocommerce button.button:disabled[disabled] {
	padding: 13px 24px;
	background: #d8d0c4;
	color: rgba(45, 41, 38, 0.55);
}

.sac-cart-modern-page .cart-collaterals {
	margin-top: 36px;
}

.sac-cart-modern-page .cart-collaterals .cart_totals {
	float: none;
	width: min(440px, 100%);
	margin-left: auto;
	padding: 30px;
}

.sac-cart-modern-page .cart_totals h2 {
	margin: 0 0 18px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.7rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-cart-modern-page .cart_totals table.shop_table {
	margin-bottom: 24px;
}

.sac-cart-modern-page .cart_totals table.shop_table th,
.sac-cart-modern-page .cart_totals table.shop_table td {
	padding: 16px 0;
	background: transparent;
	border-top: 1px solid var(--acg-border);
	text-transform: none;
	letter-spacing: 0;
	font-size: 1rem;
}

.sac-cart-modern-page .wc-proceed-to-checkout {
	padding: 0;
}

.sac-cart-modern-page .wc-proceed-to-checkout a.checkout-button {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0;
	font-size: 1.05rem;
}

.sac-cart-modern-page .woocommerce .cart-empty {
	margin: 0 0 18px;
	padding: 44px 28px;
	text-align: center;
	font-size: 1.2rem;
}

.sac-cart-modern-page .woocommerce .return-to-shop {
	margin: 0;
	padding: 0 28px 36px;
	text-align: center;
	border-top: 0;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
}

@media (max-width: 768px) {
	.sac-cart-modern-page .sac-cart-content {
		padding: 36px 16px 72px;
	}

	.sac-cart-modern-page table.shop_table_responsive tr,
	.sac-cart-modern-page .woocommerce-page table.shop_table_responsive tr {
		border-top: 1px solid var(--acg-border);
	}

	.sac-cart-modern-page table.shop_table_responsive tr td,
	.sac-cart-modern-page .woocommerce-page table.shop_table_responsive tr td {
		padding: 16px;
		border-top: 0;
	}

	.sac-cart-modern-page .coupon {
		flex-direction: column;
		width: 100%;
		margin-bottom: 14px;
	}

	.sac-cart-modern-page .coupon .input-text,
	.sac-cart-modern-page .coupon .button,
	.sac-cart-modern-page table.shop_table .actions > .button {
		width: 100% !important;
	}

	.sac-cart-modern-page .cart-collaterals .cart_totals {
		padding: 24px;
	}
}

/* Modern WooCommerce checkout */
.sac-checkout-modern-page .sac-checkout-hero {
	padding-bottom: 72px;
}

.sac-checkout-modern-page .sac-checkout-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 56px 24px 96px;
}

.sac-checkout-modern-page .woocommerce {
	color: var(--acg-dark);
}

.sac-checkout-modern-page .woocommerce-notices-wrapper,
.sac-checkout-modern-page .woocommerce-message,
.sac-checkout-modern-page .woocommerce-info,
.sac-checkout-modern-page .woocommerce-error {
	max-width: var(--acg-max);
	margin-left: auto;
	margin-right: auto;
}

.sac-checkout-modern-page .woocommerce-message,
.sac-checkout-modern-page .woocommerce-info,
.sac-checkout-modern-page .woocommerce-error {
	border: 1px solid var(--acg-border);
	border-radius: 18px;
	background: #fff;
	color: var(--acg-dark);
	box-shadow: 0 12px 36px rgba(45, 41, 38, 0.08);
}

.sac-checkout-modern-page .woocommerce-message::before,
.sac-checkout-modern-page .woocommerce-info::before {
	color: var(--acg-accent);
}

.sac-checkout-modern-page form.checkout {
	margin: 0;
}

.sac-checkout-modern-page .sac-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
	gap: 36px;
	align-items: start;
}

.sac-checkout-modern-page .sac-checkout-main,
.sac-checkout-modern-page .sac-checkout-summary {
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
}

.sac-checkout-modern-page .sac-checkout-main {
	padding: 32px;
}

.sac-checkout-modern-page .sac-checkout-summary {
	position: sticky;
	top: 24px;
	padding: 30px;
}

/* Woo uses .col-1 / .col-2 as column slots — reset Bootstrap grid widths (8% / 17%). */
.sac-checkout-modern-page #customer_details.col2-set {
	display: block;
	width: 100%;
	margin: 0;
}

.sac-checkout-modern-page #customer_details.col2-set::before,
.sac-checkout-modern-page #customer_details.col2-set::after {
	display: none;
}

.sac-checkout-modern-page #customer_details .col-1,
.sac-checkout-modern-page #customer_details .col-2 {
	float: none;
	width: 100% !important;
	max-width: none !important;
	flex: none !important;
	padding: 0;
}

.sac-checkout-modern-page #customer_details .col-2 {
	margin-top: 28px;
}

.sac-checkout-modern-page .woocommerce form .form-row {
	display: block;
	width: 100%;
	margin-right: 0;
	margin-left: 0;
	clear: both;
}

.sac-checkout-modern-page .woocommerce form .form-row-first,
.sac-checkout-modern-page .woocommerce form .form-row-last,
.sac-checkout-modern-page .woocommerce form .form-row-wide {
	float: none;
	width: 100%;
	margin-right: 0;
}

@media (min-width: 640px) {
	.sac-checkout-modern-page .woocommerce-billing-fields__field-wrapper,
	.sac-checkout-modern-page .woocommerce-shipping-fields__field-wrapper {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 20px;
	}

	.sac-checkout-modern-page .woocommerce form .form-row-wide,
	.sac-checkout-modern-page .woocommerce-account-fields,
	.sac-checkout-modern-page #ship-to-different-address,
	.sac-checkout-modern-page .woocommerce-additional-fields__field-wrapper .form-row {
		grid-column: 1 / -1;
	}
}

.sac-checkout-modern-page .woocommerce-billing-fields h3,
.sac-checkout-modern-page .woocommerce-shipping-fields h3,
.sac-checkout-modern-page #order_review_heading {
	margin: 0 0 20px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.35rem, 2.4vw, 1.8rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-checkout-modern-page .woocommerce-billing-fields,
.sac-checkout-modern-page .woocommerce-shipping-fields,
.sac-checkout-modern-page .woocommerce-additional-fields {
	margin-bottom: 0;
}

.sac-checkout-modern-page .form-row {
	margin-bottom: 18px;
}

.sac-checkout-modern-page .form-row label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-checkout-modern-page .form-row .required {
	color: var(--acg-accent);
}

.sac-checkout-modern-page .form-row .woocommerce-input-wrapper,
.sac-checkout-modern-page .woocommerce form .form-group {
	display: block;
	width: 100%;
	max-width: none;
}

.sac-checkout-modern-page .form-row input.input-text,
.sac-checkout-modern-page .form-row select,
.sac-checkout-modern-page .form-row textarea,
.sac-checkout-modern-page .select2-container .select2-selection--single {
	width: 100% !important;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid var(--acg-border) !important;
	border-radius: 14px !important;
	background: #fbf8f3;
	color: var(--acg-dark);
	font-family: var(--acg-font-body);
	font-size: 1rem;
	box-shadow: none;
}

.sac-checkout-modern-page .form-row textarea {
	min-height: 120px;
	padding-top: 14px;
	resize: vertical;
}

.sac-checkout-modern-page .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 0;
	line-height: 24px;
	color: var(--acg-dark);
}

.sac-checkout-modern-page .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 46px;
}

.sac-checkout-modern-page #order_review .shop_table {
	margin: 0 0 24px;
	border: 0;
	border-collapse: collapse;
	border-radius: 0;
	background: transparent;
}

.sac-checkout-modern-page #order_review .shop_table th,
.sac-checkout-modern-page #order_review .shop_table td {
	padding: 16px 0;
	border-top: 1px solid var(--acg-border);
	background: transparent;
	color: var(--acg-dark);
	text-transform: none;
	letter-spacing: 0;
	font-size: 1rem;
}

.sac-checkout-modern-page #order_review .shop_table thead th {
	border-top: 0;
	padding-top: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acg-muted);
}

.sac-checkout-modern-page #order_review .product-name {
	font-weight: 700;
}

.sac-checkout-modern-page #order_review .product-total .amount,
.sac-checkout-modern-page #order_review .order-total .amount {
	font-weight: 700;
}

.sac-checkout-modern-page #payment {
	border: 1px solid var(--acg-border);
	border-radius: 20px;
	background: #fbf8f3;
}

.sac-checkout-modern-page #payment .payment_methods {
	margin: 0;
	padding: 20px 20px 0;
	border-bottom: 1px solid var(--acg-border);
}

.sac-checkout-modern-page #payment .payment_methods li {
	margin-bottom: 14px;
}

.sac-checkout-modern-page #payment .payment_box {
	margin-top: 10px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #fff;
	color: var(--acg-muted);
}

.sac-checkout-modern-page #payment .place-order {
	margin: 0;
	padding: 20px;
}

.sac-checkout-modern-page #payment #place_order {
	width: 100%;
	min-height: 52px;
	margin: 0;
}

.sac-checkout-modern-page .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 16px;
}

.sac-checkout-modern-page .woocommerce a.button,
.sac-checkout-modern-page .woocommerce button.button,
.sac-checkout-modern-page .woocommerce input.button,
.sac-checkout-modern-page .woocommerce #respond input#submit,
.sac-checkout-modern-page #payment #place_order {
	min-height: 48px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	background: var(--acg-dark);
	color: #fff;
	font-family: var(--acg-font-body);
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease), color var(--acg-duration) var(--acg-ease), transform var(--acg-duration) var(--acg-ease);
}

.sac-checkout-modern-page .woocommerce a.button:hover,
.sac-checkout-modern-page .woocommerce button.button:hover,
.sac-checkout-modern-page .woocommerce input.button:hover,
.sac-checkout-modern-page .woocommerce #respond input#submit:hover,
.sac-checkout-modern-page #payment #place_order:hover {
	background: #3d3936;
	color: #fff;
	transform: translateY(-1px);
}

.sac-checkout-modern-page .woocommerce a.button.alt,
.sac-checkout-modern-page .woocommerce button.button.alt,
.sac-checkout-modern-page #payment #place_order {
	background: var(--acg-accent);
	color: #fff;
}

.sac-checkout-modern-page .woocommerce a.button.alt:hover,
.sac-checkout-modern-page .woocommerce button.button.alt:hover,
.sac-checkout-modern-page #payment #place_order:hover {
	background: var(--acg-accent-hover);
	color: #fff;
}

.sac-checkout-modern-page .woocommerce-form-login-toggle,
.sac-checkout-modern-page .woocommerce-form-coupon-toggle {
	margin-bottom: 24px;
}

.sac-checkout-modern-page .woocommerce-form-login,
.sac-checkout-modern-page .checkout_coupon {
	margin-bottom: 28px;
	padding: 24px;
	border: 1px solid var(--acg-border);
	border-radius: 20px;
	background: #fbf8f3;
}

@media (max-width: 1024px) {
	.sac-checkout-modern-page .sac-checkout-layout {
		grid-template-columns: 1fr;
	}

	.sac-checkout-modern-page .sac-checkout-summary {
		position: static;
	}
}

@media (max-width: 768px) {
	.sac-checkout-modern-page .sac-checkout-content {
		padding: 36px 16px 72px;
	}

	.sac-checkout-modern-page .sac-checkout-main,
	.sac-checkout-modern-page .sac-checkout-summary {
		padding: 24px;
	}

	.sac-checkout-modern-page #customer_details .col-2 {
		margin-top: 20px;
	}

	.sac-checkout-modern-page .woocommerce-billing-fields__field-wrapper,
	.sac-checkout-modern-page .woocommerce-shipping-fields__field-wrapper {
		display: block;
	}
}

/* Artsline News page */
.sac-artsline-page .sac-artsline-hero {
	padding-bottom: 72px;
}

.sac-artsline-intro {
	margin-top: -32px;
	padding: 0 24px 56px;
	position: relative;
	z-index: 2;
}

.sac-artsline-intro__inner {
	max-width: min(980px, 92vw);
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid var(--acg-border);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 20px 60px rgba(45, 41, 38, 0.12);
}

.sac-artsline-intro__inner img {
	display: block;
	width: 100%;
	height: auto;
}

.sac-artsline-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 96px;
}

.sac-artsline-heading {
	margin-bottom: 30px;
	text-align: center;
}

.sac-artsline-heading p {
	margin: 0 0 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--acg-accent);
}

.sac-artsline-heading h2 {
	margin: 0;
	font-family: var(--acg-font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.1;
	color: var(--acg-dark);
}

.sac-artsline-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

.sac-artsline-card {
	min-width: 0;
}

.sac-artsline-card__link {
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--acg-border);
	border-radius: 24px;
	background: #fff;
	color: inherit;
	text-decoration: none;
	box-shadow: 0 14px 45px rgba(45, 41, 38, 0.08);
	transition: transform var(--acg-duration) var(--acg-ease), box-shadow var(--acg-duration) var(--acg-ease);
}

.sac-artsline-card__link:hover,
.sac-artsline-card__link:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 22px 60px rgba(45, 41, 38, 0.13);
}

.sac-artsline-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, var(--acg-dark), #4b3329);
	color: var(--acg-peach);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.sac-artsline-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--acg-ease);
}

.sac-artsline-card__link:hover .sac-artsline-card__media img {
	transform: scale(1.04);
}

.sac-artsline-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.sac-artsline-card__body time {
	margin-bottom: 10px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--acg-accent);
}

.sac-artsline-card__body h3 {
	margin: 0 0 12px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.18;
	color: var(--acg-dark);
}

.sac-artsline-card__body p {
	margin: 0 0 22px;
	color: var(--acg-muted);
}

.sac-artsline-card__cta {
	margin-top: auto;
	font-weight: 700;
	color: var(--acg-accent);
}

.sac-artsline-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 44px;
}

.sac-artsline-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 999px;
	background: #fff;
	color: var(--acg-dark);
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(45, 41, 38, 0.08);
}

.sac-artsline-pagination .page-numbers.current,
.sac-artsline-pagination .page-numbers:hover {
	background: var(--acg-accent);
	color: #fff;
}

.sac-artsline-empty {
	margin: 0;
	padding: 48px 24px;
	border: 1px solid var(--acg-border);
	border-radius: 24px;
	background: #fff;
	text-align: center;
	color: var(--acg-muted);
}

@media (min-width: 768px) {
	.sac-artsline-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.sac-artsline-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 767px) {
	.sac-artsline-intro {
		margin-top: -24px;
		padding-bottom: 42px;
	}

	.sac-artsline-content {
		padding: 0 16px 72px;
	}
}

/* Info band */
.acg-info-band {
	padding: 48px 24px;
	background: var(--acg-border);
}
.acg-info-band__inner {
	max-width: var(--acg-max);
	margin: 0 auto;
	display: grid;
	gap: 32px;
	text-align: center;
}
@media (min-width: 768px) {
	.acg-info-band__inner {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}
}
.acg-info-band h3 {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: 1.125rem;
	font-weight: 600;
}
.acg-info-band p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--acg-muted);
	line-height: 1.5;
}

/* Footer */
.acg-footer {
	background: var(--acg-footer);
	color: #fff;
}
.acg-footer__news {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 64px 24px;
}
.acg-footer__news-inner {
	max-width: var(--acg-max);
	margin: 0 auto;
	display: grid;
	gap: 32px;
	align-items: center;
}
@media (min-width: 1024px) {
	.acg-footer__news-inner {
		grid-template-columns: 1fr 1fr;
	}
}
.acg-footer__news h3 {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 300;
	line-height: 1.2;
}
.acg-footer__news h3 strong {
	font-weight: 600;
	color: var(--acg-peach);
}
.acg-footer__news p {
	margin: 0;
	color: rgba(255, 255, 255, 0.6);
}
.acg-footer__form {
	width: 100%;
	max-width: 480px;
}
.acg-footer__form .gform_wrapper {
	margin: 0 !important;
	max-width: none !important;
}
.acg-footer__form .gform_body input[type="email"],
.acg-footer__form .gform_body input[type="text"] {
	flex: 1;
	min-width: 200px;
	padding: 14px 24px !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	font-family: inherit !important;
	font-size: 1rem !important;
	height: auto !important;
}
.acg-footer__form .gform_body input::placeholder {
	color: rgba(255, 255, 255, 0.4) !important;
}
.acg-footer__form .gform_footer input[type="submit"],
.acg-footer__form .gform_button {
	padding: 14px 28px !important;
	border: none !important;
	border-radius: 999px !important;
	background: var(--acg-accent) !important;
	color: #fff !important;
	font-family: inherit !important;
	font-weight: 600 !important;
	cursor: pointer;
	white-space: nowrap;
}
.acg-footer__form .gform_footer input[type="submit"]:hover,
.acg-footer__form .gform_button:hover {
	background: var(--acg-accent-hover) !important;
}
.acg-footer__form .gfield_label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.acg-footer__form .gform_fields {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}
.acg-footer__form .gfield {
	margin: 0 !important;
	padding: 0 !important;
	flex: 1 1 200px;
}
.acg-footer__form .gform_footer,
.acg-footer__form .gform_page_footer {
	margin: 0 !important;
	padding: 0 !important;
}
.acg-footer__form .gf_simple_horizontal_wrapper .gform_body,
.acg-footer__form .gf_simple_horizontal .gform_body {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.acg-footer__form .gf_simple_horizontal_wrapper .gform_footer,
.acg-footer__form .gf_simple_horizontal .gform_footer {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
.acg-footer__form #gform_confirmation_wrapper_1,
.acg-footer__form #gform_confirmation_message_1 {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	line-height: 1.5;
}
.acg-footer__form .validation_error,
.acg-footer__form .validation_message {
	color: #e8a87c !important;
	border-color: rgba(232, 168, 124, 0.3) !important;
	background: transparent !important;
}

.acg-footer__grid {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 64px 24px;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
	.acg-footer__grid {
		grid-template-columns: 1.2fr repeat(4, 1fr);
		gap: 48px;
	}
}
.acg-footer__brand {
	grid-column: 1 / -1;
}
@media (min-width: 1024px) {
	.acg-footer__brand {
		grid-column: auto;
	}
}
.acg-footer__brand img {
	height: 80px;
	width: auto;
	margin-bottom: 24px;
}
.acg-footer__brand p {
	margin: 0 0 24px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	max-width: 280px;
}
.acg-footer__social {
	display: flex;
	gap: 12px;
}
.acg-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease);
}
.acg-footer__social a:hover {
	background: var(--acg-accent);
}
.acg-footer__col h4 {
	margin: 0 0 16px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--acg-peach);
}
.acg-footer__col ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.acg-footer__col li {
	margin-bottom: 12px;
}
.acg-footer__col a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color var(--acg-duration) var(--acg-ease);
}
.acg-footer__col a:hover {
	color: #fff;
}

.acg-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 24px;
}
.acg-footer__bottom-inner {
	max-width: var(--acg-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	text-align: center;
}
@media (min-width: 768px) {
	.acg-footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.acg-footer__bottom p {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.4);
}
.acg-footer__login {
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color var(--acg-duration) var(--acg-ease);
}
.acg-footer__login:hover {
	color: #fff;
}
.acg-footer__legal {
	display: flex;
	gap: 24px;
}
.acg-footer__legal a {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
}
.acg-footer__legal a:hover {
	color: #fff;
}

/* Editorial pages */
.artisan-connect-exhibits-page .ace-page,
.artisan-connect-programs-page .ace-page,
.artisan-connect-events-page .ace-page,
.artisan-connect-cta-page .ace-page {
	background: var(--acg-bg);
}

.artisan-connect-exhibits-page .ace-hero,
.artisan-connect-programs-page .ace-hero,
.artisan-connect-events-page .ace-hero,
.artisan-connect-cta-page .ace-hero {
	padding-bottom: 72px;
}

.ace-intro {
	margin-top: -32px;
	padding: 0 24px 48px;
	position: relative;
	z-index: 2;
}

.ace-intro__inner {
	max-width: var(--acg-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(232, 226, 217, 0.9);
	border-radius: 22px;
	background: var(--acg-border);
	box-shadow: 0 20px 60px rgba(45, 41, 38, 0.12);
}

.ace-intro__inner > div {
	padding: 24px;
	background: #fff;
}

.ace-intro span {
	display: block;
	margin-bottom: 6px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--acg-accent);
}

.ace-intro strong,
.ace-intro a {
	font-family: var(--acg-font-heading);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--acg-dark);
	text-decoration: none;
}

.ace-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.ace-card {
	display: grid;
	gap: 0;
	margin-bottom: 40px;
	overflow: hidden;
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
}

.ace-card__media {
	display: flex;
	align-items: center;
	background: #f0e9df;
}

.ace-card__media img {
	display: block;
	width: 100%;
	height: auto;
}

.ace-card__body {
	padding: clamp(28px, 5vw, 48px);
}

.ace-card__body > *:first-child {
	margin-top: 0;
}

.ace-card__body > *:last-child {
	margin-bottom: 0;
}

.ace-card__body h1,
.ace-card__body h2 {
	margin: 0 0 12px;
	font-family: var(--acg-font-heading);
	font-size: clamp(2rem, 4vw, 3.15rem);
	font-weight: 400;
	line-height: 1.08;
	color: var(--acg-dark);
}

.ace-card__body h1 strong,
.ace-card__body h2 strong {
	font-weight: 600;
}

.ace-card__body h3,
.ace-card__body h4 {
	margin: 0 0 22px;
	font-family: var(--acg-font-body);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--acg-accent);
}

.ace-card__body p {
	margin: 0 0 18px;
	color: var(--acg-muted);
}

.ace-card__body ul,
.ace-card__body ol {
	margin: 0 0 22px;
	padding-left: 1.35em;
	color: var(--acg-muted);
}

.ace-card__body li + li {
	margin-top: 8px;
}

.ace-card__body a {
	color: var(--acg-accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.ace-card__body a:hover {
	color: var(--acg-accent-hover);
}

.ace-card__body sup {
	font-size: 0.62em;
}

.ace-card__body iframe {
	display: block;
	max-width: 100%;
	margin: 0 0 22px;
	border-radius: 18px;
}

.ace-card__body h1 a,
.ace-card__body h2 a,
.ace-card__body h3 a,
.ace-card__body h4 a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 999px;
	background: var(--acg-accent);
	color: #fff;
	font-family: var(--acg-font-body);
	font-size: 0.95rem;
	text-decoration: none;
	transition: background var(--acg-duration) var(--acg-ease), transform var(--acg-duration) var(--acg-ease);
}

.ace-card__body h1 a:hover,
.ace-card__body h2 a:hover,
.ace-card__body h3 a:hover,
.ace-card__body h4 a:hover {
	background: var(--acg-accent-hover);
	color: #fff;
	transform: translateY(-1px);
}

.ace-card__body mark {
	padding: 0.12em 0.45em;
	border-radius: 6px;
	background: rgba(196, 91, 40, 0.14);
	color: var(--acg-dark);
	font-weight: 700;
}

@media (min-width: 768px) {
	.ace-intro__inner {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1024px) {
	.ace-card__media img {
		max-height: none;
	}
}

@media (max-width: 767px) {
	.ace-intro {
		margin-top: -24px;
		padding-bottom: 36px;
	}

	.ace-content {
		padding-bottom: 64px;
	}

	.ace-card {
		border-radius: 22px;
	}
}

/* Studio rental application */
.sac-studio-rental-page .sac-studio-rental-breadcrumb {
	margin: 20px 0 0;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.72);
}

.sac-studio-rental-page .sac-studio-rental-breadcrumb a {
	color: #fff;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.sac-studio-rental-page .sac-studio-rental-breadcrumb span {
	margin: 0 0.5rem;
	opacity: 0.55;
}

.sac-studio-rental-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.sac-studio-rental-page .sac-editorial-panel {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
	color: var(--acg-muted);
}

.sac-studio-rental-page .sac-editorial-panel > *:first-child {
	margin-top: 0;
}

.sac-studio-rental-page .sac-editorial-panel p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.sac-studio-rental-page .sac-editorial-panel p:has(> strong:first-child:last-child) strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-studio-rental-page .sac-editorial-panel p strong {
	color: var(--acg-dark);
}

.sac-studio-rental-page .sac-editorial-panel ul {
	margin: 0 0 22px;
	padding-left: 1.35em;
}

.sac-studio-rental-page .sac-editorial-panel li + li {
	margin-top: 8px;
}

.sac-studio-rental-page .sac-editorial-panel a {
	color: var(--acg-accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.sac-studio-rental-page .sac-editorial-panel a:hover {
	color: var(--acg-accent-hover);
}

.sac-studio-rental-page .sac-editorial-panel span[style*="color: red"],
.sac-studio-rental-page .sac-editorial-panel span[style*="color:red"] {
	color: #b42318 !important;
	font-weight: 700;
}

.sac-studio-rental-page .sac-editorial-panel .gform_wrapper {
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--acg-border);
}

.sac-studio-rental-page .sac-editorial-panel .gform_title {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-studio-rental-page .sac-editorial-panel .gform_description {
	margin-bottom: 24px;
	color: var(--acg-muted);
}

.sac-studio-rental-page .sac-editorial-panel .gfield_label {
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-studio-rental-page .sac-editorial-panel input[type="text"],
.sac-studio-rental-page .sac-editorial-panel input[type="email"],
.sac-studio-rental-page .sac-editorial-panel input[type="tel"],
.sac-studio-rental-page .sac-editorial-panel input[type="url"],
.sac-studio-rental-page .sac-editorial-panel select,
.sac-studio-rental-page .sac-editorial-panel textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid var(--acg-border) !important;
	border-radius: 14px !important;
	background: #fbf8f3;
	color: var(--acg-dark);
	box-shadow: none !important;
}

.sac-studio-rental-page .sac-editorial-panel .gform_button,
.sac-studio-rental-page .sac-editorial-panel input[type="submit"] {
	min-height: 48px;
	padding: 13px 28px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--acg-accent) !important;
	color: #fff !important;
	font-weight: 700 !important;
}

.sac-studio-rental-page .sac-editorial-panel .gform_button:hover,
.sac-studio-rental-page .sac-editorial-panel input[type="submit"]:hover {
	background: var(--acg-accent-hover) !important;
}

@media (max-width: 767px) {
	.sac-studio-rental-content {
		padding: 0 16px 64px;
	}

	.sac-studio-rental-page .sac-editorial-panel {
		padding: 24px;
		border-radius: 22px;
	}
}

/* Gallery submission guidelines */
.sac-gallery-submission-page .ace-page {
	background: var(--acg-bg);
}

.sac-gallery-submission-page .ace-hero {
	padding-bottom: 56px;
}

.sac-gallery-submission-page .sac-gallery-submission-breadcrumb {
	margin: 20px 0 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.82);
}

.sac-gallery-submission-page .sac-gallery-submission-breadcrumb a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.sac-gallery-submission-page .sac-gallery-submission-breadcrumb a:hover {
	text-decoration: underline;
}

.sac-gallery-submission-page .sac-gallery-submission-breadcrumb span {
	margin: 0 0.45em;
	opacity: 0.7;
}

.sac-gallery-submission-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.sac-gallery-submission-page .sac-editorial-panel {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
	color: var(--acg-muted);
}

.sac-gallery-submission-page .sac-editorial-panel > *:first-child {
	margin-top: 0;
}

.sac-gallery-submission-page .sac-editorial-panel p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.sac-gallery-submission-page .sac-editorial-panel h4 {
	margin: 28px 0 12px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-gallery-submission-page .sac-editorial-panel ol {
	margin: 0 0 24px;
	padding-left: 1.35em;
}

.sac-gallery-submission-page .sac-editorial-panel li + li {
	margin-top: 10px;
}

.sac-gallery-submission-page .sac-editorial-panel p strong {
	color: var(--acg-dark);
}

.sac-gallery-submission-page .sac-editorial-panel a {
	color: var(--acg-accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.sac-gallery-submission-page .sac-editorial-panel a:hover {
	color: var(--acg-accent-hover);
}

.sac-gallery-submission-page .sac-editorial-panel .gform_wrapper {
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--acg-border);
}

.sac-gallery-submission-page .sac-editorial-panel .gform_title {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-gallery-submission-page .sac-editorial-panel .gform_description {
	margin-bottom: 24px;
	color: var(--acg-muted);
}

.sac-gallery-submission-page .sac-editorial-panel .gfield_label {
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-gallery-submission-page .sac-editorial-panel input[type="text"],
.sac-gallery-submission-page .sac-editorial-panel input[type="email"],
.sac-gallery-submission-page .sac-editorial-panel input[type="tel"],
.sac-gallery-submission-page .sac-editorial-panel input[type="url"],
.sac-gallery-submission-page .sac-editorial-panel select,
.sac-gallery-submission-page .sac-editorial-panel textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid var(--acg-border) !important;
	border-radius: 14px !important;
	background: #fbf8f3;
	color: var(--acg-dark);
	box-shadow: none !important;
}

.sac-gallery-submission-page .sac-editorial-panel .gform_button,
.sac-gallery-submission-page .sac-editorial-panel input[type="submit"] {
	min-height: 48px;
	padding: 13px 28px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--acg-accent) !important;
	color: #fff !important;
	font-weight: 700 !important;
}

.sac-gallery-submission-page .sac-editorial-panel .gform_button:hover,
.sac-gallery-submission-page .sac-editorial-panel input[type="submit"]:hover {
	background: var(--acg-accent-hover) !important;
}

@media (max-width: 767px) {
	.sac-gallery-submission-content {
		padding: 0 16px 64px;
	}

	.sac-gallery-submission-page .sac-editorial-panel {
		padding: 24px;
		border-radius: 22px;
	}
}

/* Scholarship application */
.sac-scholarship-page .ace-page {
	background: var(--acg-bg);
}

.sac-scholarship-page .ace-hero {
	padding-bottom: 56px;
}

.sac-scholarship-page .sac-scholarship-breadcrumb {
	margin: 20px 0 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.82);
}

.sac-scholarship-page .sac-scholarship-breadcrumb a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.sac-scholarship-page .sac-scholarship-breadcrumb a:hover {
	text-decoration: underline;
}

.sac-scholarship-page .sac-scholarship-breadcrumb span {
	margin: 0 0.45em;
	opacity: 0.7;
}

.sac-scholarship-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.sac-scholarship-page .sac-editorial-panel {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
	color: var(--acg-muted);
}

.sac-scholarship-page .sac-editorial-panel > *:first-child {
	margin-top: 0;
}

.sac-scholarship-page .sac-editorial-panel p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.sac-scholarship-page .sac-editorial-panel h3 {
	margin: 0 0 16px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.2rem, 2.2vw, 1.5rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-scholarship-page .sac-editorial-panel ul {
	margin: 0 0 24px;
	padding-left: 1.35em;
}

.sac-scholarship-page .sac-editorial-panel li + li {
	margin-top: 10px;
}

.sac-scholarship-page .sac-editorial-panel p strong,
.sac-scholarship-page .sac-editorial-panel h3 strong {
	color: var(--acg-dark);
}

.sac-scholarship-page .sac-editorial-panel a {
	color: var(--acg-accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.sac-scholarship-page .sac-editorial-panel a:hover {
	color: var(--acg-accent-hover);
}

.sac-scholarship-page .sac-editorial-panel .gform_wrapper {
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--acg-border);
}

.sac-scholarship-page .sac-editorial-panel .gform_title {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-scholarship-page .sac-editorial-panel .gform_description {
	margin-bottom: 24px;
	color: var(--acg-muted);
}

.sac-scholarship-page .sac-editorial-panel .gfield_label {
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-scholarship-page .sac-editorial-panel input[type="text"],
.sac-scholarship-page .sac-editorial-panel input[type="email"],
.sac-scholarship-page .sac-editorial-panel input[type="tel"],
.sac-scholarship-page .sac-editorial-panel input[type="url"],
.sac-scholarship-page .sac-editorial-panel select,
.sac-scholarship-page .sac-editorial-panel textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid var(--acg-border) !important;
	border-radius: 14px !important;
	background: #fbf8f3;
	color: var(--acg-dark);
	box-shadow: none !important;
}

.sac-scholarship-page .sac-editorial-panel .gform_button,
.sac-scholarship-page .sac-editorial-panel input[type="submit"] {
	min-height: 48px;
	padding: 13px 28px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--acg-accent) !important;
	color: #fff !important;
	font-weight: 700 !important;
}

.sac-scholarship-page .sac-editorial-panel .gform_button:hover,
.sac-scholarship-page .sac-editorial-panel input[type="submit"]:hover {
	background: var(--acg-accent-hover) !important;
}

@media (max-width: 767px) {
	.sac-scholarship-content {
		padding: 0 16px 64px;
	}

	.sac-scholarship-page .sac-editorial-panel {
		padding: 24px;
		border-radius: 22px;
	}
}

/* Registration & cancellation policies */
.sac-registration-cancellation-page .ace-page {
	background: var(--acg-bg);
}

.sac-registration-cancellation-page .ace-hero {
	padding-bottom: 56px;
}

.sac-registration-cancellation-page .sac-registration-cancellation-breadcrumb {
	margin: 20px 0 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.82);
}

.sac-registration-cancellation-page .sac-registration-cancellation-breadcrumb a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.sac-registration-cancellation-page .sac-registration-cancellation-breadcrumb a:hover {
	text-decoration: underline;
}

.sac-registration-cancellation-page .sac-registration-cancellation-breadcrumb span {
	margin: 0 0.45em;
	opacity: 0.7;
}

.sac-registration-cancellation-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.sac-registration-cancellation-page .sac-editorial-panel {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
	color: var(--acg-muted);
}

.sac-registration-cancellation-page .sac-editorial-panel > *:first-child {
	margin-top: 0;
}

.sac-registration-cancellation-page .sac-editorial-panel h5 {
	margin: 0 0 28px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-registration-cancellation-page .sac-editorial-panel > strong {
	display: block;
	margin: 32px 0 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--acg-border);
	font-family: var(--acg-font-heading);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-registration-cancellation-page .sac-editorial-panel > strong:first-of-type {
	margin-top: 0;
}

.sac-registration-cancellation-page .sac-editorial-panel p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.sac-registration-cancellation-page .sac-editorial-panel ul {
	margin: 0 0 24px;
	padding-left: 1.35em;
}

.sac-registration-cancellation-page .sac-editorial-panel li + li {
	margin-top: 10px;
}

.sac-registration-cancellation-page .sac-editorial-panel p strong {
	color: var(--acg-dark);
}

.sac-registration-cancellation-page .sac-editorial-panel p:has(> strong:first-child:last-child) {
	margin-top: 28px;
	padding: 20px 24px;
	border-radius: 16px;
	background: #faf7f2;
	border: 1px solid var(--acg-border);
}

.sac-registration-cancellation-page .sac-editorial-panel p:has(> strong:first-child:last-child) strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--acg-font-heading);
	font-size: 1rem;
	color: var(--acg-accent);
}

.sac-registration-cancellation-page .sac-editorial-panel a {
	color: var(--acg-accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.sac-registration-cancellation-page .sac-editorial-panel a:hover {
	color: var(--acg-accent-hover);
}

@media (max-width: 767px) {
	.sac-registration-cancellation-content {
		padding: 0 16px 64px;
	}

	.sac-registration-cancellation-page .sac-editorial-panel {
		padding: 24px;
		border-radius: 22px;
	}
}

/* Private instruction */
.sac-private-instruction-page .ace-page {
	background: var(--acg-bg);
}

.sac-private-instruction-page .ace-hero {
	padding-bottom: 56px;
}

.sac-private-instruction-page .sac-private-instruction-breadcrumb {
	margin: 20px 0 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.82);
}

.sac-private-instruction-page .sac-private-instruction-breadcrumb a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.sac-private-instruction-page .sac-private-instruction-breadcrumb a:hover {
	text-decoration: underline;
}

.sac-private-instruction-page .sac-private-instruction-breadcrumb span {
	margin: 0 0.45em;
	opacity: 0.7;
}

.sac-private-instruction-content {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.sac-private-instruction-page .sac-editorial-panel {
	padding: clamp(28px, 5vw, 48px);
	border: 1px solid var(--acg-border);
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 18px 55px rgba(45, 41, 38, 0.08);
	color: var(--acg-muted);
}

.sac-private-instruction-page .sac-editorial-panel > *:first-child {
	margin-top: 0;
}

.sac-private-instruction-page .sac-editorial-panel p {
	margin: 0 0 18px;
	line-height: 1.65;
}

.sac-private-instruction-page .sac-editorial-panel h4 {
	margin: 0 0 20px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-private-instruction-page .sac-editorial-panel p strong {
	color: var(--acg-dark);
}

.sac-private-instruction-page .sac-editorial-panel p:has(strong u) {
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid var(--acg-border);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--acg-accent);
}

.sac-private-instruction-page .sac-editorial-panel p:has(strong u) strong,
.sac-private-instruction-page .sac-editorial-panel p:has(strong u) u {
	text-decoration: none;
	font-style: normal;
}

.sac-private-instruction-page .sac-editorial-panel h2 {
	margin: 36px 0 0;
	padding: 22px 26px 14px;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.15rem, 2.2vw, 1.45rem);
	font-weight: 700;
	line-height: 1.35;
	color: var(--acg-dark);
	background: linear-gradient(180deg, #faf7f2 0%, #fff 100%);
	border: 1px solid var(--acg-border);
	border-radius: 18px 18px 0 0;
}

.sac-private-instruction-page .sac-editorial-panel h2 + p,
.sac-private-instruction-page .sac-editorial-panel h2 + p + p,
.sac-private-instruction-page .sac-editorial-panel h2 + p + p + p,
.sac-private-instruction-page .sac-editorial-panel h2 + p + ul,
.sac-private-instruction-page .sac-editorial-panel h2 ~ p:has(a[href^="mailto:"]) {
	margin-left: 0;
	padding-left: 26px;
	padding-right: 26px;
}

.sac-private-instruction-page .sac-editorial-panel h2 ~ p:has(a[href^="mailto:"]) {
	padding-bottom: 22px;
	margin-bottom: 8px;
	border: 1px solid var(--acg-border);
	border-top: 0;
	border-radius: 0 0 18px 18px;
	background: #fff;
}

.sac-private-instruction-page .sac-editorial-panel h2 + p {
	padding-top: 8px;
	border-left: 1px solid var(--acg-border);
	border-right: 1px solid var(--acg-border);
	background: #fff;
}

.sac-private-instruction-page .sac-editorial-panel ul {
	margin: 0 0 18px;
	padding: 0 26px 0 2.2em;
	border-left: 1px solid var(--acg-border);
	border-right: 1px solid var(--acg-border);
	background: #fff;
}

.sac-private-instruction-page .sac-editorial-panel h2 ~ ul {
	margin-top: 0;
}

.sac-private-instruction-page .sac-editorial-panel li + li {
	margin-top: 8px;
}

.sac-private-instruction-page .sac-editorial-panel a {
	color: var(--acg-accent);
	font-weight: 700;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.sac-private-instruction-page .sac-editorial-panel a[href^="mailto:"] {
	display: inline-flex;
	align-items: center;
	margin-top: 4px;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--acg-accent);
	color: #fff !important;
	text-decoration: none !important;
}

.sac-private-instruction-page .sac-editorial-panel a[href^="mailto:"]:hover {
	background: var(--acg-accent-hover);
}

@media (max-width: 767px) {
	.sac-private-instruction-content {
		padding: 0 16px 64px;
	}

	.sac-private-instruction-page .sac-editorial-panel {
		padding: 24px;
		border-radius: 22px;
	}

	.sac-private-instruction-page .sac-editorial-panel h2,
	.sac-private-instruction-page .sac-editorial-panel h2 + p,
	.sac-private-instruction-page .sac-editorial-panel ul,
	.sac-private-instruction-page .sac-editorial-panel h2 ~ p:has(a[href^="mailto:"]) {
		padding-left: 18px;
		padding-right: 18px;
	}
}

/* People directories (artists + instructors) */
.sac-artists-directory-page .ace-page,
.sac-instructors-directory-page .ace-page {
	background: var(--acg-bg);
}

.sac-artists-directory-page .ace-hero,
.sac-instructors-directory-page .ace-hero {
	padding-bottom: 56px;
}

.sac-artists-breadcrumb,
.sac-instructors-breadcrumb {
	margin: 20px 0 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.82);
}

.sac-artists-breadcrumb a,
.sac-instructors-breadcrumb a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

.sac-artists-breadcrumb a:hover,
.sac-instructors-breadcrumb a:hover {
	text-decoration: underline;
}

.sac-artists-breadcrumb span,
.sac-instructors-breadcrumb span {
	margin: 0 0.45em;
	opacity: 0.7;
}

.sac-artists-intro {
	margin-top: -32px;
	padding: 0 24px 40px;
	position: relative;
	z-index: 2;
}

.sac-artists-intro__panel {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 28px 32px;
	background: #fff;
	border: 1px solid rgba(232, 226, 217, 0.9);
	border-radius: 22px;
	box-shadow: 0 20px 60px rgba(45, 41, 38, 0.1);
	color: var(--acg-muted);
	line-height: 1.7;
}

.sac-artists-intro__panel p:last-child {
	margin-bottom: 0;
}

.sac-artists-directory {
	max-width: var(--acg-max);
	margin: 0 auto;
	padding: 0 24px 88px;
}

.sac-artists-directory__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px 24px;
	margin-bottom: 32px;
}

.sac-artists-directory__head h2 {
	margin: 0;
	font-family: var(--acg-font-heading);
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	color: var(--acg-dark);
}

.sac-artists-directory__head h2 strong {
	color: var(--acg-accent);
	font-weight: 700;
}

.sac-artists-directory__count {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--acg-muted);
}

.sac-artists-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 28px;
}

.sac-artist-card {
	height: 100%;
	background: #fff;
	border: 1px solid var(--acg-border);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(26, 22, 18, 0.07);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sac-artist-card:hover,
.sac-artist-card:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(26, 22, 18, 0.12);
}

.sac-artist-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.sac-artist-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	background: linear-gradient(145deg, #f3ebe0 0%, #e8ddd0 100%);
	overflow: hidden;
}

.sac-artist-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.sac-artist-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 24px 24px;
}

.sac-artist-card__name {
	margin: 0 0 8px;
	font-family: var(--acg-font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--acg-dark);
}

.sac-artist-card__bio {
	margin: 0 0 12px;
	flex: 1;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--acg-muted);
}

.sac-artist-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.sac-artist-card__tags li {
	padding: 4px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--acg-accent);
	background: rgba(176, 92, 56, 0.1);
	border-radius: 999px;
}

.sac-artist-card__cta {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--acg-accent);
}

.sac-artist-card__link:hover .sac-artist-card__cta {
	color: var(--acg-accent-hover);
	text-decoration: underline;
}

.sac-artists-empty {
	padding: 48px 32px;
	text-align: center;
	background: #fff;
	border: 1px solid var(--acg-border);
	border-radius: 24px;
	color: var(--acg-muted);
}

@media (max-width: 767px) {
	.sac-artists-intro {
		padding: 0 16px 32px;
	}

	.sac-artists-intro__panel {
		padding: 22px 20px;
		border-radius: 20px;
	}

	.sac-artists-directory {
		padding: 0 16px 64px;
	}

	.sac-artists-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
