/*
 * Pinspired Main Stylesheet
 */

:root {
	/* These are typically overridden in head by Customizer but provide fallbacks */
	--pin-primary: #d85d77;
	--pin-primary-dark: #b54762;
	--pin-ink: #292525;
	--pin-muted: #746c68;
	--pin-blush: #fbe9ea;
	--pin-cream: #fffaf6;
	--pin-sage: #e9f1e5;
	--pin-sage-deep: #58674f;
	--pin-lavender: #f0ebf8;
	--pin-white: #ffffff;
	--pin-border: rgba(41,37,37,0.06);
	--pin-border-light: rgba(255,255,255,.12);
	--pin-shadow: 0 18px 55px rgba(58,44,41,.10);
	--pin-shadow-hover: 0 26px 65px rgba(58,44,41,.16);
	--pin-radius: 22px;
	--pin-max: 1240px;
	--pin-footer-border-width: 1px;
	--pin-footer-border-color: rgba(41,37,37,0.06);
	--pin-footer-bg: #231c1e;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	background: var(--pin-cream);
	color: var(--pin-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}
.pin-skip-link {
	position: fixed; left: 16px; top: 16px; z-index: 9999;
	padding: 10px 14px; border-radius: 10px; background: var(--pin-ink);
	color: #fff; text-decoration: none;
	transform: translateY(-150%); transition: transform .2s ease;
}
.pin-skip-link:focus { transform: translateY(0); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }

/* Enforce Global Typography on Content */
.pin-entry-content h1, .wp-block-heading h1 { font-size: var(--pin-h1-size, 42px); font-family: var(--pin-h1-font, inherit); color: var(--pin-h1-color, inherit); margin-top: 1.5em; margin-bottom: 0.5em; }
.pin-entry-content h2, .wp-block-heading h2 { font-size: var(--pin-h2-size, 32px); font-family: var(--pin-h2-font, inherit); color: var(--pin-h2-color, inherit); margin-top: 1.5em; margin-bottom: 0.5em; }
.pin-entry-content h3, .wp-block-heading h3 { font-size: var(--pin-h3-size, 26px); font-family: var(--pin-h3-font, inherit); color: var(--pin-h3-color, inherit); margin-top: 1.5em; margin-bottom: 0.5em; }
.pin-entry-content h4, .wp-block-heading h4 { font-size: var(--pin-h4-size, 20px); font-family: var(--pin-h4-font, inherit); color: var(--pin-h4-color, inherit); margin-top: 1.5em; margin-bottom: 0.5em; }
.pin-entry-content h5, .wp-block-heading h5 { font-size: var(--pin-h5-size, 18px); font-family: var(--pin-h5-font, inherit); color: var(--pin-h5-color, inherit); margin-top: 1.5em; margin-bottom: 0.5em; }
.pin-entry-content h6, .wp-block-heading h6 { font-size: var(--pin-h6-size, 16px); font-family: var(--pin-h6-font, inherit); color: var(--pin-h6-color, inherit); margin-top: 1.5em; margin-bottom: 0.5em; }
h1.wp-block-heading { font-size: var(--pin-h1-size, 42px); font-family: var(--pin-h1-font, inherit); color: var(--pin-h1-color, inherit); }
h2.wp-block-heading { font-size: var(--pin-h2-size, 32px); font-family: var(--pin-h2-font, inherit); color: var(--pin-h2-color, inherit); }
h3.wp-block-heading { font-size: var(--pin-h3-size, 26px); font-family: var(--pin-h3-font, inherit); color: var(--pin-h3-color, inherit); }
h4.wp-block-heading { font-size: var(--pin-h4-size, 20px); font-family: var(--pin-h4-font, inherit); color: var(--pin-h4-color, inherit); }
h5.wp-block-heading { font-size: var(--pin-h5-size, 18px); font-family: var(--pin-h5-font, inherit); color: var(--pin-h5-color, inherit); }
h6.wp-block-heading { font-size: var(--pin-h6-size, 16px); font-family: var(--pin-h6-font, inherit); color: var(--pin-h6-color, inherit); }
.pin-container { width: min(calc(100% - 40px), var(--pin-max)); margin-inline: auto; }

/* SVG Utilities */
.lucide { width: 1em; height: 1em; }

/* Header */
.pin-sticky-header-enabled .pin-header {
	position: sticky;
	top: 0;
}
.pin-header {
	position: relative; z-index: 100;
	background: var(--pin-header-bg, rgba(255,250,246,.93));
	border-bottom: 1px solid var(--pin-border);
	backdrop-filter: blur(18px);
}
.pin-header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.pin-brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; color: var(--pin-ink); }
.pin-brand__mark {
	width: 42px; height: 42px; display: grid; place-items: center;
	border-radius: 50%; background: linear-gradient(145deg,#e67a91,#c94e68);
	box-shadow: 0 8px 20px rgba(216,93,119,.24); color: #fff; font-family: inherit; font-size: 19px; font-weight: 700;
}
.pin-brand__link { display: inline-flex; align-items: center; gap: 11px; color: inherit; text-decoration: none; }
.pin-brand-logo-wrap { display: inline-flex; flex-direction: column; align-items: flex-start; }
.pin-brand-logo-wrap .custom-logo { max-height: 55px; width: auto; display: block; }
.pin-brand__name { display: block; font-family: inherit; font-size: 25px; font-weight: 600; letter-spacing: -.03em; line-height: 1; }
.pin-brand__tag { display: block; margin-top: 4px; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--pin-muted); }

/* Nav */
.pin-primary-nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.pin-primary-nav > ul { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 3px; }
.pin-primary-nav li { position: relative; }
.pin-primary-nav a {
	display: inline-flex; align-items: center; gap: 6px; min-height: 40px; padding: 9px 13px;
	border-radius: 999px; color: #4b4542; font-size: 13px; font-weight: 700;
	transition: color .2s ease,background .2s ease,transform .2s ease;
}
.pin-primary-nav a:hover,
.pin-primary-nav a:focus-visible,
.pin-primary-nav .current-menu-item > a,
.pin-primary-nav .current_page_item > a,
.pin-primary-nav .current-menu-ancestor > a,
.pin-primary-nav .current-category-ancestor > a { background: var(--pin-blush); color: var(--pin-primary-dark); }
.pin-primary-nav .menu-item-has-children > a { padding-right: 6px; }

/* Submenu Dropdowns */
.pin-primary-nav .sub-menu {
	position: absolute; top: 100%; left: 0; z-index: 30;
	width: max-content; min-width: 220px; max-width: min(320px,calc(100vw - 32px));
	padding: 7px; margin: 0; list-style: none; background: rgba(255,255,255,.98);
	border: 1px solid var(--pin-border); border-radius: 18px; box-shadow: var(--pin-shadow);
	opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(6px);
	transition: opacity .18s ease,visibility .18s ease,transform .18s ease;
}
.pin-primary-nav .sub-menu::before {
	content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 15px;
}
.pin-primary-nav .menu-item-has-children:hover > .sub-menu,
.pin-primary-nav .menu-item-has-children:focus-within > .sub-menu,
.pin-primary-nav .menu-item-has-children.is-open > .sub-menu {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.pin-primary-nav .sub-menu li { width: 100%; }
.pin-primary-nav .sub-menu a { width: 100%; min-height: 42px; border-radius: 12px; justify-content: space-between; }

/* Nav Toggles & Beautiful Dropdown Icons */
.pin-nav-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 24px; height: 24px; margin-left: -4px; padding: 0; border: 0; border-radius: 50%;
	background: transparent; color: inherit; cursor: pointer;
	transition: color .2s ease, background .2s ease;
}
.pin-nav-toggle:hover {
	background: rgba(216,93,119,.12); color: var(--pin-primary-dark);
}
.pin-dropdown-chevron {
	display: block; transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.pin-primary-nav .menu-item-has-children:hover > .pin-nav-toggle .pin-dropdown-chevron,
.pin-primary-nav .menu-item-has-children.is-open > .pin-nav-toggle .pin-dropdown-chevron,
.pin-nav-toggle[aria-expanded="true"] .pin-dropdown-chevron {
	transform: rotate(180deg);
}
.pin-primary-nav .current-menu-item > .pin-nav-toggle,
.pin-primary-nav .current_page_item > .pin-nav-toggle,
.pin-primary-nav .current-menu-ancestor > .pin-nav-toggle,
.pin-primary-nav .current-category-ancestor > .pin-nav-toggle {
	color: var(--pin-primary-dark);
}

/* Header Search Button & Dropdown */
.pin-header-search { position: relative; display: inline-flex; align-items: center; }
.pin-header-search__toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	background: #ffffff; border: 1px solid var(--pin-border);
	color: var(--pin-ink); cursor: pointer;
	box-shadow: 0 4px 12px rgba(48,43,42,.05);
	transition: all .2s ease;
}
.pin-header-search__toggle:hover,
.pin-header-search.is-active .pin-header-search__toggle {
	background: var(--pin-blush); border-color: var(--pin-primary); color: var(--pin-primary-dark); transform: translateY(-1px);
}
.pin-icon-close { display: none; }
.pin-icon-search { display: block; }
.pin-header-search.is-active .pin-icon-search { display: none; }
.pin-header-search.is-active .pin-icon-close { display: block; }

