@import url("https://fonts.googleapis.com/css2?family=Coiny&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
	--background: #f9f7f4;
	--foreground: #32202a;
	--card: #f3eee8;
	--card-foreground: #32202a;
	--popover: #f9f7f4;
	--popover-foreground: #32202a;
	--primary: #e83074;
	--primary-foreground: #ffffff;
	--secondary: #f0e8db;
	--secondary-foreground: #432533;
	--muted: #ddd8d1;
	--muted-foreground: #836572;
	--accent: #e09652;
	--accent-foreground: #ffffff;
	--destructive: #ef4444;
	--destructive-foreground: #ffffff;
	--border: #d8d1cb;
	--input: #d8d1cb;
	--ring: #e83074;
	--sunshine: #f5cb3d;
	--coral: #f06f42;
	--magenta: #e83074;
	--violet: #a54cd1;
	--teal: #2eb8ad;
	--sidebar-background: #f9f7f4;
	--sidebar-foreground: #432533;
	--sidebar-primary: #e83074;
	--sidebar-primary-foreground: #ffffff;
	--sidebar-accent: #f0e8db;
	--sidebar-accent-foreground: #432533;
	--sidebar-border: #d8d1cb;
	--sidebar-ring: #e83074;
	--radius: 0.75rem;
	--shadow-soft: 0 4px 20px -4px color-mix(in srgb, var(--foreground) 12%, transparent);
	--shadow-elevated: 0 8px 40px -8px color-mix(in srgb, var(--foreground) 20%, transparent);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--font-display: "Coiny", cursive;
	--font-body: "Poppins", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--font-display);
	letter-spacing: -0.01em;
}

p {
	margin: 0;
}

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

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

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (min-width: 1024px) {
	.container-wide {
		padding: 0 2rem;
	}
}

.is-hidden {
	display: none !important;
}

.gradient-artsy {
	background: linear-gradient(135deg, var(--magenta), var(--violet), var(--teal));
}

.single-product-badge.gradient-artsy {
	display: inline-block;
	padding: 0.5rem 1rem;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	font-family: var(--font-body);
	border-radius: 9999px;
	margin-bottom: 1.5rem;
}

.animate-fade-in {
	animation: fadeIn 0.6s var(--transition-smooth) forwards;
}

.animate-slide-up {
	animation: slideUp 0.6s var(--transition-smooth) forwards;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 2.75rem;
	padding: 0 2rem;
	border: 0;
	border-radius: 9999px;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s var(--transition-smooth);
}

.button svg {
	width: 1rem;
	height: 1rem;
}

.button-primary {
	background: var(--primary);
	color: var(--primary-foreground);
}

.button-primary:hover {
	filter: brightness(0.94);
}

.button-secondary {
	background: var(--secondary);
	color: var(--secondary-foreground);
}

.button-secondary:hover {
	filter: brightness(0.96);
}

.button-light {
	background: color-mix(in srgb, var(--primary-foreground) 90%, transparent);
	color: var(--foreground);
}

.button-light:hover {
	background: var(--primary-foreground);
}

.button-outline {
	background: var(--background);
	color: var(--foreground);
	border: 1px solid var(--input);
}

.button-outline:hover {
	background: var(--secondary);
}

.section-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted-foreground);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	border-bottom: 1px solid var(--border);
	background: color-mix(in srgb, var(--background) 95%, transparent);
	backdrop-filter: blur(10px);
	transition: background 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}

.site-header.is-transparent {
	background: transparent;
	border-color: transparent;
	backdrop-filter: none;
}

.site-header.is-transparent .site-brand,
.site-header.is-transparent .site-nav-link,
.site-header.is-transparent .cart-toggle,
.site-header.is-transparent .mobile-menu-toggle {
	color: var(--primary-foreground);
}

.site-nav {
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-brand {
	font-family: "Coiny", cursive;
	font-size: 1.35rem;
	line-height: 1;
}

.site-nav-links {
	display: none;
	align-items: center;
	gap: 2rem;
}

.site-nav-link {
	position: relative;
	font-size: 0.88rem;
	letter-spacing: 0.08em;
}

.site-nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.125rem;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}

.site-nav-link:hover::after {
	transform: scaleX(1);
}

