/* =========================================================================
   Personify — main stylesheet
   Sections: 1 Tokens  2 Base  3 Buttons/Utils  4 Header  5 Nav  6 Hero
   7 Sections  8 Categories  9 Featured 10 Steps 11 Products/Bestsellers
   12 Trust 13 Instagram 14 Newsletter 15 Footer 16 WooCommerce
   17 Blog/Pages 18 Responsive
   ========================================================================= */

/* 1. Tokens ------------------------------------------------------------- */
:root {
	--pf-pink: #ec407a;
	--pf-pink-dark: #d81b60;
	--pf-pink-soft: #fce4ec;
	--pf-pink-tint: #fff5f8;
	--pf-amber: #f5a623;
	--pf-amber-glow: #ffcf7a;
	--pf-ink: #2b2b2b;
	--pf-muted: #7a7a7a;
	--pf-line: #f0dfe6;
	--pf-white: #ffffff;
	--pf-radius: 14px;
	--pf-radius-sm: 10px;
	--pf-shadow: 0 8px 30px rgba(216, 27, 96, .08);
	--pf-shadow-hover: 0 14px 40px rgba(216, 27, 96, .16);
	--pf-container: 1200px;
	--pf-font: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
	--pf-script: "Pacifico", cursive;
	--pf-serif: "Playfair Display", Georgia, serif;
}

/* 2. Base --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--pf-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--pf-ink);
	background: var(--pf-white);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pf-pink-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pf-pink); }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; font-weight: 700; }

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

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--pf-pink); color: #fff; padding: 10px 16px;
}
.skip-link:focus { left: 10px; top: 10px; color: #fff; }

.pf-icon { width: 22px; height: 22px; flex: 0 0 auto; }

/* 3. Buttons & utils ---------------------------------------------------- */
.pf-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 40px;
	font-weight: 600;
	font-size: 15px;
	border: none;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
	white-space: nowrap;
}
.pf-btn--primary {
	background: linear-gradient(135deg, var(--pf-pink), var(--pf-pink-dark));
	color: #fff;
	box-shadow: 0 8px 20px rgba(216, 27, 96, .28);
}
.pf-btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(216, 27, 96, .38); }
.pf-btn--ghost {
	background: #fff;
	color: var(--pf-pink-dark);
	border: 1.5px solid var(--pf-pink);
}
.pf-btn--ghost:hover { background: var(--pf-pink-soft); }

.pf-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border: 1.5px solid var(--pf-pink-soft);
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pf-pink-dark);
	background: #fff;
}
.pf-pill:hover { background: var(--pf-pink-soft); border-color: var(--pf-pink); }

/* 4. Header ------------------------------------------------------------- */
.pf-topbar {
	background: linear-gradient(90deg, var(--pf-pink-soft), #ffe9f0, var(--pf-pink-soft));
	font-size: 13px;
	color: var(--pf-pink-dark);
}
.pf-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 20px;
}
.pf-topbar__offer { font-weight: 600; }
.pf-topbar__cod { font-weight: 600; }

.pf-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: #fff;
	transition: box-shadow .2s ease;
}
.pf-header.is-stuck { box-shadow: 0 4px 20px rgba(0, 0, 0, .06); }

.pf-header__main {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 16px 20px;
}

/* Logo */
.pf-logo { display: inline-flex; align-items: center; gap: 10px; }
.pf-logo__mark { display: inline-flex; }
.pf-logo__emblem { display: block; filter: drop-shadow(0 4px 10px rgba(216, 27, 96, .28)); }
.pf-logo__img { display: block; height: 46px; width: auto; }
.pf-footer__brand .pf-logo__img { height: 46px; }
.pf-logo__text { display: flex; flex-direction: column; line-height: 1; }
.pf-logo__name {
	font-family: var(--pf-script);
	font-size: 30px;
	color: var(--pf-pink);
}
.pf-logo__tag {
	font-size: 10px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--pf-muted);
	margin-top: 4px;
}
.custom-logo { max-height: 56px; width: auto; }

