/*
 Theme Name:   Storefront Child
 Theme URI:    https://woocommerce.com/storefront/
 Description:  A child theme for the WooCommerce Storefront theme — Josef Sobotta Art
 Author:       SinusQuell
 Author URI:   https://example.com
 Template:     storefront
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  storefront-child
*/


/* ═══════════════════════════════════════════════
   1. TYPOGRAPHY
   ═══════════════════════════════════════════════ */

body,
button,
input,
select,
textarea {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #2a2a2a;
	font-weight: 300;
	line-height: 1.8;
}

h1, h2, h3, h4, h5, h6,
.alpha, .beta, .gamma, .delta,
.site-title,
.woocommerce-loop-product__title,
.product_title,
.page-title,
.entry-title,
.section-title {
	font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: #1a1a1a;
}


/* ═══════════════════════════════════════════════
   2. LAYOUT — Full Width, No Sidebar
   ═══════════════════════════════════════════════ */

.col-full {
	max-width: 75em;
}

@media (min-width: 768px) {
	.content-area {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

	.woocommerce-active .site-header .site-branding {
		width: auto;
		float: left;
		margin-right: 0;
	}

	.woocommerce-active .site-header .site-search {
		display: none;
	}

	.woocommerce-active .site-header .main-navigation {
		width: auto;
		float: none;
		margin-right: 0;
	}

	.woocommerce-active .site-header .site-header-cart {
		width: auto;
		float: right;
		margin-right: 0;
	}
}

#secondary.widget-area {
	display: none;
}


/* ═══════════════════════════════════════════════
   3. HEADER
   ═══════════════════════════════════════════════ */

.site-header {
	background-color: #fff !important;
	background-image: none !important;
	border-bottom: none;
	padding-top: 1.5em;
	padding-bottom: 0;
	color: #2a2a2a;
}

.site-branding .site-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 300;
	font-size: 2.4em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-branding .site-title a {
	color: #1a1a1a;
	font-weight: 300;
}

.site-branding .site-title a:hover {
	color: #555;
}

.site-branding .site-description {
	color: #888;
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	letter-spacing: 0.08em;
	font-size: 0.8em;
}

.site-branding img {
	max-height: 80px;
	width: auto;
}


/* ═══════════════════════════════════════════════
   4. NAVIGATION — Single row: menu left, search+cart right
   ═══════════════════════════════════════════════ */

