/* ============================================================
 * Budget Perfumes — main stylesheet
 *
 * Architecture:
 *   1. Brand fonts (self-hosted, swap for fast first paint)
 *   2. Design tokens (CSS custom properties)
 *   3. Reset & base
 *   4. Layout primitives
 *   5. Buttons, links, forms
 *   6. Header & navigation
 *   7. Hero, USP, category, featured, story blocks
 *   8. Product card & grid
 *   9. Pages, posts, 404
 *  10. Footer
 *  11. Utilities & helpers
 *  12. Motion, accessibility
 * ============================================================ */

/* ─── 1. Fonts ─────────────────────────────────────────── */
@font-face {
	font-family: "Montserrat";
	font-style:  normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype-variations"),
	     url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
}
@font-face {
	font-family: "Montserrat";
	font-style:  normal;
	font-weight: 800;
	font-display: swap;
	src: url("../fonts/Montserrat-ExtraBold.ttf") format("truetype");
}
@font-face {
	font-family: "Lora";
	font-style:  normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/Lora-Medium.ttf") format("truetype");
}
@font-face {
	font-family: "DM Sans";
	font-style:  normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/DMSans-Regular.ttf") format("truetype");
}
@font-face {
	font-family: "DM Sans";
	font-style:  normal;
	font-weight: 300;
	font-display: swap;
	src: url("../fonts/DMSans-Light.ttf") format("truetype");
}
@font-face {
	font-family: "Bellarose";
	font-style:  normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/bellarose.otf") format("opentype");
}
@font-face {
	font-family: "Hind Siliguri";
	font-style:  normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/HindSiliguri-Bold.ttf") format("truetype");
	unicode-range: U+0980-09FF;
}

/* ─── 2. Tokens ────────────────────────────────────────── */
:root {
	/* Brand */
	--bp-primary:        #E63027;
	--bp-primary-deep:   #B61F1A;
	--bp-plum:           #2A0A18;
	--bp-plum-soft:      #3F1224;
	--bp-peach:          #F4A28C;
	--bp-cream:          #F8F0E5;
	--bp-cream-soft:     #FBF6EC;
	--bp-gold:           #C9A66B;
	--bp-ink:            #1A1A1A;
	--bp-ink-soft:       #4A4A4A;
	--bp-muted:          #8A8580;
	--bp-line:           #E5DFD4;
	--bp-white:          #FFFFFF;

	/* Type */
	--ff-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
	--ff-serif:   "Lora", Georgia, "Times New Roman", serif;
	--ff-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--ff-script:  "Bellarose", "Lora", Georgia, serif;
	--ff-bn:      "Hind Siliguri", "DM Sans", sans-serif;

	/* Scale (fluid) */
	--fs-xs:   0.75rem;
	--fs-sm:   0.875rem;
	--fs-base: 1rem;
	--fs-md:   1.125rem;
	--fs-lg:   1.375rem;
	--fs-xl:   clamp(1.375rem, 1rem + 0.7vw, 1.625rem);
	--fs-2xl:  clamp(1.875rem, 1.4rem + 1.5vw, 2.5rem);
	--fs-3xl:  clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem);
	--fs-hero: clamp(2.75rem, 1.6rem + 4.8vw, 5.25rem);

	/* Spacing */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 1rem;
	--sp-4: 1.5rem;
	--sp-5: 2.5rem;
	--sp-6: 4rem;
	--sp-7: 6rem;

	/* Radii */
	--r-sm: 6px;
	--r-md: 12px;
	--r-lg: 20px;
	--r-pill: 999px;

	/* Elevation */
	--shadow-1: 0 1px 2px rgba(42,10,24,.04), 0 1px 3px rgba(42,10,24,.06);
	--shadow-2: 0 4px 14px rgba(42,10,24,.08), 0 2px 4px rgba(42,10,24,.04);
	--shadow-3: 0 18px 60px rgba(42,10,24,.18), 0 8px 18px rgba(42,10,24,.10);

	/* Layout */
	--shell-max:    1200px;
	--shell-wide:   1440px;
	--shell-narrow: 760px;
	--shell-pad:    clamp(1rem, 2vw, 2rem);

	/* Motion */
	--ease-out: cubic-bezier(.2,.7,.2,1);
	--ease-soft: cubic-bezier(.4,.1,.2,1);
	--dur-1: 160ms;
	--dur-2: 280ms;
	--dur-3: 480ms;
}