.site-nav-actions {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.cart-toggle {
	position: relative;
}

.cart-toggle,
.mobile-menu-toggle,
.cart-drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 9999px;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.cart-toggle:hover,
.mobile-menu-toggle:hover,
.cart-drawer-close:hover {
	opacity: 0.65;
}

.cart-toggle svg,
.cart-toggle__icon,
.mobile-menu-toggle svg {
	width: 1.25rem;
	height: 1.25rem;
}

.cart-drawer-close svg,
.cart-drawer-close__icon {
	width: 1.25rem;
	height: 1.25rem;
}

.mobile-menu-toggle .icon-menu-close {
	display: none;
}

.mobile-menu-toggle.is-open .icon-menu-open {
	display: none;
}

.mobile-menu-toggle.is-open .icon-menu-close {
	display: block;
}

.cart-count {
	position: absolute;
	top: -0.1rem;
	right: -0.1rem;
	width: 1.25rem;
	height: 1.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: var(--primary);
	color: var(--primary-foreground);
	font-size: 0.62rem;
	font-weight: 500;
}

.cart-count.is-hidden {
	display: none;
}

.mobile-menu {
	display: none;
	border-top: 1px solid var(--border);
	padding: 1rem 0 1.25rem;
}

.mobile-menu.is-open {
	display: block;
	animation: fadeIn 0.6s var(--transition-smooth);
}

.mobile-menu-link {
	display: block;
	padding: 0.5rem 0;
	font-size: 0.9rem;
	letter-spacing: 0.06em;
}

.mobile-menu-link:hover {
	color: var(--muted-foreground);
}

.cart-drawer-wrap {
	position: fixed;
	inset: 0;
	z-index: 60;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s var(--transition-smooth);
}

.cart-drawer-wrap.is-open {
	opacity: 1;
	pointer-events: auto;
}

.cart-drawer-wrap.is-open .cart-drawer-overlay {
	animation: fadeIn 0.6s var(--transition-smooth) forwards;
}

.cart-drawer-wrap.is-loading .cart-items,
.cart-drawer-wrap.is-loading .cart-empty-state {
	opacity: 0.6;
	pointer-events: none;
}

.cart-drawer-wrap.is-loading .cart-summary {
	opacity: 0.6;
}

.cart-drawer-wrap .cart-summary .cart-summary-line--drawer-hidden {
	display: none !important;
}

.cart-drawer-overlay {
	position: absolute;
	inset: 0;
	border: 0;
	background: color-mix(in srgb, var(--foreground) 20%, transparent);
	cursor: pointer;
}

.cart-drawer-panel {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: min(100%, 28rem);
	background: var(--background);
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-elevated);
	transform: translateX(100%);
	transition: transform 0.3s var(--transition-smooth);
}

.cart-drawer-wrap.is-open .cart-drawer-panel {
	transform: translateX(0);
}

.cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem;
	border-bottom: 1px solid var(--border);
}

.cart-drawer-header h2 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
}

.cart-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	text-align: center;
	padding: 1.5rem;
}

.cart-empty-state svg,
.cart-empty-state__icon {
	width: 3rem;
	height: 3rem;
	color: var(--muted-foreground);
	margin-bottom: 1rem;
}

.cart-empty-state p {
	color: var(--muted-foreground);
	margin-bottom: 1.25rem;
}

.cart-items {
	flex: 1;
	overflow: auto;
	padding: 1.5rem;
}

.cart-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.cart-item-image {
	flex-shrink: 0;
	width: 5rem;
	height: 6rem;
	border-radius: 0.625rem;
	overflow: hidden;
	background: var(--secondary);
}

.cart-item:last-child {
	margin-bottom: 0;
}

.cart-item-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item-name {
	font-size: 0.88rem;
	font-weight: 500;
	line-height: 1.35;
}

.cart-item-name:hover {
	opacity: 0.7;
}

.cart-item-price {
	margin-top: 0.25rem;
	font-size: 0.88rem;
	color: var(--muted-foreground);
}

.cart-item-actions {
	margin-top: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.cart-item-quantity {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
}

.cart-item-quantity button {
	width: 1.5rem;
	height: 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 0.35rem;
	border: 0;
	background: transparent;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
}

.cart-item-quantity-icon {
	width: 0.75rem;
	height: 0.75rem;
}

.cart-item-quantity button:hover {
	background: var(--secondary);
}

.cart-item-quantity span {
	min-width: 1.125rem;
	text-align: center;
	font-size: 0.88rem;
}

.cart-item-remove {
	margin-left: auto;
	border: 0;
	background: transparent;
	color: var(--muted-foreground);
	font-size: 0.75rem;
	cursor: pointer;
}

.cart-item-remove:hover {
	color: var(--foreground);
}

.cart-summary {
	padding: 1.5rem;
	border-top: 1px solid var(--border);
	display: grid;
	gap: 0.75rem;
}

.cart-summary-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.875rem;
}

.cart-total-line {
	font-size: 1rem;
	font-weight: 600;
	padding-top: 0.75rem;
	border-top: 1px solid var(--border);
}

.cart-shipping-note {
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

.cart-checkout-button {
	width: 100%;
	border-radius: 9999px;
	height: 2.75rem;
}

.cart-shipping-note {
	font-family: var(--font-body);
}

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: translateY(0);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: color-mix(in srgb, var(--foreground) 40%, transparent);
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 5.5rem 1.5rem 5rem;
	text-align: center;
}

.hero-pretitle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
	color: color-mix(in srgb, var(--primary-foreground) 90%, transparent);
}

.hero-pretitle svg {
	width: 1.25rem;
	height: 1.25rem;
	color: var(--sunshine);
}

.hero-pretitle span {
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
}

.hero-content h1 {
	font-size: clamp(3rem, 9vw, 6rem);
	line-height: 0.98;
	color: var(--primary-foreground);
	margin: 0 auto 1.5rem;
	filter: drop-shadow(0 6px 12px color-mix(in srgb, var(--foreground) 35%, transparent));
}

.hero-content p {
	max-width: 38rem;
	margin: 0 auto 2.5rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: color-mix(in srgb, var(--primary-foreground) 88%, transparent);
}

.hero-buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 2rem;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounceArrow 1.8s infinite;
}

