/* JERRY'S shared content layer */
:root {
	--ink: #171b19;
	--paper: #eee9df;
	--paper-deep: #ded7c9;
	--line: rgba(23, 27, 25, 0.18);
	--accent: #d04b31;
	--olive: #66705c;
}

html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); }
.s-container { width: min(100% - 64px, 1360px); margin: 0 auto; }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.s-section { padding: 150px 0; }
.section-lede { max-width: 510px; color: #5d635c; font-size: 17px; line-height: 1.9; }
.jw-button { display: inline-flex; align-items: center; gap: 16px; min-height: 52px; padding: 0 22px; border: 1px solid transparent; font-size: 13px; font-weight: 700; }
.jw-button-primary { background: var(--accent); color: #fff; }
.jw-button-outline { border-color: currentColor; color: inherit; }
.jw-text-link { display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid currentColor; padding-bottom: 7px; font-size: 13px; font-weight: 700; }
.s-footer { padding-bottom:80px; background: #18201c; color: #e9e4d9; }
.s-topbar { background: #18201c; color: #d8d4c9; }
.s-topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 34px; font-family: 'DM Mono', monospace; font-size: 10px; }
.s-topbar-inner strong { margin-left: 12px; color: #f1a36f; }
.s-topbar-inner a { margin-left: 20px; }
.s-header { background: var(--paper); }
.s-header-main { display: flex; align-items: center; justify-content: space-between; min-height: 100px; gap: 40px; }
.s-logo { display: inline-flex; align-items: center; gap: 12px; color: inherit; }
.s-logo img { width: 44px; height: 44px; }
.s-logo span { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.s-search { display: flex; align-items: center; width: min(430px, 42vw); border-bottom: 1px solid var(--ink); }
.s-search label { position: absolute; width: 1px; height: 1px; overflow: hidden; }
.s-search input { width: 100%; padding: 12px 0; border: 0; background: transparent; outline: 0; font: inherit; }
.s-search button { border: 0; background: transparent; cursor: pointer; }
.s-header-tools { display: flex; align-items: center; gap: 18px; }
.s-header-tools a { display: inline-flex; align-items: center; gap: 5px; color: #535a52; font-size: 11px; }
.s-header-tools .material-symbols-rounded { font-size: 19px; }
.s-cart-link { position: relative; }
.s-cart-link b { position: absolute; top: -9px; right: -8px; display: grid; width: 16px; height: 16px; place-items: center; border-radius: 50%; background: var(--accent); color: white; font: 9px 'DM Mono', monospace; }
.s-mobile-menu { display: none; border: 0; background: transparent; }
.s-nav { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.s-nav-inner { display: flex; align-items: center; min-height: 56px; gap: 38px; }
.s-category-trigger { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; font-weight: 700; cursor: pointer; }
.s-category-trigger .material-symbols-rounded { font-size: 20px; }
.s-nav-list { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; font-size: 13px; font-weight: 700; }
.s-nav-list > li { position: relative; padding: 20px 0; }
.s-nav-sub { position: absolute; top: 56px; left: -15px; z-index: 10; display: none; min-width: 150px; padding: 14px; background: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.1); }
.s-nav-sub a { display: block; padding: 8px 0; font-size: 12px; font-weight: 500; white-space: nowrap; }
.s-nav-list > li:hover .s-nav-sub { display: block; }
.s-nav-promo { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font: 11px 'DM Mono', monospace; text-transform: uppercase; }
#sidebarMenu { display: none; }
.jw-topbtn { position: fixed; right: 24px; bottom: 24px; z-index: 20; display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: var(--ink); color: #fff; opacity: 0; pointer-events: none; transition: opacity .2s; }
.jw-topbtn.is-show { opacity: 1; pointer-events: auto; }

@media (max-width: 760px) {
	.s-container { width: min(100% - 36px, 1360px); }
	.s-topbar-inner { font-size: 9px; }
	.s-topbar-inner a { margin-left: 10px; }
	.s-header-main { min-height: 76px; gap: 15px; }
	.s-logo img { width: 37px; height: 37px; }
	.s-logo span { display: none; }
	.s-search { width: auto; flex: 1; }
	.s-header-tools { display: none; }
	.s-mobile-menu { display: block; }
	.s-nav { display: none; }
	.s-nav.is-mobile-open { display: block; }
	#sidebarMenu { position: fixed; inset: 0 0 0 auto; z-index: 50; display: block; width: min(84vw, 340px); padding: 26px; background: var(--paper); transform: translateX(100%); transition: transform .25s ease; box-shadow: -10px 0 40px rgba(0,0,0,.12); }
	#sidebarMenu.is-open { transform: translateX(0); }
	.sidebarMenu-close { display: flex; justify-content: flex-end; }
	.sidebarMenu-close button { border: 0; background: transparent; font-size: 24px; }
	#sidebarMenu ul { margin: 40px 0 0; padding: 0; list-style: none; }
	#sidebarMenu li { border-bottom: 1px solid var(--line); }
	#sidebarMenu a { display: block; padding: 17px 0; font-size: 18px; font-weight: 700; }
	.s-section { padding: 90px 0; }
}
