/*
Theme Name: FULLOAT
Theme URI: https://www.fulloat.com
Author: Fulloat
Description: Streetwear e-commerce theme for FULLOAT. Oversized fits. Bold prints. Built different.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: fulloat
WC requires at least: 8.0
WC tested up to: 9.9
*/

/* =========================================================================
   TOKENS
   ====================================================================== */
:root {
	--ink: #111111;
	--ink-soft: #666666;
	--paper: #ffffff;
	--smoke: #f7f7f7;
	--line: #e6e6e6;
	--flame: #ff4d1c;   /* the brand accent */
	--cocoa: #1a0f0a;   /* about / contact backdrop */
	--cocoa-card: #2a1710;
	--cream: #f0e6e0;

	--display: 'Anton', 'Arial Narrow', Impact, sans-serif;
	--body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

	--wrap: 1200px;
}

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

body {
	margin: 0;
	font-family: var(--body);
	background: var(--paper);
	color: var(--ink);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

h1, h2, h3, .logo, .footer-brand h3 {
	font-family: var(--display);
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	line-height: 1.05;
}

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

.container {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 20px;
}

.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
.skip-link:focus {
	position: fixed; top: 10px; left: 10px;
	width: auto; height: auto; clip: auto;
	z-index: 999;
	background: var(--ink); color: #fff; padding: 12px 20px;
}

.empty-note {
	color: var(--ink-soft);
	font-size: 15px;
	padding: 20px 0;
}

/* =========================================================================
   BUTTONS
   ====================================================================== */
.btn-primary,
.btn-outline,
.btn-add {
	display: inline-block;
	font-family: var(--body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 13px;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
	background: var(--paper);
	color: var(--ink);
	padding: 15px 34px;
	border: 2px solid var(--paper);
}
.btn-primary:hover { background: var(--flame); border-color: var(--flame); color: #fff; }

.btn-outline {
	background: transparent;
	color: var(--ink);
	padding: 14px 34px;
	border: 2px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }

.btn-add {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--ink);
	color: #fff;
	padding: 12px;
	margin-top: 10px;
	border: none;
}
.btn-add:hover { background: var(--flame); }

/* =========================================================================
   ANNOUNCEMENT BAR
   ====================================================================== */
.announcement-bar {
	background: var(--flame);
	color: #fff;
	text-align: center;
	padding: 9px 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
}
.announcement-bar p { margin: 0; }

/* =========================================================================
   HEADER
   ====================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 68px;
}

.logo {
	font-size: 26px;
	letter-spacing: 0.06em;
	white-space: nowrap;
}

.main-nav { margin-left: auto; }

.nav-list {
	list-style: none;
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
}
.nav-list li a {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--ink);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	display: inline-block;
}
.nav-list li a:hover,
.nav-list li.current-menu-item > a { border-bottom-color: var(--flame); }

/* Sub-menus */
.nav-list li { position: relative; }
.nav-list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: var(--paper);
	border: 1px solid var(--line);
	list-style: none;
	margin: 0;
	padding: 8px 0;
	z-index: 120;
}
.nav-list li:hover > .sub-menu,
.nav-list li:focus-within > .sub-menu { display: block; }
.nav-list .sub-menu li a {
	display: block;
	padding: 8px 18px;
	border: none;
	font-size: 12px;
}
.nav-list .sub-menu li a:hover { background: var(--smoke); color: var(--flame); }

/* Header icons + cart badge */
.header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}
.header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--ink);
}
.header-icon:hover { color: var(--flame); }

.cart-count {
	position: absolute;
	top: 3px;
	right: 1px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 9px;
	background: var(--ink);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 17px;
	text-align: center;
}
.cart-count.has-items { background: var(--flame); }

/* Hamburger */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
}
.nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   HERO
   ====================================================================== */
.hero {
	background: var(--ink);
	color: #fff;
	text-align: center;
	padding: 110px 20px;
}
.hero h1 {
	font-size: clamp(38px, 8vw, 72px);
	margin: 0 0 14px;
	letter-spacing: 0.04em;
}
.hero p {
	font-size: 17px;
	margin: 0 0 32px;
	opacity: 0.75;
}

/* =========================================================================
   WOO NOTICES  ("Added to cart", errors, coupons)
   ====================================================================== */