.hero-scroll a {
	display: inline-flex;
	color: color-mix(in srgb, var(--primary-foreground) 75%, transparent);
}

.hero-scroll svg {
	width: 1.25rem;
	height: 1.25rem;
}

.about-section,
.contact-section {
	background: var(--secondary);
}

.about-section {
	padding: 4rem 0 5rem;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: center;
}

.about-image-wrap {
	border-radius: 1rem;
	overflow: hidden;
	aspect-ratio: 3/4;
}

.about-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-content h2 {
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.text-primary {
	color: var(--primary);
}

.about-paragraphs {
	display: grid;
	gap: 1rem;
	color: var(--muted-foreground);
	font-size: 1.02rem;
	line-height: 1.7;
}

.about-highlight-line {
	color: var(--foreground);
	font-weight: 500;
	font-size: 1.12rem;
}

.shop-section {
	padding: 4rem 0 5rem;
}

.shop-head {
	text-align: center;
	margin-bottom: 2.4rem;
}

.shop-head h2 {
	font-size: clamp(2.2rem, 6vw, 3.2rem);
	margin-bottom: 1.75rem;
}

.shop-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.shop-category-button {
	padding: 0.625rem 1.25rem;
	border-radius: 9999px;
	border: 0;
	background: var(--secondary);
	color: var(--secondary-foreground);
	font-size: 0.875rem;
	font-family: "Poppins", sans-serif;
	cursor: pointer;
	transition: all 0.3s var(--transition-smooth);
}

.shop-category-button:hover {
	background: var(--muted);
}

.shop-category-button.is-active {
	background: var(--primary);
	color: var(--primary-foreground);
}

.price-filter {
	display: grid;
	justify-items: center;
	gap: 0.5rem;
}

.price-filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border: 0;
	border-radius: 9999px;
	background: var(--secondary);
	color: var(--secondary-foreground);
	font-family: "Poppins", sans-serif;
	font-size: 0.875rem;
	cursor: pointer;
	transition: all 0.3s var(--transition-smooth);
}

.price-filter-toggle:hover {
	background: var(--muted);
}

.price-filter-toggle svg {
	width: 1rem;
	height: 1rem;
	transition: transform 0.3s var(--transition-smooth);
}

.price-filter-toggle.is-open svg {
	transform: rotate(180deg);
}

.price-filter-range-text {
	font-size: 0.75rem;
	color: color-mix(in srgb, var(--secondary-foreground) 70%, transparent);
}

.price-filter-panel {
	width: min(100%, 22rem);
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth), padding 0.3s var(--transition-smooth);
	padding: 0;
}

.price-filter-panel.is-open {
	max-height: 9rem;
	opacity: 1;
	padding: 0.5rem 0;
}

.price-slider-wrap {
	position: relative;
	height: 1.5rem;
}

.price-slider-wrap input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1.5rem;
	background: transparent;
	pointer-events: none;
}

.price-slider-wrap input[type="range"]::-webkit-slider-runnable-track {
	height: 0.5rem;
	background: var(--secondary);
	border-radius: 9999px;
}

.price-slider-wrap input[type="range"]::-moz-range-track {
	height: 0.5rem;
	background: var(--secondary);
	border-radius: 9999px;
}

.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 9999px;
	background: var(--background);
	border: 2px solid var(--primary);
	margin-top: -0.3rem;
	pointer-events: auto;
	cursor: pointer;
}

.price-slider-wrap input[type="range"]::-moz-range-thumb {
	width: 1.125rem;
	height: 1.125rem;
	border-radius: 9999px;
	background: var(--background);
	border: 2px solid var(--primary);
	pointer-events: auto;
	cursor: pointer;
}

.price-filter-values {
	display: flex;
	justify-content: space-between;
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.product-card.is-hidden-by-default,
.product-card.is-filter-hidden {
	display: none;
}

.product-card-link {
	display: block;
}

.product-image-wrap {
	position: relative;
	margin-bottom: 1rem;
	background: var(--secondary);
	border-radius: 0.75rem;
	overflow: hidden;
	aspect-ratio: 1/1;
}

.product-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s var(--transition-smooth);
}

.product-card-link:hover .product-image-wrap img {
	transform: scale(1.06);
}

.product-image-wrap img.is-sold-out {
	opacity: 0.6;
}

.sold-out-badge,
.one-of-a-kind-badge,
.one-of-a-kind-pill {
	position: absolute;
	left: 0.75rem;
	border-radius: 9999px;
	padding: 0.3rem 0.65rem;
	font-size: 0.62rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sold-out-badge {
	top: 0.75rem;
	background: var(--foreground);
	color: var(--background);
}

.one-of-a-kind-badge {
	left: 0.6rem;
	bottom: 0.6rem;
	background: linear-gradient(135deg, var(--sunshine), var(--coral));
	color: var(--primary-foreground);
}

.one-of-a-kind-pill {
	position: static;
	display: inline-flex;
	margin-bottom: 1.5rem;
	padding: 0.5rem 0.9rem;
	font-size: 0.72rem;
	background: linear-gradient(135deg, var(--magenta), var(--violet), var(--teal));
	color: var(--primary-foreground);
}

.product-card-text {
	display: grid;
	gap: 0.15rem;
}

.product-card-text h3 {
	font-family: "Poppins", sans-serif;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.4;
	transition: color 0.2s var(--transition-smooth);
}

.product-card-link:hover .product-card-text h3 {
	color: var(--primary);
}

.product-card-text p {
	font-size: 0.875rem;
	color: var(--muted-foreground);
	font-weight: 600;
}

.shop-show-more-wrap {
	text-align: center;
	margin-top: 2.5rem;
}

.shop-show-more-wrap.is-hidden {
	display: none;
}

.shop-no-products {
	text-align: center;
	padding: 3rem 0;
}

.shop-no-products p {
	color: var(--muted-foreground);
}

.shop-no-products.is-hidden {
	display: none;
}

.cta-section {
	padding: 3.25rem 0 4rem;
}

.cta-card {
	max-width: 42rem;
	margin: 0 auto;
	padding: 2rem 1.6rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, var(--magenta), var(--violet), var(--teal));
	color: var(--primary-foreground);
	text-align: center;
}