.storefront-primary-navigation {
	background-color: #fff;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

@media (min-width: 768px) {
	.storefront-primary-navigation > .col-full {
		display: flex;
		align-items: center;
		gap: 0;
	}

	/* Nav grows to push icons to the right */
	.storefront-primary-navigation .main-navigation {
		flex: 1 1 auto;
		width: auto !important;
		float: none !important;
		margin-right: 0 !important;
		clear: none !important;
	}

	/* Search + Cart grouped on the right */
	.storefront-primary-navigation .jsa-search-wrapper {
		float: none;
		order: 2;
	}

	.storefront-primary-navigation .jsa-cart-link {
		order: 3;
	}

	.storefront-primary-navigation .site-header-cart {
		width: auto !important;
		float: none !important;
		margin: 0 !important;
		order: 4;
	}

	/* Remove left-margin Storefront sets on menu */
	.main-navigation ul.menu,
	.main-navigation ul.nav-menu {
		margin-left: 0;
	}
}

.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a {
	color: #333;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 0.82em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 1.2em 1.1em;
}

.main-navigation ul.menu > li > a:hover,
.main-navigation ul.nav-menu > li > a:hover {
	color: #000;
}

/* Submenu */
.main-navigation ul.menu ul,
.main-navigation ul.nav-menu ul {
	background-color: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
}

.main-navigation ul.menu ul a,
.main-navigation ul.nav-menu ul a {
	color: #444;
	font-size: 0.82em;
}

.main-navigation ul.menu ul a:hover,
.main-navigation ul.nav-menu ul a:hover {
	color: #000;
	background-color: #fafafa;
}


/* ═══════════════════════════════════════════════
   5. COLLAPSIBLE SEARCH & CART — Nav Right Group
   ═══════════════════════════════════════════════ */

.jsa-search-wrapper {
	position: relative;
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	line-height: 1;
}

.jsa-search-toggle {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.6em;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease;
}

.jsa-search-toggle:hover {
	color: #000;
}

.jsa-search-toggle svg {
	display: block;
}

.jsa-search-dropdown {
	position: absolute;
	right: 0;
	top: calc(100% + 0.5em);
	width: 320px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	z-index: 9999;
	background: #fff;
	padding: 1.2em;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #eee;
}

.jsa-search-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.jsa-search-dropdown .widget_product_search form {
	display: flex;
}

.jsa-search-dropdown .widget_product_search input[type="search"],
.jsa-search-dropdown .widget_product_search input[type="text"] {
	border: 1px solid #ddd;
	padding: 0.7em 1em;
	font-size: 0.9em;
	font-family: 'Inter', sans-serif;
	width: 100%;
	outline: none;
	transition: border-color 0.2s ease;
}

.jsa-search-dropdown .widget_product_search input[type="search"]:focus,
.jsa-search-dropdown .widget_product_search input[type="text"]:focus {
	border-color: #333;
}

.jsa-search-dropdown .widget_product_search label {
	display: none;
}


/* ═══════════════════════════════════════════════
   6. HEADER CART
   ═══════════════════════════════════════════════ */

.jsa-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #333;
	padding: 0.5em;
	transition: color 0.2s ease;
	text-decoration: none;
	margin-left: 0;
}

.jsa-cart-link:hover {
	color: #000;
}

.jsa-cart-link svg {
	display: block;
}

.jsa-cart-count {
	position: absolute;
	top: 0;
	right: -0.2em;
	background: #1a1a1a;
	color: #fff;
	font-family: 'Inter', sans-serif;
	font-size: 0.6em;
	font-weight: 500;
	width: 1.6em;
	height: 1.6em;
	line-height: 1.6em;
	text-align: center;
	border-radius: 50%;
}

/* Hide old cart widget if it somehow renders */
.site-header-cart {
	display: none !important;
}


/* ═══════════════════════════════════════════════
   7. HERO SECTION
   ═══════════════════════════════════════════════ */

.jsa-hero {
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	min-height: 50vh;
	max-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.jsa-hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

.jsa-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 700px;
	padding: 3em 2em;
}

.jsa-hero-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 4em;
	font-weight: 300;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 0.2em;
	line-height: 1.1;
}

.jsa-hero-subtitle {
	font-family: 'Inter', sans-serif;
	font-size: 1.15em;
	font-weight: 300;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 2em;
}

.jsa-hero-cta {
	display: inline-block;
	padding: 0.9em 2.8em;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 0;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-family: 'Inter', sans-serif;
	font-size: 0.8em;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.35s ease;
}

.jsa-hero-cta:hover {
	background: #fff;
	color: #1a1a1a;
	border-color: #fff;
}

/* Responsive hero */
@media (max-width: 768px) {
	.jsa-hero {
		min-height: 60vh;
	}

	.jsa-hero-title {
		font-size: 2.4em;
	}

	.jsa-hero-subtitle {
		font-size: 1em;
	}
}


/* ═══════════════════════════════════════════════
   8. HOMEPAGE CONTENT
   ═══════════════════════════════════════════════ */

.page-template-template-homepage .site-main {
	padding-top: 0;
}

.page-template-template-homepage .type-page {
	padding: 0;
}

.page-template-template-homepage .entry-header {
	display: none;
}

.storefront-product-section {
	padding: 3em 0;
}

.storefront-product-section .section-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 2em;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 1.5em;
}


/* ═══════════════════════════════════════════════
   9. PRODUCT GRID
   ═══════════════════════════════════════════════ */