/* ─── 3. Reset & base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--ff-body);
	font-size: var(--fs-base);
	line-height: 1.65;
	color: var(--bp-ink);
	background: var(--bp-cream-soft);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

img, svg, video, canvas, audio, iframe, embed, object {
	display: block;
	max-width: 100%;
}
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ff-display);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.015em;
	margin: 0 0 0.5em;
	color: var(--bp-plum);
}
h1 { font-size: var(--fs-3xl); letter-spacing: -0.02em; }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); font-weight: 700; }
h4 { font-size: var(--fs-lg); font-weight: 700; }
p  { margin: 0 0 1em; }

a { color: var(--bp-primary); text-decoration: none; transition: color var(--dur-1) var(--ease-out); }
a:hover { color: var(--bp-primary-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
	outline: 2px solid var(--bp-primary);
	outline-offset: 3px;
	border-radius: 2px;
}

::selection { background: var(--bp-primary); color: #fff; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}

.bp-skip-link {
	position: absolute; left: -9999px;
	background: var(--bp-plum); color: #fff;
	padding: 12px 16px; border-radius: 0 0 var(--r-md) 0;
	z-index: 1000;
}
.bp-skip-link:focus { left: 0; top: 0; color: #fff; }

/* ─── 4. Layout primitives ─────────────────────────────── */
.bp-shell {
	width: 100%;
	max-width: var(--shell-max);
	margin-inline: auto;
	padding-inline: var(--shell-pad);
}
.bp-shell--wide   { max-width: var(--shell-wide); }
.bp-shell--narrow { max-width: var(--shell-narrow); }

.bp-main { padding-block: clamp(2rem, 4vw, 4rem); min-height: 50vh; }
.bp-main--home { padding-block: 0; }
.bp-main--shop { padding-block: clamp(1.5rem, 3vw, 3rem); }

.alignwide { max-width: var(--shell-wide); margin-inline: auto; padding-inline: var(--shell-pad); }
.alignfull { width: 100%; }

/* ─── 5. Buttons & links ───────────────────────────────── */
.bp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.9rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: var(--r-pill);
	border: 1.5px solid transparent;
	cursor: pointer;
	transition: transform var(--dur-1) var(--ease-out), background-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out), box-shadow var(--dur-1) var(--ease-out);
	white-space: nowrap;
	text-decoration: none;
	line-height: 1.1;
}
.bp-btn:active { transform: translateY(1px); }
.bp-btn--small { padding: 10px 18px; font-size: 0.78rem; }
.bp-btn--block { width: 100%; }