.cta-card h2 {
	font-size: clamp(1.85rem, 4.5vw, 2.6rem);
	margin-bottom: 0.85rem;
}

.cta-card p {
	max-width: 30rem;
	margin: 0 auto 1.6rem;
	line-height: 1.7;
	color: color-mix(in srgb, var(--primary-foreground) 90%, transparent);
}

.contact-section {
	padding: 5rem 0;
}

.contact-head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.contact-head h2 {
	font-size: clamp(2rem, 5vw, 3.15rem);
	margin-bottom: 0.75rem;
}

.contact-head p {
	max-width: 32rem;
	margin: 0 auto;
	color: var(--muted-foreground);
	line-height: 1.7;
}

.contact-form-wrap {
	max-width: 42rem;
	margin: 0 auto;
}

.contact-email-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.contact-email-line svg {
	width: 1rem;
	height: 1rem;
}

.contact-email-line a:hover {
	color: var(--foreground);
}

.contact-form {
	display: grid;
	gap: 1.25rem;
}

.contact-form.is-hidden {
	display: none;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.contact-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
}

.contact-form input,
.contact-form textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	background: var(--background);
	color: var(--foreground);
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	transition: border-color 0.2s var(--transition-smooth), box-shadow 0.2s var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.woocommerce form .form-row input::placeholder,
.woocommerce form .form-row textarea::placeholder {
	color: var(--muted-foreground);
}

.contact-form input:focus,
.contact-form textarea:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	outline: 0;
	border-color: var(--ring);
	box-shadow: 0 0 0 1px var(--ring);
}

.contact-form textarea {
	min-height: 7rem;
	resize: none;
}

.contact-submit-wrap {
	text-align: center;
}

.contact-success {
	text-align: center;
	padding: 2rem 0;
}

.contact-success.is-hidden {
	display: none;
}

.contact-success-icon {
	width: 4rem;
	height: 4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: var(--primary);
	color: var(--primary-foreground);
	margin-bottom: 1rem;
}

.contact-success-icon svg {
	width: 1.7rem;
	height: 1.7rem;
}

.contact-success h3 {
	font-size: 1.8rem;
	margin-bottom: 0.4rem;
}

.contact-success p {
	color: var(--muted-foreground);
}

.site-footer {
	border-top: 1px solid var(--border);
}

.site-footer > .container-wide {
	padding-top: 3rem;
	padding-bottom: 3rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.footer-brand {
	font-size: 1.25rem;
}

.footer-description {
	margin-top: 1rem;
	max-width: 22rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
	line-height: 1.7;
}

.footer-heading {
	margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
}

.footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.footer-nav a {
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.footer-nav a:hover {
	color: var(--foreground);
}

.footer-contact-line {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.footer-contact-line svg {
	width: 1rem;
	height: 1rem;
}

.footer-contact-line a:hover {
	color: var(--foreground);
}

.footer-meta {
	margin-top: 2.4rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: center;
	justify-content: space-between;
}

.footer-meta p,
.footer-meta a {
	font-size: 0.75rem;
	color: var(--muted-foreground);
}

.footer-meta a:hover {
	color: var(--foreground);
}

.page-main {
	padding: 7rem 0 4rem;
	min-height: 70vh;
}

.page-content-wrap h1:first-child {
	font-size: clamp(2rem, 5vw, 3.1rem);
	margin-bottom: 1rem;
}

.single-product-page {
	padding: 7rem 0 4rem;
}

.back-to-shop-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	color: var(--muted-foreground);
}

.back-to-shop-link:hover {
	color: var(--foreground);
}

.back-to-shop-link svg,
.back-to-shop-link__icon,
.checkout-back-link__icon {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.single-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 4rem;
}

@media (min-width: 1024px) {
	.single-product-layout {
		gap: 4rem;
	}

	.single-product-summary-column {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
}

.single-product-category {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--muted-foreground);
	margin-bottom: 0.6rem;
}

.single-product-summary-column .product_title {
	font-size: clamp(1.8rem, 4vw, 2.2rem);
	margin-bottom: 0.8rem;
}

.single-product-summary-column .price {
	color: var(--primary) !important;
	font-weight: 600;
	font-size: 1.6rem !important;
	margin-bottom: 1.25rem !important;
}

.single-product-summary-column .woocommerce-product-rating {
	display: none !important;
}

.single-product-summary-column .woocommerce-product-details__short-description {
	color: var(--muted-foreground);
	line-height: 1.75;
	margin-bottom: 1.5rem;
	white-space: pre-line;
}

.single-product-summary-column form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem !important;
}

.single-product-summary-column form.cart .quantity,
.quantity.quantity--pill {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--border);
	border-radius: 9999px;
	overflow: hidden;
}

