/*!
Theme Name: Block WP Portal
Theme URI:
Author: blockwpthemes
Author URI: https://blockwpthemes.com/
Description: Block WP Portal is a WooCommerce marketplace theme for selling WordPress themes, plugins and digital products. Powered by the Customizer + Kirki framework, it ships with a section-reorder feature, a global color palette, full WooCommerce shop templates, product grids with category tabs, Contact Form 7 forms and a one-click demo importer.
Version: 1.0.0
Requires at least: 5.5
Requires PHP: 7.2
Tested up to: 6.7
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: block-wp-portal
Tags: e-commerce, blog, two-columns, custom-background, custom-colors, full-width-template, custom-menu, custom-logo, featured-images, theme-options, threaded-comments, translation-ready
*/

/* ===========================================================
   1. TOKENS
   Colour values marked (C) are overridden by the Customizer
   through the inline :root block printed in functions.php.
   =========================================================== */
:root {
	--bg: #ffffff;          /* (C) page background      */
	--cream: #f7f4ed;       /* (C) tinted section band  */
	--sand: #ece6d8;
	--ink: #0a0a0a;         /* (C) headings / dark UI   */
	--char: #1d1d1d;
	--muted: #6b6b6b;       /* (C) secondary text       */
	--line: #e7e2d6;        /* (C) hairlines            */
	--accent: #f5c747;      /* (C) signature yellow     */
	--gold: #c9a24a;
	--orange: #f15a22;      /* (C) italic accent        */
	--emerald: #1d8a5a;
	--mint: #b9dfc9;
	--sky: #84b5d8;
	--sun: #f3b53d;
	--dgrn: #2c5d4a;        /* (C) deep panel           */
	--indigo: #4f46e5;

	--shadow-sm: 0 1px 2px rgba(10, 10, 10, .05);
	--shadow-md: 0 12px 32px -10px rgba(10, 10, 10, .18);

	--display: 'Bricolage Grotesque', 'Times New Roman', serif;
	--body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--script: 'Caveat', cursive;

	--container: 1280px;
	--radius: 22px;
	--radius-sm: 14px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--body);
	background: var(--bg);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* clip (not hidden) stops sideways scroll WITHOUT making body a scroll
	   container — hidden here breaks every position:sticky on the site. */
	overflow-x: clip;
}

img,
svg,
video,
iframe { max-width: 100%; }

img { display: block; height: auto; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--orange); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--display);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.15;
	margin: 0 0 .5em;
	color: var(--ink);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

blockquote {
	margin: 28px 0;
	padding: 22px 28px;
	background: var(--cream);
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	font-size: 1.05rem;
}
blockquote p:last-child { margin-bottom: 0; }
blockquote cite { display: block; margin-top: 12px; font-size: 13px; color: var(--muted); font-style: normal; }

code, kbd, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .92em;
}
code { background: var(--cream); padding: 2px 6px; border-radius: 6px; }
pre {
	background: var(--ink);
	color: #f4f4f4;
	padding: 22px;
	border-radius: var(--radius-sm);
	overflow-x: auto;
}
pre code { background: none; color: inherit; padding: 0; }

hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }

table { border-collapse: collapse; width: 100%; margin-bottom: 24px; font-size: 14.5px; }
th, td { border: 1px solid var(--line); padding: 11px 14px; text-align: left; }
th { background: var(--cream); font-weight: 700; }

::selection { background: var(--accent); color: var(--ink); }

/* Layout helpers ------------------------------------------------ */
.container,
.wrap {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 28px;
	width: 100%;
}
.section { padding: 100px 0; }
.pad { padding: 90px 0; }
.center { text-align: center; }

/*
 * Grid and flex children default to min-width:auto, which lets long headlines
 * and wide media push a track past the viewport. Every layout child in the
 * theme is allowed to shrink instead.
 */
.header-inner > *,
.hero-top > *,
.hero-bottom > *,
.section-head > *,
.story-inner > *,
.lookbook-card > *,
.contact-grid > *,
.trust-item > *,
.prod-meta > * { min-width: 0; }

h1, h2, h3, h4, .hero-headline, .section-title { overflow-wrap: break-word; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: #fff;
	clip: auto;
	clip-path: none;
	color: var(--ink);
	display: block;
	font-size: 14px;
	font-weight: 700;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 14px 22px;
	top: 8px;
	width: auto;
	z-index: 100000;
	border-radius: 99px;
	box-shadow: var(--shadow-md);
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; }

/* Shared typography --------------------------------------------- */
.eyebrow {
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--ink); }
.center .eyebrow,
.eyebrow.center { justify-content: center; }

h2.section-title,
.section-title {
	font-family: var(--display);
	font-size: clamp(34px, 4.6vw, 60px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -.025em;
	margin: 16px 0 0;
}
.section-title .ital,
.hero-headline .ital,
h2 .ital {
	font-style: italic;
	font-weight: 500;
	color: var(--orange);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
	gap: 40px;
	flex-wrap: wrap;
}
.section-head .left { max-width: 640px; }
.section-head > p {
	margin-top: 16px;
	color: var(--muted);
	font-size: 15.5px;
	max-width: 440px;
}
.section-head.center-head {
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.section-head.center-head .left { max-width: 720px; }

/* Buttons -------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--body);
	transition: all .25s ease;
	white-space: nowrap;
	line-height: 1.2;
}
.btn-dark,
.btn-solid,
.btn-primary { background: var(--ink); color: #fff; text-align: center; }
.btn-dark:hover,
.btn-solid:hover,
.btn-primary:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-outline,
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover,
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--ink); color: #fff; }
.arrow-right { transition: transform .25s ease; flex-shrink: 0; }
.btn:hover .arrow-right,
.arrow-link:hover .arrow-right { transform: translate(2px, -2px); }
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 600;
}

/* Forms ---------------------------------------------------------- */
input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=search],
input[type=password],
input[type=date],
select,
textarea {
	width: 100%;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--ink);
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 12px;
	padding: 13px 16px;
	transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 140px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--ink);
	box-shadow: 0 0 0 3px rgba(245, 199, 71, .35);
}
input[type=submit],
button[type=submit],
.wp-block-search__button {
	width: auto;
	background: var(--ink);
	color: #fff;
	border: none;
	border-radius: 99px;
	padding: 14px 30px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: background .25s, transform .25s;
}
input[type=submit]:hover,
button[type=submit]:hover { background: var(--orange); transform: translateY(-2px); }
label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 7px; }