ul.products li.product {
	text-align: center;
	margin-bottom: 3em;
}

ul.products li.product a img {
	transition: opacity 0.3s ease;
	border-radius: 0;
}

ul.products li.product a:hover img {
	opacity: 0.85;
}

ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Inter', sans-serif;
	font-size: 0.85em;
	font-weight: 400;
	padding-top: 1em;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.6;
}

ul.products li.product .price {
	color: #666;
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	font-size: 0.95em;
	letter-spacing: 0.04em;
}

/* Sorting area */
.storefront-sorting {
	border: none;
	border-bottom: 1px solid #eee;
	padding: 1em 0;
	margin-bottom: 2em;
	display: flex;
	align-items: center;
}

.woocommerce-result-count {
	font-family: 'Inter', sans-serif;
	font-size: 0.8em;
	font-weight: 300;
	color: #999;
	letter-spacing: 0.04em;
	margin: 0 0 0 auto;
}

.woocommerce-ordering {
	margin: 0;
}

/* Hide empty pagination inside sorting wrapper */
.storefront-sorting .woocommerce-pagination:empty {
	display: none;
}

.woocommerce-ordering select {
	font-family: 'Inter', sans-serif;
	font-size: 0.8em;
	font-weight: 300;
	border: 1px solid #ddd;
	padding: 0.6em 2em 0.6em 0.8em;
	letter-spacing: 0.04em;
	color: #555;
	background-color: #fff;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8em center;
	cursor: pointer;
}


/* ═══════════════════════════════════════════════
   10. BUTTONS
   ═══════════════════════════════════════════════ */

button,
input[type="submit"],
.button,
a.button,
.added_to_cart,
a.added_to_cart,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link {
	background-color: #1a1a1a;
	border: 1px solid #1a1a1a;
	border-radius: 0;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-family: 'Inter', sans-serif;
	font-size: 0.8em;
	font-weight: 400;
	padding: 0.85em 2em;
	transition: all 0.3s ease;
	text-decoration: none;
}

button:hover,
input[type="submit"]:hover,
.button:hover,
a.button:hover,
.added_to_cart:hover,
a.added_to_cart:hover {
	background-color: transparent;
	color: #1a1a1a;
	border-color: #1a1a1a;
}

a.button.alt,
button.alt,
input[type="submit"].alt,
#respond input#submit,
.wc-block-grid__products .wc-block-grid__product .wp-block-button__link {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
	color: #fff;
}

a.button.alt:hover,
button.alt:hover,
input[type="submit"].alt:hover,
#respond input#submit:hover {
	background-color: transparent;
	color: #1a1a1a;
}


/* ═══════════════════════════════════════════════
   11. SINGLE PRODUCT
   ═══════════════════════════════════════════════ */

.single-product div.product {
	padding-top: 2.5em;
}

.single-product .product_title {
	font-size: 2.6em;
	font-weight: 300;
	letter-spacing: 0.04em;
}

.single-product .price {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	color: #555;
	font-size: 1.4em;
	letter-spacing: 0.04em;
}

.single-product .woocommerce-product-details__short-description {
	font-size: 0.95em;
	line-height: 1.9;
	color: #555;
}

.single-product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid #eee;
}

.single-product .woocommerce-tabs ul.tabs li a {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.82em;
	color: #555;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	color: #1a1a1a;
}

.related.products > h2,
.up-sells > h2 {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 2em;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.05em;
}


/* ═══════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════ */

.site-footer {
	background-color: #fafafa;
	border-top: 1px solid #eee;
	padding: 2.5em 0;
}

.site-footer .site-info {
	text-align: center;
	font-family: 'Inter', sans-serif;
	font-size: 0.82em;
	font-weight: 300;
	color: #999;
	letter-spacing: 0.06em;
	padding: 1em 0;
}

.site-footer .site-info .site-copyright {
	margin-bottom: 0.6em;
}

.site-footer .footer-navigation .footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
}

.site-footer .footer-navigation .footer-menu li {
	display: inline;
}