.quantity__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: background-color 0.2s var(--transition-smooth);
}

.quantity__btn:hover {
	background: var(--secondary);
}

.quantity__btn--minus {
	border-radius: 9999px 0 0 9999px;
}

.quantity__btn--plus {
	border-radius: 0 9999px 9999px 0;
}

.quantity__icon {
	width: 1rem;
	height: 1rem;
}

.single-product-summary-column form.cart .quantity .qty,
.quantity--pill .qty {
	width: 3rem;
	min-width: 3rem;
	padding: 0.75rem 0.5rem;
	text-align: center;
	border: 0;
	border-left: 1px solid var(--border);
	border-right: 1px solid var(--border);
	background: transparent;
	font-family: var(--font-body);
	-moz-appearance: textfield;
}

.quantity--pill .qty::-webkit-outer-spin-button,
.quantity--pill .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product-summary-column .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 11rem;
	height: 2.75rem;
	padding: 0 1.4rem;
	border-radius: 9999px !important;
	border: 0 !important;
	background: var(--primary) !important;
	color: var(--primary-foreground) !important;
	font-family: "Poppins", sans-serif;
	font-size: 0.93rem;
	font-weight: 500;
}

.single-product-summary-column .single_add_to_cart_button:hover {
	filter: brightness(0.94);
}

.single-product-summary-column .product_meta {
	display: none !important;
}

.single-product-details {
	padding-top: 1.6rem;
	border-top: 1px solid var(--border);
}

.single-product-details h3 {
	font-family: "Poppins", sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 0.95rem;
}

.single-product-details ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.single-product-details li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--muted-foreground);
}

.single-product-details li::before {
	content: "";
	flex-shrink: 0;
	width: 0.375rem;
	height: 0.375rem;
	margin-top: 0.5rem;
	border-radius: 9999px;
	background: var(--primary);
}

.single-product-gallery-column .woocommerce-product-gallery {
	margin: 0 !important;
}

.single-product-gallery-column .woocommerce-product-gallery__trigger,
.single-product-gallery-column a.woocommerce-product-gallery__trigger {
	display: none !important;
}

.single-product-gallery-column .woocommerce-product-gallery__image {
	aspect-ratio: 3 / 4;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--secondary);
}

.single-product-gallery-column .woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-product-gallery-column .flex-control-thumbs {
	display: grid !important;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.5rem;
	margin-top: 0.5rem !important;
	margin-left: 0 !important;
	padding-left: 0 !important;
	list-style: none !important;
}

.single-product-gallery-column .flex-control-thumbs li {
	float: none !important;
	width: auto !important;
	list-style: none !important;
}

.single-product-gallery-column .flex-control-thumbs img {
	border-radius: 0.5rem;
	border: 2px solid transparent;
	opacity: 0.6;
	transition: opacity 0.2s var(--transition-smooth);
}

.single-product-gallery-column .flex-control-thumbs li:hover img {
	opacity: 1;
}

.single-product-gallery-column .flex-control-thumbs .flex-active img {
	border-color: var(--primary);
	opacity: 1;
}

.related-products-section {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--border);
}

.related-products-section h2 {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 700;
	margin-bottom: 2.5rem;
}

.related-product-grid {
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.related-product-grid {
		gap: 2rem;
	}
}

.checkout-page-main {
	padding-top: 6.75rem;
	min-height: 100vh;
}

.checkout-back-link {
	display: inline-flex;
	align-items: center;
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--muted-foreground);
	transition: color 0.2s var(--transition-smooth);
	margin-bottom: 2rem;
	text-decoration: none;
}

.checkout-back-link:hover {
	color: var(--foreground);
}

.checkout-back-link__icon {
	width: 1rem;
	height: 1rem;
	margin-right: 0.5rem;
	flex-shrink: 0;
}

.checkout-main-title {
	font-family: var(--font-display);
	font-size: clamp(1.875rem, 5vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 2.5rem;
}


.checkout-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 3rem 1.5rem;
}

.checkout-empty-state__icon {
	width: 4rem;
	height: 4rem;
	color: var(--muted-foreground);
	margin-bottom: 1.5rem;
}

.checkout-empty-state__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.checkout-empty-state__desc {
	color: var(--muted-foreground);
	margin: 0 0 1.5rem;
}

.checkout-empty-state .button {
	border-radius: 9999px;
}

.artsy-thankyou-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 3rem 1.5rem;
}

.artsy-thankyou-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 9999px;
	background: var(--primary);
	color: var(--primary-foreground);
	margin-bottom: 1.5rem;
}

.artsy-thankyou-icon__svg {
	width: 1.75rem;
	height: 1.75rem;
}

.artsy-thankyou-title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
}

.artsy-thankyou-desc {
	color: var(--muted-foreground);
	margin: 0 0 1.5rem;
}

