/*
Theme Name: VS Factory Direct
Theme URI: https://vsfactory.us/
Author: VS Factory
Description: A bespoke WooCommerce storefront matching the VS Factory information architecture.
Version: 1.1.0
Text Domain: vsfactory
*/

@font-face {
	font-family: "Jost";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../twentytwentyfour/assets/fonts/jost/Jost-VariableFont_wght.woff2") format("woff2");
}

:root {
	--vsf-ink: #151515;
	--vsf-muted: #6f706c;
	--vsf-line: #e5e3dc;
	--vsf-paper: #f6f5f1;
	--vsf-warm: #eae6dc;
	--vsf-gold: #a9854f;
	--vsf-white: #fff;
	--vsf-container: 1420px;
	--vsf-shadow: 0 20px 60px rgba(20, 20, 20, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--vsf-ink);
	background: var(--vsf-white);
	font-family: "Jost", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
body.vsf-lock { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible { outline: 2px solid var(--vsf-gold); outline-offset: 3px; }
.vsf-site { min-height: 100vh; overflow: clip; }
.vsf-container { width: min(var(--vsf-container), calc(100% - 64px)); margin-inline: auto; }
.vsf-main { min-height: 60vh; }
.vsf-icon { width: 22px; height: 22px; display: block; }
.vsf-eyebrow { margin: 0 0 14px; color: var(--vsf-gold); font-size: 12px; font-weight: 700; letter-spacing: .19em; line-height: 1.4; }
.vsf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.vsf-button:hover { transform: translateY(-2px); }
.vsf-button .vsf-icon { width: 17px; }
.vsf-button-dark { background: var(--vsf-ink); color: #fff; }
.vsf-button-dark:hover { background: #383838; color: #fff; }
.vsf-button-outline { border-color: var(--vsf-ink); background: transparent; }
.vsf-button-outline:hover { background: var(--vsf-ink); color: #fff; }
.vsf-text-link { display: inline-flex; align-items: center; gap: 7px; border: 0; border-bottom: 1px solid currentColor; background: transparent; padding: 0 0 3px; font-weight: 600; line-height: 1.4; cursor: pointer; }
.vsf-text-link .vsf-icon { width: 16px; transition: transform .2s; }
.vsf-text-link:hover .vsf-icon { transform: translateX(3px); }

/* Header */
.vsf-header {
	position: relative;
	z-index: 100;
	height: 90px;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(0, 0, 0, .07);
	transition: box-shadow .25s, transform .25s, background .25s;
}
.vsf-home .vsf-header { position: absolute; inset: 0 0 auto; background: transparent; border: 0; }
.vsf-header.is-sticky { position: fixed; inset: 0 0 auto; height: 74px; background: rgba(255,255,255,.98); box-shadow: 0 8px 30px rgba(0,0,0,.08); animation: vsfSlideDown .25s ease-out; }
@keyframes vsfSlideDown { from { transform: translateY(-100%); } }
.admin-bar .vsf-header.is-sticky { top: 32px; }
.vsf-header-row { height: 100%; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 34px; }
.vsf-logo { display: block; width: 180px; }
.vsf-logo img { width: 100%; height: auto; }
.vsf-desktop-nav > ul { display: flex; justify-content: center; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.vsf-desktop-nav > ul > li > a { display: flex; align-items: center; height: 90px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.vsf-header.is-sticky .vsf-desktop-nav > ul > li > a { height: 74px; }
.vsf-desktop-nav > ul > li > a::after { content: ""; position: absolute; inset: auto 50% 24px; height: 1px; background: var(--vsf-ink); transition: inset .2s; }
.vsf-desktop-nav > ul > li { position: relative; }
.vsf-desktop-nav > ul > li:hover > a::after { inset-inline: 0; }
.vsf-has-mega > a::before { content: "+"; order: 2; margin-left: 7px; color: var(--vsf-muted); font-weight: 400; }
.vsf-mega-menu {
	position: fixed;
	z-index: 20;
	top: 90px;
	left: 50%;
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 1.3fr;
	gap: 45px;
	width: min(1100px, calc(100% - 64px));
	padding: 38px;
	background: #fff;
	box-shadow: var(--vsf-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 12px);
	transition: opacity .2s, transform .2s, visibility .2s;
}
.vsf-header.is-sticky .vsf-mega-menu { top: 74px; }
.vsf-has-mega:hover .vsf-mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.vsf-mega-menu > div:not(.vsf-mega-feature) { display: flex; flex-direction: column; gap: 8px; }
.vsf-mega-menu a { color: #696969; font-size: 13px; }
.vsf-mega-menu a:hover { color: #111; transform: translateX(2px); }
.vsf-mega-menu .vsf-mega-title { margin-bottom: 6px; color: #111; font-weight: 700; letter-spacing: .08em; }
.vsf-mega-menu .vsf-mega-spaced { margin-top: 15px; }
.vsf-mega-feature { position: relative; min-height: 235px; overflow: hidden; }
.vsf-mega-feature img { width: 100%; height: 100%; object-fit: cover; }
.vsf-mega-feature span { position: absolute; inset: auto 18px 18px; color: #fff; font-size: 14px; font-weight: 600; }
.vsf-header-tools { display: flex; align-items: center; gap: 16px; }
.vsf-icon-button, .vsf-cart-link, .vsf-account-link { position: relative; display: inline-flex; align-items: center; border: 0; background: transparent; padding: 5px; cursor: pointer; }
.vsf-account-link { gap: 8px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.vsf-account-link .vsf-icon { width: 19px; }
.vsf-tool-count { position: absolute; top: -3px; right: -5px; display: grid; place-items: center; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 50px; background: #111; color: #fff; font-size: 9px; line-height: 1; }
.vsf-cart-link { gap: 8px; }
.vsf-cart-summary { position: relative; }
.vsf-cart-total { margin-left: 2px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.vsf-cart-summary > .vsf-tool-count { top: -15px; left: -17px; right: auto; }
.vsf-mobile-toggle { display: none; }

/* Search and drawers */
.vsf-search-overlay { position: fixed; z-index: 300; inset: 0; display: grid; place-items: start center; padding-top: 15vh; background: rgba(250,250,248,.985); opacity: 0; visibility: hidden; transition: .25s; }
.vsf-search-overlay.is-open { opacity: 1; visibility: visible; }
.vsf-overlay-close { position: absolute; top: 35px; right: 45px; border: 0; background: none; cursor: pointer; }
.vsf-search-inner { width: min(760px, calc(100% - 48px)); text-align: center; }
.vsf-search-inner > p { margin-bottom: 30px; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.vsf-search-form { display: flex; border-bottom: 2px solid #1b1b1b; }
.vsf-search-form input { flex: 1; min-width: 0; padding: 15px 0; border: 0; background: transparent; color: #111; font-size: clamp(22px, 4vw, 36px); outline: 0; }
.vsf-search-form button { border: 0; background: transparent; padding: 10px; cursor: pointer; }
.vsf-search-inner > span { display: block; margin-top: 20px; color: var(--vsf-muted); font-size: 14px; }
.vsf-mobile-drawer { position: fixed; z-index: 400; inset: 0 auto 0 0; width: min(380px, 90vw); padding: 24px; background: #fff; transform: translateX(-105%); transition: transform .3s; overflow-y: auto; }
.vsf-mobile-drawer.is-open { transform: none; }
.vsf-screen { position: fixed; z-index: 350; inset: 0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: .25s; }
.vsf-screen.is-open { opacity: 1; visibility: visible; }
.vsf-drawer-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--vsf-line); text-transform: uppercase; letter-spacing: .1em; }
.vsf-drawer-head button, .vsf-drawer-search button { border: 0; background: none; cursor: pointer; }
.vsf-drawer-search { display: flex; margin: 22px 0; background: var(--vsf-paper); }
.vsf-drawer-search input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 12px 14px; outline: 0; }
.vsf-mobile-drawer nav > a, .vsf-mobile-drawer summary { display: block; padding: 13px 0; border-bottom: 1px solid var(--vsf-line); font-weight: 600; cursor: pointer; }
.vsf-mobile-drawer details > a { display: block; padding: 9px 15px; color: var(--vsf-muted); font-size: 14px; }

/* Home hero */
.vsf-hero { position: relative; min-height: 780px; background: #eeeee9 url("assets/images/hero.jpg") center/cover no-repeat; }
.vsf-hero-inner { display: flex; align-items: center; min-height: 780px; padding-top: 90px; }
.vsf-hero-copy { width: min(590px, 50%); }
.vsf-hero h1 { margin: 0 0 25px; font-size: clamp(46px, 5vw, 78px); font-weight: 500; letter-spacing: -.045em; line-height: 1.02; }
.vsf-hero-lead { max-width: 545px; margin: 0 0 30px; color: #474843; font-size: 17px; line-height: 1.7; }
.vsf-hero-actions { display: flex; align-items: center; gap: 28px; }
.vsf-hero-proof { display: flex; gap: 26px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(0,0,0,.18); }
.vsf-hero-proof span { color: #4e4e49; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }
.vsf-hero-proof b { margin-right: 5px; color: var(--vsf-gold); }
.vsf-brand-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: #171717; color: #fff; }
.vsf-brand-strip a { display: flex; justify-content: space-between; align-items: center; min-height: 78px; padding: 0 34px; border-right: 1px solid #353535; transition: background .2s; }
.vsf-brand-strip a:hover { background: #242424; }
.vsf-brand-strip span { font-size: 13px; font-weight: 600; letter-spacing: .12em; }
.vsf-brand-strip small { color: #888; }

/* Sections */
.vsf-section { padding: 105px 0; }
.vsf-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 46px; }
.vsf-section-heading h2, .vsf-standard h2, .vsf-answer-section h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.vsf-section-heading > p { max-width: 490px; margin: 0; color: var(--vsf-muted); }
.vsf-heading-centered { flex-direction: column; align-items: center; gap: 15px; text-align: center; }
.vsf-heading-centered > p { max-width: 650px; }
.vsf-category-section { background: #fff; }
.vsf-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vsf-category-card { position: relative; aspect-ratio: .88; overflow: hidden; background: var(--vsf-paper); }
.vsf-category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 50%, rgba(0,0,0,.68)); }
.vsf-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.vsf-category-card:hover img { transform: scale(1.045); }
.vsf-category-overlay { position: absolute; z-index: 2; inset: auto 28px 26px; color: #fff; }
.vsf-category-overlay strong, .vsf-category-overlay small { display: block; }
.vsf-category-overlay strong { font-size: 21px; letter-spacing: .07em; }
.vsf-category-overlay small { margin-top: 4px; color: rgba(255,255,255,.7); }
.vsf-collection { background: var(--vsf-paper); }
.vsf-product-tabs { display: flex; justify-content: center; gap: 32px; margin: -12px 0 42px; }
.vsf-product-tabs a { padding-bottom: 5px; color: var(--vsf-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.vsf-product-tabs a.is-active, .vsf-product-tabs a:hover { color: var(--vsf-ink); border-bottom: 1px solid currentColor; }
.vsf-center-action { margin-top: 48px; text-align: center; }

/* Product cards */
ul.products.vsf-products, .woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 18px; margin: 0; padding: 0; list-style: none; }
ul.products.vsf-products.vsf-grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.woocommerce ul.products li.product, ul.products li.vsf-product-card { float: none; width: auto; margin: 0; }
.vsf-product-card { min-width: 0; list-style: none; }
.vsf-product-media { position: relative; overflow: hidden; aspect-ratio: 1; background: #f2f2f0; }
.vsf-product-image, .vsf-product-image img { display: block; width: 100%; height: 100%; }
.vsf-product-image img { object-fit: cover; transition: transform .5s; }
.vsf-product-card:hover .vsf-product-image img { transform: scale(1.025); }
.vsf-sale-badge, .vsf-hot-badge { position: absolute; z-index: 3; top: 14px; left: 14px; display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 7px; border-radius: 50%; background: #f4f0e5; color: #2d2d2b; font-size: 11px; font-weight: 700; }
.vsf-hot-badge { top: 64px; min-width: 38px; height: 38px; background: #bd3430; color: #fff; }
.vsf-card-tools { position: absolute; z-index: 3; top: 13px; right: 13px; display: flex; flex-direction: column; gap: 7px; opacity: 0; transform: translateX(10px); transition: .25s; }
.vsf-product-card:hover .vsf-card-tools { opacity: 1; transform: none; }
.vsf-card-tools button { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.1); cursor: pointer; transition: .2s; }
.vsf-card-tools button:hover, .vsf-card-tools button.is-active { background: #111; color: #fff; }
.vsf-card-tools .vsf-icon { width: 17px; }
.vsf-card-cart { position: absolute; z-index: 3; inset: auto 12px 12px; transform: translateY(calc(100% + 20px)); opacity: 0; transition: .25s; }
.vsf-product-card:hover .vsf-card-cart { transform: none; opacity: 1; }
.vsf-card-cart .button, .vsf-card-cart a.button { display: block; width: 100%; margin: 0 !important; padding: 13px 10px !important; border-radius: 2px !important; background: #181818 !important; color: #fff !important; text-align: center; font-size: 11px !important; font-weight: 700 !important; letter-spacing: .08em; text-transform: uppercase; }
.vsf-product-info { padding-top: 15px; }
.vsf-product-category { display: block; margin-bottom: 5px; color: #96968f; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.vsf-product-card h3, .woocommerce ul.products li.product h3 { margin: 0 0 8px; padding: 0; font-size: 14px !important; font-weight: 500; line-height: 1.45; }
.vsf-product-card h3 a { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.vsf-product-price, .woocommerce ul.products li.product .price { color: #111 !important; font-size: 14px !important; font-weight: 600 !important; }
.vsf-product-price del, .woocommerce ul.products li.product .price del { color: #aaa; font-weight: 400; opacity: 1; }
.vsf-product-price ins, .woocommerce ul.products li.product .price ins { text-decoration: none; }
.star-rating { color: var(--vsf-gold); font-size: 11px !important; }
.vsf-empty { grid-column: 1 / -1; padding: 45px; background: #fff; text-align: center; }

/* Promise and editorial */
.vsf-promise { padding: 95px 0; background: #171717; color: #fff; }
.vsf-heading-light > p { color: #929292; }
.vsf-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #393939; }
.vsf-promise-grid article { position: relative; padding: 42px 55px 0 0; }
.vsf-promise-grid article + article { padding-left: 55px; border-left: 1px solid #393939; }
.vsf-promise-grid h3 { margin: 12px 0 8px; font-size: 23px; font-weight: 500; }
.vsf-promise-grid p { margin: 0; color: #a9a9a9; }
.vsf-step { color: var(--vsf-gold); font-size: 12px; font-weight: 700; }
.vsf-standard { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 720px; background: #e8e5de; }
.vsf-standard-media { min-height: 600px; background: url("assets/images/standard.jpg") center/cover; }
.vsf-standard-copy { display: flex; flex-direction: column; justify-content: center; max-width: 650px; padding: 75px clamp(45px, 7vw, 120px); }
.vsf-standard-copy > p:not(.vsf-eyebrow) { color: #5d5e59; }
.vsf-standard-copy .vsf-large-copy { margin: 25px 0 8px; color: #282824 !important; font-size: 20px; line-height: 1.55; }
.vsf-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin: 28px 0 35px; border-block: 1px solid #c9c6bd; }
.vsf-stat-row span { padding: 18px 5px; }
.vsf-stat-row strong, .vsf-stat-row small { display: block; }
.vsf-stat-row strong { font-size: 24px; font-weight: 500; }
.vsf-stat-row small { color: #777; }
.vsf-journal { background: #fff; }
.vsf-post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.vsf-post-image { display: block; overflow: hidden; aspect-ratio: 1.5; background: var(--vsf-paper); }
.vsf-post-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.vsf-post-card:hover .vsf-post-image img { transform: scale(1.035); }
.vsf-post-meta { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; color: var(--vsf-gold); font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.vsf-post-meta time { color: #999; }
.vsf-post-card h3, .vsf-post-card h2 { margin: 9px 0; font-size: 20px; font-weight: 500; line-height: 1.35; }
.vsf-answer-section { padding: 100px 0; background: var(--vsf-paper); }
.vsf-answer-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.vsf-answer-layout > div:first-child > p:last-child { max-width: 430px; color: var(--vsf-muted); }
.vsf-faq-list { border-top: 1px solid #cac8c1; }
.vsf-faq-list details { border-bottom: 1px solid #cac8c1; }
.vsf-faq-list summary { position: relative; padding: 23px 45px 23px 0; font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; }
.vsf-faq-list summary::-webkit-details-marker { display: none; }
.vsf-faq-list summary::after { content: "+"; position: absolute; right: 5px; font-size: 22px; font-weight: 300; }
.vsf-faq-list details[open] summary::after { content: "−"; }
.vsf-faq-list details p { margin: -5px 60px 25px 0; color: var(--vsf-muted); }

/* Page and shop archives */
.vsf-page-hero { padding: 80px 0; background: var(--vsf-paper); text-align: center; }
.vsf-page-hero h1 { max-width: 1000px; margin: 0 auto; font-size: clamp(42px, 6vw, 72px); font-weight: 500; letter-spacing: -.04em; line-height: 1.05; }
.vsf-page-hero > .vsf-container > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--vsf-muted); }
.vsf-page-content { padding-block: 80px 110px; }
.vsf-page-content > * { max-width: 960px; margin-inline: auto; }
.vsf-page-content h2 { margin-top: 55px; font-size: 36px; font-weight: 500; letter-spacing: -.025em; }
.vsf-page-content h3 { margin-top: 35px; font-size: 24px; font-weight: 500; }
.vsf-page-content p, .vsf-page-content li { color: #555651; }
.vsf-page-content .vsf-content-lead { color: #252521; font-size: 22px; line-height: 1.6; }
.vsf-page-content .vsf-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; gap: 22px; margin-top: 50px; }
.vsf-info-grid article { padding: 32px; background: var(--vsf-paper); }
.vsf-info-grid article h3 { margin-top: 0; }
.vsf-shop-hero { padding-block: 55px; }
.woocommerce .woocommerce-breadcrumb, .vsf-product-breadcrumb .woocommerce-breadcrumb { margin: 0 0 25px; color: #999; font-size: 12px; text-align: left; }
.vsf-term-description { max-width: 720px; margin: 18px auto 0; color: var(--vsf-muted); }
.vsf-shop-layout { display: grid; grid-template-columns: 265px 1fr; gap: 48px; padding-block: 55px 110px; }
.vsf-filter-head { display: none; }
.vsf-shop-sidebar h2 { margin: 0 0 17px; font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }
.vsf-price-filter { padding-bottom: 30px; border-bottom: 1px solid var(--vsf-line); }
.vsf-price-filter > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vsf-price-filter label span { display: block; margin-bottom: 3px; color: #999; font-size: 11px; text-transform: uppercase; }
.vsf-price-filter input { width: 100%; padding: 10px; border: 1px solid var(--vsf-line); background: #fff; }
.vsf-price-filter .vsf-button { width: 100%; min-height: 42px; margin-top: 10px; }
.vsf-category-filter { padding-block: 30px; }
.vsf-category-filter details { border-bottom: 1px solid var(--vsf-line); }
.vsf-category-filter summary { display: flex; justify-content: space-between; padding: 10px 0; cursor: pointer; list-style: none; font-weight: 600; }
.vsf-category-filter summary::-webkit-details-marker { display: none; }
.vsf-category-filter summary span, .vsf-category-filter details > a span { color: #aaa; font-size: 11px; }
.vsf-category-filter details > a { display: flex; justify-content: space-between; padding: 6px 0 6px 13px; color: #777; font-size: 13px; }
.vsf-sidebar-note { padding: 26px; background: #20201f; color: #fff; }
.vsf-sidebar-note h3 { margin: 0 0 14px; font-size: 21px; font-weight: 500; line-height: 1.35; }
.vsf-sidebar-note p:not(.vsf-eyebrow) { color: #aaa; }
.vsf-sidebar-note a, .vsf-sidebar-note button { display: inline-flex; align-items: center; gap: 6px; color: #ddd; font-size: 13px; }
.vsf-sidebar-note .vsf-icon { width: 15px; }
.vsf-shop-results { min-width: 0; }
.vsf-shop-toolbar { display: flex; align-items: center; gap: 25px; margin-bottom: 30px; padding-bottom: 16px; border-bottom: 1px solid var(--vsf-line); }
.vsf-shop-toolbar .woocommerce-result-count { margin: 0 auto 0 0; color: #888; font-size: 13px; }
.vsf-shop-toolbar .woocommerce-ordering { margin: 0; }
.vsf-shop-toolbar select { border: 0; background: transparent; font-size: 13px; }
.vsf-filter-open { display: none; align-items: center; gap: 7px; border: 0; background: none; font-weight: 600; cursor: pointer; }
.vsf-filter-open .vsf-icon { width: 19px; }
.woocommerce nav.woocommerce-pagination { margin-top: 55px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0; }
.woocommerce nav.woocommerce-pagination ul li span.current { background: #111; color: #fff; }
.vsf-archive-seo { margin-top: 85px; padding: 48px; background: var(--vsf-paper); }
.vsf-archive-seo h2 { margin: 0 0 15px; font-size: 32px; font-weight: 500; letter-spacing: -.025em; }
.vsf-archive-seo > p:not(.vsf-eyebrow) { max-width: 820px; color: var(--vsf-muted); }
.vsf-related-collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 28px 0; background: var(--vsf-line); border: 1px solid var(--vsf-line); }
.vsf-related-collections a { display: flex; justify-content: space-between; gap: 15px; padding: 13px 15px; background: #fff; font-size: 13px; }
.vsf-related-collections span { color: #aaa; }
.vsf-search-results-page { padding-block: 70px 110px; }

/* WooCommerce details, cart and forms */
.vsf-commerce-page { padding-bottom: 100px; }
.vsf-product-breadcrumb { padding-top: 28px; }
.vsf-woocommerce-content { padding-top: 35px; }
.woocommerce div.product div.images, .woocommerce div.product div.summary { margin-bottom: 70px; }
.woocommerce div.product div.summary { padding: 25px 3vw; }
.woocommerce div.product .product_title { font-size: clamp(30px, 3vw, 46px); font-weight: 500; letter-spacing: -.035em; line-height: 1.15; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--vsf-ink); font-size: 24px; }
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product form.cart .button { min-height: 50px; padding-inline: 35px; border-radius: 2px; background: #151515; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce .quantity .qty { min-height: 50px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--vsf-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 0; background: transparent; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { border-bottom: 2px solid #111; }
.woocommerce table.shop_table { border-color: var(--vsf-line); border-radius: 0; }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button { border-radius: 2px; }
.woocommerce button.button.alt, .woocommerce a.button.alt, .woocommerce input.button.alt { background: #151515; }
.woocommerce button.button.alt:hover, .woocommerce a.button.alt:hover { background: #363636; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select { min-height: 46px; border: 1px solid var(--vsf-line); padding: 10px 12px; }
.select2-container--default .select2-selection--single { height: 46px; padding: 8px; border-color: var(--vsf-line); border-radius: 0; }
.woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; }
.woocommerce-MyAccount-navigation a { display: block; padding: 10px 0; border-bottom: 1px solid var(--vsf-line); }

/* Journal and articles */
.vsf-journal-hero { background: #1d1d1b; color: #fff; }
.vsf-journal-hero > .vsf-container > p:last-child { color: #aaa; }
.vsf-blog-layout { display: grid; grid-template-columns: 1fr 270px; gap: 65px; padding-block: 80px 110px; }
.vsf-post-grid-archive { grid-template-columns: repeat(2, 1fr); gap: 55px 30px; }
.vsf-post-card > p { color: var(--vsf-muted); }
.vsf-blog-sidebar { align-self: start; position: sticky; top: 110px; }
.vsf-blog-sidebar h2 { margin-top: 0; font-size: 30px; font-weight: 500; }
.vsf-blog-sidebar > li { list-style: none; }
.vsf-blog-sidebar > li a { display: inline-block; padding: 8px 0; }
.vsf-blog-sidebar > li::marker { display: none; }
.vsf-blog-sidebar .vsf-sidebar-note { margin-top: 35px; }
.vsf-article-header { padding: 90px 0 180px; background: var(--vsf-paper); text-align: center; }
.vsf-article-head-inner { max-width: 1000px; }
.vsf-article-header h1 { margin: 0 auto; font-size: clamp(42px, 6vw, 74px); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.vsf-article-deck { max-width: 760px; margin: 25px auto; color: #666; font-size: 19px; }
.vsf-byline { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 25px; color: #85857f; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.vsf-article-hero { position: relative; margin-top: -115px; }
.vsf-article-hero img { width: 100%; max-height: 680px; object-fit: cover; }
.vsf-article-layout { display: grid; grid-template-columns: minmax(0, 800px) 280px; justify-content: center; gap: 75px; padding-block: 80px 120px; }
.vsf-article-content { font-family: Georgia, serif; font-size: 18px; line-height: 1.85; }
.vsf-article-content h2, .vsf-article-content h3 { margin-top: 55px; font-family: "Jost", sans-serif; font-weight: 500; letter-spacing: -.02em; }
.vsf-article-content h2 { font-size: 36px; }
.vsf-article-content h3 { font-size: 25px; }
.vsf-answer-box { margin-bottom: 40px; padding: 28px 30px; border-left: 3px solid var(--vsf-gold); background: var(--vsf-paper); font-family: "Jost", sans-serif; }
.vsf-answer-box p { margin: 7px 0 0; color: #555; }
.vsf-article-trust { margin-top: 60px; padding-top: 25px; border-top: 1px solid var(--vsf-line); font-family: "Jost", sans-serif; font-size: 14px; color: #777; }
.vsf-article-aside > div { position: sticky; top: 110px; padding: 30px; background: var(--vsf-paper); }
.vsf-article-aside h2 { font-size: 25px; font-weight: 500; line-height: 1.3; }

/* Saved products and modal */
.vsf-saved-page { padding-block: 70px 110px; }
.vsf-saved-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.vsf-saved-card { position: relative; border: 1px solid var(--vsf-line); }
.vsf-saved-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vsf-saved-card > div { padding: 18px; }
.vsf-saved-card h2 { font-size: 16px; font-weight: 500; line-height: 1.4; }
.vsf-saved-card button { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 3px 15px rgba(0,0,0,.12); cursor: pointer; }
.vsf-compare-table { overflow-x: auto; }
.vsf-compare-table table { width: 100%; border-collapse: collapse; }
.vsf-compare-table th, .vsf-compare-table td { min-width: 210px; padding: 18px; border: 1px solid var(--vsf-line); text-align: left; vertical-align: top; }
.vsf-compare-table th:first-child { min-width: 120px; }
.vsf-compare-table img { width: 180px; aspect-ratio: 1; object-fit: cover; }
.vsf-quick-modal { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 30px; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: .25s; }
.vsf-quick-modal.is-open { opacity: 1; visibility: visible; }
.vsf-quick-dialog { position: relative; width: min(800px, 100%); max-height: 90vh; overflow-y: auto; background: #fff; box-shadow: var(--vsf-shadow); }
.vsf-modal-close { position: absolute; z-index: 3; top: 15px; right: 15px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; background: #fff; cursor: pointer; }
.vsf-quick-content { display: grid; grid-template-columns: 1fr 1fr; }
.vsf-quick-content img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.vsf-quick-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px 40px; }
.vsf-quick-copy h2 { font-size: 28px; font-weight: 500; line-height: 1.25; }
.vsf-quick-copy .price { font-size: 20px; font-weight: 600; }

/* Footer and fixed tools */
.vsf-footer { padding: 35px 0; border-top: 1px solid var(--vsf-line); background: #fff; }
.vsf-footer-row { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.vsf-footer nav { display: flex; gap: 25px; }
.vsf-footer a, .vsf-footer p { margin: 0; color: #777; font-size: 12px; }
.vsf-footer a:hover { color: #111; }
.vsf-chat-fab { position: fixed; z-index: 90; right: 25px; bottom: 25px; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #1c1c1c; color: #fff; box-shadow: 0 10px 25px rgba(0,0,0,.25); }
.vsf-mobile-toolbar { display: none; }
.vsf-not-found { display: grid; place-items: center; min-height: 70vh; text-align: center; }
.vsf-not-found h1 { margin: 0; font-size: clamp(42px, 7vw, 82px); font-weight: 500; letter-spacing: -.05em; }
.vsf-not-found p { color: var(--vsf-muted); }
.vsf-not-found .vsf-search-form { max-width: 650px; margin: 35px auto; }

/* Responsive */
@media (max-width: 1240px) {
	.vsf-container { width: min(calc(100% - 40px), var(--vsf-container)); }
	.vsf-header-row { grid-template-columns: 160px 1fr auto; gap: 20px; }
	.vsf-logo { width: 155px; }
	.vsf-desktop-nav > ul { gap: 18px; }
	.vsf-desktop-nav > ul > li > a { font-size: 12px; }
	.vsf-account-link span { display: none; }
	ul.products.vsf-products.vsf-grid-five { grid-template-columns: repeat(4, 1fr); }
	.vsf-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
	.vsf-header { height: 72px; }
	.vsf-home .vsf-header { position: absolute; }
	.vsf-header-row { grid-template-columns: 1fr auto 1fr; }
	.vsf-mobile-toggle { display: inline-flex; justify-self: start; gap: 7px; padding: 0; }
	.vsf-mobile-toggle span { font-size: 11px; font-weight: 600; text-transform: uppercase; }
	.vsf-logo { grid-column: 2; width: 170px; }
	.vsf-desktop-nav, .vsf-account-link, .vsf-header-tools > [data-search-open], .vsf-desktop-tool, .vsf-cart-total { display: none; }
	.vsf-header-tools { grid-column: 3; justify-content: flex-end; }
	.vsf-cart-link .vsf-icon { width: 25px; }
	.vsf-cart-summary > .vsf-tool-count { top: -17px; left: -13px; }
	.vsf-hero, .vsf-hero-inner { min-height: 680px; }
	.vsf-hero-inner { padding-top: 72px; }
	.vsf-hero-copy { width: 55%; }
	.vsf-hero-proof { display: none; }
	.vsf-category-grid { grid-template-columns: repeat(2, 1fr); }
	ul.products.vsf-products.vsf-grid-five, ul.products.vsf-products, .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
	.vsf-standard { grid-template-columns: 1fr 1fr; }
	.vsf-standard-copy { padding: 60px 40px; }
	.vsf-answer-layout { gap: 50px; }
	.vsf-shop-layout { grid-template-columns: 1fr; }
	.vsf-shop-sidebar { position: fixed; z-index: 410; inset: 0 auto 0 0; width: min(360px, 90vw); padding: 25px; background: #fff; overflow-y: auto; transform: translateX(-105%); transition: .3s; }
	.vsf-shop-sidebar.is-open { transform: none; }
	.vsf-filter-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
	.vsf-filter-head button { border: 0; background: none; }
	.vsf-filter-open { display: inline-flex; }
	.vsf-article-layout { grid-template-columns: 1fr 240px; gap: 40px; }
}

@media (max-width: 767px) {
	.vsf-container { width: min(calc(100% - 30px), var(--vsf-container)); }
	.vsf-header-row { width: calc(100% - 24px); }
	.vsf-mobile-toggle span { display: none; }
	.vsf-logo { width: 148px; }
	.vsf-hero { min-height: 650px; background-position: 68% center; }
	.vsf-hero::before { content: ""; position: absolute; inset: 0; min-height: 650px; background: linear-gradient(90deg, rgba(241,241,236,.97) 0%, rgba(241,241,236,.8) 55%, rgba(241,241,236,.08)); }
	.vsf-hero-inner { position: relative; min-height: 650px; }
	.vsf-hero-copy { width: 88%; }
	.vsf-hero h1 { font-size: 43px; }
	.vsf-hero-lead { font-size: 15px; }
	.vsf-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
	.vsf-brand-strip { grid-template-columns: repeat(2, 1fr); }
	.vsf-brand-strip a { min-height: 64px; padding: 0 18px; }
	.vsf-brand-strip small { display: none; }
	.vsf-section { padding: 72px 0; }
	.vsf-section-heading { align-items: flex-start; flex-direction: column; gap: 16px; margin-bottom: 32px; }
	.vsf-heading-centered { align-items: center; }
	.vsf-section-heading h2, .vsf-standard h2, .vsf-answer-section h2 { font-size: 36px; }
	.vsf-category-grid { gap: 8px; }
	.vsf-category-card { aspect-ratio: .82; }
	.vsf-category-overlay { inset: auto 16px 16px; }
	.vsf-category-overlay strong { font-size: 15px; }
	.vsf-category-overlay small { font-size: 11px; }
	.vsf-product-tabs { justify-content: flex-start; gap: 22px; overflow-x: auto; }
	ul.products.vsf-products.vsf-grid-five, ul.products.vsf-products, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px 10px; }
	.vsf-card-tools { display: none; }
	.vsf-card-cart { position: static; margin-top: -45px; padding: 8px; transform: none; opacity: 1; }
	.vsf-card-cart .button, .vsf-card-cart a.button { min-height: 36px; padding: 10px 5px !important; font-size: 9px !important; }
	.vsf-sale-badge { top: 8px; left: 8px; min-width: 38px; height: 38px; font-size: 9px; }
	.vsf-hot-badge { top: 49px; left: 8px; width: 32px; min-width: 32px; height: 32px; font-size: 9px; }
	.vsf-product-card h3 { font-size: 12px !important; }
	.vsf-promise { padding: 70px 0; }
	.vsf-promise-grid { grid-template-columns: 1fr; }
	.vsf-promise-grid article, .vsf-promise-grid article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid #393939; }
	.vsf-standard { grid-template-columns: 1fr; }
	.vsf-standard-media { min-height: 430px; }
	.vsf-standard-copy { padding: 60px 22px; }
	.vsf-post-grid, .vsf-post-grid-archive { grid-template-columns: 1fr; gap: 42px; }
	.vsf-answer-layout { grid-template-columns: 1fr; gap: 25px; }
	.vsf-page-hero { padding: 60px 0; }
	.vsf-page-hero h1 { font-size: 43px; }
	.vsf-page-content { padding-block: 55px 80px; }
	.vsf-page-content .vsf-info-grid { grid-template-columns: 1fr; }
	.vsf-shop-layout { padding-top: 30px; }
	.vsf-shop-toolbar { flex-wrap: wrap; gap: 15px; }
	.vsf-shop-toolbar .woocommerce-result-count { order: 3; width: 100%; }
	.vsf-archive-seo { margin-top: 60px; padding: 30px 22px; }
	.vsf-related-collections { grid-template-columns: 1fr; }
	.vsf-blog-layout, .vsf-article-layout { grid-template-columns: 1fr; padding-block: 55px 80px; }
	.vsf-blog-sidebar, .vsf-article-aside { display: none; }
	.vsf-article-header { padding: 65px 0 130px; }
	.vsf-article-header h1 { font-size: 42px; }
	.vsf-article-hero { margin-top: -85px; }
	.vsf-article-content { font-size: 17px; }
	.vsf-saved-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.vsf-quick-content { grid-template-columns: 1fr; }
	.vsf-quick-content img { min-height: 280px; max-height: 330px; }
	.vsf-quick-copy { padding: 30px 25px; }
	.vsf-footer { padding-bottom: 90px; }
	.vsf-footer-row { align-items: flex-start; flex-direction: column; }
	.vsf-footer nav { flex-wrap: wrap; gap: 10px 20px; }
	.vsf-chat-fab { right: 18px; bottom: 82px; width: 48px; height: 48px; }
	.vsf-mobile-toolbar { position: fixed; z-index: 120; inset: auto 0 0; display: grid; grid-template-columns: repeat(4, 1fr); height: 62px; border-top: 1px solid var(--vsf-line); background: rgba(255,255,255,.98); }
	.vsf-mobile-toolbar a { position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1px; color: #555; font-size: 9px; }
	.vsf-mobile-toolbar .vsf-icon { width: 20px; }
	.vsf-mobile-toolbar i { position: absolute; top: 4px; left: calc(50% + 7px); display: grid; place-items: center; min-width: 15px; height: 15px; border-radius: 20px; background: #111; color: #fff; font-size: 8px; font-style: normal; }
}

@media (max-width: 420px) {
	.vsf-hero-copy { width: 100%; }
	.vsf-hero h1 { font-size: 38px; }
	.vsf-saved-grid { grid-template-columns: 1fr; }
}