.bp-btn--primary {
	background: var(--bp-primary);
	color: #fff;
	box-shadow: 0 8px 20px rgba(230,48,39,.25);
}
.bp-btn--primary:hover { background: var(--bp-primary-deep); color: #fff; box-shadow: 0 12px 28px rgba(230,48,39,.35); }

.bp-btn--ghost {
	background: transparent;
	color: var(--bp-plum);
	border-color: var(--bp-plum);
}
.bp-btn--ghost:hover { background: var(--bp-plum); color: #fff; }

.bp-btn--ghost-light {
	background: rgba(255,255,255,.08);
	color: #fff;
	border-color: rgba(255,255,255,.5);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.bp-btn--ghost-light:hover { background: #fff; color: var(--bp-plum); border-color: #fff; }

.bp-btn--ghost-dark {
	background: transparent;
	color: var(--bp-plum);
	border-color: rgba(42,10,24,.2);
}
.bp-btn--ghost-dark:hover { background: var(--bp-plum); color: #fff; border-color: var(--bp-plum); }

.bp-link {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--bp-primary);
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
}

/* ─── 6. Header ────────────────────────────────────────── */
.bp-announce {
	background: var(--bp-plum);
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}
.bp-announce__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 8px;
	min-height: 36px;
}
.bp-announce__text {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.bp-announce__cta {
	color: var(--bp-peach);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	flex-shrink: 0;
}
.bp-announce__cta:hover { color: #fff; }

.bp-header {
	background: var(--bp-cream-soft);
	border-bottom: 1px solid var(--bp-line);
	position: sticky;
	top: 0;
	z-index: 50;
	transition: box-shadow var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out), padding var(--dur-2) var(--ease-out);
}
.bp-header.is-scrolled {
	background: rgba(251, 246, 236, 0.92);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	backdrop-filter: saturate(140%) blur(10px);
	box-shadow: var(--shadow-2);
}

.bp-header__inner {
	display: grid;
	grid-template-columns: auto auto 1fr auto;
	align-items: center;
	column-gap: clamp(1rem, 2.4vw, 2.25rem);
	padding-block: clamp(14px, 2vw, 22px);
	transition: padding-block var(--dur-2) var(--ease-out);
}
.bp-header.is-scrolled .bp-header__inner {
	padding-block: 12px;
}
@media (max-width: 880px) {
	.bp-header__inner { grid-template-columns: auto 1fr auto; column-gap: 0.75rem; }
}

.bp-header__menu-toggle {
	display: none;
	background: transparent;
	border: 0;
	padding: 10px;
	cursor: pointer;
	color: var(--bp-plum);
	border-radius: var(--r-sm);
	transition: background-color var(--dur-1) var(--ease-out);
}
.bp-header__menu-toggle:hover { background: var(--bp-line); }
@media (max-width: 880px) { .bp-header__menu-toggle { display: inline-flex; } }

.bp-header__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}
.bp-brand {
	display: inline-flex;
	align-items: center;
	color: var(--bp-plum);
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 1.1rem;
	letter-spacing: -0.01em;
	line-height: 1;
	transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-1) var(--ease-out);
}
.bp-brand:hover { transform: translateY(-1px); opacity: 0.92; }
.bp-brand img,
.custom-logo-link img {
	width: auto;
	height: clamp(64px, 7.5vw, 92px);
	display: block;
	transition: height var(--dur-2) var(--ease-out);
}
.bp-header.is-scrolled .bp-brand img,
.bp-header.is-scrolled .custom-logo-link img {
	height: clamp(52px, 6vw, 72px);
}
@media (max-width: 600px) {
	.bp-brand img,
	.custom-logo-link img { height: 56px; }
}
.bp-brand__tagline {
	display: none;
	font-family: var(--ff-serif);
	font-style: italic;
	font-size: 0.82rem;
	color: var(--bp-ink-soft);
	border-left: 1px solid var(--bp-line);
	padding-left: 14px;
	letter-spacing: 0.01em;
	max-width: 22ch;
	line-height: 1.3;
}
@media (min-width: 1180px) { .bp-brand__tagline { display: inline-block; } }

.bp-header__nav { display: flex; justify-content: center; min-width: 0; }
@media (max-width: 880px) { .bp-header__nav { display: none; } }

.bp-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	justify-content: center;
}
.bp-nav__menu > li > a {
	position: relative;
	color: var(--bp-plum);
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.92rem;
	padding: 10px 16px;
	border-radius: var(--r-pill);
	transition: color var(--dur-1) var(--ease-out);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.bp-nav__menu > li > a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 4px;
	height: 2px;
	background: var(--bp-primary);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--dur-2) var(--ease-out);
}
.bp-nav__menu > li > a:hover,
.bp-nav__menu > li.current-menu-item > a {
	color: var(--bp-primary);
	background: transparent;
}
.bp-nav__menu > li > a:hover::after,
.bp-nav__menu > li.current-menu-item > a::after {
	transform: scaleX(1);
}

.bp-header__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	justify-content: flex-end;
}
.bp-header__icon {
	background: transparent;
	border: 0;
	padding: 11px;
	color: var(--bp-plum);
	cursor: pointer;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-decoration: none;
	transition: background-color var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out), transform var(--dur-1) var(--ease-out);
}
.bp-header__icon:hover {
	background: var(--bp-line);
	color: var(--bp-primary);
	transform: translateY(-1px);
}
.bp-header__icon:focus-visible {
	outline: 2px solid var(--bp-primary);
	outline-offset: 2px;
}

.bp-header__cart {
	position: relative;
}
.bp-header__cart .bp-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	background: var(--bp-primary);
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ff-display);
	line-height: 1;
	box-shadow: 0 0 0 2px var(--bp-cream-soft);
	transition: transform var(--dur-1) var(--ease-out);
}
.bp-header.is-scrolled .bp-header__cart .bp-cart-count {
	box-shadow: 0 0 0 2px rgba(251, 246, 236, 0.92);
}
.bp-header__cart:hover .bp-cart-count { transform: scale(1.08); }