/* ===========================================================
   3. PROMO BAR
   =========================================================== */
.promo {
	background: var(--ink);
	color: #fff;
	font-size: 12.5px;
	letter-spacing: .06em;
	padding: 11px 0;
	text-align: center;
	font-weight: 500;
}
.promo .dot {
	display: inline-block;
	width: 4px;
	height: 4px;
	background: var(--accent);
	border-radius: 50%;
	margin: 0 16px;
	vertical-align: middle;
}
.promo b { font-weight: 700; color: var(--accent); }
.promo a { color: var(--accent); }

/* ===========================================================
   4. HEADER
   =========================================================== */
.site-header {
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 50;
	border-bottom: 1px solid transparent;
	transition: border-color .2s, background .2s;
}
.site-header.scrolled { border-color: var(--line); }
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	gap: 24px;
}
.logo {
	font-family: var(--display);
	font-weight: 800;
	font-size: 22px;
	letter-spacing: -.025em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo img { max-height: 46px; width: auto; }
.logo-mark {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	background: var(--ink);
	color: #fff;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -.02em;
	flex-shrink: 0;
}
.logo b { color: var(--orange); font-weight: 800; }

.main-navigation { display: flex; }
.nav-menu,
.main-navigation ul {
	display: flex;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}
.main-navigation li { position: relative; }
.main-navigation a {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--char);
	padding: 8px 0;
	position: relative;
	display: inline-block;
}
.main-navigation a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 0;
	height: 1.5px;
	background: var(--ink);
	transition: all .25s ease;
	transform: translateX(-50%);
}
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after { width: 24px; }
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a { font-weight: 600; }

/* Dropdowns */
.main-navigation ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	padding: 10px;
	display: block;
	flex-direction: column;
	gap: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all .22s ease;
	z-index: 60;
}
.main-navigation li:hover > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation ul ul li { width: 100%; }
.main-navigation ul ul a { padding: 9px 12px; width: 100%; border-radius: 8px; }
.main-navigation ul ul a:hover { background: var(--cream); }
.main-navigation ul ul a::after { display: none; }
.main-navigation ul ul ul { top: 0; left: 100%; }

.head-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	transition: background .2s;
	position: relative;
	color: var(--ink);
}
.icon-btn:hover { background: var(--cream); }
.signin {
	border: 1.5px solid var(--ink);
	padding: 11px 26px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-left: 4px;
	color: var(--ink);
}
.signin:hover { background: var(--ink); color: #fff; }
.menu-toggle { display: none; }

/* Header search popover */
.header-search { position: relative; }
#bwp-search-pop {
	position: absolute;
	right: 0;
	top: calc(100% + 14px);
	width: min(340px, 78vw);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
	padding: 14px;
	display: none;
	z-index: 70;
}
#bwp-search-pop.open { display: block; }
.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; margin: 0; }

/* Mobile nav ----------------------------------------------------- */
.mobile-nav {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(340px, 86vw);
	background: #fff;
	z-index: 90;
	padding: 84px 26px 40px;
	transform: translateX(100%);
	transition: transform .3s ease;
	overflow-y: auto;
	box-shadow: -20px 0 60px -30px rgba(10, 10, 10, .4);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav .close {
	position: absolute;
	top: 22px;
	right: 22px;
	font-size: 30px;
	line-height: 1;
	color: var(--ink);
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); position: relative; }
.mobile-nav a {
	display: block;
	padding: 14px 0;
	font-size: 15.5px;
	font-weight: 500;
}
.mobile-nav .sub-toggle {
	position: absolute;
	right: 0;
	top: 8px;
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	color: var(--muted);
}
.mobile-nav ul ul { display: none; padding-left: 14px; }
.mobile-nav li.open > ul { display: block; }

/* ===========================================================
   5. HERO
   =========================================================== */
