/* ==========================================================================
   Saltbox — foundation
   The custom properties are set in layout/theme.liquid from theme settings,
   so a merchant repaints the shop from the theme editor and never opens a file.
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	background: var(--saltbox-paper);
	color: var(--saltbox-ink);
	font-family: var(--saltbox-font-body);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
	margin: 0 0 0.5em;
	font-family: var(--saltbox-font-heading);
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

p { margin: 0 0 1.2em; }

a { color: inherit; }

.rte a { color: var(--saltbox-accent); }

:focus-visible {
	outline: 3px solid var(--saltbox-accent);
	outline-offset: 2px;
}

.visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 999;
	top: 10px; left: 10px;
	width: auto; height: auto;
	padding: 12px 20px;
	clip: auto; clip-path: none;
	background: var(--saltbox-paper);
	color: var(--saltbox-accent);
	font-weight: 700;
}

.wrap {
	width: min(var(--saltbox-wrap), calc(100% - 2 * clamp(16px, 5vw, 44px)));
	margin-inline: auto;
}

.section-pad { padding: clamp(38px, 6vw, 78px) 0; }

.page-narrow { max-width: 74ch; }

.section-title {
	font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.3rem);
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: clamp(20px, 3vw, 34px);
}

.section-head .section-title { margin: 0; }

.section-more {
	display: inline-flex;
	gap: 8px;
	align-items: center;
	color: var(--saltbox-accent);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Buttons and forms
   -------------------------------------------------------------------------- */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 26px;
	border: 1px solid transparent;
	border-radius: var(--saltbox-radius);
	background: var(--saltbox-accent);
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.button:hover { filter: brightness(1.1); color: #fff; }

.button--ghost {
	border-color: var(--saltbox-line);
	background: transparent;
	color: var(--saltbox-ink);
}

.button--ghost:hover { border-color: var(--saltbox-accent); filter: none; color: var(--saltbox-accent); }

.button--small { min-height: 40px; padding: 10px 18px; font-size: 0.86rem; }

.button--full { width: 100%; }

input[type="text"], input[type="email"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"],
select, textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--saltbox-line);
	border-radius: var(--saltbox-radius);
	background: var(--saltbox-paper);
	color: var(--saltbox-ink);
	font-family: inherit;
	/* 16px minimum or iOS Safari zooms the page on focus. */
	font-size: 16px;
}

label { display: block; margin: 14px 0 6px; font-size: 0.88rem; font-weight: 600; }