/* Search */
.pf-header__search { flex: 1 1 auto; max-width: 560px; }
.pf-search {
	display: flex;
	align-items: center;
	background: #f7f7f9;
	border: 1.5px solid var(--pf-line);
	border-radius: 30px;
	overflow: hidden;
}
.pf-search:focus-within { border-color: var(--pf-pink); background: #fff; }
.pf-search__field {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 18px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
	color: var(--pf-ink);
}
.pf-search__submit {
	border: none;
	background: transparent;
	padding: 0 16px;
	color: var(--pf-muted);
	cursor: pointer;
	display: flex;
	align-items: center;
}
.pf-search__submit:hover { color: var(--pf-pink); }

/* Actions */
.pf-header__actions { display: flex; align-items: center; gap: 22px; }
.pf-action {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	font-size: 11px;
	color: var(--pf-ink);
	position: relative;
}
.pf-action .pf-icon { width: 24px; height: 24px; color: var(--pf-ink); }
.pf-action:hover, .pf-action:hover .pf-icon { color: var(--pf-pink); }
.pf-action__label { font-weight: 500; }
.pf-cart-count {
	position: absolute;
	top: -6px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--pf-pink);
	color: #fff;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pf-nav-toggle {
	display: none;
	background: var(--pf-pink);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 8px;
	cursor: pointer;
}
.pf-nav-toggle .pf-icon { color: #fff; }

/* 5. Nav ---------------------------------------------------------------- */
.pf-nav { border-top: 1px solid var(--pf-line); border-bottom: 1px solid var(--pf-line); background: #fff; }
.pf-nav__inner { display: flex; align-items: center; gap: 8px; padding: 0 20px; }

.pf-nav__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--pf-pink), var(--pf-pink-dark));
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: 9px 18px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	margin: 10px 20px 10px 0;
}
.pf-nav__all .pf-icon { color: #fff; width: 18px; height: 18px; }

.pf-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.pf-menu li a {
	display: block;
	padding: 16px 14px;
	font-size: 14.5px;
	font-weight: 500;
	color: var(--pf-ink);
	position: relative;
}
.pf-menu li a::after {
	content: "";
	position: absolute;
	left: 14px; right: 14px; bottom: 10px;
	height: 2px;
	background: var(--pf-pink);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s ease;
}
.pf-menu li a:hover, .pf-menu li.current-menu-item a { color: var(--pf-pink); }
.pf-menu li a:hover::after, .pf-menu li.current-menu-item a::after { transform: scaleX(1); }
.pf-menu .sub-menu {
	display: none;
	position: absolute;
	background: #fff;
	box-shadow: var(--pf-shadow);
	border-radius: var(--pf-radius-sm);
	padding: 8px;
	min-width: 200px;
	list-style: none;
	z-index: 50;
}
.pf-menu li { position: relative; }
.pf-menu li:hover > .sub-menu { display: block; }
.pf-menu .sub-menu a { padding: 8px 12px; }

/* 6. Hero --------------------------------------------------------------- */
.pf-hero {
	background:
		radial-gradient(120% 120% at 75% 40%, rgba(255, 207, 122, .18), transparent 55%),
		linear-gradient(120deg, #f6d7c4 0%, #efc6ba 45%, #e9b7c2 100%);
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.pf-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: 30px;
	min-height: 440px;
	padding-top: 40px;
	padding-bottom: 56px;
}
.pf-hero__title { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; margin-bottom: 18px; }
.pf-hero__title-main { display: block; color: #2b2118; }
.pf-hero__title-accent { display: block; color: var(--pf-pink-dark); }
.pf-hero__subtitle { font-size: 17px; color: #4a3f39; max-width: 440px; margin-bottom: 22px; }

.pf-hero__features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0 0 26px;
	padding: 0;
}
.pf-hero__feature {
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, .55);
	backdrop-filter: blur(4px);
	border-radius: 12px;
	padding: 10px;
	font-size: 12px;
}
.pf-hero__feature .pf-icon { color: var(--pf-pink-dark); width: 20px; height: 20px; }
.pf-hero__feature strong { display: block; font-size: 12.5px; color: #2b2118; }
.pf-hero__feature em { font-style: normal; color: #6b5f57; font-size: 11px; }

.pf-hero__cta { font-size: 16px; }

/* Hero lamp figure */
.pf-hero__figure { display: flex; align-items: center; justify-content: center; }
.pf-hero__art { width: 100%; max-width: 470px; height: auto; filter: drop-shadow(0 22px 46px rgba(214, 120, 30, .35)); }
.pf-hero__lamp {
	position: relative;
	width: 340px;
	height: 320px;
	border-radius: 50% 50% 46% 46%;
	background:
		radial-gradient(60% 60% at 50% 45%, rgba(255, 214, 140, .95), rgba(245, 166, 35, .5) 60%, rgba(245, 166, 35, .05) 75%);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 30px 60px rgba(180, 90, 20, .35);
}
.pf-hero__lamp::after {
	content: "";
	position: absolute;
	bottom: -14px;
	width: 120px;
	height: 22px;
	background: #7a4b23;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, .25);
}
.pf-hero__lamp-heart { position: absolute; top: 40px; font-size: 44px; color: #b5651d; opacity: .35; }
.pf-hero__lamp-text {
	font-family: var(--pf-serif);
	font-style: italic;
	font-size: 26px;
	color: #6a3d12;
	line-height: 1.3;
}
.pf-hero__lamp-text small { font-size: 15px; }

.pf-hero__dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}
.pf-hero__dots span {
	width: 9px; height: 9px; border-radius: 50%;
	background: rgba(216, 27, 96, .35);
	cursor: pointer;
}
.pf-hero__dots span.is-active { background: var(--pf-pink-dark); width: 22px; border-radius: 6px; }

/* 7. Section scaffold --------------------------------------------------- */
.pf-section { padding: 54px 0; }
.pf-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 30px;
}
.pf-section__head--center { flex-direction: column; text-align: center; position: relative; }
.pf-section__head--center .pf-pill { position: absolute; right: 0; top: 4px; }
.pf-section__title { font-size: clamp(24px, 3vw, 30px); position: relative; padding-bottom: 12px; }
.pf-section__head--center .pf-section__title::after,
.pf-section__title::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 56px; height: 3px;
	background: var(--pf-pink);
	border-radius: 3px;
}
.pf-section__head--center .pf-section__title::after { left: 50%; transform: translateX(-50%); }
.pf-section__head--center .pf-section__title { display: inline-flex; flex-direction: column; align-items: center; }
.pf-section__head--center .pf-section__title::before {
	content: "❤";
	color: var(--pf-pink);
	font-size: 14px;
	order: 2;
	margin-top: 6px;
}

/* 8. Categories --------------------------------------------------------- */
.pf-categories__grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 16px;
}
.pf-cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 22px 10px;
	background: var(--pf-pink-tint);
	border: 1px solid var(--pf-pink-soft);
	border-radius: var(--pf-radius);
	text-align: center;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.pf-cat-card:hover { transform: translateY(-4px); box-shadow: var(--pf-shadow-hover); background: #fff; }
.pf-cat-card__icon {
	width: 56px; height: 56px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: var(--pf-pink);
	box-shadow: inset 0 0 0 1px var(--pf-pink-soft);
}
.pf-cat-card__icon .pf-icon { width: 28px; height: 28px; }
.pf-cat-card__label { font-size: 13px; font-weight: 600; color: var(--pf-ink); }

/* 9. Featured ----------------------------------------------------------- */
.pf-featured__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
}
.pf-feature-card {
	position: relative;
	border-radius: var(--pf-radius);
	overflow: hidden;
	background: #1c1410;
	color: #fff;
	min-height: 300px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--pf-shadow);
	transition: transform .18s ease, box-shadow .2s ease;
}
.pf-feature-card:hover { transform: translateY(-4px); box-shadow: var(--pf-shadow-hover); color: #fff; }
.pf-feature-card__media {
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 70% at 50% 40%, rgba(255, 207, 122, .55), rgba(40, 24, 12, .9));
	display: flex;
	align-items: center;
	justify-content: center;
}
.pf-feature-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pf-feature-card__media .pf-icon { width: 64px; height: 64px; color: var(--pf-amber-glow); }
.pf-feature-card__body {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 16px;
	background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.pf-feature-card__title { font-size: 16px; font-weight: 700; }
.pf-feature-card__sub { font-size: 12px; opacity: .85; }
.pf-feature-card__cta { font-size: 12.5px; font-weight: 600; color: var(--pf-amber-glow); margin-top: 4px; }

/* 10. Customize steps --------------------------------------------------- */
.pf-steps {
	background: linear-gradient(120deg, var(--pf-pink-soft), #ffeef4);
	border-radius: 0;
}
.pf-steps__inner {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 40px;
	align-items: center;
	background: transparent;
}
.pf-steps__eyebrow { font-size: 13px; font-weight: 600; color: var(--pf-pink-dark); text-transform: none; }
.pf-steps__title { font-size: clamp(26px, 3.4vw, 34px); margin: 8px 0 12px; }
.pf-steps__text { color: #6b5560; margin-bottom: 22px; max-width: 340px; }

.pf-steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
}
.pf-step {
	position: relative;
	background: #fff;
	border-radius: var(--pf-radius);
	padding: 24px 16px;
	text-align: center;
	box-shadow: var(--pf-shadow);
}
.pf-step__icon {
	width: 66px; height: 66px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var(--pf-pink-soft);
	color: var(--pf-pink-dark);
	display: flex; align-items: center; justify-content: center;
}
.pf-step__icon .pf-icon { width: 30px; height: 30px; }
.pf-step__title { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.pf-step__desc { display: block; font-size: 12.5px; color: var(--pf-muted); }
.pf-step__arrow {
	position: absolute;
	right: -14px; top: 50%;
	transform: translateY(-50%);
	color: var(--pf-pink);
	font-size: 22px;
	z-index: 2;
}

/* 11. Products / bestsellers ------------------------------------------- */
.pf-products {
	display: grid;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pf-products--6 { grid-template-columns: repeat(6, 1fr); }

.pf-product {
	background: #fff;
	border: 1px solid var(--pf-line);
	border-radius: var(--pf-radius);
	padding: 12px;
	text-align: center;
	position: relative;
	transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
	display: flex;
	flex-direction: column;
}
.pf-product:hover { transform: translateY(-4px); box-shadow: var(--pf-shadow-hover); border-color: var(--pf-pink-soft); }

.pf-product__media {
	position: relative;
	border-radius: var(--pf-radius-sm);
	overflow: hidden;
	background: linear-gradient(160deg, #2a1c12, #4a2f18);
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}
.pf-product__media img { width: 100%; height: 100%; object-fit: cover; }
.pf-product--placeholder .pf-product__media .pf-icon { width: 56px; height: 56px; color: var(--pf-amber-glow); }

.pf-product .pf-product__title,
.pf-product .woocommerce-loop-product__title {
	font-size: 14.5px;
	font-weight: 600;
	margin: 0 0 6px;
	color: var(--pf-ink);
	padding: 0;
}
.pf-product__price,
.pf-product .price {
	font-size: 16px;
	font-weight: 700;
	color: var(--pf-pink-dark);
	margin-bottom: 6px;
	display: block;
}
.pf-product .price del { color: var(--pf-muted); font-weight: 400; font-size: 13px; margin-right: 6px; }
.pf-product .price ins { text-decoration: none; }

.pf-product__rating,
.pf-product .star-rating {
	margin: 0 auto 4px;
	font-size: 13px;
}
.pf-stars { color: var(--pf-amber); letter-spacing: 1px; }
.pf-rating-count { color: var(--pf-muted); font-size: 12px; margin-left: 4px; }

.pf-badge {
	position: absolute;
	top: 10px; left: 10px;
	z-index: 3;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	color: #fff;
}
.pf-badge--sale { background: var(--pf-pink); }
.pf-badge--best { background: var(--pf-amber); }

.pf-product .button,
.pf-product .added_to_cart {
	margin-top: auto;
	display: inline-block;
	background: var(--pf-pink-soft);
	color: var(--pf-pink-dark);
	border: none;
	border-radius: 30px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 600;
}
.pf-product .button:hover { background: var(--pf-pink); color: #fff; }

/* 12. Trust ------------------------------------------------------------- */
.pf-trust {
	background: var(--pf-pink-tint);
	padding: 26px 0;
}
.pf-trust__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}
.pf-trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.pf-trust__icon {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: #fff;
	color: var(--pf-pink);
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--pf-shadow);
}
.pf-trust__body strong { display: block; font-size: 13.5px; }
.pf-trust__body em { font-style: normal; font-size: 12px; color: var(--pf-muted); }

/* 13. Instagram --------------------------------------------------------- */
.pf-instagram__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
.pf-instagram__cell {
	aspect-ratio: 1 / 1;
	border-radius: var(--pf-radius-sm);
	overflow: hidden;
	background: linear-gradient(160deg, #3a2416, #5a381d);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.pf-instagram__cell img { width: 100%; height: 100%; object-fit: cover; }
.pf-instagram__cell .pf-icon { width: 40px; height: 40px; color: var(--pf-amber-glow); opacity: .6; }
.pf-instagram__cell::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(236, 64, 122, 0);
	transition: background .2s ease;
}
.pf-instagram__cell:hover::after { background: rgba(236, 64, 122, .25); }

/* 14. Newsletter -------------------------------------------------------- */
.pf-newsletter {
	background: linear-gradient(120deg, var(--pf-pink-soft), #ffe4ee);
	padding: 30px 0;
}
.pf-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.pf-newsletter__intro { display: flex; align-items: center; gap: 14px; }
.pf-newsletter__icon {
	width: 48px; height: 48px;
	background: var(--pf-pink);
	color: #fff;
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px;
}
.pf-newsletter__title { font-size: 18px; margin: 0; }
.pf-newsletter__text { margin: 2px 0 0; font-size: 13.5px; color: #6b5560; }

.pf-newsletter__form {
	display: flex;
	gap: 8px;
	background: #fff;
	padding: 6px;
	border-radius: 40px;
	box-shadow: var(--pf-shadow);
	flex: 1 1 320px;
	max-width: 460px;
}
.pf-newsletter__field {
	flex: 1;
	border: none;
	background: transparent;
	padding: 10px 16px;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}
.pf-newsletter__notice { width: 100%; text-align: center; font-size: 13px; margin: 6px 0 0; }
.pf-newsletter__notice.is-success { color: #2e7d32; }
.pf-newsletter__notice.is-error { color: #c62828; }

.pf-newsletter__social { display: flex; align-items: center; gap: 10px; }
.pf-newsletter__follow { font-size: 13px; font-weight: 600; }

.pf-social { display: flex; gap: 8px; }
.pf-social__link {
	width: 34px; height: 34px;
	border-radius: 50%;
	background: var(--pf-pink);
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 13px; font-weight: 700;
}
.pf-social__link:hover { background: var(--pf-pink-dark); color: #fff; transform: translateY(-2px); }
.pf-social--light .pf-social__link { background: #fff; color: var(--pf-pink); }

/* 15. Footer ------------------------------------------------------------ */
.pf-footer { background: #fff; border-top: 1px solid var(--pf-line); padding-top: 48px; }
.pf-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
	gap: 28px;
	padding-bottom: 36px;
}
.pf-footer__about { color: var(--pf-muted); font-size: 13.5px; margin-top: 12px; max-width: 260px; }
.pf-footer__title { font-size: 15px; margin-bottom: 14px; color: var(--pf-ink); }
.pf-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pf-footer__menu a { color: var(--pf-muted); font-size: 13.5px; }
.pf-footer__menu a:hover { color: var(--pf-pink); }

.pf-pay { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.pf-pay__chip {
	border: 1px solid var(--pf-line);
	border-radius: 6px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 700;
	color: #555;
	background: #fafafa;
}
.pf-pay__chip--upi { color: #fff; background: linear-gradient(135deg, #ec407a, #d81b60); border-color: transparent; }

.pf-footer__bottom {
	border-top: 1px solid var(--pf-line);
	padding: 18px 0;
	text-align: center;
	font-size: 13px;
	color: var(--pf-muted);
}

/* 16. WooCommerce ------------------------------------------------------- */
.pf-shop { display: flex; gap: 30px; padding: 40px 20px; align-items: flex-start; }
.pf-shop__main { flex: 1 1 auto; min-width: 0; }
.pf-shop__sidebar { flex: 0 0 260px; }
.no-shop-sidebar .pf-shop__sidebar { display: none; }

.woocommerce .pf-shop ul.products,
.woocommerce-page .pf-shop ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0;
}
.woocommerce ul.products li.product,
.woocommerce ul.products li.pf-product { width: auto; margin: 0; float: none; }

.woocommerce .woocommerce-result-count { color: var(--pf-muted); font-size: 14px; }
.woocommerce .woocommerce-ordering select {
	border: 1.5px solid var(--pf-line);
	border-radius: 30px;
	padding: 8px 14px;
	font-family: inherit;
}

.woocommerce-breadcrumb {
	font-size: 13px;
	color: var(--pf-muted);
	margin-bottom: 18px;
}
.woocommerce-breadcrumb a { color: var(--pf-pink-dark); }

.woocommerce span.onsale {
	background: var(--pf-pink);
	color: #fff;
	border-radius: 20px;
	min-height: auto;
	min-width: auto;
	padding: 4px 12px;
	font-weight: 700;
}

/* Single product */
.single-product div.product { padding: 34px 0; }
.single-product .product_title { font-size: 28px; }
.single-product .price { color: var(--pf-pink-dark); }
.single-product .single_add_to_cart_button.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: linear-gradient(135deg, var(--pf-pink), var(--pf-pink-dark));
	color: #fff;
	border-radius: 40px;
	padding: 12px 26px;
	font-weight: 600;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover { background: var(--pf-pink-dark); }

.woocommerce .quantity input.qty {
	border: 1.5px solid var(--pf-line);
	border-radius: 8px;
	padding: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom-color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--pf-pink-dark); }

.pf-single-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 24px 0;
	padding: 18px;
	background: var(--pf-pink-tint);
	border-radius: var(--pf-radius);
}
.pf-single-trust li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #555; }
.pf-single-trust .pf-icon { color: var(--pf-pink); width: 20px; height: 20px; }

/* Cart / checkout buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--pf-pink-soft);
	color: var(--pf-pink-dark);
	border-radius: 40px;
	padding: 10px 22px;
	font-weight: 600;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { background: var(--pf-pink); color: #fff; }

.woocommerce-message,
.woocommerce-info { border-top-color: var(--pf-pink); }
.woocommerce-message::before,
.woocommerce-info::before { color: var(--pf-pink); }

/* Widgets */
.widget-area .widget { margin-bottom: 28px; }
.widget-title { font-size: 16px; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--pf-pink-soft); }

/* 17. Blog / pages ------------------------------------------------------ */
.pf-content-area {
	display: flex;
	gap: 34px;
	padding: 44px 20px;
	align-items: flex-start;
}
.pf-content-area .pf-main { flex: 1 1 auto; min-width: 0; }
.pf-content-area .pf-sidebar { flex: 0 0 300px; }

.pf-page-header { margin-bottom: 26px; }
.pf-page-title { font-size: 30px; }

.pf-posts { display: grid; gap: 26px; }
.pf-post-card {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 20px;
	background: #fff;
	border: 1px solid var(--pf-line);
	border-radius: var(--pf-radius);
	overflow: hidden;
}
.pf-post-card__media img { height: 100%; object-fit: cover; }
.pf-post-card__body { padding: 18px 18px 18px 0; }
.pf-post-card__meta { font-size: 12.5px; color: var(--pf-muted); }
.pf-post-card__title { font-size: 20px; margin: 6px 0 10px; }
.pf-post-card__excerpt { color: #555; font-size: 14.5px; margin-bottom: 14px; }

.pf-entry__thumb { border-radius: var(--pf-radius); overflow: hidden; margin-bottom: 22px; }
.pf-entry__content { font-size: 16px; }
.pf-entry__content p { margin: 0 0 1.2em; }

.pf-no-results { text-align: center; padding: 60px 20px; }
.pf-404__emoji { font-size: 64px; }
.pf-404__actions { display: flex; gap: 12px; justify-content: center; margin: 20px 0; flex-wrap: wrap; }

.pagination, .woocommerce-pagination { margin-top: 34px; text-align: center; }
.page-numbers {
	display: inline-flex;
	list-style: none;
	gap: 6px;
	padding: 0;
}
.page-numbers li .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--pf-line);
	color: var(--pf-ink);
}
.page-numbers li .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--pf-pink);
	color: #fff;
	border-color: var(--pf-pink);
}

/* 18. Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
	.pf-categories__grid { grid-template-columns: repeat(4, 1fr); }
	.pf-featured__grid { grid-template-columns: repeat(3, 1fr); }
	.pf-products--6 { grid-template-columns: repeat(3, 1fr); }
	.pf-trust__grid { grid-template-columns: repeat(3, 1fr); }
	.pf-instagram__grid { grid-template-columns: repeat(3, 1fr); }
	.woocommerce .pf-shop ul.products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
	.pf-header__main { flex-wrap: wrap; }
	.pf-header__search { order: 3; flex-basis: 100%; max-width: none; }
	.pf-nav-toggle { display: inline-flex; margin-left: auto; }
	.pf-nav__inner { flex-direction: column; align-items: stretch; }
	.pf-nav__all { display: none; }
	.pf-nav { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
	.pf-nav.is-open { max-height: 640px; }
	.pf-menu { flex-direction: column; align-items: stretch; }
	.pf-menu li a { padding: 12px 4px; border-bottom: 1px solid var(--pf-line); }
	.pf-menu li a::after { display: none; }

	.pf-hero__inner { grid-template-columns: 1fr; text-align: center; }
	.pf-hero__figure { order: -1; }
	.pf-hero__features { max-width: 480px; margin-inline: auto; }
	.pf-hero__subtitle { margin-inline: auto; }

	.pf-steps__inner { grid-template-columns: 1fr; }
	.pf-step__arrow { display: none; }

	.pf-footer__grid { grid-template-columns: repeat(2, 1fr); }
	.pf-content-area, .pf-shop { flex-direction: column; }
	.pf-content-area .pf-sidebar, .pf-shop__sidebar { flex-basis: auto; width: 100%; }
	.pf-post-card { grid-template-columns: 1fr; }
	.pf-post-card__body { padding: 18px; }
}

@media (max-width: 640px) {
	.pf-topbar__inner { flex-direction: column; gap: 4px; font-size: 12px; text-align: center; }
	.pf-header__actions { gap: 16px; }
	.pf-action__label { display: none; }
	.pf-categories__grid { grid-template-columns: repeat(2, 1fr); }
	.pf-featured__grid { grid-template-columns: repeat(2, 1fr); }
	.pf-products--6 { grid-template-columns: repeat(2, 1fr); }
	.pf-trust__grid { grid-template-columns: repeat(2, 1fr); }
	.pf-instagram__grid { grid-template-columns: repeat(3, 1fr); }
	.pf-hero__features { grid-template-columns: repeat(2, 1fr); }
	.woocommerce .pf-shop ul.products { grid-template-columns: repeat(2, 1fr); }
	.pf-footer__grid { grid-template-columns: 1fr; }
	.pf-newsletter__inner { flex-direction: column; text-align: center; }
	.pf-newsletter__intro { flex-direction: column; }
	.pf-section__head { flex-direction: column; }
	.pf-section__head--center .pf-pill { position: static; margin-top: 10px; }
}

@media (max-width: 400px) {
	.pf-hero__lamp { width: 260px; height: 250px; }
}

/* 19. Page templates & forms (Contact / Bulk / Customize / Track) --------- */
.pf-content-area--narrow { max-width: 820px; display: block; }
.pf-content-area--stack { display: block; }
.pf-content-area--stack .pf-main,
.pf-content-area--narrow .pf-main { width: 100%; }

.pf-page-header--center { text-align: center; max-width: 720px; margin: 0 auto 34px; }
.pf-page-lead { color: var(--pf-muted); font-size: 16px; margin-top: 8px; }

.pf-card {
	background: #fff;
	border: 1px solid var(--pf-line);
	border-radius: var(--pf-radius);
	box-shadow: var(--pf-shadow);
}
.pf-card--pad { padding: 28px; }
.pf-prose p { margin: 0 0 1em; }

.pf-form-title { font-size: 20px; margin-bottom: 6px; }

/* Enquiry form */
.pf-form { display: grid; gap: 16px; margin-top: 14px; }
.pf-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pf-field { display: grid; gap: 6px; }
.pf-field__label { font-size: 13px; font-weight: 600; color: var(--pf-ink); }
.pf-field input,
.pf-field textarea {
	width: 100%;
	border: 1.5px solid var(--pf-line);
	border-radius: 10px;
	padding: 12px 14px;
	font-family: inherit;
	font-size: 14.5px;
	color: var(--pf-ink);
	background: #fff;
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.pf-field input:focus,
.pf-field textarea:focus { border-color: var(--pf-pink); box-shadow: 0 0 0 3px var(--pf-pink-soft); }
.pf-form .pf-btn { justify-self: start; }

/* Contact layout */
.pf-contact { display: grid; grid-template-columns: 320px 1fr; gap: 26px; align-items: start; }
.pf-contact__info { display: grid; gap: 18px; }
.pf-contact__item { display: flex; gap: 12px; align-items: flex-start; }
.pf-contact__ico {
	width: 42px; height: 42px; flex: 0 0 auto;
	display: flex; align-items: center; justify-content: center;
	background: var(--pf-pink-soft); color: var(--pf-pink-dark);
	border-radius: 50%; font-size: 18px;
}
.pf-contact__ico .pf-icon { width: 20px; height: 20px; }
.pf-contact__item strong { display: block; font-size: 14px; }
.pf-contact__item a, .pf-contact__item span { font-size: 14px; color: var(--pf-muted); }
.pf-contact__item a:hover { color: var(--pf-pink); }
.pf-contact__intro { margin-bottom: 14px; }

/* Perks (bulk page) */
.pf-perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.pf-perk {
	background: var(--pf-pink-tint);
	border: 1px solid var(--pf-pink-soft);
	border-radius: var(--pf-radius);
	padding: 20px 16px; text-align: center;
	display: grid; gap: 6px; justify-items: center;
}
.pf-perk__ico {
	width: 52px; height: 52px; border-radius: 50%;
	background: #fff; color: var(--pf-pink);
	display: flex; align-items: center; justify-content: center;
	box-shadow: var(--pf-shadow);
}
.pf-perk strong { font-size: 14.5px; }
.pf-perk span { font-size: 12.5px; color: var(--pf-muted); }

/* Steps on the Customize page (outside the pink band) */
.pf-steps__list--page { margin: 0 0 30px; }

/* CTA band */
.pf-cta-band {
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
	margin-top: 26px; padding: 22px 26px;
	background: linear-gradient(120deg, var(--pf-pink-soft), #ffe4ee);
	border-radius: var(--pf-radius);
	font-weight: 600;
}
.pf-help-note { text-align: center; color: var(--pf-muted); margin-top: 20px; }

@media (max-width: 860px) {
	.pf-contact { grid-template-columns: 1fr; }
	.pf-perks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.pf-form__row { grid-template-columns: 1fr; }
	.pf-perks { grid-template-columns: 1fr; }
	.pf-card--pad { padding: 20px; }
	.pf-cta-band { flex-direction: column; text-align: center; }
}

/* Logo image sizing on small screens */
@media (max-width: 640px) {
	.pf-logo__img { height: 40px; }
	.pf-footer__brand .pf-logo__img { height: 42px; }
}