.site-footer .footer-navigation .footer-menu li + li::before {
	content: "|";
	color: #ccc;
	padding: 0 0.6em;
}

.site-footer .site-info a,
.site-footer .footer-navigation a {
	color: #999;
	text-decoration: none;
	transition: color 0.2s ease;
}

.site-footer .site-info a:hover {
	color: #555;
}

.site-footer .site-info .site-info-sep {
	color: #ccc;
	padding: 0 0.3em;
}


/* ═══════════════════════════════════════════════
   13. PAGE TITLES
   ═══════════════════════════════════════════════ */

.page-title,
.woocommerce-products-header__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 2.6em;
	font-weight: 300;
	letter-spacing: 0.06em;
	margin-bottom: 0.8em;
}

.entry-title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-weight: 400;
}


/* ═══════════════════════════════════════════════
   14. FORMS & INPUTS
   ═══════════════════════════════════════════════ */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
textarea,
select {
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 0.7em 1em;
	font-family: 'Inter', sans-serif;
	font-size: 0.9em;
	transition: border-color 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
	border-color: #333;
	outline: none;
}


/* ═══════════════════════════════════════════════
   15. MISC & CLEANUP
   ═══════════════════════════════════════════════ */

/* Star ratings */
.star-rating span::before {
	color: #1a1a1a;
}

/* Sale badge */
.onsale {
	background-color: #1a1a1a;
	border-radius: 0;
	font-family: 'Inter', sans-serif;
	font-size: 0.75em;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Pagination */
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
	font-family: 'Inter', sans-serif;
	border-color: #ddd;
}

.woocommerce-pagination ul.page-numbers li span.current {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
}

/* Links */
a {
	color: #1a1a1a;
	transition: color 0.2s ease;
}

a:hover {
	color: #555;
}

/* ═══════════════════════════════════════════════
   16. MOBILE: STICKY BOTTOM NAV + SLIDE-IN MENU
   ═══════════════════════════════════════════════ */

/* --- Bottom nav bar (hidden on desktop) --- */
.jsa-bottom-nav {
	display: none;
}

.jsa-mobile-menu,
.jsa-mobile-overlay,
.jsa-bottom-search-dropdown {
	display: none;
}