.wc-notices { padding-top: 20px; }
.wc-notices:empty { display: none; }

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	list-style: none;
	margin: 0 0 20px;
	padding: 14px 18px;
	font-size: 14px;
	border-left: 4px solid var(--ink);
	background: var(--smoke);
}
.woocommerce-message { border-left-color: var(--flame); }
.woocommerce-error { border-left-color: #c0392b; background: #fdeceb; }
.woocommerce-message .button,
.woocommerce-info .button { float: right; }

/* =========================================================================
   PRODUCT CARDS + GRIDS
   ====================================================================== */
.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}

.product-card { text-align: left; position: relative; }
.product-card .card-link { display: block; }

.card-media {
	position: relative;
	overflow: hidden;
	background: var(--smoke);
	aspect-ratio: 3 / 4;
}
.card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.product-card:hover .card-media img,
.carousel-item:hover .card-media img { transform: scale(1.05); }

.product-card h3,
.carousel-item h3 {
	font-family: var(--body);
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	margin: 12px 0 4px;
	line-height: 1.35;
}
.product-card .price,
.carousel-item .price {
	font-weight: 700;
	font-size: 15px;
}
.price del { color: var(--ink-soft); font-weight: 400; margin-right: 6px; }
.price ins { text-decoration: none; color: var(--flame); }

/* Badges */
.badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 5px 10px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}
.badge-sale { background: var(--flame); }
.badge-out { background: var(--ink-soft); }

/* =========================================================================
   COLLECTIONS
   ====================================================================== */
.collections { padding: 70px 0; text-align: center; }
.collections h2,
.best-sellers h2,
.featured-carousel h2 {
	font-size: 32px;
	margin: 0 0 32px;
}
.collections-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.collection-card {
	position: relative;
	display: block;
	overflow: hidden;
}
.collection-card img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	transition: transform .5s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,0) 55%);
}
.collection-card span {
	position: absolute;
	bottom: 18px;
	left: 18px;
	z-index: 1;
	color: #fff;
	font-family: var(--display);
	font-size: 20px;
	text-transform: uppercase;
	text-align: left;
	padding-right: 18px;
}

/* =========================================================================
   PROMO SPLIT
   ====================================================================== */
.promo-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	padding: 20px;
	max-width: var(--wrap);
	margin: 0 auto;
}
.promo-banner { position: relative; display: block; overflow: hidden; }
.promo-banner img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	transition: transform .5s ease;
}
.promo-banner:hover img { transform: scale(1.05); }
.promo-banner::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 60%);
}
.promo-text {
	position: absolute;
	bottom: 25px;
	left: 25px;
	z-index: 1;
	color: #fff;
}
.promo-text h3 { font-size: 26px; margin: 0 0 4px; }
.promo-text span { font-size: 13px; font-weight: 600; text-decoration: underline; }

/* =========================================================================
   CAROUSEL
   ====================================================================== */
.featured-carousel { padding: 70px 0 40px; }
.featured-carousel h2 { text-align: center; }
.carousel-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	padding-bottom: 12px;
	scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
	flex: 0 0 220px;
	scroll-snap-align: start;
	text-align: left;
}
.carousel-nav { text-align: center; margin-top: 22px; }
.carousel-nav button {
	background: var(--ink);
	color: #fff;
	border: none;
	width: 42px;
	height: 42px;
	font-size: 16px;
	cursor: pointer;
	margin: 0 5px;
	transition: background .2s ease, opacity .2s ease;
}
.carousel-nav button:hover:not(:disabled) { background: var(--flame); }
.carousel-nav button:disabled { opacity: .3; cursor: default; }

/* =========================================================================
   BEST SELLERS + SECTION CTA
   ====================================================================== */
.best-sellers { padding: 50px 0 70px; text-align: center; }
.section-cta { margin-top: 44px; }

/* =========================================================================
   USP STRIP
   ====================================================================== */
.usp-strip { background: var(--smoke); padding: 46px 0; }
.usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.usp-item h4 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 5px;
}
.usp-item p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* =========================================================================
   SHOP PAGE
   ====================================================================== */
.shop-page { padding: 50px 0 80px; }
.shop-title { font-size: 40px; margin: 0 0 8px; }
.shop-header { margin-bottom: 26px; }

.shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding: 14px 0;
	margin-bottom: 30px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.woocommerce-result-count { margin: 0; font-size: 13px; color: var(--ink-soft); }
.woocommerce-ordering select {
	padding: 9px 12px;
	border: 1px solid var(--line);
	font-size: 13px;
	font-family: var(--body);
	background: var(--paper);
}

.shop-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; }

.woocommerce-pagination { margin-top: 50px; text-align: center; }
.woocommerce-pagination ul {
	list-style: none;
	display: inline-flex;
	gap: 6px;
	padding: 0;
	margin: 0;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
	display: inline-block;
	min-width: 40px;
	padding: 10px;
	border: 1px solid var(--line);
	font-size: 13px;
	font-weight: 600;
	text-align: center;
}
.woocommerce-pagination ul li span.current { background: var(--ink); color: #fff; border-color: var(--ink); }
.woocommerce-pagination ul li a:hover { border-color: var(--flame); color: var(--flame); }

/* =========================================================================
   SINGLE PRODUCT
   ====================================================================== */
.single-product { padding: 30px 0 80px; }

.breadcrumb-bar { font-size: 12px; color: var(--ink-soft); margin-bottom: 26px; }
.breadcrumb-bar a:hover { color: var(--flame); }

.product-layout {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 60px;
	align-items: start;
}

.product-image .woocommerce-product-gallery { position: relative; }
.product-image img { width: 100%; }

/* Gallery thumbnails under the main image */
.woocommerce-product-gallery__wrapper { margin: 0; }
.flex-control-thumbs {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
	flex-wrap: wrap;
}
.flex-control-thumbs li { width: 78px; cursor: pointer; }
.flex-control-thumbs img { opacity: .55; transition: opacity .2s ease; }
.flex-control-thumbs img.flex-active,
.flex-control-thumbs img:hover { opacity: 1; }

.product-title { font-size: 38px; margin: 0 0 12px; }
.product-info .price { font-size: 24px; font-weight: 700; margin: 0 0 20px; display: block; }
.product-description { margin-bottom: 26px; line-height: 1.7; color: #333; }

/* Size / variation selector */
.variations {
	width: 100%;
	margin-bottom: 18px;
	border-collapse: collapse;
}
.variations th,
.variations td { padding: 8px 0; text-align: left; vertical-align: middle; }
.variations th.label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 700;
	width: 90px;
}
.variations select {
	width: 100%;
	max-width: 280px;
	padding: 12px;
	border: 1px solid var(--ink);
	font-family: var(--body);
	font-size: 14px;
	background: var(--paper);
}
.reset_variations {
	font-size: 12px;
	color: var(--ink-soft);
	text-decoration: underline;
}
.woocommerce-variation-price { margin-bottom: 14px; font-size: 20px; font-weight: 700; }

/* Quantity + add to cart.
   Simple products: quantity and button sit side by side.
   Variable products (Size dropdown): the selector stacks ABOVE the row,
   so the flex row is applied to the inner wrapper instead. */
form.cart:not(.variations_form):not(.grouped_form) {
	display: flex;
	align-items: stretch;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}
form.variations_form { display: block; margin-bottom: 26px; }
.woocommerce-variation-add-to-cart {
	display: flex;
	align-items: stretch;
	gap: 12px;
	flex-wrap: wrap;
}
.quantity input.qty {
	width: 72px;
	height: 100%;
	min-height: 52px;
	padding: 10px;
	border: 1px solid var(--ink);
	text-align: center;
	font-family: var(--body);
	font-size: 15px;
	font-weight: 600;
}
.single_add_to_cart_button {
	flex: 1;
	min-width: 200px;
	background: var(--ink);
	color: #fff;
	border: none;
	padding: 17px 40px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: background .2s ease;
}
.single_add_to_cart_button:hover { background: var(--flame); }
.single_add_to_cart_button.disabled { opacity: .45; cursor: not-allowed; }

.product-assurances {
	list-style: none;
	padding: 20px 0 0;
	margin: 0 0 20px;
	border-top: 1px solid var(--line);
}
.product-assurances li {
	font-size: 13px;
	color: var(--ink-soft);
	padding: 5px 0 5px 20px;
	position: relative;
}
.product-assurances li::before {
	content: '';
	position: absolute;
	left: 0; top: 12px;
	width: 6px; height: 6px;
	background: var(--flame);
}

.product_meta { font-size: 12px; color: var(--ink-soft); }
.product_meta > span { display: block; margin-bottom: 5px; }

/* Tabs */
.woocommerce-tabs { margin-top: 70px; }
.woocommerce-tabs ul.tabs {
	list-style: none;
	display: flex;
	gap: 30px;
	padding: 0;
	margin: 0 0 26px;
	border-bottom: 1px solid var(--line);
	flex-wrap: wrap;
}
.woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 12px 0;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
	border-bottom: 2px solid transparent;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--ink); border-bottom-color: var(--flame); }