.artsy-thankyou-block .button {
	border-radius: 9999px;
}

.artsy-thankyou-order-details {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
}

.artsy-checkout-form {
	margin-top: 0.25rem;
}

.artsy-checkout-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 1024px) {
	.artsy-checkout-grid {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
	.artsy-checkout-main {
		order: 2;
	}
	.artsy-checkout-summary {
		order: 1;
	}
}

.artsy-checkout-main,
.artsy-checkout-summary {
	padding: 0;
}

.artsy-checkout-main {
	min-width: 0;
}

.artsy-checkout-main .woocommerce-billing-fields {
	margin-bottom: 2rem;
}

.artsy-checkout-main .woocommerce-shipping-fields {
	margin-bottom: 2rem;
}

.artsy-checkout-main .woocommerce-form-customer-note-wrapper,
.artsy-checkout-main .form-row.notes {
	margin-bottom: 2rem;
}

.artsy-checkout-main .woocommerce-form-customer-note-wrapper label,
.artsy-checkout-main .form-row.notes label {
	display: none;
}

.artsy-checkout-main > h2,
.artsy-checkout-summary > h2 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.artsy-checkout-summary > h2 {
	margin-bottom: 1.5rem;
}

.artsy-checkout-main .woocommerce-billing-fields > h3,
.artsy-checkout-main .woocommerce-shipping-fields > h3,
.artsy-checkout-main .woocommerce-additional-fields > h3 {
	display: none;
}

/* Hide "Ship to different address?" so shipping is always shown */
.woocommerce-checkout .woocommerce-shipping-fields #ship-to-different-address {
	display: none;
}

/* Let form-rows participate in the grid (they are inside the wrapper) */
.artsy-checkout-main .woocommerce-billing-fields__field-wrapper,
.artsy-checkout-main .woocommerce-shipping-fields__field-wrapper {
	display: contents;
}

/* Checkout: Contact Details (billing) – full width, first+last on same row */
.woocommerce-checkout #customer_details input,
.woocommerce-checkout #customer_details select,
.woocommerce-checkout #customer_details textarea,
.artsy-checkout-main .woocommerce-billing-fields input,
.artsy-checkout-main .woocommerce-billing-fields select,
.artsy-checkout-main .woocommerce-billing-fields textarea,
.artsy-checkout-main .woocommerce-shipping-fields input,
.artsy-checkout-main .woocommerce-shipping-fields select,
.artsy-checkout-main .woocommerce-shipping-fields textarea {
	border-radius: 0.5rem;
}

.artsy-checkout-main .woocommerce-billing-fields {
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 0.75rem;
}

.artsy-checkout-main .woocommerce-billing-fields .form-row {
	margin-bottom: 0;
}

.artsy-checkout-main .woocommerce-billing-fields .form-row label,
.artsy-checkout-main .woocommerce-billing-fields .form-row label:empty {
	display: none;
}

.artsy-checkout-main .woocommerce-billing-fields .form-row-first,
.artsy-checkout-main .woocommerce-billing-fields .form-row-last {
	grid-column: span 1;
	min-width: 0;
}

.artsy-checkout-main .woocommerce-billing-fields .form-row-wide {
	grid-column: 1 / -1;
}

.artsy-checkout-main .woocommerce-billing-fields .form-row .input-text,
.artsy-checkout-main .woocommerce-billing-fields .form-row select,
.artsy-checkout-main .woocommerce-shipping-fields .form-row .input-text,
.artsy-checkout-main .woocommerce-shipping-fields .form-row select {
	width: 100%;
	box-sizing: border-box;
	min-height: 2.75rem;
}

.artsy-checkout-main .woocommerce-shipping-fields .form-row select,
.artsy-checkout-main .woocommerce-billing-fields .form-row select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.25rem;
}

.artsy-checkout-main .woocommerce-shipping-fields .select2-container .select2-selection--single,
.artsy-checkout-main .woocommerce-billing-fields .select2-container .select2-selection--single {
	min-height: 2.75rem;
	height: 2.75rem;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	border-radius: 0.5rem;
	border: 1px solid var(--border);
	background: var(--background);
}

.artsy-checkout-main .woocommerce-shipping-fields .select2-container .select2-selection--single .select2-selection__rendered,
.artsy-checkout-main .woocommerce-billing-fields .select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 0;
	line-height: 1;
}

/* Checkout: Shipping Address only – full width fields, vertical spacing */
.artsy-checkout-main .woocommerce-shipping-fields {
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem 0;
}

.artsy-checkout-main .woocommerce-shipping-fields .form-row {
	margin-bottom: 15px;
	grid-column: 1 / -1;
}

.artsy-checkout-main .woocommerce-shipping-fields .form-row label,
.artsy-checkout-main .woocommerce-shipping-fields .form-row label:empty {
	display: none;
}

/* Legacy #customer_details (if present) – keep in sync with billing only */
.woocommerce-checkout #customer_details .woocommerce-billing-fields,
.woocommerce-checkout #customer_details .woocommerce-shipping-fields {
	width: 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 0.75rem;
}

.woocommerce-checkout #customer_details .form-row {
	margin-bottom: 0;
}

.woocommerce-checkout #customer_details .form-row label {
	display: none;
}

.woocommerce-checkout #customer_details .form-row label:empty {
	display: none;
}