@media (max-width: 767px) {

	/* --- Simple header: just the logo, centered --- */
	.site-header {
		padding: 1em 0;
		text-align: center;
	}

	.site-branding {
		width: 100% !important;
		float: none !important;
		text-align: center;
	}

	.site-branding .site-title {
		font-size: 1.5em;
		letter-spacing: 0.08em;
	}

	.site-branding img {
		max-height: 50px;
	}

	/* Hide desktop nav, search, cart, burger — all replaced by bottom nav */
	.storefront-primary-navigation,
	.menu-toggle,
	.jsa-search-wrapper,
	.jsa-cart-link,
	.site-header-cart {
		display: none !important;
	}

	.storefront-handheld-footer-bar,
	#storefront-handheld-footer-bar {
		display: none !important;
	}

	/* --- Sticky bottom nav bar --- */
	.jsa-bottom-nav {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		background: #fff;
		border-top: 1px solid #eee;
		padding: 0.4em 0;
		padding-bottom: calc(0.4em + env(safe-area-inset-bottom, 0px));
	}

	.jsa-bottom-nav-item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.15em;
		padding: 0.4em 0;
		color: #555;
		text-decoration: none;
		background: none;
		border: none;
		cursor: pointer;
		font-family: 'Inter', sans-serif;
		font-size: 1em;
		transition: color 0.2s ease;
		-webkit-tap-highlight-color: transparent;
	}

	.jsa-bottom-nav-item span {
		font-size: 0.6em;
		font-weight: 400;
		letter-spacing: 0.06em;
		text-transform: uppercase;
	}

	.jsa-bottom-nav-item:hover,
	.jsa-bottom-nav-item:active {
		color: #1a1a1a;
	}

	.jsa-bottom-nav-item svg {
		display: block;
	}

	/* --- Mobile search popup (above bottom nav) --- */
	.jsa-bottom-search-dropdown {
		display: block;
		position: fixed;
		bottom: calc(3.6em + env(safe-area-inset-bottom, 0px));
		left: 1em;
		right: 1em;
		background: #fff;
		padding: 1em;
		box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
		border: 1px solid #eee;
		border-radius: 0;
		z-index: 9998;
		opacity: 0;
		visibility: hidden;
		transform: translateY(8px);
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	}

	.jsa-bottom-search-dropdown.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.jsa-bottom-search-dropdown .widget_product_search form {
		display: flex;
	}

	.jsa-bottom-search-dropdown .widget_product_search input[type="search"],
	.jsa-bottom-search-dropdown .widget_product_search input[type="text"] {
		border: 1px solid #ddd;
		padding: 0.8em 1em;
		font-size: 1em;
		font-family: 'Inter', sans-serif;
		width: 100%;
		outline: none;
	}

	.jsa-bottom-search-dropdown .widget_product_search input[type="search"]:focus,
	.jsa-bottom-search-dropdown .widget_product_search input[type="text"]:focus {
		border-color: #333;
	}

	.jsa-bottom-search-dropdown .widget_product_search label {
		display: none;
	}

	/* --- Slide-in menu overlay --- */
	.jsa-mobile-overlay {
		display: block;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		z-index: 10000;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s;
	}

	.jsa-mobile-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	/* --- Slide-in menu panel --- */
	.jsa-mobile-menu {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 280px;
		max-width: 85vw;
		background: #fff;
		z-index: 10001;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.jsa-mobile-menu.active {
		transform: translateX(0);
	}

	.jsa-mobile-menu-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1.2em 1.2em;
		border-bottom: 1px solid #eee;
	}

	.jsa-mobile-menu-title {
		font-family: 'Inter', sans-serif;
		font-size: 0.8em;
		font-weight: 500;
		text-transform: uppercase;
		letter-spacing: 0.12em;
		color: #333;
	}

	.jsa-mobile-menu-close {
		background: none;
		border: none;
		cursor: pointer;
		color: #666;
		padding: 0.3em;
		display: flex;
		align-items: center;
		transition: color 0.2s ease;
	}

	.jsa-mobile-menu-close:hover {
		color: #000;
	}

	/* Menu items */
	.jsa-mobile-menu-list {
		list-style: none;
		margin: 0;
		padding: 0.5em 0;
	}

	.jsa-mobile-menu-list li a {
		display: block;
		padding: 0.85em 1.5em;
		font-family: 'Inter', sans-serif;
		font-size: 0.88em;
		font-weight: 400;
		color: #333;
		text-decoration: none;
		letter-spacing: 0.04em;
		transition: background-color 0.15s ease;
	}

	.jsa-mobile-menu-list li a:hover {
		background-color: #f8f8f8;
		color: #000;
	}

	/* Submenu */
	.jsa-mobile-menu-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.jsa-mobile-menu-list ul li a {
		padding-left: 2.5em;
		font-size: 0.82em;
		color: #666;
	}

	/* --- Content padding for bottom nav --- */
	body {
		padding-bottom: 4em;
	}

	.site-footer {
		padding-bottom: 5em;
	}

	/* --- Product grid: single column --- */
	ul.products li.product {
		width: 100% !important;
		margin-right: 0 !important;
	}

	/* --- Sorting area stacks --- */
	.storefront-sorting {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5em;
	}

	.woocommerce-result-count {
		margin-left: 0;
	}

	/* --- Page/shop titles --- */
	.page-title,
	.woocommerce-products-header__title {
		font-size: 1.8em;
	}
}

/* --- Tablet tweaks (768px–1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
	.col-full {
		padding-left: 1.5em;
		padding-right: 1.5em;
	}

	.site-branding .site-title {
		font-size: 1.8em;
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}