.hero { padding: 44px 0 80px; position: relative; }
.hero-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 40px;
	margin-bottom: 28px;
}
.hero-circle {
	width: 132px;
	height: 132px;
	position: relative;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.hero-circle svg.text-circle {
	position: absolute;
	inset: 0;
	animation: bwp-spin 24s linear infinite;
}
@keyframes bwp-spin {
	from { transform: rotate(0); }
	to { transform: rotate(360deg); }
}
.play {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--ink);
	display: grid;
	place-items: center;
	color: #fff;
	transition: transform .25s, background .25s;
}
.play:hover { transform: scale(1.08); background: var(--orange); color: #fff; }

.hero-headline {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(40px, 6.2vw, 92px);
	line-height: .95;
	letter-spacing: -.04em;
	text-align: center;
	margin: 0;
}

.avatars { display: flex; align-items: center; justify-self: end; }
.av {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 3px solid #fff;
	background-size: cover;
	background-position: center;
	margin-left: -12px;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}
.av img { width: 100%; height: 100%; object-fit: cover; }
.av.plus {
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 700;
	font-size: 18px;
}
.av:first-child { margin-left: 0; }

.hero-grid {
	display: grid;
	grid-template-columns: .82fr 1.15fr 1.15fr 1.15fr .82fr;
	gap: 14px;
	margin-top: 8px;
}

/* Hero — single full-width image variant */
.hero-single { margin-top: 8px; }
.hero-single__media {
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: var(--cream);
}
.hero-single__media img {
	display: block;
	width: 100%;
	height: auto;
}
.hero-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 26px;
}
@media (max-width: 560px) {
	.hero-single__actions { flex-direction: column; }
	.hero-single__actions .btn { width: 100%; justify-content: center; }
}
.h-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.h-card {
	border-radius: 22px;
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: center;
	transition: transform .35s ease;
}
.h-card:hover { transform: translateY(-4px); }
.h-card.tall { aspect-ratio: 3 / 4.3; }
.h-card.short { aspect-ratio: 4 / 3.5; }
.h-card.tall-lg { aspect-ratio: 3 / 4.7; }
.h-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: luminosity;
	opacity: .92;
}
.bg-orange { background-color: var(--orange); }
.bg-sun { background-color: var(--sun); }
.bg-sun-deep { background-color: #ef9d1f; }
.bg-emerald-soft { background-color: #2c8b5e; }
.bg-sky { background-color: var(--sky); }
.bg-mint { background-color: var(--mint); }
.bg-dgrn { background-color: var(--dgrn); }

.h-card.center .cta {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--ink);
	color: #fff;
	padding: 14px 26px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
	z-index: 3;
	transition: all .25s ease;
}
.h-card.center .cta:hover { background: var(--orange); color: #fff; transform: translateX(-50%) translateY(-2px); }
.h-card.center .deco { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); z-index: 3; }

.hero-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	margin-top: 72px;
	align-items: end;
}
.h-quote { max-width: 460px; }
.h-quote .q {
	font-family: var(--display);
	font-size: 44px;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 8px;
}
.h-quote p { font-size: 14.5px; color: var(--char); margin-bottom: 18px; line-height: 1.55; }
.h-quote .sig-wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.h-quote .sig {
	font-family: var(--script);
	font-size: 34px;
	background: var(--accent);
	display: inline-block;
	padding: 4px 22px 8px;
	border-radius: 6px;
	transform: rotate(-2deg);
	line-height: 1;
	color: var(--ink);
}
.h-quote .sig-meta { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; }

.h-trends { text-align: right; }
.h-trends .num {
	font-family: var(--display);
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -.04em;
	display: inline-flex;
	align-items: baseline;
	gap: 14px;
}
.h-trends .num small {
	font-family: var(--body);
	font-size: 14px;
	font-weight: 500;
	color: var(--muted);
	letter-spacing: 0;
}
.h-trends h3 {
	font-family: var(--display);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -.02em;
	margin: 18px 0 0;
	max-width: 420px;
	margin-left: auto;
	line-height: 1.15;
}
.h-trends .arrow-link { margin-top: 14px; }
.h-trends .arrow-link:hover .arrow-right { transform: translate(4px, -4px); }

/* ===========================================================
   6. TRUST STRIP
   =========================================================== */
.trust {
	background: var(--cream);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 36px 0;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-ico {
	width: 48px;
	height: 48px;
	background: #fff;
	border-radius: 12px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
	color: var(--ink);
	font-size: 18px;
}
.trust-item h4 { font-size: 14.5px; font-weight: 700; margin: 0 0 2px; font-family: var(--body); letter-spacing: 0; }
.trust-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* ===========================================================
   7. THEME FEATURES
   =========================================================== */
.features { background: var(--cream); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 34px 30px;
	transition: transform .3s ease, box-shadow .3s ease;
	position: relative;
	overflow: hidden;
}
.feat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--accent);
	transition: width .35s ease;
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feat-card:hover::before { width: 100%; }
.feat-ico {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	transition: background .3s ease, color .3s ease;
	font-size: 20px;
}
.feat-card:hover .feat-ico { background: var(--accent); color: var(--ink); }
.feat-card h4 {
	font-family: var(--display);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -.015em;
	margin: 0 0 10px;
}
.feat-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.feat-card .feat-link { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; }

/* ===========================================================
   8. PRODUCT GRID (themes)
   =========================================================== */