.woocommerce-checkout #customer_details .form-row-first,
.woocommerce-checkout #customer_details .form-row-last {
	grid-column: span 1;
}

.woocommerce-checkout #customer_details .form-row-wide,
.woocommerce-checkout #customer_details .form-row.validate-postcode,
.woocommerce-checkout #customer_details .form-row.validate-city,
.woocommerce-checkout #customer_details .form-row.validate-state {
	grid-column: 1 / -1;
}

@media (min-width: 768px) {
	.woocommerce-checkout #customer_details .woocommerce-billing-fields,
	.woocommerce-checkout #customer_details .woocommerce-shipping-fields {
		grid-template-columns: repeat(3, 1fr);
	}

	.woocommerce-checkout #customer_details .form-row.validate-postcode,
	.woocommerce-checkout #customer_details .form-row.validate-city,
	.woocommerce-checkout #customer_details .form-row.validate-state {
		grid-column: span 1;
	}
}

@media (max-width: 767px) {
	.woocommerce-checkout #customer_details .woocommerce-billing-fields,
	.woocommerce-checkout #customer_details .woocommerce-shipping-fields {
		grid-template-columns: 1fr;
	}
	/* Contact Details: keep first name and last name on the same row on small screens */
	.artsy-checkout-main .woocommerce-billing-fields,
	.woocommerce-checkout #customer_details .woocommerce-billing-fields {
		grid-template-columns: 1fr 1fr;
	}
}

.woocommerce-checkout .woocommerce-additional-fields {
	margin-bottom: 2rem;
}

.woocommerce-checkout .woocommerce-additional-fields .form-row label {
	display: none;
}

.artsy-checkout-main .woocommerce-additional-fields .form-row {
	margin-bottom: 0;
}

.woocommerce-checkout .woocommerce-additional-fields textarea {
	min-height: 5rem;
	resize: none;
}

.artsy-checkout-note {
	margin-top: 1rem;
	margin-bottom: 0;
	font-size: 0.75rem;
	font-family: var(--font-body);
	color: var(--muted-foreground);
	text-align: center;
}

.artsy-checkout-summary #order_review {
	border: 0;
	border-radius: 0;
	padding: 0;
	background: transparent;
}

.artsy-checkout-review-order {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.artsy-checkout-review-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.artsy-checkout-review-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.artsy-checkout-review-item__image {
	flex-shrink: 0;
	width: 5rem;
	height: 6rem;
	border-radius: 0.5rem;
	overflow: hidden;
	background: var(--secondary);
}

.artsy-checkout-review-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.artsy-checkout-review-item__content {
	flex: 1;
	min-width: 0;
}

.artsy-checkout-review-item__name {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	font-family: var(--font-body);
	text-decoration: none;
	color: inherit;
	margin-bottom: 0.125rem;
	transition: opacity 0.2s var(--transition-smooth);
}

.artsy-checkout-review-item__name:hover {
	opacity: 0.7;
}

.artsy-checkout-review-item__price {
	margin: 0;
	font-size: 0.875rem;
	font-family: var(--font-body);
	color: var(--muted-foreground);
}

.artsy-checkout-review-item__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.artsy-checkout-review-item__quantity {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.artsy-checkout-review-item__quantity button,
.artsy-checkout-review-item__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 1.5rem;
	height: 1.5rem;
	padding: 0.25rem;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
	cursor: pointer;
	color: inherit;
	transition: background 0.2s var(--transition-smooth);
}

.artsy-checkout-review-item__quantity button:hover,
.artsy-checkout-review-item__remove:hover {
	background: var(--secondary);
}

.artsy-checkout-review-item__remove {
	color: var(--muted-foreground);
	margin-left: auto;
}

.artsy-checkout-review-item__remove:hover {
	color: var(--destructive);
}

.artsy-checkout-review-icon {
	width: 0.75rem;
	height: 0.75rem;
}

.artsy-checkout-review-item__quantity .artsy-checkout-review-icon {
	width: 0.75rem;
	height: 0.75rem;
}

.artsy-checkout-review-item__remove .artsy-checkout-review-icon {
	width: 1rem;
	height: 1rem;
}

.artsy-checkout-review-qty {
	min-width: 1.5rem;
	text-align: center;
	font-size: 0.875rem;
	font-family: var(--font-body);
}

.artsy-checkout-review-item__total {
	flex-shrink: 0;
	font-size: 0.875rem;
	font-weight: 500;
	font-family: var(--font-body);
}

.artsy-checkout-review-totals {
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	border-top: 1px solid var(--border);
	padding-top: 1.5rem;
}

.artsy-checkout-review-totals.shop_table {
	border: 0 !important;
	border-radius: 0 !important;
	border-spacing: 0;
	overflow: visible !important;
	background: transparent !important;
}

.artsy-checkout-review-totals tfoot tr {
	display: table-row;
	padding: 0.25rem 0;
	font-size: 0.875rem;
	font-family: var(--font-body);
}

.artsy-checkout-review-totals tfoot tr th {
	text-align: left;
	background: transparent !important;
	border: 0 !important;
	padding: 0.25rem 0 !important;
	font-weight: 400;
	color: var(--muted-foreground);
	width: 50%;
}

.artsy-checkout-review-totals tfoot tr td {
	border: 0 !important;
	padding: 0.25rem 0 !important;
	text-align: right;
	background: transparent !important;
}

.artsy-checkout-review-totals tfoot tr.shipping td {
	color: var(--primary);
	font-weight: 500;
}

.artsy-checkout-review-totals tfoot tr.order-total {
	padding-top: 0.75rem;
	margin-top: 0.75rem;
	border-top: 1px solid var(--border);
	font-size: 1rem;
	font-weight: 600;
}

.artsy-checkout-review-totals tfoot tr.order-total th {
	color: var(--foreground);
	font-weight: 600;
}

.checkout-page-main .woocommerce {
	display: block;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1rem;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.woocommerce-checkout #order_review_heading {
	margin-top: 0.5rem;
}

.woocommerce table.shop_table {
	border: 1px solid var(--border);
	border-radius: var(--radius);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--border);
	padding: 0.9rem 1rem;
}