.woocommerce-tabs .panel { line-height: 1.75; max-width: 800px; }
.woocommerce-tabs .panel h2 { display: none; }

/* Related products */
.related.products,
.up-sells.products { margin-top: 70px; }
.related.products > h2,
.up-sells.products > h2 { font-size: 28px; margin-bottom: 28px; }
.related.products ul.products,
.up-sells.products ul.products {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	padding: 0;
	margin: 0;
}
ul.products li.product a img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--body);
	font-size: 14px;
	font-weight: 600;
	margin: 12px 0 4px;
}
ul.products li.product .price { font-weight: 700; font-size: 15px; }
ul.products li.product .button { display: none; }

/* =========================================================================
   CART + CHECKOUT
   ====================================================================== */
.page-content { padding: 50px 0 80px; }
.page-title { font-size: 40px; margin: 0 0 30px; }

table.shop_table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
}
table.shop_table th {
	text-align: left;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.08em;
	padding: 15px 10px;
	border-bottom: 2px solid var(--ink);
}
table.shop_table td {
	padding: 16px 10px;
	border-bottom: 1px solid var(--line);
	vertical-align: middle;
	font-size: 14px;
}
.product-thumbnail img { width: 72px; height: auto; }
.product-remove a { color: var(--flame) !important; font-size: 18px; font-weight: 700; }

.quantity input.qty {
	width: 64px;
	padding: 9px;
	border: 1px solid var(--line);
	text-align: center;
}