.bp-header__search { background: var(--bp-cream); border-top: 1px solid var(--bp-line); padding-block: 1rem; }
.bp-header__search[hidden] { display: none; }

/* Mobile drawer */
.bp-mobile-drawer {
	position: fixed;
	inset: 0 0 0 0;
	background: var(--bp-cream-soft);
	z-index: 100;
	transform: translateX(-100%);
	transition: transform var(--dur-3) var(--ease-soft);
	display: flex;
	flex-direction: column;
	padding: 1rem;
}
.bp-mobile-drawer[hidden] { display: flex; }
.bp-mobile-drawer.is-open { transform: translateX(0); }
.bp-mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0 1rem; border-bottom: 1px solid var(--bp-line); }
.bp-mobile-drawer__close { background: transparent; border: 0; padding: 8px; color: var(--bp-plum); cursor: pointer; }
.bp-mobile-drawer__nav { padding: 1rem 0; flex: 1; }
.bp-mobile-drawer__nav .bp-nav__menu { flex-direction: column; align-items: stretch; gap: 0; }
.bp-mobile-drawer__nav .bp-nav__menu > li > a {
	display: block;
	padding: 14px 12px;
	border-radius: var(--r-md);
	font-size: 1rem;
}
.bp-mobile-drawer__whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #25D366;
	color: #fff !important;
	padding: 14px;
	border-radius: var(--r-pill);
	font-family: var(--ff-display);
	font-weight: 700;
	margin-top: 1rem;
}

.bp-search-form {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	border: 1px solid var(--bp-line);
	border-radius: var(--r-pill);
	padding: 8px 8px 8px 18px;
	max-width: 720px;
	margin: 0 auto;
}
.bp-search-form .bp-icon { color: var(--bp-muted); flex-shrink: 0; }
.bp-search-form__input {
	flex: 1;
	border: 0;
	background: transparent;
	font-family: var(--ff-body);
	font-size: 1rem;
	padding: 8px 0;
	outline: none;
	min-width: 0;
}
.bp-search-form__submit {
	background: var(--bp-plum);
	color: #fff;
	border: 0;
	padding: 10px 20px;
	border-radius: var(--r-pill);
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color var(--dur-1) var(--ease-out);
}
.bp-search-form__submit:hover { background: var(--bp-primary); }

/* ─── 7. Hero ──────────────────────────────────────────── */
.bp-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	min-height: clamp(440px, 70vh, 720px);
	display: flex;
	align-items: center;
	isolation: isolate;
}
.bp-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}
.bp-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.bp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(ellipse at 20% 50%, rgba(42,10,24,.6) 0%, rgba(42,10,24,.0) 60%),
		linear-gradient(90deg, rgba(42,10,24,.78) 0%, rgba(42,10,24,.40) 50%, rgba(42,10,24,.10) 100%);
}
.bp-hero__inner {
	width: 100%;
	max-width: var(--shell-max);
	padding-block: clamp(3rem, 8vw, 6rem);
	position: relative;
}
.bp-hero__eyebrow {
	display: inline-block;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bp-peach);
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	padding: 7px 14px;
	border-radius: var(--r-pill);
	margin: 0 0 1.25rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.bp-hero__heading {
	font-size: var(--fs-hero);
	color: #fff;
	max-width: 18ch;
	margin-bottom: 1rem;
	line-height: 1.02;
	letter-spacing: -0.025em;
}
.bp-hero__heading em { font-family: var(--ff-script); font-style: normal; color: var(--bp-peach); font-weight: 400; }
.bp-hero__subhead {
	font-family: var(--ff-serif);
	font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.25rem);
	max-width: 52ch;
	color: rgba(255,255,255,.85);
	margin-bottom: 2rem;
	line-height: 1.55;
}
.bp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2.5rem; }
.bp-hero__trust {
	list-style: none; padding: 0; margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	color: rgba(255,255,255,.85);
	font-size: 0.88rem;
	border-top: 1px solid rgba(255,255,255,.18);
	padding-top: 1.25rem;
	max-width: 600px;
}
.bp-hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.bp-hero__trust .bp-icon { color: var(--bp-peach); }