.pin-header-search__dropdown {
	position: absolute; top: calc(100% + 12px); right: 0; z-index: 120;
	width: min(350px, calc(100vw - 32px)); padding: 14px;
	background: rgba(255,255,255,.98); border: 1px solid var(--pin-border);
	border-radius: 20px; box-shadow: 0 16px 42px rgba(48,43,42,.12);
	backdrop-filter: blur(14px);
	opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.pin-header-search.is-active .pin-header-search__dropdown {
	opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

/* Universal Search Form */
.pin-search-form__inner { position: relative; width: 100%; display: flex; align-items: center; }
.pin-search-form__input {
	width: 100%; height: 46px; padding: 0 46px 0 18px;
	border: 1px solid var(--pin-border); border-radius: 999px;
	background: var(--pin-cream, #fffaf6); color: var(--pin-ink); font-size: 14px; font-weight: 500;
	outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
}
.pin-search-form__input:focus {
	border-color: var(--pin-primary); background: #ffffff; box-shadow: 0 0 0 3px rgba(216,93,119,.15);
}
.pin-search-form__submit {
	position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
	width: 36px; height: 36px; border-radius: 50%; border: 0;
	background: var(--pin-primary); color: #ffffff;
	display: grid; place-items: center; cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.pin-search-form__submit:hover {
	background: var(--pin-primary-dark); transform: translateY(-50%) scale(1.05);
}

/* Mobile Menu Button */
.pin-menu-button {
	display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%;
	background: #fff; box-shadow: 0 8px 20px rgba(48,43,42,.10); color: var(--pin-ink); cursor: pointer;
}
.pin-menu-button__icon,
.pin-menu-button__icon::before,
.pin-menu-button__icon::after {
	display: block; width: 18px; height: 2px; margin-inline: auto; border-radius: 3px; background: currentColor; transition: transform .2s ease;
}
.pin-menu-button__icon { position: relative; }
.pin-menu-button__icon::before, .pin-menu-button__icon::after { content: ""; position: absolute; left: 0; }
.pin-menu-button__icon::before { top: -6px; }
.pin-menu-button__icon::after { top: 6px; }
.pin-menu-button[aria-expanded="true"] .pin-menu-button__icon { background: transparent; }
.pin-menu-button[aria-expanded="true"] .pin-menu-button__icon::before { top: 0; transform: rotate(45deg); }
.pin-menu-button[aria-expanded="true"] .pin-menu-button__icon::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.pin-hero {
	position: relative; isolation: isolate; overflow: hidden; padding: 42px 0 58px;
	background: linear-gradient(135deg, var(--pin-hero-bg-left, #eef5eb) 0%, var(--pin-hero-bg-right, #fbe9eb) 100%);
}
.pin-hero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,1.04fr); align-items: center; gap: 32px; min-height: 630px; }
.pin-hero__copy { padding-left: 14px; }
.pin-eyebrow {
	display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px;
	border: 1px solid rgba(216,93,119,.18); border-radius: 999px; background: rgba(255,255,255,.65);
	color: var(--pin-primary-dark); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase;
}
.pin-eyebrow::before { content: "♡"; font-size: 15px; }
.pin-hero__title { max-width: 700px; margin: 20px 0 18px; font-family: inherit; font-size: clamp(40px,6.5vw,76px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.pin-hero__title em { color: var(--pin-primary-dark); font-style: italic; }
.pin-hero__desc { max-width: 570px; margin: 0; color: var(--pin-muted); font-size: 17px; line-height: 1.72; }

.pin-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pin-button {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 11px 20px;
	border-radius: 999px; font-size: 13px; font-weight: 800; transition: transform .2s ease,background .2s ease,box-shadow .2s ease,color .2s ease;
}
.pin-button--primary { background: var(--pin-hero-btn1-bg, var(--pin-primary)); color: var(--pin-hero-btn1-color, #fff); box-shadow: 0 13px 28px rgba(216,93,119,.22); }
.pin-button--primary:hover { background: var(--pin-hero-btn1-bg-hover, var(--pin-primary-dark)); color: var(--pin-hero-btn1-color-hover, #fff); transform: translateY(-2px); }
.pin-button--soft { background: var(--pin-hero-btn2-bg, rgba(255,255,255,.82)); border: 1px solid var(--pin-border); color: var(--pin-hero-btn2-color, var(--pin-ink)); }
.pin-button--soft:hover { background: var(--pin-hero-btn2-bg-hover, rgba(255,255,255,.9)); color: var(--pin-hero-btn2-color-hover, var(--pin-ink)); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(48,43,42,.08); }

.pin-hero__notes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pin-note { padding: 8px 11px; border-radius: 999px; font-size: 10px; font-weight: 800; background: rgba(229,238,222,.76); color: var(--pin-sage-deep); }
.pin-note:nth-child(2) { background: rgba(247,238,213,.78); color: #725f3f; }
.pin-note:nth-child(3) { background: rgba(250,223,228,.86); color: var(--pin-primary-dark); }

.pin-hero__visual { display: grid; place-items: center; min-height: 630px; position: relative; }
.pin-hero__frame {
	position: relative; width: min(100%,650px); height: 610px; border-radius: 42px; overflow: hidden;
	box-shadow: 0 26px 76px rgba(76,51,48,.15);
}
.pin-hero__image {
	position: absolute; left: 50%; bottom: 0; width: 100%; height: 100%; object-fit: cover;
	transform: translateX(-50%);
}
.pin-floating {
	position: absolute; z-index: 2; max-width: 190px; padding: 12px 15px;
	border: 1px solid rgba(255,255,255,.72); border-radius: 16px; background: rgba(255,255,255,.82);
	box-shadow: 0 12px 28px rgba(71,52,48,.11); backdrop-filter: blur(8px);
	font-size: 10px; font-weight: 700; line-height: 1.4;
}
.pin-floating strong { display: block; margin-bottom: 3px; font-family: inherit; font-size: 17px; }
.pin-floating--top { top: 26px; left: 24px; }
.pin-floating--bottom { right: 24px; bottom: 30px; }

/* Sections */
.pin-section { padding: 10px 0; }
.pin-section--white { background: #fff; }
.pin-section--pink { background: #fff2ef; }
.pin-section--sage { background: #f1f5ed; }
.pin-section--lavender { background: #f5f0fa; }
.pin-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.pin-section-kicker { display: block; margin-bottom: 8px; color: var(--pin-sec-kicker-color, var(--pin-primary-dark)); font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.pin-section-title {
	margin: 0;
	color: var(--pin-sec-headline-color, inherit);
	font-family: inherit;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -.04em;
	display: inline-flex;
	align-items: flex-start;
	gap: 14px;
	flex-wrap: nowrap;
	max-width: 100%;
}
.pin-section-title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	line-height: 1;
	vertical-align: middle;
	align-self: flex-start;
	margin-top: 0.12em;
}
.pin-section-title-icon svg {
	display: inline-block;
	width: clamp(28px, 3.2vw, 42px);
	height: clamp(28px, 3.2vw, 42px);
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pin-section-head:hover .pin-section-title-icon svg {
	transform: scale(1.08) rotate(2deg);
}
.pin-section-title-text {
	display: inline;
	flex: 1 1 auto;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}
.pin-section-desc { max-width: 660px; margin: 9px 0 0; color: var(--pin-sec-desc-color, var(--pin-muted)); font-size: 14px; line-height: 1.7; }
.pin-view-all {
	display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto;
	padding: 11px 14px 11px 16px; border: 1px solid rgba(216,93,119,.17); border-radius: 999px;
	background: var(--pin-sec-cta-bg, rgba(255,255,255,.74)); color: var(--pin-sec-cta-color, var(--pin-primary-dark)); font-size: 12px; font-weight: 800;
	box-shadow: 0 7px 22px rgba(216,93,119,.08); transition: transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease;
}
.pin-view-all span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--pin-sec-cta-color, var(--pin-primary)); color: #fff; font-size: 13px; }
.pin-view-all:hover, .pin-view-all:focus-visible { color: #fff; background: var(--pin-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(216,93,119,.18); }

/* Grids & Cards */
.pin-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 30px; align-items: start; }
.pin-card { min-width: 0; }
.pin-card__link { display: block; padding: 0; border-radius: var(--pin-radius); color: inherit; }
.pin-card__media { position: relative; overflow: hidden; border-radius: var(--pin-radius); background: #eee7e3; box-shadow: 0 13px 32px rgba(56,44,41,.08); }
.pin-card--portrait .pin-card__media {
  aspect-ratio: 3 / 4;
}
.pin-card--portrait .pin-card__image { width: 100%; height: 100%; object-fit: cover; }
.pin-card--natural .pin-card__image { display: block; width: 100%; height: auto; }
.pin-card__image { display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1),filter .45s ease; }
.pin-card__pin {
	position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center;
	border: 1px solid rgba(255,255,255,.65); border-radius: 50%; background: rgba(255,255,255,.90);
	box-shadow: 0 7px 18px rgba(40,30,29,.11); color: var(--pin-ink); font-size: 16px;
}
.pin-card__content {
	display: grid; grid-template-columns: minmax(0,1fr) 30px; align-items: center; gap: 12px; min-height: 72px;
	padding: 14px 14px 14px 16px; margin-top: -1px; border: 1px solid var(--pin-border); border-top: 0;
	border-radius: 0 0 var(--pin-radius) var(--pin-radius); background: rgba(255,255,255,.92);
	box-shadow: 0 10px 24px rgba(56,44,41,.06); transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease,background .25s ease;
}
.pin-card__title { margin: 0; font-family: inherit; font-size: 18px; font-weight: 600; line-height: 1.22; letter-spacing: -.018em; text-wrap: balance; }
.pin-card__arrow {
	width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(216,93,119,.15);
	border-radius: 50%; background: var(--pin-blush); color: var(--pin-primary-dark); font-size: 14px; transition: transform .25s ease,background .25s ease,color .25s ease;
}
.pin-card:hover .pin-card__image, .pin-card__link:focus-visible .pin-card__image { transform: scale(1.045); filter: saturate(1.05); }
.pin-card:hover .pin-card__content, .pin-card__link:focus-visible .pin-card__content { transform: translateY(-3px); border-color: rgba(216,93,119,.16); box-shadow: var(--pin-shadow); background: #fff; }
.pin-card:hover .pin-card__arrow, .pin-card__link:focus-visible .pin-card__arrow { transform: rotate(8deg); background: var(--pin-primary); color: #fff; }

/* Custom Code / Shortcode Section Wrapper */
.pin-custom-code {
	padding: 36px 0;
}
.pin-custom-code-shell,
.pin-shortcode-shell { min-width: 0; overflow: hidden; }
.pin-custom-code .bhp-shortcode-title,
.pin-personalized .bhp-shortcode-title,
.pin-shortcode-shell .bhp-shortcode-title,
.pin-custom-code [class*="shortcode-title"],
.pin-personalized [class*="shortcode-title"] {
	display: none !important;
}
.pin-shortcode-shell .ct-posts,
.pin-shortcode-shell .blocksy-posts,
.pin-shortcode-shell .posts-grid,
.pin-shortcode-shell .posts {
	display: grid !important; grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 30px !important;
}
.pin-shortcode-shell [class*="posts"] > * { min-width: 0; }

/* Split Section */
.pin-split { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 48px; }
.pin-split .pin-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important; gap: 18px !important; }
.pin-subsection { min-width: 0; }
.pin-subsection + .pin-subsection { padding-left: 48px; border-left: 1px solid var(--pin-border); }
.pin-subsection__title { margin: 0 0 18px; font-family: inherit; font-size: 30px; font-weight: 500; letter-spacing: -.025em; }

/* Footer */
.pin-footer,
.pin-decor-footer,
.pin-parenting-footer {
	border-top: var(--pin-footer-border-width, 1px) solid var(--pin-footer-border-color, rgba(41,37,37,0.06));
}
.pin-footer { padding: 70px 0 24px; background: var(--pin-footer-bg, #231c1e); color: rgba(255,255,255,.82); }
.pin-footer__grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr) minmax(220px,.72fr); gap: 54px; padding-bottom: 46px; border-bottom: 1px solid var(--pin-border-light); }
.pin-footer__column { min-width: 0; }
.pin-footer .pin-brand { color: #fff; }
.pin-footer .pin-brand__tag { color: rgba(255,255,255,.46); }
.pin-footer__desc { max-width: 520px; margin: 18px 0 0; color: rgba(255,255,255,.60); font-size: 14px; line-height: 1.78; }
.pin-footer__heading { margin: 0 0 14px; color: #fff; font-size: 11px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.pin-footer__menu ul { list-style: none; padding: 0; margin: 0; }
.pin-footer__menu > ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 26px; }
.pin-footer__menu > ul > li > a { display: block; margin-bottom: 8px; color: #fff; font-size: 13px; font-weight: 800; }
.pin-footer__menu ul ul li { margin: 0 0 6px; }
.pin-footer__menu ul ul a { color: rgba(255,255,255,.58); font-size: 12px; }
.pin-pinterest-links { display: grid; gap: 11px; }
.pin-pinterest-link {
	display: flex; align-items: center; gap: 11px; min-width: 0; padding: 10px 12px;
	border: 1px solid rgba(255,255,255,.10); border-radius: 15px; background: rgba(255,255,255,.055);
	color: #fff; transition: transform .2s ease,background .2s ease,border-color .2s ease;
}
.pin-pinterest-link:hover { transform: translateY(-2px); background: rgba(255,255,255,.095); border-color: rgba(255,255,255,.18); }
.pin-pinterest-icon { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #d60023; font-size: 18px; }
.pin-pinterest-copy { min-width: 0; }
.pin-pinterest-label { display: block; font-size: 12px; font-weight: 800; }
.pin-pinterest-url { display: block; margin-top: 2px; color: rgba(255,255,255,.48); font-size: 10px; overflow-wrap: anywhere; }
.pin-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 21px; }
.pin-footer__copyright { margin: 0; color: rgba(255,255,255,.40); font-size: 11px; }

/* Archives & Singles */
.pin-archive-header { margin-bottom: 40px; text-align: center; }
.pin-archive-title { font-weight: 500; }
.pin-site-main.pin-single-post,
.pin-site-main.pin-single-page,
.pin-site-main.pin-section--white,
.pin-site-main {
	background-color: var(--pin-body-bg);
}

.pin-single-post .pin-entry-header, .pin-single-page .pin-entry-header {
	max-width: 1040px;
	margin-bottom: 38px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--pin-border);
}
.pin-single-post .pin-entry-header {
	margin-bottom: 18px;
	padding-bottom: 18px;
}
.pin-single-post .pin-entry-title, .pin-single-page .pin-entry-title {
	max-width: none;
	margin: 0;
	font-size: var(--pin-h1-size, 42px) !important;
	font-weight: var(--pin-h1-weight, 500);
	font-family: var(--pin-h1-font, inherit);
	color: var(--pin-h1-color, inherit);
	line-height: 1.15;
	letter-spacing: 0;
	text-align: left;
}
.pin-single-post .pin-entry-thumbnail { text-align: center; margin-bottom: 40px; }
.pin-single-post .pin-entry-thumbnail img { border-radius: var(--pin-radius); margin: 0 auto; }
.pin-single-post .pin-container,
.pin-single-page .pin-container {
	width: min(calc(100% - 40px), var(--pin-single-width, 75%));
}
.pin-single-article {
	padding: 48px;
	background: var(--pin-single-bg, #ffffff);
	border: 1px solid var(--pin-single-border, rgba(41,37,37,0.06));
	border-radius: 24px;
}
.pin-single-post .pin-single-article { padding-top: 24px; }
.pin-single-post .pin-entry-content,
.pin-single-page .pin-entry-content,
.pin-single-post .pin-entry-content p,
.pin-single-page .pin-entry-content p,
.pin-single-post .pin-entry-content li,
.pin-single-page .pin-entry-content li {
	font-size: var(--pin-body-size, 16px);
	font-family: var(--pin-body-font, inherit);
	color: var(--pin-ink, inherit);
	line-height: 1.8;
}

.pin-single-post .pin-entry-content h1, .pin-single-page .pin-entry-content h1 { font-size: var(--pin-h1-size, 42px) !important; font-family: var(--pin-h1-font, inherit); color: var(--pin-h1-color, inherit); font-weight: var(--pin-h1-weight, 500); }
.pin-single-post .pin-entry-content h2, .pin-single-page .pin-entry-content h2 { font-size: var(--pin-h2-size, 32px) !important; font-family: var(--pin-h2-font, inherit); color: var(--pin-h2-color, inherit); font-weight: var(--pin-h2-weight, 500); }
.pin-single-post .pin-entry-content h3, .pin-single-page .pin-entry-content h3 { font-size: var(--pin-h3-size, 26px) !important; font-family: var(--pin-h3-font, inherit); color: var(--pin-h3-color, inherit); font-weight: var(--pin-h3-weight, 500); }
.pin-single-post .pin-entry-content h4, .pin-single-page .pin-entry-content h4 { font-size: var(--pin-h4-size, 20px) !important; font-family: var(--pin-h4-font, inherit); color: var(--pin-h4-color, inherit); font-weight: var(--pin-h4-weight, 500); }
.pin-single-post .pin-entry-content h5, .pin-single-page .pin-entry-content h5 { font-size: var(--pin-h5-size, 18px) !important; font-family: var(--pin-h5-font, inherit); color: var(--pin-h5-color, inherit); font-weight: var(--pin-h5-weight, 500); }
.pin-single-post .pin-entry-content h6, .pin-single-page .pin-entry-content h6 { font-size: var(--pin-h6-size, 16px) !important; font-family: var(--pin-h6-font, inherit); color: var(--pin-h6-color, inherit); font-weight: var(--pin-h6-weight, 500); }

/* ==========================================================================
   Single Post Ordered List Card Styling (Theme Default Custom CSS)
   ========================================================================== */

/* Container reset */
.single ol,
.pin-single-post .pin-entry-content ol {
  list-style: none;
  counter-reset: custom-counter;
  padding-left: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px; /* Consistent vertical spacing between cards */
}

/* Card list item */
.single ol li,
.pin-single-post .pin-entry-content ol li {
  counter-increment: custom-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb; /* Soft neutral gray border */
  border-radius: 12px;
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Hover effect */
.single ol li:hover,
.pin-single-post .pin-entry-content ol li:hover {
  transform: translateY(-2px);
  border-color: #ffd1d5; /* Subtle tint of the badge color on hover */
  box-shadow: 0 6px 16px rgba(255, 123, 137, 0.12), 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Number badge styling */
.single ol li::before,
.pin-single-post .pin-entry-content ol li::before {
  content: counter(custom-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  min-width: 30px; /* Prevents badge squishing on smaller viewports */
  margin-top: 1px; /* Optical vertical alignment with the first text line */
  background: linear-gradient(135deg, #ff7b89, #ff9a8b);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(255, 123, 137, 0.3);
  transition: transform 0.2s ease;
}

/* Optional badge lift on card hover */
.single ol li:hover::before,
.pin-single-post .pin-entry-content ol li:hover::before {
  transform: scale(1.05);
}

/* Nested lists (rendered cleanly inside parent card) */
.single ol li ol,
.pin-single-post .pin-entry-content ol li ol {
  width: 100%;
  margin-top: 12px;
  margin-bottom: 0;
  gap: 8px;
}

/* Hide native list markers across modern browsers */
.single ol li::marker,
.pin-single-post .pin-entry-content ol li::marker {
  display: none;
  content: "";
}

/* Layout & Sidebar */
.pin-has-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 48px;
	align-items: start;
}
.pin-content-area { min-width: 0; }
.pin-sidebar {
	min-width: 0;
	position: relative; /* Default: scrolls naturally with page content so all widgets are fully visible */
}

@media (min-width: 901px) {
	.pin-sidebar.pin-sidebar--sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 100px;
	}
}

/* ==========================================================================
   Sidebar & Widget Modern Eye-Catchy Styling
   ========================================================================== */

/* Widget Card Container */
.widget {
	margin-bottom: 32px;
	padding: 28px 24px;
	background: var(--pin-sidebar-widget-bg, #ffffff);
	border: 1px solid var(--pin-sidebar-widget-border, rgba(41, 37, 37, 0.08));
	border-radius: var(--pin-sidebar-widget-radius, 20px);
	box-shadow: 0 4px 20px rgba(41, 37, 37, 0.03), 0 1px 3px rgba(41, 37, 37, 0.02);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	position: relative;
	overflow: hidden;
}
.widget:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(41, 37, 37, 0.06), 0 2px 6px rgba(41, 37, 37, 0.02);
	border-color: rgba(216, 93, 119, 0.2);
}
.widget:last-child {
	margin-bottom: 0;
}

/* Eye-Catchy Widget Title with Expanding Coral Accent */
.widget-title,
.widget .wp-block-heading {
	position: relative;
	margin: 0 0 20px;
	padding-bottom: 12px;
	font-family: var(--pin-h3-font, inherit);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--pin-h3-color, var(--pin-ink, #292525));
	border-bottom: 1px solid var(--pin-border, rgba(41, 37, 37, 0.08));
	display: flex;
	align-items: center;
}
.widget-title::after,
.widget .wp-block-heading::after {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 36px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--pin-primary, #d85d77), #ff9a8b);
	transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.widget:hover .widget-title::after,
.widget:hover .wp-block-heading::after {
	width: 56px;
}

/* Widget Lists & Links */
.widget ul,
.widget ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
.widget ul li,
.widget ol li {
	position: relative;
	margin-bottom: 0;
	padding: 10px 0;
	border-bottom: 1px dashed var(--pin-border, rgba(41, 37, 37, 0.08));
	font-size: 14.5px;
	line-height: 1.5;
	transition: all 0.2s ease;
}
.widget ul li:first-child,
.widget ol li:first-child {
	padding-top: 2px;
}
.widget ul li:last-child,
.widget ol li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}
.widget a {
	color: var(--pin-ink, #292525);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}
.widget a:hover {
	color: var(--pin-primary, #d85d77);
}

/* Categories & Taxonomy Widget */
.widget_categories ul li,
.wp-block-categories li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.widget_categories ul li a,
.wp-block-categories li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.2s ease, color 0.2s ease;
}
.widget_categories ul li a::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pin-border, #d1d5db);
	transition: background 0.2s ease, transform 0.2s ease;
}
.widget_categories ul li:hover a {
	transform: translateX(4px);
	color: var(--pin-primary, #d85d77);
}
.widget_categories ul li:hover a::before {
	background: var(--pin-primary, #d85d77);
	transform: scale(1.3);
}

/* Category Post Count Badge */
.widget_categories .count,
.wp-block-categories li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 22px;
	padding: 0 8px;
	font-size: 11.5px;
	font-weight: 700;
	border-radius: 999px;
	background: var(--pin-blush, #fbe9eb);
	color: var(--pin-primary-dark, #b54762);
	transition: all 0.2s ease;
	margin-left: auto;
}
.widget_categories ul li:hover .count,
.wp-block-categories li:hover span {
	background: var(--pin-primary, #d85d77);
	color: #ffffff;
	transform: scale(1.05);
}

/* Recent Posts Widget */
.widget_recent_entries ul li,
.wp-block-latest-posts li {
	padding: 12px 0;
	border-bottom: 1px dashed var(--pin-border, rgba(41, 37, 37, 0.08));
}
.widget_recent_entries ul li a,
.wp-block-latest-posts li a {
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.45;
	display: block;
	color: var(--pin-ink, #292525);
	transition: color 0.2s ease;
}
.widget_recent_entries ul li a:hover,
.wp-block-latest-posts li a:hover {
	color: var(--pin-primary, #d85d77);
}
.widget_recent_entries .post-date,
.wp-block-latest-posts__post-date {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 500;
	color: var(--pin-muted, #7c726f);
	margin-top: 4px;
}
.wp-block-latest-posts__featured-image {
	margin-bottom: 8px;
}
.wp-block-latest-posts__featured-image img {
	border-radius: 12px;
	object-fit: cover;
	width: 100%;
	max-height: 160px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: transform 0.25s ease;
}
.wp-block-latest-posts li:hover .wp-block-latest-posts__featured-image img {
	transform: scale(1.03);
}

/* Tag Cloud Widget (Pill Badges) */
.widget_tag_cloud .tagcloud,
.wp-block-tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}
.tagcloud a,
.wp-block-tag-cloud a {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	font-size: 12.5px !important;
	font-weight: 600;
	color: var(--pin-ink, #374151);
	background: #f8f8fa;
	border: 1px solid var(--pin-border, rgba(41, 37, 37, 0.08));
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
	background: linear-gradient(135deg, var(--pin-primary, #d85d77), #ff9a8b);
	color: #ffffff !important;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(216, 93, 119, 0.28);
}

/* Search Widget */
.widget_search .search-form,
.wp-block-search__inside-wrapper {
	position: relative;
	display: flex;
	gap: 8px;
	align-items: center;
	background: #f8f8fa;
	border: 1px solid var(--pin-border, rgba(41, 37, 37, 0.1));
	border-radius: 14px;
	padding: 4px 5px 4px 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.widget_search .search-form:focus-within,
.wp-block-search__inside-wrapper:focus-within {
	background: #ffffff;
	border-color: var(--pin-primary, #d85d77);
	box-shadow: 0 0 0 3px rgba(216, 93, 119, 0.14);
}
.widget_search input[type="search"],
.wp-block-search__input {
	flex: 1;
	border: none !important;
	background: transparent !important;
	padding: 8px 0 !important;
	font-size: 14px;
	color: var(--pin-ink, #292525);
	outline: none !important;
	box-shadow: none !important;
}
.widget_search input[type="submit"],
.wp-block-search__button {
	margin: 0 !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 9px 18px !important;
	background: var(--pin-primary, #d85d77) !important;
	color: #ffffff !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	cursor: pointer;
	transition: all 0.2s ease !important;
	white-space: nowrap;
}
.widget_search input[type="submit"]:hover,
.wp-block-search__button:hover {
	background: var(--pin-primary-dark, #b54762) !important;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(216, 93, 119, 0.3);
}

/* Recent Comments Widget */
.widget_recent_comments ul li,
.wp-block-latest-comments li {
	padding: 10px 0;
	border-bottom: 1px dashed var(--pin-border, rgba(41, 37, 37, 0.08));
	font-size: 13.5px;
	line-height: 1.5;
	color: var(--pin-muted, #666);
}
.widget_recent_comments .comment-author-link,
.wp-block-latest-comments__comment-author {
	font-weight: 700;
	color: var(--pin-ink, #292525);
}

/* Calendar Widget */
.widget_calendar table,
.wp-block-calendar table {
	width: 100%;
	text-align: center;
	border-collapse: separate;
	border-spacing: 4px;
	font-size: 13px;
}
.widget_calendar caption,
.wp-block-calendar caption {
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--pin-ink, #292525);
}
.widget_calendar th,
.wp-block-calendar th {
	padding: 6px;
	font-weight: 700;
	color: var(--pin-muted, #7c726f);
}
.widget_calendar td,
.wp-block-calendar td {
	padding: 6px;
	border-radius: 8px;
	transition: background 0.2s ease;
}
.widget_calendar td#today,
.wp-block-calendar td#today {
	background: var(--pin-primary, #d85d77);
	color: #ffffff;
	font-weight: 700;
}

/* Form Dropdowns & Selects in Widgets */
.widget select,
.widget_archive select,
.widget_categories select {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--pin-border, rgba(41, 37, 37, 0.1));
	border-radius: 12px;
	font-size: 14px;
	background-color: #f8f8fa;
	color: var(--pin-ink, #292525);
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.widget select:focus {
	border-color: var(--pin-primary, #d85d77);
	box-shadow: 0 0 0 3px rgba(216, 93, 119, 0.14);
	background-color: #ffffff;
}

/* Pagination */
.pagination { margin-top: 60px; padding: 40px 0; border-top: 1px solid var(--pin-border); }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 16px;
	border: 1px solid var(--pin-border); border-radius: 12px;
	background: #fff; color: var(--pin-ink); font-size: 14px; font-weight: 700;
	transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.page-numbers:hover, .page-numbers:focus {
	background: var(--pin-blush); border-color: var(--pin-primary-dark); color: var(--pin-primary-dark); transform: translateY(-2px);
}
.page-numbers.current { background: var(--pin-primary); color: #fff; border-color: var(--pin-primary); }
.page-numbers.dots { border: none; background: transparent; }

.pin-brand__mark, .pin-brand__name { font-family: var(--pin-h2-font, sans-serif); }
.pin-floating strong { font-family: var(--pin-h4-font, sans-serif); }

/* Breadcrumbs */
.pin-breadcrumbs {
	display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px;
	font-size: 13px; font-weight: 600; color: var(--pin-muted);
	margin: 0 0 26px; padding: 8px 18px;
	background: rgba(41,37,37,.03); border: 1px solid var(--pin-border); border-radius: 999px;
	text-align: center;
}
.pin-entry-header .pin-breadcrumbs { justify-content: flex-start; }
.pin-breadcrumbs a { color: var(--pin-ink); transition: color .2s ease; }
.pin-breadcrumbs a:hover { color: var(--pin-primary); }
.pin-breadcrumb-sep { display: inline-flex; align-items: center; color: var(--pin-muted); opacity: .65; }

/* Scroll to Top */
.pin-scroll-top {
	position: fixed; z-index: 999;
	width: 48px; height: 48px; border-radius: 50%;
	background: #ffffff; border: 1px solid var(--pin-border);
	box-shadow: 0 10px 28px rgba(48,43,42,.15);
	color: var(--pin-ink); cursor: pointer;
	display: grid; place-items: center;
	opacity: 0; visibility: hidden; transform: translateY(16px);
	transition: opacity .25s ease, visibility .25s ease, transform .25s cubic-bezier(0.16, 1, 0.3, 1), background .2s, color .2s, border-color .2s;
	bottom: var(--pin-scroll-bottom, 30px);
}
.pin-scroll-top--right { right: var(--pin-scroll-side, 30px); left: auto; }
.pin-scroll-top--left { left: var(--pin-scroll-side, 30px); right: auto; }
.pin-scroll-top.is-visible {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.pin-scroll-top:hover {
	background: var(--pin-primary); color: #ffffff; border-color: var(--pin-primary);
	transform: translateY(-4px); box-shadow: 0 14px 34px rgba(216,93,119,.32);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
	.pin-hero__grid { grid-template-columns: 1fr; }
	.pin-hero__copy { padding-left: 0; text-align: center; }
	.pin-hero__copy > * { margin-left: auto; margin-right: auto; }
	.pin-hero__visual { min-height: 560px; width: 100%; }
	.pin-hero__frame { height: 560px; width: 100%; }
	.pin-footer__grid { grid-template-columns: 1fr 1fr; }
	.pin-footer__column--social { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
	.pin-menu-button { display: grid; place-items: center; }
	.pin-primary-nav {
		position: absolute; left: 14px; right: 14px; top: calc(100% + 8px); display: none;
		max-height: min(72vh,620px); overflow: auto; padding: 12px; border: 1px solid var(--pin-border);
		border-radius: 20px; background: rgba(255,255,255,.98); box-shadow: var(--pin-shadow);
	}
	.pin-header.is-open .pin-primary-nav { display: flex; flex-direction: column; }
	.pin-primary-nav > ul { display: grid; gap: 2px; width: 100%; }
	.pin-primary-nav li { min-width: 0; }
	.pin-primary-nav li > .pin-nav-toggle { position: absolute; right: 4px; top: 5px; }
	.pin-primary-nav a { width: 100%; min-height: 43px; justify-content: space-between; border-radius: 12px; padding-right: 42px; }
	.pin-primary-nav .sub-menu {
		position: static; width: auto; min-width: 0; max-width: none; margin: 1px 0 5px 11px;
		padding: 0 0 0 10px; border: 0; border-left: 1px solid var(--pin-border); border-radius: 0;
		box-shadow: none; background: transparent; opacity: 0; visibility: hidden; pointer-events: none; transform: none; display: none;
	}
	.pin-primary-nav .menu-item-has-children.is-open > .sub-menu {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	.pin-primary-nav .menu-item-has-children:not(.is-open) > .sub-menu {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}
	.pin-primary-nav .menu-item-has-children:not(.is-open) > .pin-nav-toggle .pin-dropdown-chevron {
		transform: rotate(0deg) !important;
	}
	.pin-primary-nav .menu-item-has-children.is-open > .pin-nav-toggle .pin-dropdown-chevron,
	.pin-nav-toggle[aria-expanded="true"] .pin-dropdown-chevron {
		transform: rotate(180deg) !important;
	}
	
	.pin-header-search { width: 100%; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--pin-border); }
	.pin-header-search__toggle { width: 100%; border-radius: 12px; height: 42px; gap: 8px; }
	.pin-header-search__dropdown {
		position: static; width: 100%; box-shadow: none; border: 0; padding: 10px 0 4px;
		opacity: 1; visibility: visible; pointer-events: auto; transform: none; display: none; background: transparent;
	}
	.pin-header-search.is-active .pin-header-search__dropdown { display: block; }
	
	.pin-split { grid-template-columns: 1fr; gap: 42px; }
	.pin-subsection + .pin-subsection { padding-left: 0; padding-top: 42px; border-left: 0; border-top: 1px solid var(--pin-border); }
	.pin-has-sidebar { grid-template-columns: 1fr; gap: 40px; }
	.pin-sidebar { position: static; }
}

@media (min-width: 768px) and (max-width: 1024px) {
	.pin-grid, .pin-shortcode-shell [class*="posts"] { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 22px !important; }
	.pin-section-title {
		display: inline-flex;
		flex-wrap: nowrap;
		align-items: flex-start;
		gap: 12px;
		font-size: clamp(28px, 4.2vw, 40px);
		max-width: 100%;
	}
	.pin-section-title-icon {
		align-self: flex-start;
		margin-top: 0.12em;
		flex-shrink: 0;
	}
	.pin-section-title-icon svg {
		width: clamp(24px, 3.6vw, 34px);
		height: clamp(24px, 3.6vw, 34px);
	}
	.pin-section-title-text {
		flex: 1 1 auto;
		min-width: 0;
		word-break: break-word;
		overflow-wrap: break-word;
	}
}

@media (max-width: 767px) {
	.pin-home { width: 100%; overflow-x: clip; }
	.pin-container { width: calc(100% - 24px); max-width: none; }
	.pin-header__inner { gap: 10px; min-height: 66px; }
	.pin-brand { min-width: 0; gap: 8px; }
	.pin-brand__mark { width: 34px; height: 34px; font-size: 16px; }
	.pin-brand__name { font-size: 21px; }
	.pin-brand__tag { max-width: 145px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 7px;}
	.pin-hero { padding: 22px 0 36px; }
	.pin-hero__grid { display: flex; flex-direction: column; gap: 20px; min-height: 0; }
	.pin-hero__title { margin-top: 16px; font-size: clamp(38px, 12.5vw, 54px); }
	.pin-hero__visual { width: 100%; min-height: auto; }
	.pin-hero__frame { width: 100%; height: min(105vw, 390px); min-height: 300px; border-radius: 24px; }
	.pin-hero__image { width: 100%; height: 100%; object-fit: cover; }
	.pin-floating { max-width: 130px; }
	
	.pin-grid, .pin-shortcode-shell [class*="posts"] {
		display: grid !important; grid-template-columns: 1fr !important; width: 100% !important; gap: 20px !important;
	}
	.pin-grid > *, .pin-shortcode-shell [class*="posts"] > * { min-width: 0 !important; max-width: 100% !important; }

	.pin-section-head { align-items: flex-start; flex-direction: column; margin-bottom: 22px; gap: 13px; }
	.pin-section-title {
		display: inline-flex;
		flex-wrap: nowrap;
		align-items: flex-start;
		font-size: clamp(24px, 7.5vw, 34px);
		gap: 10px;
		max-width: 100%;
	}
	.pin-section-title-icon {
		align-self: flex-start;
		margin-top: 0.1em;
		flex-shrink: 0;
	}
	.pin-section-title-icon svg {
		width: clamp(22px, 6.5vw, 30px);
		height: clamp(22px, 6.5vw, 30px);
	}
	.pin-section-title-text {
		flex: 1 1 auto;
		min-width: 0;
		word-break: break-word;
		overflow-wrap: break-word;
	}

	.pin-footer { padding: 48px 0 22px; }
	.pin-footer__grid { grid-template-columns: 1fr !important; gap: 32px; padding-bottom: 34px; }
	.pin-footer__column { grid-column: auto !important; width: 100%; }
	.pin-footer__menu > ul { grid-template-columns: 1fr !important; }

	.pin-single-post .pin-container,
	.pin-single-page .pin-container {
		width: calc(100% - 24px) !important;
	}
	.pin-single-article {
		padding: 24px 18px;
		border-radius: 18px;
	}
	.pin-single-post .pin-single-article { padding-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Hero Style 2 (Exact Match & Responsive) */
.pin-hero-style-2 {
	position: relative;
	overflow: hidden;
	background-color: var(--hero-bg, #fcfaf8); /* Set via inline style */
}
.pin-hero-style-2__grid {
	display: flex;
	flex-wrap: wrap;
	min-height: 75vh;
	align-items: stretch;
}
.pin-hero-style-2__col-left {
	flex: 1 1 50%;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pin-hero-style-2__notes-bg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 160px;
	max-height: 35%;
	z-index: 1;
	pointer-events: none;
}
.pin-hero-style-2__notes-bg svg {
	width: 100%;
	height: 100%;
	display: block;
}
.pin-hero-style-2__notes-bg path {
	fill: var(--pin-hero-notes-bg, #f5eae4);
}
.pin-hero-style-2__content {
	position: relative;
	z-index: 2;
	max-width: 600px;
	padding: 8% 5% 0 10%;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.pin-hero-style-2__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #777;
	margin-bottom: 20px;
}
.pin-hero-style-2__title {
	font-size: clamp(42px, 5.5vw, 72px);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	color: #111;
	font-family: 'Playfair Display', "Georgia", sans-serif;
	letter-spacing: -0.01em;
}
.pin-hero-style-2__title em {
	font-style: italic;
	color: var(--pin-color-primary, #d85d77);
}
.pin-hero-style-2__title-icon {
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;
}
.pin-hero-style-2__title-icon svg {
	height: 50px;
	width: auto;
	transform: translateY(-6px);
}
.pin-hero-style-2__desc {
	font-size: 19px;
	line-height: 1.55;
	color: #333;
	margin-bottom: 32px;
	max-width: 480px;
}
.pin-hero-style-2__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-bottom: 48px;
}
.pin-hero-style-2__actions .pin-button {
	border-radius: 50px;
	padding: 16px 34px;
	font-size: 16px;
	font-weight: 700;
	box-shadow: none;
}
.pin-hero-style-2__notes {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: nowrap;
	gap: 32px;
	align-items: center;
	padding: 0 5% 44px 10%;
	margin-top: auto;
}
.pin-hero-style-2__note {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 700;
	color: #444;
	white-space: nowrap;
}
.pin-hero-style-2__note--1 { color: var(--pin-hero-note1-color, #444); }
.pin-hero-style-2__note--2 { color: var(--pin-hero-note2-color, #444); }
.pin-hero-style-2__note--3 { color: var(--pin-hero-note3-color, #444); }
.pin-hero-style-2__note-icon svg {
	height: 30px;
	width: 30px;
}
.pin-hero-style-2__col-right {
	flex: 1 1 50%;
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pin-hero-style-2__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pin-hero-style-2__blob {
	position: absolute;
	bottom: -40px;
	left: -80px;
	width: 320px;
	height: 320px;
	border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 36px;
	transform: rotate(-8deg);
	z-index: 10;
	font-family: 'Playfair Display', "Georgia", cursive;
	color: var(--pin-hero-blob-text-color, #ffffff);
}
.pin-hero-style-2__blob-title, .pin-hero-style-2__blob-desc {
	font-size: 30px;
	font-style: italic;
	line-height: 1.1;
	color: inherit;
}
.pin-hero-style-2__blob-desc {
	margin-bottom: 16px;
}
.pin-hero-style-2__blob-icon svg {
	height: 26px;
	width: auto;
	stroke: currentColor;
}
.pin-hero-style-2__blob-icon svg path {
	stroke: currentColor;
}

@media (max-width: 1200px) {
	.pin-hero-style-2__title { font-size: 44px; }
	.pin-hero-style-2__desc { font-size: 17px; margin-bottom: 28px; }
	.pin-hero-style-2__actions { margin-bottom: 36px; }
	.pin-hero-style-2__notes { gap: 18px; padding-left: 5%; }
	.pin-hero-style-2__blob { width: 240px; height: 240px; left: -30px; }
	.pin-hero-style-2__blob-title, .pin-hero-style-2__blob-desc { font-size: 22px; }
}

@media (max-width: 991px) {
	.pin-hero-style-2__grid {
		flex-direction: column;
		min-height: auto !important;
	}
	.pin-hero-style-2__col-left {
		width: 100%;
		flex: 0 0 auto;
		justify-content: flex-start;
	}
	.pin-hero-style-2__content {
		max-width: 620px;
		width: 100%;
		margin: 0 auto;
		padding: 44px 28px 0;
		flex-grow: 0;
		justify-content: flex-start;
		text-align: left;
	}
	.pin-hero-style-2__eyebrow {
		margin-bottom: 12px;
		font-size: 11.5px;
	}
	.pin-hero-style-2__title {
		font-size: clamp(34px, 5.5vw, 44px);
		line-height: 1.15;
		margin-bottom: 14px;
	}
	.pin-hero-style-2__title-icon svg {
		height: 38px;
		transform: translateY(-4px);
		margin-left: 8px;
	}
	.pin-hero-style-2__desc {
		font-size: 17px;
		line-height: 1.55;
		margin-bottom: 22px;
		max-width: 520px;
	}
	.pin-hero-style-2__actions {
		margin-bottom: 24px;
	}
	.pin-hero-style-2__actions .pin-button {
		padding: 14px 30px;
		font-size: 15px;
	}
	.pin-hero-style-2__notes-bg {
		height: 95px;
	}
	.pin-hero-style-2__notes {
		max-width: 620px;
		width: 100%;
		margin: 0 auto;
		padding: 16px 28px 24px;
		gap: 14px 22px;
		flex-wrap: wrap;
		margin-top: 0;
	}
	.pin-hero-style-2__note {
		font-size: 13px;
		gap: 10px;
	}
	.pin-hero-style-2__note-icon svg {
		height: 26px;
		width: 26px;
	}
	.pin-hero-style-2__col-right {
		width: 100%;
		flex: 0 0 auto;
		min-height: auto !important;
		padding: 8px 28px 32px;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.pin-hero-style-2__image {
		width: auto;
		max-width: 100%;
		height: auto;
		max-height: 420px;
		object-fit: contain;
		margin: 0 auto;
	}
	.pin-hero-style-2__blob {
		bottom: 10px;
		right: 20px;
		left: auto;
		width: 160px;
		height: 160px;
		padding: 16px;
	}
	.pin-hero-style-2__blob-title, .pin-hero-style-2__blob-desc {
		font-size: 18px;
		margin-bottom: 6px;
	}
	.pin-hero-style-2__blob-icon svg {
		height: 18px;
	}
}

@media (max-width: 767px) {
	.pin-hero-style-2__content {
		padding: 32px 20px 0;
		max-width: 100%;
	}
	.pin-hero-style-2__eyebrow {
		margin-bottom: 10px;
		font-size: 11px;
	}
	.pin-hero-style-2__title {
		font-size: clamp(30px, 8.5vw, 38px);
		line-height: 1.15;
		margin-bottom: 12px;
	}
	.pin-hero-style-2__title-icon svg {
		height: 32px;
		transform: translateY(-3px);
		margin-left: 6px;
	}
	.pin-hero-style-2__desc {
		font-size: 15.5px;
		line-height: 1.5;
		margin-bottom: 20px;
	}
	.pin-hero-style-2__actions {
		margin-bottom: 20px;
	}
	.pin-hero-style-2__actions .pin-button {
		padding: 13px 26px;
		font-size: 14.5px;
	}
	.pin-hero-style-2__notes-bg {
		height: 80px;
	}
	.pin-hero-style-2__notes {
		padding: 12px 20px 20px;
		gap: 10px 16px;
		max-width: 100%;
	}
	.pin-hero-style-2__note {
		font-size: 12px;
		gap: 8px;
	}
	.pin-hero-style-2__note-icon svg {
		height: 22px;
		width: 22px;
	}
	.pin-hero-style-2__col-right {
		padding: 4px 16px 20px;
	}
	.pin-hero-style-2__image {
		max-height: 330px;
	}
	.pin-hero-style-2__blob {
		bottom: 4px;
		right: 12px;
		width: 120px;
		height: 120px;
		padding: 10px;
	}
	.pin-hero-style-2__blob-title, .pin-hero-style-2__blob-desc {
		font-size: 14px;
		margin-bottom: 4px;
	}
	.pin-hero-style-2__blob-icon svg {
		height: 14px;
	}
}

@media (max-width: 480px) {
	.pin-hero-style-2__content {
		padding: 24px 16px 0;
	}
	.pin-hero-style-2__title {
		font-size: clamp(26px, 8vw, 32px);
	}
	.pin-hero-style-2__desc {
		font-size: 14.5px;
		margin-bottom: 18px;
	}
	.pin-hero-style-2__notes {
		padding: 10px 16px 16px;
		gap: 8px 12px;
	}
	.pin-hero-style-2__col-right {
		padding: 2px 12px 16px;
	}
	.pin-hero-style-2__image {
		max-height: 280px;
	}
	.pin-hero-style-2__blob {
		width: 105px;
		height: 105px;
		padding: 8px;
		right: 8px;
		bottom: 2px;
	}
	.pin-hero-style-2__blob-title, .pin-hero-style-2__blob-desc {
		font-size: 12.5px;
	}
}
/* Hero Style 3 (Home Decor) */
.pin-hero-style-3 {
	position: relative;
	overflow: hidden;
	padding: 40px 0;
}
.pin-hero-style-3__bg-right {
	position: absolute;
	top: 0;
	right: -10%;
	width: 50%;
	height: 100%;
	border-radius: 50% 0 0 50% / 50% 0 0 50%;
	z-index: 0;
	pointer-events: none;
}
.pin-hero-style-3__bg-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 300px;
	z-index: 0;
	pointer-events: none;
}
.pin-hero-style-3__bg-line svg {
	width: 100%;
	height: 100%;
}
.pin-hero-style-3__grid {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	gap: 60px;
}
.pin-hero-style-3__col-content {
	flex: 1 1 50%;
	max-width: 650px;
	position: relative;
}
.pin-hero-style-3__eyebrow {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #666;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 16px;
}
.pin-hero-style-3__eyebrow-line {
	display: inline-block;
	height: 1px;
	width: 60px;
	background-color: #666;
}
.pin-hero-style-3__title {
	font-size: clamp(48px, 6vw, 84px);
	font-weight: 700;
	line-height: 1.05;
	margin-bottom: 24px;
	color: #111;
	font-family: 'Playfair Display', "Georgia", sans-serif;
	letter-spacing: -0.02em;
}
.pin-hero-style-3__title em {
	font-style: normal;
	color: var(--pin-color-primary, #b3655c);
}
.pin-hero-style-3__title-icon {
	display: inline-block;
	vertical-align: bottom;
	margin-left: 8px;
}
.pin-hero-style-3__title-icon svg {
	height: 60px;
	width: auto;
	stroke: var(--pin-color-primary, #b3655c);
}
.pin-hero-style-3__desc {
	font-size: 18px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 40px;
	max-width: 500px;
}
.pin-hero-style-3__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 60px;
}
.pin-hero-style-3__actions .pin-button {
	border-radius: 50px;
	padding: 16px 32px;
	font-size: 15px;
	font-weight: 600;
	box-shadow: none;
}
.pin-hero-style-3__actions .pin-button--outline {
	background: transparent;
	border: 1px solid var(--pin-color-primary, #b3655c);
	color: var(--pin-color-primary, #b3655c);
}
.pin-hero-style-3__actions .pin-button--outline:hover {
	background: var(--pin-color-primary, #b3655c);
	color: #fff;
}
.pin-hero-style-3__notes {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 30px;
}
.pin-hero-style-3__note {
	display: flex;
	align-items: center;
	gap: 12px;
}
.pin-hero-style-3__note-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(179, 101, 92, 0.1);
}
.pin-hero-style-3__note-icon svg {
	height: 20px;
	width: auto;
	stroke: var(--pin-color-primary, #b3655c);
}
.pin-hero-style-3__note-text {
	font-size: 13px;
	font-weight: 700;
	color: inherit;
	line-height: 1.3;
}
.pin-hero-style-3__note--1 { color: var(--pin-hero-note1-color, #333); }
.pin-hero-style-3__note--2 { color: var(--pin-hero-note2-color, #333); }
.pin-hero-style-3__note--3 { color: var(--pin-hero-note3-color, #333); }
.pin-hero-style-3__note-divider {
	width: 1px;
	height: 30px;
	background-color: #ddd;
}
.pin-hero-style-3__float-text-bottom {
	font-family: 'Playfair Display', "Georgia", cursive;
	font-size: 20px;
	font-style: italic;
	color: #666;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 8px;
	margin-top: 40px;
}
.pin-hero-style-3__float-title {
	font-weight: 700;
	color: #2e2826;
}
.pin-hero-style-3__float-desc {
	font-weight: 400;
	color: #6e6763;
}
.pin-hero-style-3__float-heart {
	flex-shrink: 0;
	display: inline-block;
	color: var(--pin-color-primary, #b3655c);
}

.pin-hero-style-3__col-visual {
	flex: 1 1 50%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.pin-hero-style-3__image-wrapper {
	position: relative;
	width: 100%;
	max-width: 500px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: visible;
	z-index: 2;
}
.pin-hero-style-3__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	display: block;
}
.pin-hero-style-3__leaf {
	position: absolute;
	top: -40px;
	left: -60px;
	width: 180px;
	z-index: 1;
	transform: rotate(-15deg);
}
.pin-hero-style-3__leaf svg {
	width: 100%;
	height: auto;
}
.pin-hero-style-3__blob {
	position: absolute;
	bottom: -20px;
	right: -40px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	z-index: 10;
	font-family: 'Playfair Display', "Georgia", cursive;
	color: var(--pin-hero-blob-text-color, #fff);
}
.pin-hero-style-3__blob-title {
	font-size: 26px;
	font-style: italic;
	line-height: 1.1;
	color: inherit;
}
.pin-hero-style-3__blob-desc {
	font-size: 26px;
	font-style: italic;
	margin-bottom: 8px;
	color: inherit;
}
.pin-hero-style-3__blob-icon svg {
	height: 20px;
	width: auto;
	stroke: currentColor;
}
.pin-hero-style-3__blob-icon svg path {
	stroke: currentColor;
}
.pin-hero-style-3__side-text {
	position: absolute;
	right: -40px;
	top: 10%;
	display: flex;
	align-items: stretch;
	gap: 12px;
	z-index: 3;
	max-width: 180px;
}
.pin-hero-style-3__side-line {
	width: 2px;
	min-height: 48px;
	background-color: var(--pin-color-primary, #b3655c);
	margin-top: 3px;
	margin-bottom: 3px;
	flex-shrink: 0;
}
.pin-hero-style-3__side-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.pin-hero-style-3__side-title {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: var(--pin-hero-float2-title-color, #3e3835);
	text-transform: uppercase;
	display: block;
}
.pin-hero-style-3__side-desc {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: normal;
	line-height: 1.45;
	color: var(--pin-hero-float2-desc-color, #746c68);
	text-transform: none;
	display: block;
}
.pin-hero-style-3__dots {
	position: absolute;
	bottom: -40px;
	right: 0;
	display: flex;
	gap: 8px;
}
.pin-hero-style-3__dots span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid #666;
}
.pin-hero-style-3__dots span.active {
	background-color: #666;
}

@media (max-width: 1200px) {
	.pin-hero-style-3__title { font-size: 56px; }
	.pin-hero-style-3__image-wrapper { max-width: 400px; }
	.pin-hero-style-3__side-text { right: -20px; }
	.pin-hero-style-3__notes { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 991px) {
	.pin-hero-style-3__grid { flex-direction: column; gap: 40px; text-align: center; }
	.pin-hero-style-3__eyebrow { justify-content: center; }
	.pin-hero-style-3__actions { justify-content: center; }
	.pin-hero-style-3__notes { justify-content: center; }
	.pin-hero-style-3__bg-right { width: 100%; height: 55%; top: auto; bottom: 0; right: 0; border-radius: 50% 50% 0 0 / 15% 15% 0 0; }
	.pin-hero-style-3__float-text-bottom { justify-content: center; }
	.pin-hero-style-3__image-wrapper { max-width: 350px; margin: 0 auto; }
	.pin-hero-style-3__side-text { display: none; }
}
@media (max-width: 767px) {
	.pin-hero-style-3__actions { flex-direction: column; width: 100%; }
	.pin-hero-style-3__actions .pin-button { width: 100%; }
	.pin-hero-style-3__note { flex-direction: column; text-align: center; gap: 8px; }
	.pin-hero-style-3__note-divider { display: none; }
	.pin-hero-style-3__blob { width: 160px; height: 160px; right: -10px; bottom: -10px; padding: 10px; }
	.pin-hero-style-3__blob-title, .pin-hero-style-3__blob-desc { font-size: 18px; }
	.pin-hero-style-3__leaf { left: -20px; width: 120px; }
}

/* ==========================================================================
   Header Preset: Home Decor (Style 2)
   ========================================================================== */
.pin-header--decor {
	position: relative !important;
	background: var(--pin-header-bg, var(--pin-cream, #fffaf6));
	border-bottom: 0;
	box-shadow: none;
	backdrop-filter: none;
	top: auto !important;
}
.pin-sticky-header-enabled .pin-header--decor,
body.pin-sticky-header-enabled .pin-header--decor,
body.pin-sticky-header-enabled .pin-header.pin-header--decor,
.pin-header--decor.pin-sticky-header-enabled,
.pin-header--decor.pin-has-sticky,
.pin-header.pin-header--decor.pin-has-sticky {
	position: relative !important;
	top: auto !important;
	z-index: 120;
}

/* Top Bar */
.pin-hd-topbar {
	background-color: var(--pin-hd-topbar-bg, #4d5d43);
	color: var(--pin-hd-topbar-color, #ffffff);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 8px 0;
}
.pin-hd-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.pin-hd-topbar__left {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}
.pin-hd-topbar__leaf {
	display: inline-flex;
	align-items: center;
	opacity: 0.92;
}
.pin-hd-topbar__right {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}
.pin-hd-socials {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.pin-hd-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	opacity: 0.9;
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.pin-hd-social:hover {
	opacity: 1;
	transform: translateY(-1px);
}
.pin-hd-topbar__divider {
	opacity: 0.45;
	font-size: 13px;
	user-select: none;
}
.pin-hd-topbar__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	font-weight: 600;
	transition: opacity 0.2s ease;
}
.pin-hd-topbar__cta:hover {
	opacity: 0.85;
}
.pin-hd-heart {
	font-size: 14px;
	line-height: 1;
}

/* Middle Main Row */
.pin-hd-main {
	padding: 6px 0 6px;
}
.pin-hd-main__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}
.pin-hd-mobile-leaf {
	display: none;
}

/* Brand / Logo */
.pin-hd-brand-col {
	flex: 0 0 auto;
}
.pin-hd-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #292525;
}
.pin-hd-brand__title-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: inherit;
}
.pin-hd-brand__logo-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
.pin-hd-brand__logo-wrap .custom-logo-link {
	display: inline-block;
	line-height: 1;
}
.pin-hd-brand__logo-wrap .custom-logo {
	max-height: 55px;
	width: auto;
	object-fit: contain;
	display: block;
}
.pin-hd-brand__doodle {
	margin-bottom: 2px;
	display: flex;
	justify-content: center;
}
.pin-hd-brand__doodle svg {
	width: 44px;
	height: auto;
}
.pin-hd-brand__title-wrap {
	line-height: 1;
}
.pin-hd-brand__title {
	font-family: 'Playfair Display', "Georgia", serif;
	font-size: clamp(38px, 4vw, 54px);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
	line-height: 1;
	display: inline-block;
}
.pin-hd-brand__pin {
	color: #292525;
}
.pin-hd-brand__spired {
	color: var(--pin-hd-accent, #ba5340);
}
.pin-hd-brand__tag {
	display: block;
	margin-top: 6px;
	font-size: 8.5px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pin-muted, #746c68);
	text-align: center;
	line-height: 1.4;
	max-width: 280px;
}

/* Big Pill Search Bar */
.pin-hd-search-col {
	flex: 1 1 auto;
	max-width: 520px;
	margin: 0 auto;
}
.pin-hd-search-form {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	background: #f4efe8;
	border: 1px solid rgba(41, 37, 37, 0.08);
	border-radius: 999px;
	padding: 4px 5px 4px 20px;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pin-hd-search-form:focus-within {
	background: #ffffff;
	border-color: var(--pin-hd-accent, #ba5340);
	box-shadow: 0 4px 20px rgba(186, 83, 64, 0.12);
}
.pin-hd-search-form__icon-left {
	display: inline-flex;
	align-items: center;
	color: #292525;
	opacity: 0.85;
	margin-right: 12px;
	flex-shrink: 0;
}
.pin-hd-search-form__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 44px;
	background: transparent;
	border: 0;
	outline: none;
	font-size: 15px;
	font-family: inherit;
	color: #292525;
}
.pin-hd-search-form__input::placeholder {
	color: #8c8580;
	font-weight: 400;
}
.pin-hd-search-form__submit {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0;
	background: var(--pin-hd-accent, #ba5340);
	color: #ffffff;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(186, 83, 64, 0.25);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pin-hd-search-form__submit:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(186, 83, 64, 0.35);
}

/* Right Visual Card with Arch */
.pin-hd-card-col {
	flex: 0 0 auto;
}
.pin-hd-card {
	display: flex;
	align-items: flex-end;
	gap: 16px;
	position: relative;
}
.pin-hd-card__script {
	font-family: 'Playfair Display', "Georgia", cursive;
	font-size: 22px;
	font-style: italic;
	line-height: 1.15;
	color: #2d3429;
	text-align: right;
	margin-bottom: 8px;
}
.pin-hd-card__heart {
	font-style: normal;
	font-size: 16px;
	margin-left: 2px;
}
.pin-hd-card__image-frame {
	position: relative;
	width: 130px;
	height: 100px;
	border-radius: 80px 80px 0 0;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(41, 37, 37, 0.08);
	background: #ebe5dc;
}
.pin-hd-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Mobile Search Row */
.pin-hd-mobile-search {
	display: none;
}

/* Bottom Navigation Row */
.pin-hd-bottom {
	border-top: 1px solid rgba(41, 37, 37, 0.09);
	padding: 4px 0;
	background: transparent;
}
.pin-hd-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

/* Nav Menu */
.pin-hd-nav {
	margin-left: 0;
	display: flex;
	align-items: center;
}
.pin-hd-nav > ul {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pin-hd-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 600;
	color: #3b3533;
	border-radius: 8px;
	transition: color 0.2s ease, background 0.2s ease;
}
.pin-hd-nav a:hover,
.pin-hd-nav a:focus-visible {
	color: var(--pin-hd-accent, #ba5340);
	background: rgba(186, 83, 64, 0.06);
}
.pin-hd-nav .current-menu-item > a,
.pin-hd-nav .current_page_item > a,
.pin-hd-nav .current-menu-ancestor > a,
.pin-hd-nav .current-category-ancestor > a {
	color: var(--pin-hd-accent, #ba5340);
	font-weight: 700;
	background: transparent;
}
.pin-hd-nav > ul > .current-menu-item > a::before,
.pin-hd-nav > ul > .current_page_item > a::before,
.pin-hd-nav > ul > .current-menu-ancestor > a::before,
.pin-hd-nav > ul > .current-category-ancestor > a::before {
	content: "";
	position: absolute;
	bottom: 2px;
	left: 14px;
	right: 14px;
	height: 2.5px;
	background: var(--pin-hd-accent, #ba5340);
	border-radius: 2px;
	pointer-events: none;
}
.pin-hd-nav .sub-menu .current-menu-item > a,
.pin-hd-nav .sub-menu .current_page_item > a,
.pin-hd-nav .sub-menu .current-category-ancestor > a {
	background: rgba(186, 83, 64, 0.08);
	color: var(--pin-hd-accent, #ba5340);
}
.pin-hd-nav .sub-menu .current-menu-item > a::before,
.pin-hd-nav .sub-menu .current_page_item > a::before,
.pin-hd-nav .sub-menu .current-category-ancestor > a::before {
	display: none;
}
.pin-hd-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-left: 6px;
	margin-bottom: 2px;
	transition: transform 0.2s ease;
	vertical-align: middle;
}
.pin-hd-nav .menu-item-has-children:hover > a::after,
.pin-hd-nav .menu-item-has-children:focus-within > a::after {
	transform: rotate(-135deg);
	margin-bottom: -2px;
}

/* Right Note */
.pin-hd-bottom__note {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: #3b3a38;
}
.pin-hd-bottom__leaf {
	display: inline-flex;
	align-items: center;
	color: #4d5d43;
}
.pin-hd-bottom__line {
	display: inline-block;
	width: 50px;
	height: 2px;
	background: #74806c;
	margin-left: 6px;
	border-radius: 1px;
}

/* Drawer & Backdrop Defaults (Hidden on Desktop by default) */
.pin-hd-drawer,
.pin-hd-drawer-backdrop {
	display: none;
}

/* Custom 3-bar Hamburger */
.pin-hd-hamburger-icon {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 18px;
}
.pin-hd-hamburger-icon span {
	display: block;
	width: 100%;
	height: 3px;
	background: #292525;
	border-radius: 2px;
	transition: all 0.25s ease;
}
.pin-header.is-open .pin-hd-hamburger-icon span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}
.pin-header.is-open .pin-hd-hamburger-icon span:nth-child(2) {
	opacity: 0;
}
.pin-header.is-open .pin-hd-hamburger-icon span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   Responsive: Tablet & Mobile
   ========================================================================== */
/* ==========================================================================
   Home Decor: Minimized Sticky Header (Exact match for screenshot)
   ========================================================================== */
.pin-hd-sticky-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	background: var(--pin-header-bg, var(--pin-cream, #fffaf6));
	border-bottom: 1px solid var(--pin-border, rgba(41, 37, 37, 0.06));
	box-shadow: 0 4px 20px rgba(41, 37, 37, 0.06);
	z-index: 1000;
	display: flex;
	align-items: center;
	transform: translateY(-100%);
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
	opacity: 0;
	pointer-events: none;
}

/* WordPress Admin Bar offset for sticky header */
body.admin-bar .pin-hd-sticky-bar {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .pin-hd-sticky-bar {
		top: 46px;
	}
}
@media screen and (max-width: 600px) {
	body.admin-bar.pin-header-is-scrolled .pin-hd-sticky-bar {
		top: 0;
	}
}

.pin-header--decor.is-scrolled .pin-hd-sticky-bar,
body.pin-header-is-scrolled .pin-header--decor .pin-hd-sticky-bar {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

.pin-hd-sticky-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 100%;
}

/* Left Group: Brand + Pill Search */
.pin-hd-sticky__left {
	display: flex;
	align-items: center;
	gap: 50px;
	flex-shrink: 0;
}

/* Mobile Leaf Accent (Removed) */
.pin-hd-mobile-leaf,
.pin-hd-sticky__mobile-leaf {
	display: none !important;
}

/* On desktop, hide the sticky menu button completely because menu items are already showing */
.pin-hd-sticky__menu-btn {
	display: none !important;
}

.pin-hd-sticky__brand {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: var(--pin-hd-accent, #c85a48);
	max-height: 100%;
	flex-shrink: 0;
}
.pin-hd-sticky__brand--logo {
	display: inline-flex;
	align-items: center;
}
.pin-hd-sticky__brand .custom-logo-link,
.pin-hd-sticky-bar .custom-logo-link,
.pin-hd-sticky__left .custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	max-height: 100%;
}
.pin-hd-sticky__brand .custom-logo,
.pin-hd-sticky-bar .custom-logo,
.pin-hd-sticky__left .custom-logo,
.pin-hd-sticky__brand img,
.pin-hd-sticky-bar .custom-logo-link img {
	max-height: 46px;
	width: auto;
	object-fit: contain;
	display: block;
	transition: max-height 0.2s ease;
}
.pin-hd-sticky__brand-text {
	font-family: 'Playfair Display', "Georgia", serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--pin-hd-accent, #ba5340);
	line-height: 1;
}
.pin-hd-sticky__brand-text .pin-hd-brand__pin {
	color: #292525;
}
.pin-hd-sticky__brand-text .pin-hd-brand__spired {
	color: var(--pin-hd-accent, #ba5340);
}
.pin-hd-sticky__brand-doodle {
	display: inline-block;
	vertical-align: middle;
	margin-left: -2px;
	margin-top: 4px;
}

.pin-hd-sticky__search {
	display: flex;
	align-items: center;
}
.pin-hd-sticky-search-form {
	display: flex;
	align-items: center;
	background: #f4ede6;
	border-radius: 999px;
	height: 38px;
	padding: 0 4px 0 14px;
	width: 230px;
	transition: width 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.pin-hd-sticky-search-form:focus-within {
	width: 270px;
	background: #ffffff;
	box-shadow: 0 0 0 2px rgba(186, 83, 64, 0.2);
}
.pin-hd-sticky-search__icon {
	display: inline-flex;
	align-items: center;
	color: #7a736e;
	margin-right: 8px;
	flex-shrink: 0;
}
.pin-hd-sticky-search__input {
	border: 0;
	background: transparent;
	font-size: 13px;
	font-family: inherit;
	color: #292525;
	outline: none;
	width: 100%;
	padding: 0;
}
.pin-hd-sticky-search__input::placeholder {
	color: #9c958f;
	font-size: 13px;
}
.pin-hd-sticky-search__btn {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--pin-hd-accent, #ba5340);
	border: 0;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease;
}
.pin-hd-sticky-search__btn:hover {
	background: #a34230;
	transform: scale(1.05);
}

/* Center: Primary Navigation Menu */
.pin-hd-sticky__nav {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	justify-content: center;
	margin: 0 8px;
	height: 100%;
}
.pin-hd-sticky__menu-list {
	display: flex;
	align-items: stretch;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}
.pin-hd-sticky__menu-list > li {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.pin-hd-sticky__menu-list > li > a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13.5px;
	font-weight: 600;
	color: #383431;
	text-decoration: none;
	padding: 0 6px;
	height: 100%;
	transition: color 0.2s ease;
	white-space: nowrap;
}
.pin-hd-sticky__menu-list a:hover {
	color: var(--pin-hd-accent, #ba5340);
}
.pin-hd-sticky__menu-list .current-menu-item > a,
.pin-hd-sticky__menu-list .current_page_item > a,
.pin-hd-sticky__menu-list .current-menu-ancestor > a,
.pin-hd-sticky__menu-list .current-category-ancestor > a {
	color: var(--pin-hd-accent, #ba5340);
	font-weight: 700;
}
.pin-hd-sticky__menu-list .sub-menu .current-menu-item > a,
.pin-hd-sticky__menu-list .sub-menu .current_page_item > a,
.pin-hd-sticky__menu-list .sub-menu .current-category-ancestor > a {
	background: rgba(186, 83, 64, 0.08);
	color: var(--pin-hd-accent, #ba5340);
}
.pin-hd-sticky__menu-list .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 5.5px;
	height: 5.5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	margin-left: 4px;
	margin-bottom: 2px;
	transition: transform 0.2s ease;
}
.pin-hd-sticky__menu-list .menu-item-has-children:hover > a::after,
.pin-hd-sticky__menu-list .menu-item-has-children:focus-within > a::after,
.pin-hd-sticky__menu-list .menu-item-has-children.is-open > a::after {
	transform: rotate(-135deg);
	margin-bottom: -2px;
}

/* Sticky Header Dropdown Sub-menu */
.pin-hd-sticky__menu-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	background: #ffffff;
	border: 1px solid rgba(41, 37, 37, 0.08);
	border-radius: 14px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
	padding: 8px 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 1000;
}

/* Invisible Hover Bridge: Prevents cursor from losing hover when moving to sub-menu */
.pin-hd-sticky__menu-list .sub-menu::before {
	content: "";
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
	height: 20px;
	display: block;
}

.pin-hd-sticky__menu-list li:hover > .sub-menu,
.pin-hd-sticky__menu-list li:focus-within > .sub-menu,
.pin-hd-sticky__menu-list li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.pin-hd-sticky__menu-list .sub-menu li {
	position: relative;
	width: 100%;
	display: block;
	height: auto;
}
.pin-hd-sticky__menu-list .sub-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 500;
	color: #4b4542;
	height: auto;
	transition: background 0.15s ease, color 0.15s ease;
}
.pin-hd-sticky__menu-list .sub-menu a:hover {
	background: rgba(186, 83, 64, 0.06);
	color: var(--pin-hd-accent, #ba5340);
}

/* Nested 3rd-level sub-menus in sticky bar */
.pin-hd-sticky__menu-list .sub-menu .menu-item-has-children > a::after {
	transform: rotate(-45deg);
	margin-left: 8px;
	margin-bottom: 0;
}
.pin-hd-sticky__menu-list .sub-menu .menu-item-has-children:hover > a::after,
.pin-hd-sticky__menu-list .sub-menu .menu-item-has-children.is-open > a::after {
	transform: rotate(-135deg);
}
.pin-hd-sticky__menu-list .sub-menu .sub-menu {
	top: -8px;
	left: 100%;
	margin-left: 2px;
	transform: translateX(6px);
}
.pin-hd-sticky__menu-list .sub-menu .sub-menu::before {
	top: 0;
	bottom: 0;
	left: -15px;
	right: auto;
	width: 15px;
	height: 100%;
}
.pin-hd-sticky__menu-list .sub-menu li:hover > .sub-menu,
.pin-hd-sticky__menu-list .sub-menu li:focus-within > .sub-menu,
.pin-hd-sticky__menu-list .sub-menu li.is-open > .sub-menu {
	transform: translateX(0);
}

/* Right Group: Divider + Socials + CTA Button */
.pin-hd-sticky__right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}
.pin-hd-sticky__divider {
	display: inline-block;
	width: 1px;
	height: 24px;
	background: rgba(41, 37, 37, 0.15);
	margin: 0 4px;
}
.pin-hd-sticky__socials {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pin-hd-sticky-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #383431;
	transition: color 0.2s ease, transform 0.2s ease;
	text-decoration: none;
}
.pin-hd-sticky-social:hover {
	color: var(--pin-hd-accent, #ba5340);
	transform: translateY(-1px);
}

.pin-hd-sticky__cta-btn {
	display: none !important;
}

/* ==========================================================================
   Responsive: Tablet & Mobile
   ========================================================================== */
@media (max-width: 1200px) {
	.pin-hd-sticky-search-form { width: 190px; }
	.pin-hd-sticky-search-form:focus-within { width: 220px; }
	.pin-hd-sticky__menu-list { gap: 14px; }
	.pin-hd-sticky__menu-list a { font-size: 13px; }
	.pin-hd-card__script { font-size: 18px; }
	.pin-hd-card__image-frame { width: 110px; height: 105px; }
	.pin-hd-search-col { max-width: 360px; }
	.pin-hd-bottom__line { width: 30px; }
}

@media (max-width: 1024px) {
	.pin-hd-topbar__left { display: none; }
	.pin-hd-topbar__inner { justify-content: center; gap: 12px; }
	.pin-hd-card-col { display: none; }
	.pin-hd-search-col { display: none; }

	.pin-hd-main { padding: 6px 0 6px; }
	.pin-hd-main__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}
	.pin-hd-brand-col {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
	}
	.pin-hd-brand {
		align-items: flex-start;
		text-align: left;
	}
	.pin-hd-brand__logo-wrap {
		justify-content: flex-start;
	}
	.pin-hd-brand__logo-wrap .custom-logo {
		max-height: 40px;
	}
	.pin-hd-brand__title { font-size: 38px; }
	.pin-hd-brand__doodle svg { width: 38px; }
	.pin-hd-brand__tag {
		text-align: left;
		margin-top: 3px;
		font-size: 7.5px;
		letter-spacing: 0.15em;
		max-width: 220px;
	}
	.pin-hd-menu-button {
		display: grid !important;
		place-items: center;
		width: 44px;
		height: 44px;
		background: transparent;
		box-shadow: none;
		border: 0;
	}

	/* Mobile Search Row below Header (Search is accessed via navigation drawer) */
	.pin-hd-mobile-search {
		display: none !important;
	}

	.pin-hd-bottom {
		border-top: 0;
		padding: 0;
		position: static;
	}
	.pin-hd-bottom__inner {
		position: static;
		width: 100%;
		padding: 0;
	}
	.pin-hd-bottom {
		display: none !important;
	}

	/* Sticky Header on Mobile & Tablet (Matches without-scrolling mode size & layout) */
	.pin-hd-sticky-bar {
		height: 56px;
	}
	.pin-hd-sticky-bar__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		height: 56px;
	}
	.pin-hd-sticky__left {
		width: auto;
		display: flex;
		align-items: center;
		gap: 0;
		flex: 0 0 auto;
	}
	.pin-hd-sticky__brand,
	.pin-hd-sticky__brand--logo {
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		text-align: left;
	}
	.pin-hd-sticky__brand .custom-logo,
	.pin-hd-sticky-bar .custom-logo,
	.pin-hd-sticky__left .custom-logo,
	.pin-hd-sticky__brand img,
	.pin-hd-sticky-bar .custom-logo-link img {
		max-height: 40px !important;
		width: auto !important;
		object-fit: contain !important;
		display: block !important;
	}
	.pin-hd-sticky__brand-text {
		font-size: 20px;
	}
	.pin-hd-sticky__brand-doodle svg {
		width: 28px;
		height: auto;
	}
	.pin-hd-sticky__search {
		display: none;
	}
	.pin-hd-sticky__nav {
		display: none;
	}
	.pin-hd-sticky__right {
		width: auto;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
	}
	.pin-hd-sticky__divider {
		display: none;
	}
	.pin-hd-sticky__socials {
		display: none;
	}
	.pin-hd-sticky__cta-btn {
		display: none;
	}
	.pin-hd-sticky__menu-btn {
		display: grid !important;
		place-items: center;
		width: 44px;
		height: 44px;
		background: transparent;
		box-shadow: none;
		border: 0;
		color: #292525;
		cursor: pointer;
		padding: 0;
	}
	.pin-hd-sticky__menu-btn .pin-hd-hamburger-icon {
		width: 24px;
		height: 18px;
	}
	.pin-hd-sticky__menu-btn .pin-hd-hamburger-icon span {
		height: 3px;
	}

	/* Mobile Navigation Drawer upon clicking hamburger */
	.pin-hd-drawer {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(390px, 88vw);
		background: #ffffff;
		box-shadow: -8px 0 40px rgba(41, 37, 37, 0.22);
		z-index: 10002;
		overflow-y: auto;
		transform: translateX(100%);
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
		visibility: hidden;
		display: block !important;
	}
	.pin-header--decor.is-open .pin-hd-drawer {
		transform: translateX(0);
		visibility: visible;
	}

	.pin-hd-drawer-backdrop {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.45);
		backdrop-filter: blur(2px);
		z-index: 10001;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		display: block !important;
	}
	.pin-header--decor.is-open .pin-hd-drawer-backdrop {
		opacity: 1;
		visibility: visible;
	}

	/* Drawer Inner Layout */
	.pin-hd-drawer__inner {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding: 22px 20px 36px;
		min-height: 100%;
		box-sizing: border-box;
	}

	/* Drawer Top Bar */
	.pin-hd-drawer-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 14px;
		border-bottom: 1px solid rgba(41, 37, 37, 0.08);
		width: 100%;
	}
	.pin-hd-drawer-brand-wrap {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.pin-hd-drawer-brand {
		font-family: 'Playfair Display', "Georgia", serif;
		font-size: 22px;
		font-weight: 700;
		line-height: 1.1;
		color: var(--pin-hd-accent, #ba5340);
	}
	.pin-hd-drawer-tagline {
		font-size: 7.5px;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--pin-muted, #746c68);
		margin-top: 3px;
	}
	.pin-hd-drawer-close {
		width: 36px;
		height: 36px;
		border: 0;
		border-radius: 50%;
		background: rgba(41, 37, 37, 0.06);
		color: #292525;
		display: grid;
		place-items: center;
		cursor: pointer;
		transition: background 0.2s ease, color 0.2s ease;
	}
	.pin-hd-drawer-close:hover {
		background: rgba(186, 83, 64, 0.12);
		color: var(--pin-hd-accent, #ba5340);
	}

	/* Drawer Search Bar */
	.pin-hd-drawer-search {
		width: 100%;
	}
	.pin-hd-drawer-search .pin-hd-search-form {
		width: 100%;
		max-width: 100%;
		background: #f4efe8;
	}

	/* Drawer Navigation Menu */
	.pin-hd-drawer-nav {
		width: 100%;
	}
	.pin-hd-drawer-nav > ul,
	.pin-hd-drawer-nav .menu {
		display: flex !important;
		flex-direction: column !important;
		gap: 4px !important;
		width: 100% !important;
		list-style: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	.pin-hd-drawer-nav li {
		position: relative;
		width: 100%;
	}
	.pin-hd-drawer-nav a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 44px;
		padding: 10px 14px;
		border-radius: 12px;
		color: #292525;
		font-size: 15px;
		font-weight: 600;
		text-decoration: none;
		box-sizing: border-box;
		transition: background 0.2s ease, color 0.2s ease;
	}
	.pin-hd-drawer-nav a:hover {
		background: rgba(186, 83, 64, 0.08);
		color: var(--pin-hd-accent, #ba5340);
	}
	.pin-hd-drawer-nav .current-menu-item > a,
	.pin-hd-drawer-nav .current_page_item > a,
	.pin-hd-drawer-nav .current-menu-ancestor > a,
	.pin-hd-drawer-nav .current-category-ancestor > a {
		background: rgba(186, 83, 64, 0.1);
		color: var(--pin-hd-accent, #ba5340);
		font-weight: 700;
	}
	.pin-hd-drawer-nav .current-menu-item > a::before,
	.pin-hd-drawer-nav .current_page_item > a::before,
	.pin-hd-drawer-nav .current-menu-ancestor > a::before,
	.pin-hd-drawer-nav .current-category-ancestor > a::before,
	.pin-hd-drawer-nav .current-menu-item > a::after,
	.pin-hd-drawer-nav .current_page_item > a::after,
	.pin-hd-drawer-nav .current-menu-ancestor > a::after,
	.pin-hd-drawer-nav .current-category-ancestor > a::after {
		display: none;
	}
	.pin-hd-drawer-nav li > .pin-nav-toggle {
		position: absolute;
		right: 6px;
		top: 8px;
		width: 28px;
		height: 28px;
		display: grid;
		place-items: center;
		border: 0;
		background: transparent;
		color: #746c68;
		cursor: pointer;
		border-radius: 50%;
		transition: transform 0.2s ease, color 0.2s ease;
	}
	.pin-hd-drawer-nav li > .pin-nav-toggle:hover {
		color: var(--pin-hd-accent, #ba5340);
	}
	.pin-hd-drawer-nav .menu-item-has-children.is-open > .pin-nav-toggle {
		transform: rotate(180deg);
		color: var(--pin-hd-accent, #ba5340);
	}

	/* Drawer Sub-menus */
	.pin-hd-drawer-nav .sub-menu {
		position: static !important;
		width: 100% !important;
		padding: 4px 0 4px 12px !important;
		border: 0 !important;
		border-left: 2px solid rgba(186, 83, 64, 0.25) !important;
		border-radius: 0 !important;
		margin: 4px 0 8px 10px !important;
		list-style: none !important;
		background: transparent !important;
		box-shadow: none !important;
		display: none;
	}
	.pin-hd-drawer-nav .menu-item-has-children.is-open > .sub-menu {
		display: flex !important;
		flex-direction: column !important;
		gap: 3px !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}
	.pin-hd-drawer-nav .sub-menu a {
		font-size: 14px;
		font-weight: 500;
		color: #554f4b;
		padding: 8px 12px;
	}
	.pin-hd-drawer-nav .sub-menu a:hover {
		color: var(--pin-hd-accent, #ba5340);
	}

	/* Drawer Extras */
	.pin-hd-drawer-extras {
		display: flex;
		flex-direction: column;
		gap: 16px;
		padding-top: 18px;
		margin-top: 6px;
		border-top: 1px solid rgba(41, 37, 37, 0.08);
	}

	/* Drawer CTA Button */
	.pin-hd-drawer-cta {
		display: none !important;
	}

	/* Drawer Socials */
	.pin-hd-drawer-socials {
		display: flex;
		flex-direction: column;
		gap: 10px;
		padding: 8px 0;
	}
	.pin-hd-drawer-socials-title {
		font-size: 11px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: #746c68;
	}
	.pin-hd-drawer-socials .pin-hd-socials {
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.pin-hd-drawer-socials .pin-hd-social {
		width: 36px;
		height: 36px;
		border-radius: 50%;
		background: #f5ede6;
		display: grid;
		place-items: center;
		color: #383431;
		transition: background 0.2s, color 0.2s;
	}
	.pin-hd-drawer-socials .pin-hd-social:hover {
		background: var(--pin-hd-accent, #ba5340);
		color: #ffffff;
	}

	.pin-hd-drawer-announcement {
		display: flex;
		align-items: center;
		gap: 10px;
		font-size: 12px;
		font-weight: 700;
		color: #4d5d43;
		padding: 8px 12px;
		background: rgba(77, 93, 67, 0.08);
		border-radius: 12px;
	}
	.pin-hd-drawer-card {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 16px;
		background: #f8f6f0;
		border-radius: 18px;
		border: 1px solid rgba(41, 37, 37, 0.05);
	}
	.pin-hd-drawer-card__text {
		font-family: 'Playfair Display', "Georgia", cursive;
		font-style: italic;
		font-size: 20px;
		line-height: 1.2;
		color: #292525;
	}
	.pin-hd-drawer-card__thumb {
		width: 60px;
		height: 60px;
		border-radius: 30px 30px 0 0;
		overflow: hidden;
		flex-shrink: 0;
	}
	.pin-hd-drawer-card__thumb img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.pin-hd-drawer-note {
		display: flex;
		align-items: center;
		gap: 8px;
		font-size: 13px;
		font-weight: 700;
		color: #4b4542;
	}
}

/* Desktop Drawer (When opened from sticky bar hamburger) */
@media (min-width: 1025px) {
	.pin-header--decor.is-open .pin-hd-drawer {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 380px;
		background: #ffffff;
		box-shadow: 10px 0 40px rgba(41, 37, 37, 0.15);
		z-index: 10002;
		overflow-y: auto;
		display: block !important;
		visibility: visible;
		transform: translateX(0);
	}
	.pin-header--decor.is-open .pin-hd-drawer-backdrop {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.35);
		z-index: 10001;
		display: block !important;
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 768px) {
	.pin-hd-sticky-bar { height: 56px; }
	.pin-hd-sticky__search { display: none; }
	.pin-hd-sticky__socials { display: none; }
	.pin-hd-sticky__brand-text { font-size: 19px; }
	.pin-hd-sticky__cta-btn { padding: 6px 14px; font-size: 12px; }
}

/* ==========================================================================
   Home Decor / Botanical Footer Preset Styles
   ========================================================================== */
.pin-decor-footer {
	background-color: var(--pin-footer-decor-bg, #faf7f2);
	color: var(--pin-footer-decor-text, var(--pin-ink, #2b2b2b));
	position: relative;
	overflow: hidden;
}

.pin-decor-script {
	font-family: 'Caveat', cursive, sans-serif;
	font-weight: 600;
	color: #3b4d37;
	line-height: 1.15;
}

/* --- 1. Pre-Footer Inspiration Banner --- */
.pin-decor-banner {
	background-color: var(--pin-footer-decor-banner-bg, #fff3f5);
	padding: 60px 0 45px;
	position: relative;
	border-bottom: 1px solid var(--pin-border, rgba(0, 0, 0, 0.06));
}

.pin-decor-banner__container {
	display: grid;
	grid-template-columns: 160px 1fr 340px;
	align-items: center;
	gap: 36px;
	position: relative;
}

.pin-decor-banner__left-accent {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pin-decor-script--banner-left {
	font-size: 24px;
	color: #38493d;
	line-height: 1.2;
}

.pin-decor-mobile-brand {
	display: none;
}

.pin-decor-banner__center {
	text-align: center;
}

.pin-decor-banner__headline {
	font-family: "Playfair Display", "Solway", serif;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.22;
	color: #222222;
	margin: 0 auto 12px;
	max-width: 580px;
}

.pin-decor-banner__subtitle {
	font-size: 15px;
	color: #635f5c;
	margin: 0 auto 24px;
	max-width: 500px;
	line-height: 1.55;
}

.pin-decor-banner__action {
	display: flex;
	justify-content: center;
}

.pin-decor-btn--banner {
	display: inline-block;
	border-radius: 999px;
	background: var(--pin-footer-decor-accent, #ba5340);
	color: #ffffff !important;
	padding: 13px 32px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(186, 83, 64, 0.28);
}

.pin-decor-btn--banner:hover {
	background: #a34230;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(186, 83, 64, 0.35);
}

/* Arch Visual Collage */
.pin-decor-banner__visual {
	display: flex;
	justify-content: flex-end;
}

.pin-decor-arch-wrapper {
	position: relative;
	width: 320px;
	height: 310px;
}

.pin-decor-arch-backdrop {
	position: absolute;
	width: 220px;
	height: 260px;
	top: -8px;
	left: 0;
	background: var(--pin-footer-decor-arch-bg, #eeddd6);
	border-radius: 120px 120px 0 0;
	opacity: 0.75;
	z-index: 1;
}

.pin-decor-arch-frame {
	position: relative;
	width: 220px;
	height: 280px;
	border-radius: 120px 120px 0 0;
	overflow: hidden;
	z-index: 2;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
	left: 14px;
}

.pin-decor-arch-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pin-decor-arch-badge {
	position: absolute;
	right: 0;
	bottom: 35px;
	width: 110px;
	height: 145px;
	background: #fffaf6;
	border-radius: 60px 60px 0 0;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px;
}

.pin-decor-script--badge {
	font-size: 20px;
	color: #3b4d37;
	line-height: 1.15;
}

.pin-decor-mobile-circle-badge {
	display: none;
}

.pin-decor-leaf-sprig--bottom-right {
	position: absolute;
	right: 80px;
	bottom: -6px;
	z-index: 4;
}

/* --- 2. Main 5-Column Footer Grid --- */
.pin-decor-body {
	background-color: var(--pin-footer-decor-bg, #faf7f2);
	color: var(--pin-footer-decor-text, var(--pin-ink, #2b2b2b));
	padding: 55px 0 60px;
}

.pin-decor-body__grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1fr 1.3fr;
	gap: 36px;
	align-items: start;
}

/* Brand Column */
.pin-decor-brand__leaves {
	margin-bottom: 8px;
}

.pin-decor-brand__title {
	font-family: "Playfair Display", "Solway", serif;
	font-size: 36px;
	font-weight: 700;
	color: #ba5340 !important;
	text-decoration: none;
	display: block;
	line-height: 1;
	letter-spacing: -0.5px;
}

.pin-decor-brand__tagline {
	display: block;
	font-size: 10.5px;
	font-weight: 700;
	color: #76716d;
	letter-spacing: 1.8px;
	margin: 8px 0 16px;
	text-transform: uppercase;
}

.pin-decor-brand__desc {
	font-size: 13.5px;
	color: var(--pin-footer-decor-text, var(--pin-ink, #5a5551));
	line-height: 1.6;
	margin-bottom: 22px;
	max-width: 270px;
}

/* Social Buttons */
.pin-decor-socials {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.pin-decor-social-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #ddd3cb;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #4a4542 !important;
	background: #fffaf6;
	text-decoration: none;
	transition: all 0.25s ease;
}

.pin-decor-social-btn:hover {
	border-color: #ba5340;
	background: #ba5340;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(186, 83, 64, 0.25);
}

.pin-decor-brand__note {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	color: #3b4d37;
	margin-top: 6px;
}

/* Desktop Menu Columns */
.pin-decor-col__heading {
	font-family: "Playfair Display", "Solway", serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--pin-h3-color, #292525);
	margin-bottom: 18px;
	display: block;
	border: none;
	background: transparent;
	padding: 0;
	text-align: left;
	pointer-events: none;
	cursor: default;
}

.pin-decor-accordion__icon {
	display: none;
}

.pin-decor-accordion__content {
	max-height: none;
	opacity: 1;
	overflow: visible;
}

.pin-decor-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pin-decor-menu-list a {
	color: var(--pin-footer-decor-link, var(--pin-link-color, #4a4542));
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease, padding-left 0.2s ease;
	display: inline-block;
}

.pin-decor-menu-list a:hover {
	color: var(--pin-footer-decor-link-hover, var(--pin-footer-decor-accent, #ba5340));
	padding-left: 3px;
}

/* Footer Submenu & Dropdown Styles */
.pin-decor-menu-list li.menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

.pin-decor-menu-list li.menu-item-has-children > a {
	flex: 1 1 auto;
}

.pin-decor-sub-toggle {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin-left: 4px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #6a6460;
	cursor: pointer;
	transition: all 0.2s ease;
}

.pin-decor-sub-toggle:hover {
	background: rgba(186, 83, 64, 0.1);
	color: #ba5340;
}

.pin-decor-sub-toggle .pin-dropdown-chevron {
	display: block;
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pin-decor-menu-list li.menu-item-has-children.is-open > .pin-decor-sub-toggle .pin-dropdown-chevron,
.pin-decor-sub-toggle[aria-expanded="true"] .pin-dropdown-chevron,
.pin-footer li.menu-item-has-children.is-open > .pin-decor-sub-toggle .pin-dropdown-chevron {
	transform: rotate(180deg);
}

.pin-decor-menu-list .sub-menu {
	flex-basis: 100%;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0 0 0 12px;
	border-left: 2px solid #eadad2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin 0.25s ease;
}

.pin-decor-menu-list li.menu-item-has-children.is-open > .sub-menu {
	max-height: 800px;
	opacity: 1;
	margin-top: 8px;
	margin-bottom: 4px;
}

.pin-decor-menu-list .sub-menu a {
	font-size: 13px;
	color: #6a6460;
}

.pin-decor-menu-list .sub-menu a:hover {
	color: #ba5340;
	padding-left: 3px;
}

@media (min-width: 769px) {
	.pin-decor-menu-list li.menu-item-has-children:hover > .pin-decor-sub-toggle .pin-dropdown-chevron {
		transform: rotate(180deg);
	}
	.pin-decor-menu-list li.menu-item-has-children:hover > .sub-menu {
		max-height: 800px;
		opacity: 1;
		margin-top: 8px;
		margin-bottom: 4px;
	}
}

.pin-decor-menu-extra {
	margin-top: 14px;
}

.pin-decor-extra-link {
	color: #ba5340 !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	display: inline-block;
	transition: transform 0.2s ease;
}

.pin-decor-extra-link:hover {
	transform: translateX(3px);
}

/* Column 5: Newsletter Card */
.pin-decor-newsletter-card {
	background: #fdfbf7;
	border: 1px solid #eadad2;
	border-radius: 20px;
	padding: 26px 20px;
	text-align: center;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
}

.pin-decor-newsletter-card__icon {
	margin-bottom: 12px;
}

.pin-decor-newsletter-card__title {
	font-family: "Playfair Display", "Solway", serif;
	font-size: 18px;
	font-weight: 700;
	color: #292525;
	margin: 0 0 8px;
}

.pin-decor-newsletter-card__desc {
	font-size: 12.5px;
	color: #66605b;
	line-height: 1.5;
	margin: 0 0 16px;
}

.pin-decor-input {
	width: 100%;
	padding: 11px 16px;
	border-radius: 999px;
	border: 1px solid #dfd5cf;
	background: #f5eeea;
	font-size: 13px;
	color: #333333;
	outline: none;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 10px;
	transition: border-color 0.2s, background 0.2s;
}

.pin-decor-input:focus {
	border-color: #ba5340;
	background: #ffffff;
}

.pin-decor-btn--submit {
	width: 100%;
	border-radius: 999px;
	background: var(--pin-footer-decor-accent, #ba5340);
	color: #ffffff;
	padding: 11px 20px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 3px 12px rgba(186, 83, 64, 0.22);
}

.pin-decor-btn--submit:hover {
	background: #a34230;
	transform: translateY(-1px);
	box-shadow: 0 5px 16px rgba(186, 83, 64, 0.3);
}

.pin-decor-newsletter-card__security {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 11.5px;
	color: #88827e;
	margin-top: 12px;
}

/* Newsletter Feedback Alert */
.pin-newsletter-feedback {
	margin-top: 12px;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
	font-weight: 500;
	word-break: break-word;
	animation: pin-fade-in 0.25s ease-out;
}

.pin-newsletter-feedback--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.pin-newsletter-feedback--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.pin-decor-btn-spinner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pin-spin {
	animation: pin-spin-keyframes 0.75s linear infinite;
}

@keyframes pin-spin-keyframes {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes pin-fade-in {
	from { opacity: 0; transform: translateY(-4px); }
	to { opacity: 1; transform: translateY(0); }
}

.pin-decor-newsletter-script {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	font-size: 21px;
	color: #38493d;
	margin-top: 18px;
}

.pin-decor-mobile-socials-row {
	display: none;
}

/* --- 3. Wavy Forest Green Bottom Bar --- */
.pin-decor-bottom-wrap {
	position: relative;
	margin-top: 15px;
}

.pin-decor-wave {
	display: block;
	width: 100%;
	line-height: 0;
	margin-bottom: -1px;
}

.pin-decor-wave svg {
	width: 100%;
	height: 48px;
	display: block;
}

.pin-decor-wave svg path {
	fill: var(--pin-footer-decor-wave, #38493d);
}

.pin-decor-bottom-bar {
	background-color: var(--pin-footer-decor-wave, #38493d);
	color: var(--pin-footer-decor-bottom-text, #e4ebe2);
	padding: 18px 0 22px;
	font-size: 12.5px;
}

.pin-decor-bottom-bar__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.pin-decor-bottom-bar__left {
	display: flex;
	align-items: center;
	gap: 9px;
}

.pin-decor-bottom-bar__badge {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #d1ded0;
}

.pin-decor-bottom-bar__center {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.pin-decor-bottom-bar__center a {
	color: var(--pin-footer-decor-bottom-link, #d5e0d3);
	text-decoration: none;
	transition: color 0.2s ease;
}

.pin-decor-bottom-bar__center a:hover {
	color: var(--pin-footer-decor-bottom-link-hover, #ffffff);
}

.pin-decor-bottom-bar__pipe {
	color: rgba(255, 255, 255, 0.3);
	font-weight: 300;
}

.pin-decor-bottom-bar__right {
	font-size: 11px;
	letter-spacing: 1.4px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--pin-footer-decor-bottom-link, #c9d8c7);
}

/* ==========================================================================
   Mobile & Tablet Responsive Adjustments (Matching Mobile Mockup)
   ========================================================================== */
@media (max-width: 1024px) and (min-width: 769px) {
	.pin-decor-banner__container {
		grid-template-columns: 120px 1fr 280px;
		gap: 24px;
	}
	.pin-decor-banner__headline {
		font-size: 32px;
	}
	.pin-decor-body__grid {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 28px;
	}
	.pin-decor-col--brand {
		grid-column: span 3;
		max-width: 100%;
	}
	.pin-decor-col--newsletter {
		grid-column: span 3;
		max-width: 440px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	/* Pre-Footer Banner Mobile */
	.pin-decor-banner {
		padding: 40px 0 30px;
	}
	.pin-decor-banner__container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 24px;
	}
	.pin-decor-banner__left-accent {
		display: none;
	}
	.pin-decor-mobile-brand {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 18px;
	}
	.pin-decor-brand-title {
		font-family: "Playfair Display", "Solway", serif;
		font-size: 28px;
		font-weight: 700;
		color: var(--pin-footer-decor-accent, #ba5340) !important;
		letter-spacing: -0.5px;
		line-height: 1.1;
		margin-top: 4px;
		text-decoration: none;
		display: inline-block;
	}
	.pin-decor-brand-sub {
		font-size: 9.5px;
		letter-spacing: 1.6px;
		font-weight: 700;
		color: var(--pin-footer-decor-text, #76716d);
		margin-top: 4px;
		text-transform: uppercase;
		display: block;
	}
	.pin-decor-banner__headline {
		font-size: 26px;
		max-width: 320px;
		line-height: 1.25;
	}
	.pin-decor-banner__subtitle {
		font-size: 13.5px;
		max-width: 300px;
		margin-bottom: 20px;
	}
	.pin-decor-btn--banner {
		padding: 11px 26px;
		font-size: 14px;
	}
	.pin-decor-banner__visual {
		order: 3;
		margin: 10px auto 0;
		justify-content: center;
	}
	.pin-decor-arch-wrapper {
		margin: 0 auto;
		width: 240px;
		height: 255px;
	}
	.pin-decor-arch-backdrop {
		width: 180px;
		height: 220px;
		left: 10px;
	}
	.pin-decor-arch-frame {
		width: 180px;
		height: 235px;
		left: 20px;
	}
	.pin-decor-arch-badge {
		display: none;
	}
	.pin-decor-mobile-circle-badge {
		display: flex;
		position: absolute;
		right: 0;
		top: 45px;
		width: 82px;
		height: 82px;
		background: #ffffff;
		border-radius: 50%;
		box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
		z-index: 5;
		align-items: center;
		justify-content: center;
		text-align: center;
		font-family: 'Caveat', cursive;
		font-size: 14px;
		color: #38493d;
		line-height: 1.15;
		padding: 6px;
	}
	.pin-decor-leaf-sprig--bottom-right {
		right: 15px;
		bottom: -15px;
	}

	/* Main Body turns into Accordion List */
	.pin-decor-body {
		padding: 10px 0 25px;
	}
	.pin-decor-body__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.pin-decor-col--brand {
		display: none; /* Logo displayed at top in banner */
	}

	.pin-decor-footer.pin-no-banner .pin-decor-col--brand {
		display: flex !important;
		flex-direction: column;
		align-items: center;
		text-align: center;
		margin-bottom: 24px;
	}

	/* Accordion Styles */
	.pin-decor-col--menu,
	.pin-decor-col--newsletter {
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}
	.pin-decor-col__heading.pin-decor-accordion__toggle {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 18px 4px;
		margin: 0;
		background: none;
		border: none;
		font-size: 16px;
		font-weight: 600;
		color: #292525;
		cursor: pointer;
		text-align: left;
		pointer-events: auto;
	}
	.pin-decor-accordion__icon {
		display: inline-block;
		font-size: 20px;
		font-weight: 400;
		color: #555555;
		transition: transform 0.3s ease;
		line-height: 1;
	}
	.pin-decor-accordion.is-open .pin-decor-accordion__icon {
		transform: rotate(45deg);
	}
	.pin-decor-accordion__content {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
		opacity: 0;
		padding: 0 4px;
	}
	.pin-decor-accordion.is-open .pin-decor-accordion__content {
		max-height: 2500px;
		opacity: 1;
		padding: 6px 4px 22px;
	}

	/* Mobile Socials Row */
	.pin-decor-mobile-socials-row {
		display: block;
		padding: 28px 0 10px;
		text-align: center;
	}
	.pin-decor-socials--mobile {
		display: flex;
		justify-content: center;
		gap: 12px;
		margin-bottom: 0;
	}

	/* Bottom Bar Mobile */
	.pin-decor-bottom-bar__container {
		flex-direction: column;
		text-align: center;
		gap: 14px;
	}
	.pin-decor-bottom-bar__left,
	.pin-decor-bottom-bar__center,
	.pin-decor-bottom-bar__right {
		justify-content: center;
		text-align: center;
	}
	.pin-decor-bottom-bar__center {
		font-size: 12px;
		gap: 8px;
	}
}

/* ==========================================================================
   PARENTING FOOTER PRESET (Preset 3)
   Exact match for editorial parenting aesthetic with community newsletter banner,
   10-category circular badge strip, dynamic menus, teddy bear card, and wave bar.
   ========================================================================== */

:root {
	--pin-parenting-bg: #fdfbf7;
	--pin-parenting-wave: #4a5d4e;
	--pin-parenting-terracotta: #c85a48;
	--pin-parenting-terracotta-dark: #b14837;
	--pin-parenting-cream: #fbf7f0;
	--pin-parenting-ink: #2b2524;
	--pin-parenting-muted: #6b6360;
}

.pin-parenting-footer {
	background-color: var(--pin-parenting-bg);
	color: var(--pin-parenting-ink);
	font-family: var(--pin-body-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
	position: relative;
	overflow: hidden;
}

/* Handwriting Font Style */
.pin-parenting-handwriting {
	font-family: "Caveat", "Playfair Display", cursive, serif;
	font-size: 22px;
	line-height: 1.15;
	color: var(--pin-parenting-ink);
	letter-spacing: -0.01em;
}

/* ==========================================================================
   1. PRE-FOOTER COMMUNITY NEWSLETTER BANNER
   ========================================================================== */
.pin-parenting-banner {
	padding: 58px 0 46px;
	background: var(--pin-parenting-banner-bg, #fbf8f2);
	position: relative;
	border-bottom: 1px solid rgba(230, 222, 210, 0.7);
}

.pin-parenting-banner__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
	position: relative;
}

.pin-parenting-banner__mobile-top {
	display: none;
}

/* Washi Tape Accent */
.pin-parenting-washi-tape {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 58px;
	height: 16px;
	border-radius: 2px;
	z-index: 5;
	opacity: 0.88;
}
.pin-parenting-washi-tape--kraft {
	background: #e8cca8;
	transform: translateX(-50%) rotate(2deg);
}
.pin-parenting-washi-tape--sage {
	background: #c8d9c2;
	transform: translateX(-50%) rotate(-3deg);
}
.pin-parenting-washi-tape--peach {
	background: #f4c8ba;
	transform: translateX(-50%) rotate(-2deg);
}
.pin-parenting-washi-tape--dots {
	background: #a4c4b2;
	background-image: radial-gradient(#fff 20%, transparent 20%);
	background-size: 5px 5px;
	transform: translateX(-50%) rotate(3deg);
}

/* Polaroid Photos */
.pin-parenting-polaroid {
	background: #fff;
	padding: 7px 7px 22px 7px;
	border-radius: 4px;
	box-shadow: 0 14px 30px rgba(60, 42, 38, 0.12);
	position: relative;
	display: inline-block;
}
.pin-parenting-polaroid__inner {
	overflow: hidden;
	border-radius: 2px;
	background: #eee8e2;
}
.pin-parenting-polaroid__inner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Left Column (Desktop) */
.pin-parenting-banner__left {
	position: relative;
	width: 280px;
	flex: 0 0 280px;
	height: 290px;
}

.pin-parenting-sticky-note {
	position: absolute;
	top: 15px;
	left: 0;
	width: 120px;
	padding: 24px 14px 18px;
	background: #fdf6ec;
	border-radius: 3px;
	box-shadow: 0 8px 20px rgba(50, 40, 36, 0.08);
	transform: rotate(-6deg);
	z-index: 1;
	text-align: center;
}
.pin-parenting-handwriting--note {
	font-size: 19px;
	color: #3b322f;
	line-height: 1.2;
}

.pin-parenting-polaroid--left {
	position: absolute;
	top: 10px;
	right: 0;
	width: 175px;
	transform: rotate(3deg);
	z-index: 2;
}
.pin-parenting-polaroid--left .pin-parenting-polaroid__inner {
	width: 161px;
	height: 200px;
}

.pin-parenting-doodle-heart {
	color: #d85d77;
	font-size: 20px;
	line-height: 1;
	position: absolute;
	user-select: none;
}
.pin-parenting-doodle-heart--left {
	bottom: 25px;
	left: 60px;
	transform: rotate(-12deg);
}
.pin-parenting-doodle-heart--center-right {
	position: absolute;
	right: 25px;
	top: 30px;
	transform: rotate(15deg);
	font-size: 22px;
}

/* Center Column */
.pin-parenting-banner__center {
	flex: 1 1 auto;
	max-width: 580px;
	text-align: center;
	padding: 0 10px;
	position: relative;
}

.pin-parenting-kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #4a5c4b;
	margin-bottom: 12px;
}
.pin-parenting-kicker-heart {
	color: var(--pin-parenting-terracotta);
	font-size: 14px;
}

.pin-parenting-title {
	font-family: var(--pin-heading-font, "Playfair Display", Georgia, serif);
	font-size: clamp(28px, 3.2vw, 42px);
	font-weight: 500;
	line-height: 1.14;
	letter-spacing: -0.025em;
	color: var(--pin-parenting-ink);
	margin: 0 0 14px;
}
.pin-parenting-title-heart {
	color: var(--pin-parenting-terracotta);
	font-weight: 400;
	font-size: 0.85em;
}

.pin-parenting-desc {
	font-size: 14.5px;
	line-height: 1.68;
	color: var(--pin-parenting-muted);
	max-width: 520px;
	margin: 0 auto 24px;
}

/* Newsletter Pill Form */
.pin-parenting-newsletter-form {
	max-width: 480px;
	margin: 0 auto 18px;
}
.pin-parenting-form-box {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border: 1px solid rgba(216, 93, 119, 0.22);
	border-radius: 999px;
	padding: 5px 6px 5px 18px;
	box-shadow: 0 8px 24px rgba(71, 52, 48, 0.07);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pin-parenting-form-box:focus-within {
	border-color: var(--pin-parenting-terracotta);
	box-shadow: 0 10px 28px rgba(200, 90, 72, 0.15);
}
.pin-parenting-form-icon {
	display: flex;
	align-items: center;
	color: #6e6462;
	flex: 0 0 auto;
}
.pin-parenting-input {
	flex: 1 1 auto;
	border: none;
	background: transparent;
	font-size: 14.5px;
	color: var(--pin-parenting-ink);
	padding: 8px 0;
	outline: none;
}
.pin-parenting-input::placeholder {
	color: #9c918e;
}
.pin-parenting-btn--submit {
	background: var(--pin-parenting-terracotta);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(200, 90, 72, 0.25);
}
.pin-parenting-btn--submit:hover,
.pin-parenting-btn--submit:focus-visible {
	background: var(--pin-parenting-terracotta-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(200, 90, 72, 0.32);
}

/* Feature Checkmarks */
.pin-parenting-checkmarks {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 24px;
	font-size: 12.5px;
	font-weight: 600;
	color: #554b49;
}
.pin-parenting-check-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.pin-parenting-check-icon {
	color: #4a5d4e;
	font-weight: 800;
	font-size: 13px;
}

/* Right Column (Desktop) */
.pin-parenting-banner__right {
	position: relative;
	width: 290px;
	flex: 0 0 290px;
	height: 300px;
}

.pin-parenting-sun-wrap {
	position: absolute;
	top: -15px;
	left: 20px;
	z-index: 1;
	animation: pinParentingFloat 4s ease-in-out infinite alternate;
}
@keyframes pinParentingFloat {
	0% { transform: translateY(0); }
	100% { transform: translateY(-5px); }
}

.pin-parenting-handwriting--right {
	position: absolute;
	top: 55px;
	left: 30px;
	width: 90px;
	font-size: 19px;
	line-height: 1.15;
	color: #3b322f;
	z-index: 1;
	text-align: center;
}

.pin-parenting-polaroid--right {
	position: absolute;
	top: 15px;
	right: 0;
	width: 175px;
	transform: rotate(-3deg);
	z-index: 2;
}
.pin-parenting-polaroid--right .pin-parenting-polaroid__inner {
	width: 161px;
	height: 200px;
}

/* Circular Badge Overlapping Right Polaroid */
.pin-parenting-circle-badge {
	position: absolute;
	bottom: 12px;
	right: -10px;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #f1cfc2;
	box-shadow: 0 8px 22px rgba(60, 42, 38, 0.12);
	display: grid;
	place-items: center;
	text-align: center;
	z-index: 4;
	transform: rotate(5deg);
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.pin-parenting-handwriting--badge {
	font-size: 14px;
	line-height: 1.12;
	color: #3a2e2b;
	font-weight: 600;
}

/* ==========================================================================
   2. CATEGORY TOPIC BADGES STRIP (10 CIRCLES + EXPLORE BUTTON)
   ========================================================================== */
.pin-parenting-categories {
	background: var(--pin-parenting-cat-strip-bg, #fffdf9);
	border-top: 1px solid rgba(225, 218, 206, 0.7);
	border-bottom: 1px solid rgba(225, 218, 206, 0.7);
	padding: 16px 0;
}

.pin-parenting-categories__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.pin-parenting-categories__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex: 1 1 auto;
	gap: 14px;
}

.pin-parenting-cat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7px;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease;
	flex: 1 0 auto;
}
.pin-parenting-cat-item:hover {
	transform: translateY(-2px);
}

.pin-parenting-cat-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #f7ede6;
	box-shadow: 0 4px 10px rgba(60, 42, 38, 0.05);
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pin-parenting-cat-item:hover .pin-parenting-cat-circle {
	box-shadow: 0 8px 18px rgba(60, 42, 38, 0.12);
	transform: scale(1.05);
}

/* Category Specific Background Tints */
.pin-parenting-cat-item--1 .pin-parenting-cat-circle { background: #fdeee9; } /* Halloween */
.pin-parenting-cat-item--2 .pin-parenting-cat-circle { background: #eaf4ed; } /* Christmas */
.pin-parenting-cat-item--3 .pin-parenting-cat-circle { background: #fcebee; } /* Valentine's */
.pin-parenting-cat-item--4 .pin-parenting-cat-circle { background: #fef8e7; } /* Summer */
.pin-parenting-cat-item--5 .pin-parenting-cat-circle { background: #edf6fc; } /* Winter */
.pin-parenting-cat-item--6 .pin-parenting-cat-circle { background: #fcefee; } /* Spring */
.pin-parenting-cat-item--7 .pin-parenting-cat-circle { background: #fbf0ea; } /* Arts & Crafts */
.pin-parenting-cat-item--8 .pin-parenting-cat-circle { background: #ebf5f7; } /* Photoshoot */
.pin-parenting-cat-item--9 .pin-parenting-cat-circle { background: #fef9eb; } /* Activities */
.pin-parenting-cat-item--10 .pin-parenting-cat-circle { background: #fbeee9; } /* Parenting Tips */

.pin-parenting-cat-title {
	font-size: 11.5px;
	font-weight: 700;
	color: #38312e;
	text-align: center;
	white-space: nowrap;
}

/* Divider & Explore Button */
.pin-parenting-categories__action {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 0 0 auto;
}
.pin-parenting-cat-divider {
	width: 1px;
	height: 38px;
	background: #e2d9cd;
	display: block;
}

.pin-parenting-explore-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 22px;
	border-radius: 999px;
	background: #fce7e4;
	color: #a43a4e;
	text-decoration: none;
	font-family: "Caveat", cursive, sans-serif;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -0.01em;
	transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 4px 12px rgba(164, 58, 78, 0.1);
	white-space: nowrap;
}
.pin-parenting-explore-btn:hover {
	background: #fbd3cd;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(164, 58, 78, 0.16);
	color: #8c2a3d;
}

.pin-parenting-mobile-explore-note {
	display: none;
}

/* ==========================================================================
   3. MAIN FOOTER: BRAND, MENUS & TEDDY BEAR QUOTE CARD
   ========================================================================== */
.pin-parenting-main {
	padding: 56px 0 38px;
	background: var(--pin-parenting-main-bg, #fdfbf7);
}

.pin-parenting-main__container {
	display: grid;
	grid-template-columns: minmax(200px, 1.35fr) minmax(130px, 0.9fr) minmax(130px, 0.9fr) minmax(140px, 0.95fr) minmax(220px, 1.4fr);
	gap: 36px;
	align-items: start;
}

/* Column 1: Brand */
.pin-parenting-col--brand {
	padding-right: 12px;
}
.pin-parenting-brand {
	margin-bottom: 14px;
}
.pin-parenting-brand__logo-leaves {
	margin-bottom: 4px;
}
.pin-parenting-brand__title {
	font-family: var(--pin-heading-font, "Playfair Display", Georgia, serif);
	font-size: 32px;
	font-weight: 600;
	color: #3d5843;
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.pin-parenting-brand__title a {
	color: inherit;
	text-decoration: none;
}
.pin-parenting-brand__tagline {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #726764;
	margin: 6px 0 0;
}
.pin-parenting-brand__desc {
	font-size: 13.5px;
	line-height: 1.7;
	color: #665c59;
	margin: 0 0 20px;
}

/* Social Buttons */
.pin-parenting-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}
.pin-parenting-social-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #e7dfd4;
	display: grid;
	place-items: center;
	color: #4a3e3b;
	box-shadow: 0 3px 8px rgba(60, 42, 38, 0.05);
	transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
	text-decoration: none;
}
.pin-parenting-social-btn:hover {
	transform: translateY(-2px);
	background: #fdfbf7;
	border-color: #d8cec0;
}
.pin-parenting-social-btn--pin {
	color: #bd081c;
}

/* Menu Columns */
.pin-parenting-col__heading {
	font-size: 16px;
	font-weight: 700;
	color: #2b2524;
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}
.pin-parenting-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.pin-parenting-menu-list li {
	margin-bottom: 10px;
}
.pin-parenting-menu-list a {
	color: #5d524f;
	text-decoration: none;
	font-size: 13.5px;
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-block;
}
.pin-parenting-menu-list a:hover {
	color: var(--pin-parenting-terracotta);
	transform: translateX(2px);
}

/* Submenu & Dropdown styles for Parenting Footer (Collapsed by default, expands on toggle/hover) */
.pin-parenting-footer .pin-decor-menu-list li.menu-item-has-children {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}

.pin-parenting-footer .pin-decor-menu-list li.menu-item-has-children > a {
	flex: 1 1 auto;
}

.pin-parenting-footer .pin-decor-sub-toggle:hover {
	background: rgba(200, 90, 72, 0.1);
	color: var(--pin-parenting-terracotta, #c85a48);
}

.pin-parenting-footer .pin-decor-menu-list .sub-menu {
	border-left: 2px solid #ecdcd4;
	padding-left: 12px;
	gap: 7px;
	margin-top: 0;
}

.pin-parenting-footer .pin-decor-menu-list .sub-menu a {
	font-size: 13px;
	color: #665c59;
}

.pin-parenting-footer .pin-decor-menu-list .sub-menu a:hover {
	color: var(--pin-parenting-terracotta, #c85a48);
	transform: translateX(2px);
}

/* Mobile Accordions (Hidden on Desktop) */
.pin-parenting-mobile-accordions {
	display: none;
}

/* Column 5: Teddy Bear Card */
.pin-parenting-col--bear-card {
	position: relative;
}
.pin-parenting-bear-card {
	background: #edf4e8;
	border: 1px solid rgba(100, 120, 92, 0.16);
	border-radius: 80px 80px 24px 24px;
	padding: 34px 24px 28px;
	position: relative;
	min-height: 240px;
	box-shadow: 0 10px 24px rgba(74, 93, 78, 0.08);
}
.pin-parenting-bear-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.pin-parenting-card-heart {
	color: #d85d77;
	font-size: 18px;
}
.pin-parenting-bear-card__quote {
	margin: 0 0 12px;
	padding: 0;
	border: none;
}
.pin-parenting-bear-card__quote p {
	font-family: var(--pin-heading-font, "Playfair Display", Georgia, serif);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: #272c25;
	letter-spacing: -0.015em;
	margin: 0;
}
.pin-parenting-bear-card__heart-bottom {
	color: #d85d77;
	font-size: 20px;
	margin-top: 10px;
}

/* Teddy Bear Image positioned overlapping on right */
.pin-parenting-bear-wrap {
	position: absolute;
	right: -30px;
	bottom: -35px;
	width: 180px;
	height: 210px;
	pointer-events: none;
	z-index: 5;
}
.pin-parenting-bear-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 10px 18px rgba(50, 40, 36, 0.15));
}
.pin-parenting-card-sprig--right {
	position: absolute;
	right: -24px;
	bottom: 30px;
	z-index: 2;
	pointer-events: none;
}
.pin-parenting-bear-sparkles {
	position: absolute;
	right: 105px;
	top: 32px;
	z-index: 2;
	pointer-events: none;
	opacity: 0.85;
}

/* ==========================================================================
   4. SCALLOPED FOREST GREEN BOTTOM BAR & COPYRIGHT
   ========================================================================== */
.pin-parenting-bottom {
	position: relative;
	color: #fff;
	overflow: visible;
}

.pin-parenting-wave {
	position: relative;
	width: 100%;
	line-height: 0;
	overflow: visible;
	margin-bottom: -1px;
}
.pin-parenting-wave svg {
	display: block;
	width: 100%;
	height: 84px;
	overflow: visible;
}

.pin-parenting-bottom-bar {
	padding: 22px 0 28px;
	background: var(--pin-parenting-wave, #596c5a);
}
.pin-parenting-bottom-bar__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.9);
}

.pin-parenting-bottom-bar__left {
	display: flex;
	align-items: center;
	gap: 12px;
	white-space: nowrap;
}
.pin-parenting-leaf-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	flex-shrink: 0;
}
.pin-parenting-leaf-badge svg {
	width: 24px;
	height: 28px;
	display: block;
}
.pin-parenting-copyright-text {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.01em;
}

.pin-parenting-bottom-bar__links {
	display: flex;
	align-items: center;
	white-space: nowrap;
	font-size: 13px;
}
.pin-parenting-bottom-bar__links a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}
.pin-parenting-bottom-bar__links a:hover {
	color: #fff;
	opacity: 1;
}
.pin-parenting-link-sep {
	color: rgba(255, 255, 255, 0.45);
	margin: 0 16px;
	font-weight: 300;
}

.pin-parenting-handwriting--bottom {
	font-family: var(--pin-font-handwriting, 'Caveat', cursive);
	font-size: 26px;
	line-height: 1.05;
	color: #ffffff;
	white-space: nowrap;
	display: inline-block;
	transform: rotate(-6deg);
	text-align: right;
}

.pin-parenting-mobile-bottom-tagline {
	display: none;
}

/* ==========================================================================
   5. RESPONSIVE MOBILE STYLES (Matching media_1788703004602.png)
   ========================================================================== */
@media (max-width: 991px) {
	.pin-parenting-main__container {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.pin-parenting-col--brand {
		grid-column: 1 / -1;
	}
	.pin-parenting-col--bear-card {
		grid-column: 1 / -1;
		max-width: 440px;
	}
}

@media (max-width: 768px) {
	/* Banner Mobile Top Row */
	.pin-parenting-banner {
		padding: 34px 0 28px;
	}
	.pin-parenting-banner__container {
		flex-direction: column;
		gap: 20px;
	}
	.pin-parenting-banner__left,
	.pin-parenting-banner__right {
		display: none;
	}

	.pin-parenting-banner__mobile-top {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		width: 100%;
		padding: 0 10px;
		margin-bottom: 8px;
	}
	.pin-parenting-banner__mobile-top-left {
		display: flex;
		flex-direction: column;
		gap: 8px;
		max-width: 140px;
	}
	.pin-parenting-handwriting--mobile-note {
		font-size: 18px;
		line-height: 1.15;
		color: #3b322f;
	}
	.pin-parenting-polaroid--mobile {
		width: 120px;
		transform: rotate(4deg);
	}
	.pin-parenting-polaroid--mobile .pin-parenting-polaroid__inner {
		width: 106px;
		height: 130px;
	}

	.pin-parenting-banner__center {
		max-width: 100%;
		padding: 0;
	}
	.pin-parenting-title {
		font-size: 27px;
		line-height: 1.2;
		margin-bottom: 10px;
	}
	.pin-parenting-desc {
		font-size: 13.5px;
		margin-bottom: 18px;
	}
	.pin-parenting-newsletter-form {
		max-width: 100%;
	}
	.pin-parenting-form-box {
		padding: 4px 5px 4px 14px;
	}
	.pin-parenting-btn--submit {
		padding: 10px 20px;
		font-size: 13.5px;
	}
	.pin-parenting-checkmarks {
		gap: 14px;
		font-size: 11.5px;
	}

	/* Categories 5x2 Mobile Grid */
	.pin-parenting-categories {
		padding: 22px 0 18px;
	}
	.pin-parenting-categories__container {
		flex-direction: column;
		gap: 18px;
	}
	.pin-parenting-categories__list {
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		gap: 14px 6px;
		width: 100%;
	}
	.pin-parenting-cat-circle {
		width: 44px;
		height: 44px;
	}
	.pin-parenting-cat-circle svg {
		max-width: 22px;
		max-height: 22px;
	}
	.pin-parenting-cat-title {
		font-size: 10px;
	}

	.pin-parenting-cat-divider {
		display: none;
	}
	.pin-parenting-categories__action {
		width: 100%;
		justify-content: center;
	}

	.pin-parenting-mobile-explore-note {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		color: #b54762;
		margin-top: 4px;
	}
	.pin-parenting-handwriting--mobile-caption {
		font-size: 19px;
		color: #3b322f;
	}
	.pin-parenting-sprinkle {
		font-size: 18px;
		color: #e5726e;
	}

	/* Main Footer Mobile */
	.pin-parenting-main {
		padding: 38px 0 24px;
	}
	.pin-parenting-main__container {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	/* Brand Center */
	.pin-parenting-col--brand {
		text-align: center;
		padding-right: 0;
	}
	.pin-parenting-brand__title {
		font-size: 34px;
	}
	.pin-parenting-brand__desc {
		max-width: 380px;
		margin: 0 auto 18px;
	}
	.pin-parenting-socials {
		justify-content: center;
	}

	/* Hide Desktop Menu Columns */
	.pin-parenting-col--menu {
		display: none;
	}

	/* Show Mobile Accordions */
	.pin-parenting-mobile-accordions {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	.pin-parenting-accordion {
		background: #fdfbf7;
		border: 1px solid #ebdcd2;
		border-radius: 12px;
		overflow: hidden;
		transition: border-color 0.2s ease, box-shadow 0.2s ease;
	}
	.pin-parenting-accordion[data-expanded="true"] {
		border-color: var(--pin-parenting-terracotta);
		box-shadow: 0 4px 14px rgba(200, 90, 72, 0.08);
	}
	.pin-parenting-accordion__toggle {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 18px;
		background: transparent;
		border: none;
		cursor: pointer;
		font-size: 14.5px;
		font-weight: 700;
		color: #2d2624;
		text-align: left;
	}
	.pin-parenting-accordion__icon-title {
		display: flex;
		align-items: center;
		gap: 12px;
		color: #2d2624;
	}
	.pin-parenting-accordion__icon-title svg {
		color: #554a47;
	}
	.pin-parenting-accordion__arrow {
		font-size: 16px;
		color: #665b58;
		transition: transform 0.25s ease;
	}
	.pin-parenting-accordion[data-expanded="true"] .pin-parenting-accordion__arrow {
		transform: rotate(180deg);
	}
	.pin-parenting-accordion__content {
		display: none;
		padding: 4px 20px 16px 46px;
	}
	.pin-parenting-accordion[data-expanded="true"] .pin-parenting-accordion__content {
		display: block;
	}
	.pin-parenting-accordion__content .pin-parenting-menu-list li {
		margin-bottom: 8px;
	}
	.pin-parenting-accordion__content .pin-parenting-menu-list a {
		font-size: 14px;
	}

	/* Teddy Bear Card on Mobile */
	.pin-parenting-col--bear-card {
		width: 100%;
		max-width: 100%;
	}
	.pin-parenting-bear-card {
		padding: 26px 20px 22px;
		border-radius: 40px;
		background: #eaf1e7;
	}
	.pin-parenting-bear-card__quote p {
		font-family: var(--pin-font-handwriting, 'Caveat', cursive);
		font-size: 25px;
		font-weight: 700;
		line-height: 1.15;
		color: #2b2524;
		max-width: 200px;
	}
	.pin-parenting-bear-wrap {
		width: 145px;
		height: 175px;
		right: -10px;
		bottom: -22px;
		z-index: 5;
	}
	.pin-parenting-card-sprig--right {
		right: -12px;
		bottom: 25px;
	}
	.pin-parenting-bear-sparkles {
		right: 95px;
		top: 25px;
	}

	/* Bottom Bar Mobile (Exact match to media_1788708927435.png) */
	.pin-parenting-wave svg {
		height: 62px;
	}
	.pin-parenting-bottom-bar {
		padding: 16px 16px 28px;
		position: relative;
	}
	.pin-parenting-bottom-bar__container {
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 10px;
		position: relative;
		width: 100%;
	}
	.pin-parenting-bottom-bar__left {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 100%;
	}
	.pin-parenting-bottom-bar__left .pin-parenting-leaf-badge {
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.pin-parenting-copyright-text {
		font-size: 13px;
		color: rgba(255, 255, 255, 0.92);
		text-align: center;
		margin: 0 auto;
	}
	.pin-parenting-bottom-bar__links {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0;
		font-size: 13px;
		white-space: nowrap;
	}
	.pin-parenting-bottom-bar__links a {
		color: rgba(255, 255, 255, 0.9);
	}
	.pin-parenting-bottom-bar__links .pin-parenting-link-sep {
		margin: 0 10px;
		color: rgba(255, 255, 255, 0.45);
	}
	.pin-parenting-bottom-bar__right {
		display: none;
	}
	.pin-parenting-mobile-bottom-tagline {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 12px;
		margin-top: 14px;
		padding-top: 0;
		border-top: none;
		color: rgba(255, 255, 255, 0.95);
	}
	.pin-parenting-mobile-tagline-text {
		font-size: 11.5px;
		font-weight: 800;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: rgba(255, 255, 255, 0.95);
	}
	.pin-parenting-mobile-heart {
		font-size: 16px;
		color: rgba(255, 255, 255, 0.95);
		line-height: 1;
	}
}