.form-error { color: #b3261e; font-weight: 600; }
.form-success { color: #1b7a43; font-weight: 600; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.announcement { font-size: 0.85rem; text-align: center; }
.announcement-inner { padding: 9px 0; }
.announcement a { color: inherit; }

.site-header {
	position: relative;
	z-index: 50;
	border-bottom: 1px solid var(--saltbox-line);
	background: var(--saltbox-paper);
}

.site-header[data-sticky="true"] { position: sticky; top: 0; }

.header-inner {
	display: flex;
	gap: 18px;
	align-items: center;
	min-height: 68px;
	padding: 10px 0;
}

.header-logo { flex: 0 0 auto; text-decoration: none; }

.header-shopname {
	font-family: var(--saltbox-font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.header-nav { flex: 1 1 auto; }

.header-nav > ul {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav li { position: relative; }

.header-nav a {
	display: block;
	padding: 9px 13px;
	border-radius: var(--saltbox-radius);
	font-size: 0.94rem;
	text-decoration: none;
}

.header-nav a:hover { background: var(--saltbox-surface-2); }

.header-submenu {
	position: absolute;
	z-index: 60;
	top: 100%;
	left: 0;
	display: none;
	min-width: 200px;
	margin: 0;
	padding: 6px;
	border: 1px solid var(--saltbox-line);
	border-radius: var(--saltbox-radius);
	background: var(--saltbox-paper);
	box-shadow: 0 20px 40px -28px rgb(0 0 0 / 50%);
	list-style: none;
}

.header-nav li:hover > .header-submenu,
.header-nav li:focus-within > .header-submenu { display: block; }

.header-actions { display: flex; flex: 0 0 auto; gap: 2px; align-items: center; margin-left: auto; }

.header-icon {
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: var(--saltbox-radius);
	background: transparent;
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

.header-icon:hover { background: var(--saltbox-surface-2); }

.cart-count {
	position: absolute;
	top: 5px;
	right: 4px;
	display: grid;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--saltbox-accent);
	color: #fff;
	font-size: 0.66rem;
	font-weight: 700;
	place-items: center;
}

.menu-toggle { display: none; }

.mobile-nav { border-top: 1px solid var(--saltbox-line); }
.mobile-nav ul { margin: 0; padding: 0; list-style: none; }
.mobile-nav a { display: block; padding: 14px 0; border-bottom: 1px solid var(--saltbox-line); text-decoration: none; }
.mobile-nav > ul { padding: 0 clamp(16px, 5vw, 44px); }

@media (max-width: 860px) {
	.menu-toggle { display: inline-flex; }
	.header-nav { display: none; }
	.header-logo { margin-inline: auto; }
	.header-actions { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   Search panel
   -------------------------------------------------------------------------- */

.search-panel {
	border-bottom: 1px solid var(--saltbox-line);
	background: var(--saltbox-surface-2);
}

.search-form { display: flex; gap: 8px; align-items: center; padding: 16px 0; }
.search-form input[type="search"] { flex: 1 1 auto; }
.search-form--page { padding: 0 0 24px; }

.search-results { padding-bottom: 16px; }

.search-results ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }

.search-suggestion {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 8px;
	border-radius: var(--saltbox-radius);
	text-decoration: none;
}

.search-suggestion:hover { background: var(--saltbox-paper); }
.search-suggestion img { width: 48px; height: 48px; border-radius: 4px; object-fit: cover; }

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */

.product-grid {
	display: grid;
	gap: clamp(14px, 2vw, 26px);
	grid-template-columns: repeat(var(--grid-cols, 4), minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (max-width: 990px) { .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 749px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.card { display: flex; flex-direction: column; height: 100%; }

.card-media {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 12px;
	border-radius: var(--saltbox-radius);
	background: var(--saltbox-surface-2);
	aspect-ratio: var(--card-ratio, 0.8);
}

.card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.3s ease, transform 0.5s ease;
}

/* The second image sits on top at zero opacity and fades in — no layout shift
   and no second request until the browser decides to make it. */
.card-image--hover { position: absolute; inset: 0; opacity: 0; }
.card:hover .card-image--hover { opacity: 1; }

.card-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--saltbox-accent-2);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.card-badge--out { background: var(--saltbox-muted); }

.card-body { display: flex; flex: 1 1 auto; flex-direction: column; }

.card-vendor { margin: 0 0 3px; color: var(--saltbox-muted); font-size: 0.78rem; }

.card-title {
	margin: 0 0 5px;
	font-family: var(--saltbox-font-body);
	font-size: 0.96rem;
	font-weight: 500;
	letter-spacing: 0;
}

.card-title a { text-decoration: none; }
.card-title a:hover { text-decoration: underline; }

.card-rating { margin: 6px 0 0; color: var(--saltbox-muted); font-size: 0.8rem; }

.card-form, .card .button { margin-top: 12px; }
.card .button { width: 100%; }

.price { display: flex; flex-wrap: wrap; gap: 8px; align-items: baseline; font-size: 0.98rem; font-weight: 600; }
.price-compare { color: var(--saltbox-muted); font-weight: 400; }
.price--on-sale .price-item { color: var(--saltbox-accent-2); }
.price-unit { width: 100%; color: var(--saltbox-muted); font-size: 0.78rem; font-weight: 400; }

.placeholder { background: var(--saltbox-surface-2); fill: var(--saltbox-line); }

/* --------------------------------------------------------------------------
   Banner
   -------------------------------------------------------------------------- */

.banner {
	position: relative;
	display: grid;
	min-height: var(--banner-height, 70vh);
	overflow: hidden;
	align-items: center;
}

.banner-bg { position: absolute; inset: 0; }
.banner-bg img { width: 100%; height: 100%; object-fit: cover; }

.banner.has-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgb(0 0 0 / 52%), rgb(0 0 0 / 14%));
}

.banner-inner { position: relative; z-index: 1; padding: clamp(30px, 6vw, 70px) 0; }
.banner.has-image .banner-inner { color: #fff; }
.banner.has-image .banner-heading { color: #fff; }

.banner-inner--center { text-align: center; }
.banner-inner--right { text-align: right; }

.banner-heading { max-width: 18ch; font-size: clamp(1.9rem, 1.2rem + 3.4vw, 4rem); }
.banner-inner--center .banner-heading { margin-inline: auto; }
.banner-inner--right .banner-heading { margin-left: auto; }

.banner-text { max-width: 46ch; font-size: 1.05rem; }
.banner-inner--center .banner-text { margin-inline: auto; }

.banner-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.banner-inner--center .banner-actions { justify-content: center; }
.banner-inner--right .banner-actions { justify-content: flex-end; }

/* Over a photograph the ghost button inherits the body ink and disappears. */
.banner.has-image .button--ghost { border-color: rgb(255 255 255 / 60%); color: #fff; }
.banner.has-image .button--ghost:hover { border-color: #fff; background: rgb(0 0 0 / 25%); color: #fff; }

/* --------------------------------------------------------------------------
   Collections
   -------------------------------------------------------------------------- */

.collection-cards {
	display: grid;
	gap: clamp(14px, 2vw, 24px);
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.collection-card { display: block; text-decoration: none; }

.collection-card img {
	width: 100%;
	margin-bottom: 10px;
	border-radius: var(--saltbox-radius);
	aspect-ratio: 1;
	object-fit: cover;
}

.collection-card-title { display: block; font-weight: 600; }
.collection-card-count { display: block; color: var(--saltbox-muted); font-size: 0.85rem; }

.collection-banner { position: relative; padding: clamp(30px, 5vw, 60px) 0; background: var(--saltbox-surface-2); }
.collection-banner.has-image { min-height: 320px; display: grid; align-items: end; }
.collection-banner-bg { position: absolute; inset: 0; }
.collection-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.collection-banner.has-image::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(to top, rgb(0 0 0 / 72%), transparent 70%);
}
.collection-banner-inner { position: relative; z-index: 1; }
.collection-banner.has-image .collection-banner-inner { color: #fff; }
.collection-banner.has-image h1 { color: #fff; }
.collection-banner-desc { max-width: 60ch; }

.collection-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
}

.collection-count { margin: 0; color: var(--saltbox-muted); font-size: 0.9rem; }
.collection-sort select { width: auto; min-width: 190px; }
.collection-empty { padding: 40px 0; color: var(--saltbox-muted); }

/* --------------------------------------------------------------------------
   Product page
   -------------------------------------------------------------------------- */

.product-page { padding: clamp(24px, 4vw, 50px) 0; }

.product-layout {
	display: grid;
	gap: clamp(24px, 4vw, 56px);
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	align-items: start;
}

@media (max-width: 860px) { .product-layout { grid-template-columns: minmax(0, 1fr); } }

.gallery-image { width: 100%; border-radius: var(--saltbox-radius); }

.gallery-thumbs {
	display: flex;
	gap: 8px;
	margin: 10px 0 0;
	padding: 0;
	overflow-x: auto;
	list-style: none;
}

.gallery-thumb {
	width: 74px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: var(--saltbox-radius);
	background: none;
	cursor: pointer;
	overflow: hidden;
}

.gallery-thumb.is-active { border-color: var(--saltbox-accent); }
.gallery-thumb img { aspect-ratio: 1; object-fit: cover; }

@media (min-width: 861px) { .product-info { position: sticky; top: 90px; } }

.product-vendor { margin: 0 0 6px; color: var(--saltbox-muted); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
.product-title { margin-bottom: 10px; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); }
.product-price { margin-bottom: 18px; font-size: 1.3rem; }
.product-price .price { font-size: 1.3rem; }
.product-description { color: var(--saltbox-muted); }

.variant-option { margin: 0 0 16px; padding: 0; border: 0; }
.variant-option legend { margin-bottom: 8px; padding: 0; font-size: 0.85rem; font-weight: 600; }
.variant-option label {
	display: inline-block;
	margin: 0 6px 6px 0;
	padding: 9px 15px;
	border: 1px solid var(--saltbox-line);
	border-radius: var(--saltbox-radius);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 400;
}

.variant-option input:checked + label { border-color: var(--saltbox-accent); background: var(--saltbox-accent); color: #fff; }
.variant-option input:focus-visible + label { outline: 3px solid var(--saltbox-accent); outline-offset: 2px; }

.qty { max-width: 130px; margin-bottom: 16px; }

.product-note { margin-top: 18px; color: var(--saltbox-muted); font-size: 0.9rem; }

.product-collapsible { border-top: 1px solid var(--saltbox-line); }
.product-collapsible summary { padding: 15px 0; cursor: pointer; font-weight: 600; }
.product-collapsible[open] summary { padding-bottom: 6px; }
.product-collapsible .rte { padding-bottom: 14px; color: var(--saltbox-muted); }

.product-share { display: flex; gap: 16px; margin-top: 18px; font-size: 0.85rem; }

/* --------------------------------------------------------------------------
   Cart
   -------------------------------------------------------------------------- */

.drawer-scrim {
	position: fixed;
	z-index: 199;
	inset: 0;
	background: rgb(0 0 0 / 45%);
	opacity: 0;
	transition: opacity 0.25s ease;
	visibility: hidden;
}

.drawer-scrim.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
	position: fixed;
	z-index: 200;
	inset: 0 0 0 auto;
	display: flex;
	flex-direction: column;
	width: min(420px, 92vw);
	background: var(--saltbox-paper);
	box-shadow: -20px 0 60px -30px rgb(0 0 0 / 55%);
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	visibility: hidden;
}

.cart-drawer.is-open { transform: none; visibility: visible; }

.cart-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid var(--saltbox-line);
}

.cart-drawer-head h2 { margin: 0; font-size: 1.1rem; }
.cart-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 18px 20px; }

.cart-drawer-foot {
	padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--saltbox-line);
	background: var(--saltbox-surface-2);
}

.cart-lines, .cart-table { margin: 0; padding: 0; list-style: none; }

.cart-line, .cart-row {
	display: grid;
	gap: 14px;
	grid-template-columns: 76px minmax(0, 1fr);
	padding: 14px 0;
	border-bottom: 1px solid var(--saltbox-line);
}

.cart-row { grid-template-columns: 96px minmax(0, 1fr) auto; align-items: start; }

.cart-line-media img, .cart-row-media img { border-radius: var(--saltbox-radius); aspect-ratio: 1; object-fit: cover; }
.cart-line-body a, .cart-row-body a { font-weight: 600; text-decoration: none; }
.cart-line-variant { margin: 2px 0; color: var(--saltbox-muted); font-size: 0.84rem; }
.cart-line-price { margin: 4px 0 0; font-weight: 600; }
.cart-line-qty { display: flex; gap: 14px; margin-top: 6px; color: var(--saltbox-muted); font-size: 0.84rem; }
.cart-line-remove { text-decoration: underline; }
.cart-row-qty input { width: 78px; }

.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.05rem; }
.cart-subtotal strong { font-weight: 700; }
.cart-note-text { margin: 4px 0 12px; color: var(--saltbox-muted); font-size: 0.82rem; }
.cart-viewcart { display: block; margin-top: 10px; font-size: 0.88rem; text-align: center; }
.cart-empty { color: var(--saltbox-muted); }

.cart-foot { max-width: 380px; margin-left: auto; padding-top: 20px; }
.cart-foot-actions { display: flex; gap: 10px; }
.cart-foot-actions .button { flex: 1 1 auto; }

/* --------------------------------------------------------------------------
   Editorial and misc
   -------------------------------------------------------------------------- */

.split { display: grid; gap: clamp(20px, 4vw, 48px); grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.split--right .split-media { order: 2; }
@media (max-width: 749px) { .split { grid-template-columns: minmax(0, 1fr); } .split--right .split-media { order: 0; } }
.split-media img { width: 100%; border-radius: var(--saltbox-radius); }

.rich-text--center { max-width: 68ch; margin-inline: auto; text-align: center; }

.newsletter { padding: clamp(38px, 6vw, 72px) 0; background: var(--saltbox-surface-2); }
.newsletter-inner { max-width: 56ch; margin-inline: auto; text-align: center; }
.newsletter-form { display: flex; gap: 8px; margin-top: 18px; }
.newsletter-form input { flex: 1 1 auto; }
@media (max-width: 560px) { .newsletter-form { flex-direction: column; } }

.article-grid {
	display: grid;
	gap: clamp(16px, 2.4vw, 28px);
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	margin: 0; padding: 0; list-style: none;
}

.article-card { display: block; text-decoration: none; }
.article-card img { width: 100%; margin-bottom: 12px; border-radius: var(--saltbox-radius); aspect-ratio: 16/10; object-fit: cover; }
.article-card-date { color: var(--saltbox-muted); font-size: 0.8rem; }
.article-card h2 { margin: 4px 0 6px; font-size: 1.15rem; }
.article-card p { color: var(--saltbox-muted); font-size: 0.92rem; }

.article-meta { color: var(--saltbox-muted); font-size: 0.88rem; }
.article-media img { width: 100%; border-radius: var(--saltbox-radius); }
.article-comments { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--saltbox-line); }
.comment { padding: 14px 0; border-bottom: 1px solid var(--saltbox-line); }
.comment-author { margin: 0 0 4px; font-weight: 600; }

.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; padding: 30px 0; }
.page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--saltbox-line);
	border-radius: var(--saltbox-radius);
	text-decoration: none;
}
.page-link--current { border-color: var(--saltbox-accent); background: var(--saltbox-accent); color: #fff; }
.page-link--dots { border: 0; }

.error-page { max-width: 60ch; margin-inline: auto; text-align: center; }
.error-code { margin: 0; color: var(--saltbox-accent); font-family: var(--saltbox-font-heading); font-size: clamp(3.5rem, 12vw, 7rem); font-weight: 800; line-height: 1; opacity: 0.25; }
.error-lead { color: var(--saltbox-muted); }

.order-list { margin: 0; padding: 0; list-style: none; }
.order-list li { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--saltbox-line); }

.address { padding: 12px 0; border-bottom: 1px solid var(--saltbox-line); }

.gift-card-value { font-family: var(--saltbox-font-heading); font-size: 2.6rem; font-weight: 800; }
.gift-card-code code { padding: 8px 14px; background: var(--saltbox-surface-2); font-size: 1.1rem; letter-spacing: 0.1em; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer { margin-top: clamp(40px, 6vw, 80px); border-top: 1px solid var(--saltbox-line); background: var(--saltbox-surface-2); }

.footer-grid {
	display: grid;
	gap: clamp(24px, 4vw, 44px);
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	padding: clamp(34px, 5vw, 58px) 0;
}

.footer-shopname { margin: 0 0 8px; font-family: var(--saltbox-font-heading); font-size: 1.15rem; font-weight: 700; }
.footer-blurb { color: var(--saltbox-muted); font-size: 0.92rem; }

.footer-col h2 { margin: 0 0 10px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-col ul, .footer-social { margin: 0; padding: 0; list-style: none; }
.footer-col li, .footer-social li { padding: 4px 0; }
.footer-col a, .footer-social a { color: var(--saltbox-muted); font-size: 0.92rem; text-decoration: none; }
.footer-col a:hover, .footer-social a:hover { color: var(--saltbox-accent); text-decoration: underline; }
.footer-social { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 14px; }
.footer-text { color: var(--saltbox-muted); font-size: 0.92rem; }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0;
	border-top: 1px solid var(--saltbox-line);
	color: var(--saltbox-muted);
	font-size: 0.84rem;
}

.footer-bottom p { margin: 0; }
.footer-payment { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.payment-icon { width: 38px; height: auto; }
.footer-credit a { color: var(--saltbox-accent); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}


/* ==========================================================================
   Saltbox — design
   ========================================================================== */

/* Saltbox is a shop for things worth photographing, so the pictures get the
   room and the interface stays out of the frame. */

.header-inner { min-height: 74px; }

.header-shopname { letter-spacing: -0.03em; }

.header-nav a { letter-spacing: 0.01em; }

/* A large, quiet hero: the image carries it, the type sits low and left. */
.banner-inner { align-self: end; }

.banner-heading { font-weight: 600; letter-spacing: -0.035em; }

/* Collection cards get a subtle lift rather than a border. */
.collection-card img { transition: transform 0.5s cubic-bezier(0.2,0,0,1); }
.collection-card:hover img { transform: scale(1.03); }

.collection-card-title {
  margin-top: 4px;
  font-family: var(--saltbox-font-heading);
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}

/* Product cards: no card chrome at all, just the image and three lines. */
.card-media { border-radius: var(--saltbox-radius); }

.card-title { font-size: 0.98rem; }

.card .button--small {
  /* Quick add only appears on hover on a pointer device — on touch it is
     always there, because there is no hover to reveal it with. */
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .card:hover .button--small,
  .card:focus-within .button--small { opacity: 1; }
}

@media (hover: none) {
  .card .button--small { opacity: 1; }
}

/* A thin rule under section headings gives the page a spine. */
.section-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--saltbox-line);
}

.section-title { font-weight: 600; letter-spacing: -0.03em; }

/* Editorial split with generous air. */
.split { gap: clamp(24px, 5vw, 64px); }
.split-body .section-title { margin-bottom: 14px; }

/* Product page — buy box reads as a single calm column. */
.product-title { font-weight: 600; }
.product-price .price { font-weight: 600; }

.variant-option label { border-radius: 999px; }

.button { font-weight: 600; letter-spacing: 0.01em; }

.newsletter { background: var(--saltbox-accent); color: #fff; }
.newsletter .section-title { color: #fff; }
.newsletter .rte { color: color-mix(in srgb, #fff 82%, transparent); }
.newsletter .button { background: #fff; color: var(--saltbox-accent); }

.footer-shopname { font-weight: 600; }