/* ─── USP strip ───────────────────────────────────────── */
.bp-usp { padding-block: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(180deg, var(--bp-cream-soft), var(--bp-cream)); }
.bp-usp__grid {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
@media (max-width: 880px) { .bp-usp__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bp-usp__grid { grid-template-columns: 1fr; } }
.bp-usp__item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--bp-line);
	border-radius: var(--r-md);
	padding: 18px 18px 16px;
	transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.bp-usp__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--bp-peach); }
.bp-usp__icon {
	flex-shrink: 0;
	width: 44px; height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--bp-cream), var(--bp-peach));
	color: var(--bp-plum);
	border-radius: var(--r-md);
}
.bp-usp__copy { display: flex; flex-direction: column; gap: 4px; }
.bp-usp__title { font-family: var(--ff-display); font-weight: 700; color: var(--bp-plum); font-size: 0.95rem; }
.bp-usp__sub   { font-size: 0.82rem; color: var(--bp-ink-soft); line-height: 1.45; }

/* ─── Section heading ──────────────────────────────────── */
.bp-section-head {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--bp-line);
}
@media (max-width: 600px) { .bp-section-head { grid-template-columns: 1fr; } }
.bp-section-head__title {
	margin: 0;
	font-size: var(--fs-2xl);
	color: var(--bp-plum);
}
.bp-section-head__sub {
	font-family: var(--ff-serif);
	font-size: 1rem;
	color: var(--bp-ink-soft);
	margin: 6px 0 0;
	grid-column: 1;
}
.bp-section-head__cta {
	color: var(--bp-plum);
	display: inline-flex; gap: 6px; align-items: center;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.88rem;
	border-bottom: 1px solid currentColor;
	padding-bottom: 1px;
	white-space: nowrap;
}
.bp-section-head__cta:hover { color: var(--bp-primary); }

/* ─── Categories ──────────────────────────────────────── */
.bp-cats { padding-block: clamp(3rem, 6vw, 5rem); }
.bp-cats__grid {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}
.bp-cats__grid--2 { grid-template-columns: repeat(2, 1fr); }
.bp-cats__grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .bp-cats__grid, .bp-cats__grid--3, .bp-cats__grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .bp-cats__grid, .bp-cats__grid--2, .bp-cats__grid--3, .bp-cats__grid--4 { grid-template-columns: 1fr; } }

.bp-cats__card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	aspect-ratio: 4 / 5;
	padding: 1.5rem;
	border-radius: var(--r-lg);
	color: #fff;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
	isolation: isolate;
}
.bp-cats__card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 50%, rgba(42,10,24,.6) 100%);
	z-index: 0;
}
.bp-cats__card > * { position: relative; z-index: 1; }
.bp-cats__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); color: #fff; }
.bp-cats__name {
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: clamp(1.5rem, 1rem + 1.4vw, 2rem);
	line-height: 1.05;
	letter-spacing: -0.01em;
	margin-bottom: 4px;
}
.bp-cats__count { font-size: 0.8rem; opacity: 0.85; font-family: var(--ff-serif); }
.bp-cats__cta {
	display: inline-flex; gap: 6px; align-items: center;
	margin-top: 12px;
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.bp-cats__cta .bp-icon { transition: transform var(--dur-2) var(--ease-out); }
.bp-cats__card:hover .bp-cats__cta .bp-icon { transform: translateX(3px); }

/* ─── Featured / product grid ─────────────────────────── */
.bp-featured { padding-block: clamp(3rem, 6vw, 5rem); background: var(--bp-cream-soft); }

.bp-products {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(var(--cols, 3), 1fr);
	gap: clamp(16px, 2vw, 28px);
}
.bp-products--cols-3 { --cols: 3; }
.bp-products--cols-4 { --cols: 4; }
@media (max-width: 1024px) { .bp-products { --cols: 3; } }
@media (max-width:  768px) { .bp-products { --cols: 2; } }
@media (max-width:  420px) { .bp-products { --cols: 1; } }

.bp-product {
	background: #fff;
	border-radius: var(--r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
	border: 1px solid var(--bp-line);
}
.bp-product:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }

.bp-product__media {
	position: relative;
	display: block;
	aspect-ratio: 5/6;
	background: linear-gradient(180deg, var(--bp-cream-soft), var(--bp-cream));
	overflow: hidden;
}
.bp-product__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform var(--dur-3) var(--ease-out);
}
.bp-product:hover .bp-product__img { transform: scale(1.04); }