.arrivals { background: var(--bg); }
.pill-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.pill-tabs a,
.pill-tabs button {
	padding: 9px 18px;
	border-radius: 99px;
	border: 1.5px solid var(--line);
	font-size: 13.5px;
	font-weight: 500;
	color: var(--char);
	transition: all .2s;
	background: none;
	display: inline-block;
}
.pill-tabs .active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pill-tabs a:hover:not(.active),
.pill-tabs button:hover:not(.active) { border-color: var(--ink); color: var(--ink); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prod-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.prod { position: relative; }
.prod-img {
	position: relative;
	background: var(--cream);
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 3.2;
	margin-bottom: 14px;
	border: 1px solid var(--line);
}
.prod-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform .5s ease;
}
.prod:hover .prod-img img { transform: scale(1.06); }
.prod-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--accent);
	color: var(--ink);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 99px;
	z-index: 2;
}
.prod-quick {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 14px;
	display: flex;
	gap: 8px;
	opacity: 0;
	transform: translateY(8px);
	transition: all .25s ease;
	z-index: 2;
}
.prod:hover .prod-quick { opacity: 1; transform: translateY(0); }
.prod-quick a {
	flex: 1;
	padding: 11px 14px;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	transition: all .2s ease;
}
.prod-quick .demo { background: var(--ink); color: #fff; }
.prod-quick .demo:hover { background: var(--orange); color: #fff; }
.prod-quick .details { background: rgba(255, 255, 255, .95); color: var(--ink); border: 1px solid var(--line); }
.prod-quick .details:hover { background: #fff; color: var(--ink); }
.prod-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.prod h4 {
	font-size: 15px;
	font-weight: 600;
	letter-spacing: -.005em;
	margin: 0 0 6px;
	font-family: var(--body);
}
.prod-sub { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prod-rating {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--char);
}
.prod-rating svg,
.prod-rating i { color: var(--accent); }
.prod-sales { font-size: 12.5px; color: var(--muted); letter-spacing: .01em; }
.prod-price {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.01em;
	white-space: nowrap;
	color: var(--ink);
}
.prod-price del { color: var(--muted); font-size: .7em; font-weight: 500; margin-right: 6px; }
.prod-price ins { text-decoration: none; }

/* ===========================================================
   9. BRAND STORY
   =========================================================== */
.story { background: var(--cream); }
.story-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.story-vis { position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; background: var(--sand); }
.story-vis img { width: 100%; height: 100%; object-fit: cover; }
.story-vis .stamp {
	position: absolute;
	top: 22px;
	left: 22px;
	width: 110px;
	height: 110px;
	background: var(--accent);
	border-radius: 50%;
	display: grid;
	place-items: center;
	text-align: center;
	font-family: var(--display);
	font-weight: 700;
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: -.005em;
	transform: rotate(-12deg);
	color: var(--ink);
}
.story-vis .stamp small { display: block; font-size: 10px; letter-spacing: .12em; font-weight: 500; margin-top: 4px; }
.story-text h2 { margin-bottom: 24px; }
.story-text > p { color: var(--char); font-size: 16px; line-height: 1.65; margin-bottom: 18px; }
.story-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 36px;
	padding-top: 32px;
	border-top: 1px solid var(--line);
}
.story-stat .n {
	font-family: var(--display);
	font-size: 38px;
	font-weight: 700;
	letter-spacing: -.03em;
	line-height: 1;
}
.story-stat p { font-size: 13px; color: var(--muted); margin: 6px 0 0; line-height: 1.4; }
.story-text .btn { margin-top: 32px; }

/* ===========================================================
   10. FEATURED THEME (LOOKBOOK)
   =========================================================== */
.lookbook { background: var(--bg); }
.lookbook-card {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	min-height: 540px;
	background: var(--dgrn);
	display: grid;
	grid-template-columns: 1.1fr 1fr;
}
.lookbook-text {
	padding: 64px;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.lookbook-text .eyebrow { color: rgba(255, 255, 255, .7); }
.lookbook-text .eyebrow::before { background: rgba(255, 255, 255, .5); }
.lookbook-text h2 {
	font-family: var(--display);
	font-size: clamp(36px, 4.4vw, 56px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -.025em;
	margin: 18px 0 22px;
	color: #fff;
}
.lookbook-text h2 .ital { font-style: italic; color: var(--accent); font-weight: 500; }
.lookbook-text p { color: rgba(255, 255, 255, .8); font-size: 15.5px; margin-bottom: 28px; max-width: 440px; line-height: 1.65; }
.lb-tags { display: flex; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.lb-tags span {
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .18);
	padding: 6px 14px;
	border-radius: 99px;
	font-size: 12px;
	letter-spacing: .04em;
}
.lookbook-actions { margin-top: 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.lookbook-text .btn-light { background: var(--accent); color: var(--ink); }
.lookbook-text .btn-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.lookbook-text .btn-ghost { border: 1.5px solid rgba(255, 255, 255, .4); color: #fff; }
.lookbook-text .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.lookbook-vis { position: relative; background: var(--dgrn); }
.lookbook-vis img { width: 100%; height: 100%; object-fit: cover; }
.lookbook-vis .badge {
	position: absolute;
	bottom: 28px;
	right: 28px;
	background: rgba(10, 10, 10, .85);
	backdrop-filter: blur(8px);
	color: #fff;
	padding: 14px 18px;
	border-radius: 14px;
	font-size: 12.5px;
	letter-spacing: .04em;
	display: flex;
	align-items: center;
	gap: 12px;
}
.lookbook-vis .badge .pulse {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(245, 199, 71, .7);
	animation: bwp-pulse 1.8s infinite;
}
@keyframes bwp-pulse {
	0% { box-shadow: 0 0 0 0 rgba(245, 199, 71, .7); }
	70% { box-shadow: 0 0 0 14px rgba(245, 199, 71, 0); }
	100% { box-shadow: 0 0 0 0 rgba(245, 199, 71, 0); }
}

/* ===========================================================
   11. BEST SELLERS
   =========================================================== */
.bestsellers { background: var(--cream); }
.bs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bs-grid .prod-img { background: #fff; }

/* ===========================================================
   12. CUSTOMER VOICES
   =========================================================== */
.voices { background: var(--bg); }
.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Carousel: a viewport clips the flex track; JS slides it one card at a time. */
.v-carousel { --v-per: 3; --v-gap: 20px; }
.v-viewport { overflow: hidden; }
.v-track {
	display: flex;
	gap: var(--v-gap);
	transition: transform .5s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
}
.v-carousel .v-card {
	flex: 0 0 calc((100% - (var(--v-per) - 1) * var(--v-gap)) / var(--v-per));
	min-width: 0;
}
@media (max-width: 980px)  { .v-carousel { --v-per: 2; } }
@media (max-width: 640px)  { .v-carousel { --v-per: 1; } }

.v-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.v-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1.5px solid var(--line);
	display: grid;
	place-items: center;
	color: var(--ink);
	transition: all .2s;
}
.v-arrow svg { width: 20px; height: 20px; }
.v-arrow:hover:not(:disabled) { background: var(--ink); border-color: var(--ink); color: #fff; }
.v-arrow:disabled { opacity: .35; cursor: default; }
.v-dots { display: flex; gap: 8px; }
.v-dots button {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--sand);
	transition: all .2s;
	padding: 0;
}
.v-dots button.is-active { width: 26px; border-radius: 99px; background: var(--ink); }

.v-card {
	background: var(--cream);
	border-radius: 22px;
	padding: 32px;
	position: relative;
	border: 1px solid var(--line);
	transition: all .3s ease;
}
.v-card:hover { transform: translateY(-4px); }
.v-quote {
	font-family: var(--display);
	font-size: 60px;
	line-height: .5;
	color: var(--accent);
	display: block;
	font-weight: 700;
}
.v-text { font-size: 15.5px; line-height: 1.65; margin: 18px 0 28px; color: var(--char); }
.v-meta { display: flex; align-items: center; gap: 14px; }
.v-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-color: var(--sand);
	flex-shrink: 0;
	overflow: hidden;
}
.v-avatar img { width: 100%; height: 100%; object-fit: cover; }
.v-meta h4 { font-size: 15px; font-weight: 700; margin: 0; font-family: var(--body); }
.v-meta p { font-size: 13px; color: var(--muted); margin: 2px 0 0; }
.v-stars { color: var(--accent); margin-bottom: 14px; display: inline-flex; gap: 2px; }

/* ===========================================================
   13. JOURNAL / BLOG CARDS
   =========================================================== */
.journal { background: var(--cream); }
.j-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.j-card { display: flex; flex-direction: column; }
.j-img {
	display: block;
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin-bottom: 20px;
	background: var(--sand);
}
.j-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.j-card:hover .j-img img { transform: scale(1.05); }
.j-tags { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.j-tag {
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--orange);
}
.j-date { font-size: 13px; color: var(--muted); }
.j-card h3 {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -.015em;
	margin: 0 0 10px;
	transition: color .2s;
}
.j-card:hover h3 { color: var(--orange); }
.j-card p { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }
.j-read { margin-top: auto; padding-top: 16px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; }

/* ===========================================================
   14. SHOWCASE GRID (gallery)
   =========================================================== */
.instagram { background: var(--bg); padding: 100px 0 80px; }
.ig-head { text-align: center; margin-bottom: 48px; }
.ig-head h2 { margin-top: 16px; }
.ig-head p { margin-top: 14px; color: var(--muted); }
.ig-handle { color: var(--orange); font-weight: 600; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-tile {
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	background: var(--cream);
	border: 1px solid var(--line);
	display: block;
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, 0);
	transition: background .25s;
}
.ig-tile:hover::after { background: rgba(10, 10, 10, .3); }
.ig-tile .ig-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	opacity: 0;
	transition: opacity .25s;
	z-index: 2;
}
.ig-tile:hover .ig-overlay { opacity: 1; }

/* ===========================================================
   15. NEWSLETTER
   =========================================================== */
.newsletter {
	background: var(--ink);
	color: #fff;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}
.newsletter::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(245, 199, 71, .18), transparent 70%);
	pointer-events: none;
}
.newsletter::after {
	content: '';
	position: absolute;
	bottom: -150px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(241, 90, 34, .15), transparent 70%);
	pointer-events: none;
}
.nl-inner { max-width: 720px; text-align: center; margin: 0 auto; position: relative; z-index: 2; }
.nl-inner .eyebrow { color: rgba(255, 255, 255, .7); justify-content: center; }
.nl-inner .eyebrow::before { background: rgba(255, 255, 255, .5); }
.nl-inner h2 {
	font-family: var(--display);
	font-size: clamp(40px, 5.4vw, 64px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -.03em;
	margin: 18px 0;
	color: #fff;
}
.nl-inner h2 .ital { font-style: italic; color: var(--accent); font-weight: 500; }
.nl-inner > p { color: rgba(255, 255, 255, .7); font-size: 16px; max-width: 540px; margin: 0 auto 36px; }
.nl-form {
	display: flex;
	gap: 8px;
	background: rgba(255, 255, 255, .08);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 8px;
	border-radius: 99px;
	max-width: 480px;
	margin: 0 auto;
}
.nl-form input[type=email],
.nl-form input[type=text] {
	flex: 1;
	background: transparent;
	border: none;
	outline: none;
	padding: 14px 22px;
	font-family: inherit;
	font-size: 14.5px;
	color: #fff;
	border-radius: 99px;
}
.nl-form input::placeholder { color: rgba(255, 255, 255, .5); }
.nl-form input:focus { box-shadow: none; }
.nl-form button,
.nl-form input[type=submit] {
	background: var(--accent);
	color: var(--ink);
	padding: 14px 28px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 700;
	transition: all .25s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: auto;
}
.nl-form button:hover,
.nl-form input[type=submit]:hover { background: #fff; color: var(--ink); transform: translateX(-2px); }
.nl-note { margin-top: 22px; font-size: 12.5px; color: rgba(255, 255, 255, .5); letter-spacing: .04em; }

/* Bundle promo — reuses the dark newsletter band. */
.bundle-cta .nl-inner > p { margin-bottom: 34px; }
.bundle-cta .bundle-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 24px;
}
.bundle-cta .nl-note { margin-top: 0; }
.bundle-cta .btn-accent { background: var(--accent); color: var(--ink); }
.bundle-cta .btn-accent:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.bundle-cta .btn-ghost { border: 1.5px solid rgba(255, 255, 255, .4); color: #fff; }
.bundle-cta .btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ===========================================================
   16. MARQUEE
   =========================================================== */
.marquee {
	overflow: hidden;
	background: var(--ink);
	color: #fff;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, .1);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.marquee-track {
	display: flex;
	gap: 60px;
	animation: bwp-marq 32s linear infinite;
	white-space: nowrap;
	width: max-content;
}
@keyframes bwp-marq {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.marquee-set {
	font-family: var(--display);
	font-size: 36px;
	font-weight: 700;
	letter-spacing: -.02em;
	display: inline-flex;
	align-items: center;
	gap: 60px;
}
.marquee-set .ital { font-style: italic; font-weight: 500; color: var(--accent); }
.marquee .dot {
	width: 14px;
	height: 14px;
	background: var(--accent);
	border-radius: 50%;
	display: inline-block;
	flex-shrink: 0;
}

/* ===========================================================
   17. FOOTER
   =========================================================== */
.site-footer {
	background: #050505;
	color: rgba(255, 255, 255, .7);
	padding: 80px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 60px;
}
.footer-brand .logo { color: #fff; margin-bottom: 18px; }
.footer-brand .logo-mark { background: var(--accent); color: var(--ink); }
.footer-brand .logo b { color: var(--accent); }
.footer-brand p { font-size: 14.5px; line-height: 1.65; margin-bottom: 22px; max-width: 320px; }
.site-footer h5 {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 22px;
	letter-spacing: -.005em;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul a { font-size: 14px; transition: color .2s; }
.site-footer ul a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.footer-contact li i,
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .15);
	display: grid;
	place-items: center;
	transition: all .25s;
	font-size: 15px;
}
.footer-social a:hover { background: var(--accent); color: var(--ink); border-color: var(--accent); }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 26px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-size: 13px;
	flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 28px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-bottom-links li { margin: 0; }
.footer-bottom-links a:hover { color: var(--accent); }
.pay-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-row span {
	background: rgba(255, 255, 255, .08);
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .06em;
	color: rgba(255, 255, 255, .7);
}
.site-footer .widget { margin-bottom: 26px; }
.site-footer .widget-title { color: #fff; font-size: 16px; }

.totop {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: all .25s ease;
	z-index: 60;
	box-shadow: var(--shadow-md);
}
.totop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.totop:hover { background: var(--orange); }

/* ===========================================================
   18. PAGE BANNER + INNER PAGES
   =========================================================== */
.page-banner {
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	padding: 70px 0;
	text-align: center;
}
.page-banner h1 {
	font-size: clamp(32px, 4.4vw, 56px);
	font-weight: 700;
	letter-spacing: -.03em;
	margin: 14px 0 0;
}
.page-banner .crumb,
.page-banner .crumbs {
	font-size: 12.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted);
	font-weight: 600;
}
.page-banner .crumbs a:hover,
.page-banner .crumb a:hover { color: var(--orange); }
.page-banner p,
.page-banner .lede { margin-top: 14px; color: var(--muted); max-width: 620px; margin-left: auto; margin-right: auto; }
.page-banner.has-image { border-bottom: none; }
.page-banner.has-image h1,
.page-banner.has-image .crumbs,
.page-banner.has-image .crumbs a,
.page-banner.has-image .lede { color: #fff; }

.entry-content { font-size: 16px; line-height: 1.75; }
.entry-content h2 { font-size: 32px; margin-top: 40px; }
.entry-content h3 { font-size: 24px; margin-top: 32px; }
.entry-content h4 { font-size: 19px; margin-top: 26px; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-content ul, .entry-content ol { margin-bottom: 22px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }

.content-sidebar,
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.widget-area { position: sticky; top: 100px; }

.entry-header { margin-bottom: 30px; }
.entry-meta {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 14px;
}
.entry-meta a:hover { color: var(--orange); }
.post-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.post-thumb img { width: 100%; }
.entry-footer { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13.5px; }
.entry-footer a { color: var(--muted); }
.entry-footer a:hover { color: var(--orange); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.post-navigation { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; font-size: 14px; font-weight: 600; flex-wrap: wrap; }

.pagination,
.navigation.pagination { margin-top: 56px; display: flex; justify-content: center; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 99px;
	border: 1.5px solid var(--line);
	display: inline-grid;
	place-items: center;
	font-size: 14px;
	font-weight: 600;
	transition: all .2s;
}
.pagination .page-numbers:hover { border-color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); color: #fff; border-color: var(--ink); }

.no-results {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 60px 40px;
	text-align: center;
}
.error-404 { text-align: center; padding: 110px 0; }
.error-404 h1 { font-size: clamp(72px, 16vw, 160px); line-height: 1; color: var(--accent); margin: 0; }
.error-404 p { color: var(--muted); font-size: 1.05rem; margin: 14px 0 26px; }

/* Widgets --------------------------------------------------------- */
.widget { margin-bottom: 34px; }
.widget-title {
	font-family: var(--display);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget ul li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.widget ul li:last-child { border-bottom: none; }
.sidebar .widget,
.widget-area .widget {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
}
.site-footer .widget { background: none; border: none; padding: 0; }

/* Comments -------------------------------------------------------- */
.comments-area { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.comments-title, .comment-reply-title { font-size: 24px; margin-bottom: 24px; }
.comment-list { list-style: none; margin: 0 0 40px; padding: 0; }
.comment-list li { margin-bottom: 22px; }
.comment-list .children { list-style: none; margin: 22px 0 0 34px; padding: 0; }
.comment-body {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
}
.comment-author { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.comment-author img { border-radius: 50%; }
.comment-metadata { font-size: 12.5px; color: var(--muted); margin: 4px 0 10px; }
.reply a { font-size: 13px; font-weight: 600; color: var(--orange); }
.comment-form p { margin-bottom: 16px; }

/* WordPress core classes ------------------------------------------ */
.alignleft { float: left; margin: 6px 26px 20px 0; }
.alignright { float: right; margin: 6px 0 20px 26px; }
.aligncenter { display: block; margin: 20px auto; }
.alignwide { width: min(1140px, 100%); margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-block-image figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 10px; }
.sticky { position: relative; }
.bypostauthor { display: block; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
.gallery-item img { border-radius: 10px; }

/* ===========================================================
   19. CONTACT / FAQ / STEPS (inner page sections)
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 22px 24px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}
.contact-card .ic {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--ink);
	color: var(--accent);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}
.contact-card h4 { margin: 0 0 4px; font-size: 15px; font-family: var(--body); }
.contact-card p, .contact-card a { font-size: 14px; color: var(--muted); margin: 0; }
.contact-form-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px;
	box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-page-body { max-width: 860px; margin: 0 auto; }
.faq-page-body details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 18px 24px;
	margin-bottom: 12px;
}
.faq-page-body summary {
	cursor: pointer;
	font-family: var(--display);
	font-weight: 700;
	font-size: 17px;
	list-style: none;
}
.faq-page-body summary::-webkit-details-marker { display: none; }
.faq-page-body details[open] summary { margin-bottom: 12px; }
.faq-page-body p { color: var(--muted); font-size: 14.5px; }
.faq-page-cta {
	max-width: 860px;
	margin: 48px auto 0;
	text-align: center;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 44px 34px;
}
.faq-page-cta h3 { font-size: 26px; margin-bottom: 8px; }
.faq-page-cta p { color: var(--muted); margin-bottom: 22px; }
.faq-page-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.faq-q {
	width: 100%;
	text-align: left;
	padding: 20px 24px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	font-family: var(--display);
}
.faq-q .sign { color: var(--orange); font-size: 22px; line-height: 1; transition: transform .25s; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; display: none; }
.faq-item.open .faq-a { display: block; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: bwp-step; }
.step {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 30px;
	position: relative;
	counter-increment: bwp-step;
}
.step::before {
	content: '0' counter(bwp-step);
	font-family: var(--display);
	font-size: 40px;
	font-weight: 700;
	color: var(--sand);
	position: absolute;
	top: 22px;
	right: 26px;
	line-height: 1;
}
.step-ic {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--accent);
	color: var(--ink);
	display: grid;
	place-items: center;
	margin-bottom: 20px;
	font-size: 19px;
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }

/* Plan rows (pricing) --------------------------------------------- */
.plan-rows { display: grid; gap: 12px; }
.plan {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 20px 24px;
	transition: all .25s;
}
.plan:hover { border-color: var(--ink); transform: translateY(-2px); }
.plan b { display: block; font-size: 16px; }
.plan span { font-size: 13.5px; color: var(--muted); }
.plan-price { font-family: var(--display); font-size: 24px; font-weight: 700; white-space: nowrap; }
.plan-price small { font-family: var(--body); font-size: 12px; color: var(--muted); font-weight: 500; }

/* ===========================================================
   20. WOOCOMMERCE
   =========================================================== */
.woocommerce-page .site-main,
.woocommerce .site-main { padding: 70px 0 90px; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { font-size: 13.5px; color: var(--muted); }
.woocommerce .woocommerce-ordering select { width: auto; padding: 10px 14px; }

.shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 34px;
}

/* Shop and product archives run three-up; the homepage grid stays four-up. */
.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	text-align: left;
}
.woocommerce ul.products li.product a img { margin: 0; border-radius: 18px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--body);
	font-size: 15px;
	font-weight: 600;
	padding: 0;
	margin: 0 0 6px;
}
.woocommerce ul.products li.product .price {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
}
.woocommerce ul.products li.product .price del { color: var(--muted); font-size: .7em; }
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	background: var(--accent);
	color: var(--ink);
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 14px;
	min-height: 0;
	min-width: 0;
	line-height: 1.3;
	top: 12px;
	left: 12px;
	right: auto;
	margin: 0;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--ink);
	color: #fff;
	border-radius: 99px;
	padding: 13px 26px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--body);
	line-height: 1.2;
	transition: all .25s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--orange); color: #fff; }
.woocommerce .star-rating span { color: var(--accent); }
.woocommerce .star-rating::before { color: var(--sand); }

/* Single product */
.woocommerce div.product { display: block; }
.woocommerce div.product .product_title { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -.03em; }
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-family: var(--display);
	font-size: 30px;
	font-weight: 700;
	color: var(--ink);
}
/* Product tabs as a pill row — active pill filled ink, the rest outlined. */
.woocommerce div.product .woocommerce-tabs { margin-top: 40px; }
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0 0 22px;
	margin: 0 0 30px;
	border-bottom: 1px solid var(--line);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 1.5px solid var(--line);
	border-radius: 99px;
	transition: border-color .2s, background .2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 11px 24px;
	font-family: var(--body);
	font-size: 14px;
	font-weight: 600;
	color: var(--char);
	transition: color .2s;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover { border-color: var(--ink); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--ink);
	border-color: var(--ink);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #fff; }
.woocommerce div.product .woocommerce-tabs .panel { margin: 0; }
.woocommerce div.product .woocommerce-tabs .panel > h2:first-child { margin-top: 0; }
.woocommerce div.product form.cart div.quantity input { border-radius: 10px; }
.woocommerce .quantity .qty { width: 78px; text-align: center; }
.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 { font-size: 30px; margin: 60px 0 26px; }

/* Cart / checkout / account */
.woocommerce table.shop_table {
	border-radius: var(--radius-sm);
	border-color: var(--line);
	overflow: hidden;
}
.woocommerce table.shop_table th { background: var(--cream); font-family: var(--body); }
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce-MyAccount-navigation {
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--accent);
	background: var(--cream);
	border-radius: var(--radius-sm);
}
.woocommerce-message::before,
.woocommerce-info::before { color: var(--accent); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select { border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 16px; }

/* ===========================================================
   21. UTILITIES / MOTION
   =========================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Preloader */
.bwp-loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	transition: opacity .55s ease;
}
.bwp-loader.loaded { opacity: 0; }
.bwp-loader-logo { max-width: 160px; }
.bwp-loader-mark {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-weight: 800;
	font-size: 20px;
}
.bwp-loader.anim-pulse .bwp-loader-inner { animation: bwp-pulse-scale 1.4s ease-in-out infinite; }
.bwp-loader.anim-bounce .bwp-loader-inner { animation: bwp-bounce 1.1s ease-in-out infinite; }
.bwp-loader.anim-spin .bwp-loader-inner { animation: bwp-spin 1.6s linear infinite; }
.bwp-loader.anim-fade .bwp-loader-inner { animation: bwp-fade 1.4s ease-in-out infinite; }
@keyframes bwp-pulse-scale { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); } }
@keyframes bwp-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes bwp-fade { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* ===========================================================
   22. RESPONSIVE
   =========================================================== */
@media (max-width: 1100px) {
	.hero-grid { grid-template-columns: 1fr 1fr 1fr; }
	.h-col:nth-child(4),
	.h-col:nth-child(5) { display: none; }
	.footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
	.trust-grid { grid-template-columns: repeat(2, 1fr); }
	.prod-grid,
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
	.feat-grid { grid-template-columns: repeat(2, 1fr); }
	.content-sidebar,
	.content-grid { grid-template-columns: 1fr; }
	.widget-area { position: static; }
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
	.j-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
	.main-navigation { display: none; }
	.menu-toggle { display: grid; place-items: center; }
	/* Stack the hero: the headline gets the full width, the stamp and the
	   avatar stack share the row above it. */
	.hero-top { grid-template-columns: auto 1fr; gap: 18px; }
	.hero-headline { grid-column: 1 / -1; grid-row: 2; font-size: clamp(32px, 8.4vw, 58px); text-align: left; }
	.avatars { justify-self: end; }
	.hero-grid { grid-template-columns: 1fr 1fr; }
	.h-col:nth-child(3) { display: none; }
	.hero-bottom { grid-template-columns: 1fr; gap: 40px; }
	.h-trends { text-align: left; }
	.h-trends h3 { margin-left: 0; }
	.story-inner { grid-template-columns: 1fr; gap: 40px; }
	.bs-grid { grid-template-columns: 1fr; }
	.v-grid { grid-template-columns: 1fr; }
	.j-grid { grid-template-columns: 1fr; }
	.blog-grid { grid-template-columns: 1fr; }
	.ig-grid { grid-template-columns: repeat(3, 1fr); }
	.lookbook-card { grid-template-columns: 1fr; min-height: auto; }
	.lookbook-text { padding: 40px 30px; }
	.lookbook-vis { aspect-ratio: 4 / 5; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.prod-grid,
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
	.feat-grid { grid-template-columns: 1fr; }
	.trust-grid { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; gap: 32px; }
	.signin { display: none; }
	.marquee-set { font-size: 26px; gap: 36px; }
	.section, .pad { padding: 70px 0; }
	.section-head { flex-direction: column; align-items: flex-start; }
	.instagram { padding: 70px 0 60px; }
	.newsletter { padding: 70px 0; }
}

@media (max-width: 480px) {
	.container, .wrap { padding: 0 20px; }
	.footer-grid { grid-template-columns: 1fr; }
	.nl-form { flex-direction: column; border-radius: 22px; }
	.nl-form button, .nl-form input[type=submit] { width: 100%; justify-content: center; }
	.ig-grid { grid-template-columns: repeat(2, 1fr); }
	.hero-circle { width: 100px; height: 100px; }
	.play { width: 44px; height: 44px; }
	.prod-grid,
	.woocommerce ul.products { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
	.story-stats { grid-template-columns: 1fr 1fr; }
	.lookbook-text { padding: 34px 22px; }
	.contact-form-wrap { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after { animation: none !important; transition: none !important; }
	.reveal { opacity: 1; transform: none; }
}

/* ============================================================
 * Shop / Product Archive — Bundle Promo Banner
 * (Customizer > BWP Shop)
 * ============================================================ */
.bwp-shop-promo {
	background: var(--ink);
	color: #fff;
}
.bwp-shop-promo__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 0;
	flex-wrap: wrap;
}
.bwp-shop-promo__title {
	margin: 0 0 6px;
	color: #fff;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	line-height: 1.2;
}
.bwp-shop-promo__text {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	max-width: 60ch;
}
.bwp-shop-promo__btn {
	flex: 0 0 auto;
	background: var(--orange);
	color: #fff;
}
.bwp-shop-promo__btn:hover {
	background: #fff;
	color: var(--ink);
	transform: translateY(-2px);
}
@media (max-width: 1024px) {
	.bwp-shop-promo__inner { padding: 24px 20px; }
}
@media (max-width: 640px) {
	.bwp-shop-promo__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 22px 18px;
	}
	.bwp-shop-promo__btn { width: 100%; justify-content: center; }
}

/* Shop sidebar — Bundle Promo Card (Customizer > BWP Shop) */
.bwp-shop-promo-card {
	align-self: start;
	margin-top: 24px;
	padding: 22px 20px;
	background: var(--cream);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	text-align: center;
}
.bwp-shop-promo-card__img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto 18px;
	border-radius: 12px;
}
.bwp-shop-promo-card__title {
	margin: 0 0 18px;
	font-family: var(--display);
	font-size: 1.15rem;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: -.01em;
	color: var(--ink);
}
.bwp-shop-promo-card--sticky { position: sticky; top: 100px; }
@media (max-width: 1024px) {
	.bwp-shop-promo-card--sticky { position: static; top: auto; }
}
.bwp-shop-promo-card__btn {
	display: flex;
	width: 100%;
	justify-content: center;
}