.cart_totals {
	background: var(--ink);
	color: #fff;
	padding: 32px;
	max-width: 420px;
	margin-left: auto;
}
.cart_totals h2 { font-size: 20px; margin: 0 0 20px; color: #fff; }
.cart_totals table { width: 100%; }
.cart_totals table th,
.cart_totals table td {
	padding: 12px 0;
	border-bottom: 1px solid #333;
	color: #fff;
	font-size: 14px;
}

.button,
input[type="submit"],
.checkout-button,
.wc-block-components-button {
	background: var(--ink) !important;
	color: #fff !important;
	border: none;
	padding: 14px 32px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: background .2s ease;
}
.button:hover,
.checkout-button:hover,
input[type="submit"]:hover { background: var(--flame) !important; }

.woocommerce-checkout form .form-row { margin-bottom: 16px; }
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea,
.select2-container .select2-selection {
	width: 100%;
	padding: 13px;
	border: 1px solid var(--line);
	font-family: var(--body);
	font-size: 15px;
}
.woocommerce-checkout label {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	margin-bottom: 6px;
	display: block;
}
#order_review { background: var(--ink); color: #fff; padding: 32px; }
#order_review table th,
#order_review table td { color: #fff; border-bottom: 1px solid #333; }
#order_review a { color: var(--flame); }

/* =========================================================================
   ABOUT + CONTACT
   ====================================================================== */
.about-page,
.contact-page {
	background: var(--cocoa);
	color: #fff;
	padding: 90px 0;
}
.about-page h1,
.contact-page h1 {
	font-size: 48px;
	color: var(--flame);
	margin: 0 0 26px;
}
.about-content p {
	font-size: 18px;
	line-height: 1.85;
	max-width: 700px;
	margin: 0 0 20px;
	color: var(--cream);
}
.contact-sub { font-size: 17px; color: var(--cream); margin: 0 0 40px; }
.contact-details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.contact-block {
	background: var(--cocoa-card);
	padding: 26px;
	border-left: 3px solid var(--flame);
}
.contact-block h3 {
	color: var(--flame);
	font-family: var(--body);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.1em;
	margin: 0 0 8px;
}
.contact-block p { color: var(--cream); font-size: 15px; margin: 0; word-break: break-word; }
.contact-block a:hover { color: var(--flame); }
.contact-form-area { margin-top: 44px; max-width: 600px; }

/* =========================================================================
   404
   ====================================================================== */
.error-page {
	text-align: center;
	padding: 110px 20px;
}
.error-page h1 { font-size: 92px; margin: 0 0 10px; color: var(--flame); }
.error-page p { color: var(--ink-soft); margin-bottom: 30px; }
.error-page .btn-primary { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =========================================================================
   FOOTER
   ====================================================================== */
.site-footer {
	background: var(--ink);
	color: #fff;
	padding-top: 64px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
}
.footer-brand h3 { font-size: 26px; margin: 0 0 12px; }
.footer-brand p { color: #999; font-size: 14px; line-height: 1.65; margin: 0; }
.footer-links h4,
.footer-social h4 {
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 16px;
	color: var(--flame);
}
.footer-links ul,
.footer-social ul { list-style: none; margin: 0; padding: 0; }
.footer-links ul li,
.footer-social ul li { margin-bottom: 10px; }
.footer-links ul li a,
.footer-social ul li a { color: #bbb; font-size: 14px; }
.footer-links ul li a:hover,
.footer-social ul li a:hover { color: #fff; }
.footer-email { color: #777; font-size: 13px; margin-top: 14px; word-break: break-word; }
.footer-bottom {
	border-top: 1px solid #333;
	padding: 22px 0;
	text-align: center;
}
.footer-bottom p { color: #777; font-size: 13px; margin: 0; }

/* =========================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 1024px) {
	.products-grid,
	.shop-grid,
	.collections-grid,
	.related.products ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
	.product-layout { gap: 36px; }
}

@media (max-width: 860px) {
	.nav-toggle { display: flex; }

	.main-nav {
		position: fixed;
		inset: 0;
		background: var(--paper);
		padding: 90px 28px 40px;
		transform: translateX(-100%);
		transition: transform .3s ease;
		overflow-y: auto;
		z-index: 99;
	}
	.main-nav.is-open { transform: translateX(0); }

	.nav-list {
		flex-direction: column;
		gap: 0;
	}
	.nav-list li a {
		display: block;
		padding: 16px 0;
		font-size: 18px;
		border-bottom: 1px solid var(--line);
	}
	.nav-list .sub-menu {
		display: block;
		position: static;
		border: none;
		padding: 0 0 0 16px;
	}

	.logo { margin-right: auto; margin-left: 8px; }

	.product-layout { grid-template-columns: 1fr; }
	.promo-split { grid-template-columns: 1fr; }
	.contact-details { grid-template-columns: 1fr; }
	.cart_totals { margin-left: 0; max-width: 100%; }
}

@media (max-width: 640px) {
	.products-grid,
	.shop-grid,
	.collections-grid,
	.related.products ul.products {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.usp-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }

	.hero { padding: 72px 20px; }
	.collection-card img { height: 220px; }
	.promo-banner img { height: 260px; }

	.shop-title, .page-title { font-size: 30px; }
	.product-title { font-size: 27px; }
	.about-page h1, .contact-page h1 { font-size: 34px; }

	.shop-toolbar { flex-direction: column; align-items: stretch; }
	.woocommerce-ordering select { width: 100%; }

	.footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

	table.shop_table { font-size: 13px; }
	.single_add_to_cart_button { min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================================
   WOOCOMMERCE DEFAULT OVERRIDES
   WooCommerce ships opinionated CSS: floated grids, a round olive "Sale!"
   blob, grey pill tabs. These rules replace all of it. The .woocommerce
   prefix is what beats WooCommerce's own specificity.
   ====================================================================== */

/* --- Kill the floated layout. Everything here is CSS grid. ------------- */
.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.images,
.woocommerce-page div.product div.summary {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { content: none; display: none; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
	text-align: left;
	position: relative;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	margin: 0 0 12px;
	box-shadow: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--body);
	font-size: 14px;
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.4;
	padding: 0;
	margin: 0 0 6px;
	color: var(--ink);
}
.woocommerce ul.products li.product .price {
	font-family: var(--body);
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	display: block;
}
.woocommerce ul.products li.product .price del { opacity: 1; }

/* Hide the loop Add-to-Cart button; the whole card is the click target. */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart { display: none !important; }

/* --- The Sale badge: rectangle, brand orange, top-left. ---------------- */
.woocommerce span.onsale,
.woocommerce-page span.onsale {
	position: absolute;
	top: 10px;
	left: 10px;
	right: auto;
	min-height: 0;
	min-width: 0;
	height: auto;
	width: auto;
	padding: 6px 11px;
	margin: 0;
	border-radius: 0;
	background: var(--flame);
	color: #fff;
	font-family: var(--body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.2;
	z-index: 3;
}
.woocommerce div.product span.onsale { top: 14px; left: 14px; }

/* --- Product gallery: fill the column. -------------------------------- */
.woocommerce div.product div.images img { width: 100%; }
.woocommerce div.product div.images .woocommerce-product-gallery__image { background: var(--smoke); }
.woocommerce div.product div.images .flex-control-thumbs { margin-top: 12px; }
.woocommerce div.product div.images .flex-control-thumbs li {
	width: 78px;
	margin: 0 10px 10px 0;
	float: none;
	display: inline-block;
}
.woocommerce-product-gallery__trigger {
	top: 14px !important;
	right: 14px !important;
}

/* --- Summary column sticks while the gallery scrolls (desktop only). --- */
@media (min-width: 861px) {
	.product-layout .product-info {
		position: sticky;
		top: 100px;
	}
}

/* --- Tabs: flat underline, not grey pills. ---------------------------- */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 26px;
	border-bottom: 1px solid var(--line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
	box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	content: none;
	display: none;
	border: none;
	box-shadow: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 12px 0;
	margin-right: 30px;
	font-family: var(--body);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink-soft);
	border-bottom: 2px solid transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--ink);
	border-bottom-color: var(--flame);
}

/* --- Price + quantity + button ---------------------------------------- */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ink);
	font-size: 24px;
	font-weight: 700;
}
.woocommerce div.product p.price del { color: var(--ink-soft); font-weight: 400; opacity: 1; }
.woocommerce div.product p.price ins { color: var(--flame); text-decoration: none; font-weight: 700; }

.woocommerce .quantity .qty {
	min-height: 52px;
	border: 1px solid var(--ink);
}

.woocommerce div.product form.cart .button {
	background: var(--ink) !important;
	color: #fff !important;
	border-radius: 0;
	padding: 17px 40px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.woocommerce div.product form.cart .button:hover { background: var(--flame) !important; }

/* --- Size / variation dropdown ---------------------------------------- */
.woocommerce div.product form.cart .variations { margin-bottom: 20px; }
.woocommerce div.product form.cart .variations label {
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.woocommerce div.product form.cart .variations select {
	padding: 13px;
	border: 1px solid var(--ink);
	border-radius: 0;
	font-family: var(--body);
	font-size: 14px;
	min-width: 220px;
}

/* --- Meta / tags: stop the comma soup from looking like a wall. -------- */
.woocommerce div.product .product_meta { font-size: 12px; line-height: 1.9; }
.woocommerce div.product .product_meta > span { display: block; margin-bottom: 4px; }
.woocommerce div.product .product_meta a { color: var(--ink-soft); }
.woocommerce div.product .product_meta a:hover { color: var(--flame); }

/* --- Related products heading ----------------------------------------- */
.woocommerce .related > h2,
.woocommerce .upsells > h2 {
	font-family: var(--display);
	font-size: 28px;
	text-transform: uppercase;
	margin: 0 0 28px;
}
.woocommerce .related, .woocommerce .upsells { margin-top: 70px; }

/* --- Buttons + notices globally --------------------------------------- */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--ink);
	color: #fff;
	border-radius: 0;
	font-family: var(--body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 14px 30px;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--flame); color: #fff; }

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
	border-top: none;
	border-left: 4px solid var(--flame);
	background: var(--smoke);
	border-radius: 0;
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before { color: var(--flame); }

/* --- Star ratings ------------------------------------------------------ */
.woocommerce .star-rating span { color: var(--flame); }

/* --- Responsive grid for Woo's own product lists ----------------------- */
@media (max-width: 1024px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.woocommerce div.product .woocommerce-tabs ul.tabs li a { margin-right: 20px; font-size: 12px; }
}