.bp-product__badge {
	position: absolute; top: 14px; left: 14px;
	background: var(--bp-primary); color: #fff;
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: var(--r-pill);
}
.bp-product__badge--feature { background: var(--bp-plum); }

.bp-product__body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.bp-product__brand {
	font-family: var(--ff-display);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bp-muted);
}
.bp-product__title {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3;
	margin: 0;
	color: var(--bp-plum);
	letter-spacing: -0.005em;
	min-height: 2.5em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.bp-product__title a { color: inherit; }
.bp-product__title a:hover { color: var(--bp-primary); }
.bp-product__price {
	font-family: var(--ff-display);
	font-weight: 800;
	color: var(--bp-plum);
	font-size: 1.1rem;
	margin-top: auto;
	padding-top: 6px;
}
.bp-product__price del { color: var(--bp-muted); font-weight: 400; font-size: 0.9em; margin-right: 6px; }
.bp-product__price ins { text-decoration: none; color: var(--bp-primary); }
.bp-product__cart { margin-top: 10px; }

/* ─── Brand story ─────────────────────────────────────── */
.bp-story {
	padding-block: clamp(3.5rem, 8vw, 6rem);
	background:
		radial-gradient(circle at 80% 0%, rgba(244,162,140,.15), transparent 50%),
		linear-gradient(180deg, var(--bp-cream-soft) 0%, var(--bp-cream) 100%);
}
.bp-story__inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
}
@media (max-width: 880px) { .bp-story__inner { grid-template-columns: 1fr; } }

.bp-story__art {
	position: relative;
	aspect-ratio: 4/5;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: linear-gradient(135deg, var(--bp-plum) 0%, var(--bp-primary-deep) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}
.bp-story__art-frame {
	width: 65%;
	height: 65%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: var(--r-md);
	background: rgba(255,255,255,.04);
	padding: 2rem;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.bp-story__art-frame img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 12px 24px rgba(0,0,0,.25));
}
.bp-story__seal {
	position: absolute;
	bottom: 1rem; right: 1rem;
	background: var(--bp-gold);
	color: var(--bp-plum);
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 14px;
	border-radius: var(--r-pill);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: var(--shadow-2);
}
.bp-story__eyebrow {
	font-family: var(--ff-display);
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bp-primary);
	margin: 0 0 1rem;
}
.bp-story__heading {
	font-size: var(--fs-2xl);
	color: var(--bp-plum);
	max-width: 22ch;
	margin-bottom: 1rem;
}
.bp-story__body {
	font-family: var(--ff-serif);
	font-size: 1.1rem;
	color: var(--bp-ink-soft);
	max-width: 52ch;
	line-height: 1.65;
	margin-bottom: 1.5rem;
}
.bp-story__points {
	list-style: none; padding: 0; margin: 0 0 1.75rem;
	display: flex; flex-direction: column; gap: 14px;
}
.bp-story__points li {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	font-size: 0.96rem;
	color: var(--bp-ink-soft);
}
.bp-story__points strong { color: var(--bp-plum); display: inline; }
.bp-story__num {
	flex-shrink: 0;
	font-family: var(--ff-display);
	font-weight: 800;
	color: var(--bp-primary);
	font-size: 0.85rem;
	letter-spacing: 0.05em;
	background: var(--bp-cream);
	border: 1px solid var(--bp-line);
	border-radius: 999px;
	padding: 4px 10px;
	margin-top: 2px;
}

/* ─── Pages, posts, generic ───────────────────────────── */
.bp-page-header { margin-bottom: 2.5rem; }
.bp-page-title  { color: var(--bp-plum); }
.bp-page-subtitle { color: var(--bp-ink-soft); font-family: var(--ff-serif); }

.bp-page__content > *:first-child { margin-top: 0; }
.bp-page__content { font-size: 1.05rem; line-height: 1.7; max-width: var(--shell-narrow); margin-inline: auto; }
.bp-page__content h2, .bp-page__content h3 { margin-top: 2rem; }