.woocommerce table.shop_table th {
	background: var(--secondary);
	font-weight: 600;
}

.woocommerce-checkout-review-order-table .product-name {
	font-weight: 500;
	font-family: var(--font-body);
}

.woocommerce-checkout-review-order-table .order-total .amount {
	font-weight: 600;
}

.woocommerce-checkout-review-order-table tfoot tr.shipping td:last-child {
	color: var(--primary);
	font-weight: 500;
}

.woocommerce-checkout #payment {
	background: transparent;
	border: 0;
	border-radius: 0;
	padding: 0;
	margin-top: 1.5rem;
	margin-bottom: 0;
}

.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid var(--border);
	padding: 0 0 1rem;
	margin: 0 0 1rem;
	list-style: none;
	font-size: 0.875rem;
	font-family: var(--font-body);
}

.woocommerce-checkout #payment .wc_payment_method {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--border);
}

.woocommerce-checkout #payment .wc_payment_method:last-of-type {
	border-bottom: 0;
}

.woocommerce-checkout #payment .payment_box {
	background: var(--secondary);
	border: 1px solid var(--border);
	border-radius: 0.5rem;
	padding: 1rem;
	margin: 0.5rem 0 1rem 1.5rem;
	font-size: 0.875rem;
}

.woocommerce-checkout #payment .payment_box p {
	margin: 0 0 0.5rem;
}

.woocommerce-checkout #payment .payment_box p:last-child {
	margin-bottom: 0;
}

.woocommerce-checkout #payment div.form-row {
	padding: 1rem 0 0;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	width: 100%;
	height: 2.75rem;
	padding: 0 1.4rem;
	border-radius: 9999px !important;
	border: 0 !important;
	background: var(--primary) !important;
	color: var(--primary-foreground) !important;
	font-family: var(--font-body) !important;
	font-size: 0.93rem !important;
	font-weight: 500 !important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	height: 2.75rem;
	padding: 0 1.4rem;
	border-radius: 9999px !important;
	border: 0 !important;
	background: var(--primary) !important;
	color: var(--primary-foreground) !important;
	font-family: var(--font-body) !important;
	font-size: 0.93rem !important;
	font-weight: 500 !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #payment #place_order:hover {
	filter: brightness(0.94);
}

.woocommerce .woocommerce-notices-wrapper > * {
	border-radius: 0.75rem;
	border: 1px solid var(--border);
	background: var(--secondary);
	color: var(--secondary-foreground);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top: 0 !important;
	padding: 1rem 1rem 1rem 3rem !important;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--primary) !important;
}

.woocommerce .quantity .qty {
	width: 4rem;
}

.not-found-page {
	min-height: 100vh;
	display: grid;
	place-items: center;
	background: var(--muted);
	padding: 6rem 0;
}

.not-found-wrap {
	text-align: center;
}

.not-found-wrap h1 {
	font-size: 3rem;
	margin-bottom: 0.75rem;
}

.not-found-wrap p {
	color: var(--muted-foreground);
	margin-bottom: 0.85rem;
}

.not-found-wrap a {
	color: var(--primary);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.not-found-wrap a:hover {
	filter: brightness(0.92);
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounceArrow {
	0%,
	100% {
		transform: translate(-50%, 0);
	}

	50% {
		transform: translate(-50%, -0.35rem);
	}
}

@media (min-width: 640px) {
	.hero-buttons {
		flex-direction: row;
		justify-content: center;
	}

	.contact-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-meta {
		flex-direction: row;
	}
}

@media (min-width: 768px) {
	.site-nav {
		height: 5rem;
	}

	.site-nav-links {
		display: inline-flex;
	}

	.mobile-menu-toggle,
	.mobile-menu {
		display: none !important;
	}

	.about-section {
		padding: 5.5rem 0 6rem;
	}

	.about-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 3rem;
	}

	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.75rem;
	}

	.footer-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 2.5rem;
	}

	.single-product-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 3.5rem;
	}

	.woocommerce .col2-set,
	.woocommerce-page .col2-set {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 3.5rem;
	}

	.artsy-checkout-grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 4rem;
	}

	.artsy-checkout-main {
		order: 2;
	}

	.artsy-checkout-summary {
		order: 1;
	}
}

@media (min-width: 1024px) {
	.product-grid,
	.related-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}