.bp-single { padding-block: 1rem; }
.bp-single__header { text-align: center; margin-bottom: 2rem; }
.bp-single__meta { color: var(--bp-muted); font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.bp-single__title { margin-top: 0.5rem; font-size: var(--fs-3xl); }
.bp-single__hero { margin: 2rem 0; border-radius: var(--r-lg); overflow: hidden; }
.bp-single__hero img { width: 100%; height: auto; }

.bp-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}
.bp-post-card { background: #fff; border: 1px solid var(--bp-line); border-radius: var(--r-md); padding: 1rem; }
.bp-post-card__title { margin: 0.5rem 0; font-size: 1.1rem; }

.bp-empty { text-align: center; padding: 4rem 1rem; max-width: 560px; margin-inline: auto; }
.bp-empty__eyebrow { color: var(--bp-primary); font-family: var(--ff-display); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem; }
.bp-empty h1 { font-size: var(--fs-2xl); margin-bottom: 0.5rem; }
.bp-empty p { color: var(--bp-ink-soft); margin-bottom: 1.5rem; }
.bp-empty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

.bp-flash { background: var(--bp-plum); color: #fff; padding: 12px 16px; border-radius: var(--r-md); display: inline-flex; gap: 12px; align-items: center; }
.bp-flash__cta { color: var(--bp-peach) !important; font-weight: 600; }

/* ─── 10. Footer ──────────────────────────────────────── */
.bp-footer {
	background: var(--bp-plum);
	color: rgba(255,255,255,.78);
	padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.5rem);
	margin-top: clamp(3rem, 6vw, 5rem);
}
.bp-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 880px) { .bp-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 540px) { .bp-footer__top { grid-template-columns: 1fr; } }

.bp-footer__brand { max-width: 320px; }
.bp-footer__logo img { width: 80px; height: auto; margin-bottom: 1rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
.bp-footer__tagline { color: rgba(255,255,255,.7); line-height: 1.6; font-family: var(--ff-serif); }
.bp-footer__social { display: flex; gap: 10px; margin-top: 1rem; }
.bp-footer__social a {
	width: 38px; height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 999px;
	color: #fff;
	transition: background-color var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out);
}
.bp-footer__social a:hover { background: var(--bp-primary); border-color: var(--bp-primary); color: #fff; }

.bp-footer__heading {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bp-peach);
	margin: 0 0 1rem;
}
.bp-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.bp-footer__col a { color: rgba(255,255,255,.78); }
.bp-footer__col a:hover { color: #fff; }

.bp-footer__contacts li {
	display: flex; align-items: center; gap: 10px;
}
.bp-footer__contacts .bp-icon { color: var(--bp-peach); flex-shrink: 0; }

.bp-footer__pay { margin-top: 1.25rem; }
.bp-footer__pay-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.5); display: block; margin-bottom: 8px; font-family: var(--ff-display); font-weight: 600; }
.bp-footer__pay-icons { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.bp-pay-cod {
	background: var(--bp-gold);
	color: var(--bp-plum);
	padding: 4px 10px;
	border-radius: var(--r-sm);
	font-family: var(--ff-display);
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
}

.bp-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.5rem;
	font-size: 0.78rem;
	color: rgba(255,255,255,.5);
}
@media (max-width: 540px) { .bp-footer__bottom { flex-direction: column; text-align: center; } }

/* WhatsApp floating action */
.bp-whatsapp-fab {
	position: fixed;
	right: clamp(1rem, 3vw, 2rem);
	bottom: clamp(1rem, 3vw, 2rem);
	width: 56px;
	height: 56px;
	background: #25D366;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff !important;
	box-shadow: 0 8px 28px rgba(37,211,102,.5);
	z-index: 30;
	transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.bp-whatsapp-fab:hover { transform: scale(1.06); box-shadow: 0 12px 36px rgba(37,211,102,.65); }
@media (max-width: 540px) { .bp-whatsapp-fab { width: 50px; height: 50px; } }

/* ─── 11. Utilities ───────────────────────────────────── */
.bp-icon { flex-shrink: 0; }
.bp-empty-line { color: var(--bp-muted); font-style: italic; padding: 1rem 0; }

/* ─── 12. Motion / accessibility ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Scroll-triggered reveal (.is-in adds opacity 1) */
[data-bp-reveal] {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
}
[data-bp-reveal].is-in { opacity: 1; transform: translateY(0); }
