:root {
	--fr-bg: #f8f9fa;
	--fr-surface: #ffffff;
	--fr-surface-2: #f1f3f5;
	--fr-text: #212529;
	--fr-text-soft: #6c757d;
	--fr-border: #e0e0e0;
	--fr-tag-bg: #e9ecef;
	--fr-blue: #2196f3;
	--fr-blue-dark: #1976d2;
	--fr-green: #4caf50;
	--fr-red: #f44336;
	--fr-orange: #ff9800;
	--fr-purple: #7c3aed;
	--fr-radius: 8px;
	--fr-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	--fr-shadow-lg: 0 10px 40px rgba(0, 0, 0, .16);
	--fr-font: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--fr-header-h: 56px;
}

[data-theme="dark"] {
	--fr-bg: #121417;
	--fr-surface: #1b1f24;
	--fr-surface-2: #232830;
	--fr-text: #e7e9ec;
	--fr-text-soft: #9aa3ad;
	--fr-border: #333a42;
	--fr-tag-bg: #2a313a;
	--fr-shadow: 0 2px 8px rgba(0, 0, 0, .45);
	--fr-shadow-lg: 0 10px 40px rgba(0, 0, 0, .55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--fr-font);
	font-size: 15px;
	line-height: 1.55;
	color: var(--fr-text);
	background: var(--fr-bg);
	-webkit-font-smoothing: antialiased;
}
a { color: var(--fr-blue); text-decoration: none; }
a:hover { color: var(--fr-blue-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 { line-height: 1.25; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.fr-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.fr-container-wide { max-width: 1440px; margin: 0 auto; padding: 0 20px; }
.fr-skip { position: absolute; left: -9999px; }

/* ---------- Buttons ---------- */
.fr-btn {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--fr-surface); color: var(--fr-text);
	border: 1px solid var(--fr-border); border-radius: 999px;
	padding: 7px 16px; font-size: 13.5px; font-weight: 600; cursor: pointer;
	transition: background .15s, border-color .15s, color .15s, transform .1s;
	text-decoration: none;
}
.fr-btn:hover { background: var(--fr-surface-2); color: var(--fr-text); text-decoration: none; }
.fr-btn:active { transform: scale(.97); }
.fr-btn-primary { background: var(--fr-blue); border-color: var(--fr-blue); color: #fff; }
.fr-btn-primary:hover { background: var(--fr-blue-dark); color: #fff; }
.fr-btn-green { background: var(--fr-green); border-color: var(--fr-green); color: #fff; }
.fr-btn-green:hover { background: #43a047; color: #fff; }
.fr-btn-red { background: var(--fr-red); border-color: var(--fr-red); color: #fff; }
.fr-btn-red:hover { background: #e53935; color: #fff; }
.fr-btn-ghost { border-color: transparent; background: transparent; color: var(--fr-blue); }
.fr-btn-ghost:hover { background: var(--fr-surface-2); color: var(--fr-blue); }
.fr-btn-sm { padding: 4px 12px; font-size: 12.5px; }
.fr-btn-lg { padding: 10px 22px; font-size: 15px; }
.fr-btn.active { background: var(--fr-blue); border-color: var(--fr-blue); color: #fff; }
.fr-btn.active.fr-btn-green { background: var(--fr-green); border-color: var(--fr-green); }
.fr-btn.active.fr-btn-red { background: var(--fr-red); border-color: var(--fr-red); }
.fr-btn[disabled] { opacity: .55; cursor: default; transform: none; }

/* ---------- Tags / pills ---------- */
.fr-tag {
	display: inline-block; background: var(--fr-tag-bg); color: var(--fr-text-soft);
	border-radius: 4px; padding: 3px 9px; font-size: 11.5px; font-weight: 700;
	letter-spacing: .4px; text-transform: uppercase;
}
.fr-pill {
	display: inline-flex; align-items: center; gap: 4px;
	border: 1px solid var(--fr-border); border-radius: 999px;
	padding: 4px 12px; font-size: 13px; cursor: pointer; background: var(--fr-surface);
	transition: all .15s; user-select: none;
}
.fr-pill:hover { border-color: var(--fr-blue); color: var(--fr-blue); }
.fr-pill.active { background: var(--fr-blue); border-color: var(--fr-blue); color: #fff; }
.fr-badge-new { background: var(--fr-green); color: #fff; border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 800; letter-spacing: .5px; }

/* ---------- Header ---------- */
.fr-header {
	position: sticky; top: 0; z-index: 50;
	background: var(--fr-surface);
	border-bottom: 1px solid var(--fr-border);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}
.fr-header-inner { display: flex; align-items: center; gap: 18px; min-height: var(--fr-header-h); }
.fr-logo { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; color: var(--fr-text); flex-shrink: 0; }
.fr-logo:hover { text-decoration: none; color: var(--fr-text); }
.fr-logo-word { font-size: 21px; font-weight: 800; letter-spacing: .5px; }
.fr-logo-word span { color: var(--fr-blue); }
.fr-logo-tagline { font-size: 9.5px; font-weight: 700; letter-spacing: 2.4px; color: var(--fr-text-soft); text-transform: uppercase; }
.fr-nav { flex: 1; }
.fr-nav-list { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.fr-nav-item { position: relative; }
.fr-nav-link {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 10px 12px; font-size: 14px; font-weight: 600; color: var(--fr-text);
	border-radius: 8px; text-decoration: none;
}
.fr-nav-link:hover { background: var(--fr-surface-2); text-decoration: none; color: var(--fr-text); }
.fr-nav-link .fr-caret { font-size: 9px; opacity: .65; transition: transform .15s; }
.fr-nav-item.open .fr-caret { transform: rotate(180deg); }
.fr-nav-panel {
	position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px);
	min-width: 260px; max-width: 680px;
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px;
	box-shadow: var(--fr-shadow-lg); padding: 14px;
	opacity: 0; visibility: hidden; transition: all .16s ease; z-index: 60;
	backdrop-filter: blur(12px);
}
.fr-nav-item.open .fr-nav-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.fr-nav-panel-grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 2px; }
.fr-nav-panel-wide { min-width: 600px; }
.fr-nav-sub {
	display: flex; align-items: flex-start; gap: 10px;
	padding: 9px 10px; border-radius: 10px; color: var(--fr-text); text-decoration: none;
}
.fr-nav-sub:hover { background: var(--fr-surface-2); text-decoration: none; color: var(--fr-blue); }
.fr-nav-sub-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--fr-tag-bg); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.fr-nav-sub-title { font-size: 13.5px; font-weight: 700; }
.fr-nav-sub-desc { font-size: 12px; color: var(--fr-text-soft); }
.fr-header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.fr-icon-btn {
	width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--fr-border); border-radius: 999px; background: var(--fr-surface);
	color: var(--fr-text); font-size: 16px; cursor: pointer; text-decoration: none; transition: all .15s;
}
.fr-icon-btn:hover { background: var(--fr-surface-2); color: var(--fr-blue); text-decoration: none; }
.fr-burger { display: none; }

/* Sub-header search bar */
.fr-subheader { border-bottom: 1px solid var(--fr-border); background: var(--fr-surface); }
.fr-subheader-inner { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.fr-searchbar {
	flex: 1; display: flex; align-items: center; gap: 10px;
	background: var(--fr-surface-2); border: 1px solid var(--fr-border); border-radius: 999px;
	padding: 8px 16px; cursor: pointer; color: var(--fr-text-soft); font-size: 14px; transition: all .15s;
}
.fr-searchbar:hover { border-color: var(--fr-blue); }
.fr-searchbar kbd {
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-bottom-width: 2px;
	border-radius: 5px; padding: 1px 7px; font-size: 11.5px; font-family: inherit; color: var(--fr-text-soft);
	margin-left: auto;
}
.fr-subheader-links { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* ---------- Mobile menu ---------- */
.fr-mobile-menu {
	display: none; background: var(--fr-surface); border-bottom: 1px solid var(--fr-border);
	padding: 10px 20px 18px; max-height: 80vh; overflow: auto;
}
.fr-mobile-menu.open { display: block; }
.fr-mobile-menu a { display: block; padding: 10px 8px; border-radius: 8px; color: var(--fr-text); font-weight: 600; }
.fr-mobile-menu a:hover { background: var(--fr-surface-2); text-decoration: none; }
.fr-mobile-sub { margin-left: 14px; border-left: 1px solid var(--fr-border); padding-left: 12px; }
.fr-mobile-sub a { font-weight: 500; color: var(--fr-text-soft); font-size: 14px; }

/* ---------- Layout ---------- */
.fr-main { padding: 22px 0 40px; }
.fr-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 30px; align-items: start; }
.fr-grid-no-sidebar { grid-template-columns: minmax(0, 1fr); }
.fr-content { min-width: 0; }
.fr-sidebar { position: sticky; top: calc(var(--fr-header-h) + 60px); display: flex; flex-direction: column; gap: 16px; }

/* ---------- Cards ---------- */
.fr-card {
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: var(--fr-radius);
	box-shadow: var(--fr-shadow); overflow: hidden;
}
.fr-widget { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: var(--fr-radius); box-shadow: var(--fr-shadow); padding: 16px; }
.fr-widget-title { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--fr-text); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--fr-border); }

/* Perfume card */
.fr-perfume-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.fr-perfume-card { transition: transform .15s, box-shadow .15s; }
.fr-perfume-card:hover { transform: translateY(-3px); box-shadow: var(--fr-shadow-lg); }
.fr-card-media { display: block; background: linear-gradient(180deg, var(--fr-surface-2), var(--fr-surface)); text-align: center; padding: 14px 8px 4px; }
.fr-card-media svg { width: 100%; height: auto; max-height: 210px; }
.fr-card-body { padding: 10px 12px 14px; }
.fr-card-designer { font-size: 11.5px; font-weight: 700; color: var(--fr-text-soft); text-transform: uppercase; letter-spacing: .5px; }
.fr-card-name { display: block; font-size: 14.5px; font-weight: 700; color: var(--fr-text); margin: 2px 0 6px; line-height: 1.3; }
.fr-card-name:hover { color: var(--fr-blue); }
.fr-card-meta { display: flex; flex-wrap: wrap; gap: 4px 10px; font-size: 12px; color: var(--fr-text-soft); margin-bottom: 8px; }

/* Score stars */
.fr-score { display: flex; align-items: center; gap: 6px; font-size: 12.5px; }
.fr-score-stars {
	position: relative; display: inline-block; font-size: 13px; letter-spacing: 2px; color: var(--fr-border);
	line-height: 1;
}
.fr-score-stars::before { content: '★★★★★'; position: absolute; inset: 0; width: var(--fr-score, 0%); overflow: hidden; color: #ffb400; white-space: nowrap; }
.fr-score-value { font-weight: 800; }
.fr-score-count { color: var(--fr-text-soft); }

/* News card */
.fr-news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.fr-news-card { display: flex; flex-direction: column; }
.fr-news-media { display: block; aspect-ratio: 16/9; background: linear-gradient(135deg, #2196f3, #7c3aed); position: relative; overflow: hidden; }
.fr-news-media .fr-news-letter { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 46px; font-weight: 800; color: rgba(255, 255, 255, .8); }
.fr-news-body { padding: 18px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.fr-news-cat { margin-bottom: 8px; }
.fr-news-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.fr-news-title a { color: var(--fr-text); }
.fr-news-title a:hover { color: var(--fr-blue); }
.fr-news-excerpt { font-size: 13.5px; color: var(--fr-text-soft); flex: 1; }
.fr-news-meta { display: flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 12.5px; color: var(--fr-text-soft); }
.fr-avatar { border-radius: 50%; overflow: hidden; flex-shrink: 0; display: inline-block; }
.fr-avatar img { display: block; }

/* ---------- Carousel ---------- */
.fr-carousel { position: relative; }
.fr-carousel-track { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; padding: 4px 2px 10px; scrollbar-width: thin; }
.fr-carousel-track .fr-perfume-card { min-width: 150px; max-width: 150px; }
.fr-carousel-btn {
	position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
	width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--fr-border);
	background: var(--fr-surface); box-shadow: var(--fr-shadow); cursor: pointer; font-size: 16px;
	display: flex; align-items: center; justify-content: center; color: var(--fr-text);
}
.fr-carousel-btn:hover { color: var(--fr-blue); }
.fr-carousel-prev { left: -12px; }
.fr-carousel-next { right: -12px; }

/* ---------- Section headers ---------- */
.fr-section { margin: 34px 0 16px; }
.fr-section-title { font-size: 21px; font-weight: 800; display: flex; align-items: center; gap: 10px; }
.fr-section-more { margin-left: auto; font-size: 13.5px; font-weight: 700; }

/* ---------- Sidebar widgets ---------- */
.fr-stats-list { list-style: none; margin: 0; padding: 0; }
.fr-stats-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--fr-border); font-size: 13.5px; }
.fr-stats-list li:last-child { border-bottom: 0; }
.fr-stats-list strong { font-weight: 800; }
.fr-online-bar { height: 8px; background: var(--fr-border); border-radius: 99px; overflow: hidden; margin-top: 10px; }
.fr-online-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--fr-green), #81c784); border-radius: 99px; }
.fr-wear-cta { text-align: center; padding: 4px 0; }
.fr-wear-cta .fr-btn { width: 100%; justify-content: center; margin-top: 10px; }
.fr-recent-list, .fr-latest-list { list-style: none; margin: 0; padding: 0; }
.fr-recent-list li, .fr-latest-list li { display: flex; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--fr-border); }
.fr-recent-list li:last-child, .fr-latest-list li:last-child { border-bottom: 0; }
.fr-recent-thumb { width: 38px; height: 44px; border-radius: 6px; background: var(--fr-surface-2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.fr-recent-thumb svg { width: 100%; height: 100%; }
.fr-recent-name { font-size: 13px; font-weight: 600; color: var(--fr-text); line-height: 1.3; }
.fr-recent-sub { font-size: 11.5px; color: var(--fr-text-soft); }

/* ---------- Footer ---------- */
.fr-footer { background: var(--fr-surface); border-top: 1px solid var(--fr-border); margin-top: 40px; }
.fr-footer-top { padding: 26px 0 8px; }
.fr-footer-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.fr-footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fr-footer-brand-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 12px; list-style: none; margin: 0; padding: 0; font-size: 13px; }
.fr-footer-bottom { border-top: 1px solid var(--fr-border); padding: 16px 0 22px; font-size: 12.5px; color: var(--fr-text-soft); display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.fr-footer-bottom a { color: var(--fr-text-soft); }
.fr-footer-bottom a:hover { color: var(--fr-blue); }
.fr-footer-disclosure { margin: 0 0 10px; font-size: 12px; color: var(--fr-text-soft); }
.fr-footer-disclosure a { color: var(--fr-text-soft); text-decoration: underline; }
.fr-footer-disclosure a:hover { color: var(--fr-blue); }

/* ---------- Command palette ---------- */
.fr-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, .5); display: none; align-items: flex-start; justify-content: center; padding: 12vh 20px 40px; }
.fr-overlay.open { display: flex; }
.fr-palette { width: 100%; max-width: 620px; background: var(--fr-surface); border-radius: 16px; box-shadow: var(--fr-shadow-lg); overflow: hidden; border: 1px solid var(--fr-border); }
.fr-palette-input { width: 100%; border: 0; outline: 0; padding: 18px 20px; font-size: 17px; background: transparent; color: var(--fr-text); border-bottom: 1px solid var(--fr-border); }
.fr-palette-results { max-height: 52vh; overflow: auto; padding: 8px; }
.fr-palette-group-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--fr-text-soft); padding: 10px 12px 4px; }
.fr-palette-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; cursor: pointer; color: var(--fr-text); }
.fr-palette-item:hover, .fr-palette-item.active { background: var(--fr-surface-2); color: var(--fr-blue); }
.fr-palette-type { font-size: 11px; font-weight: 700; color: var(--fr-text-soft); background: var(--fr-tag-bg); padding: 2px 8px; border-radius: 99px; }
.fr-palette-empty { padding: 30px; text-align: center; color: var(--fr-text-soft); }

/* ---------- Modal ---------- */
.fr-modal { position: fixed; inset: 0; z-index: 110; background: rgba(0, 0, 0, .5); display: none; align-items: center; justify-content: center; padding: 20px; }
.fr-modal.open { display: flex; }
.fr-modal-card { width: 100%; max-width: 480px; background: var(--fr-surface); border-radius: 16px; box-shadow: var(--fr-shadow-lg); padding: 24px; max-height: 86vh; overflow: auto; }
.fr-modal-title { font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.fr-modal-close { float: right; border: 0; background: transparent; font-size: 20px; cursor: pointer; color: var(--fr-text-soft); }
.fr-toast { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(80px); z-index: 200; background: var(--fr-text); color: var(--fr-bg); padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; transition: transform .25s; box-shadow: var(--fr-shadow-lg); }
.fr-toast.show { transform: translateX(-50%) translateY(0); }
.fr-toast.error { background: var(--fr-red); color: #fff; }

/* Cookie consent */
.fr-consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; background: var(--fr-surface); border-top: 1px solid var(--fr-border); box-shadow: 0 -10px 30px rgba(0, 0, 0, .12); }
.fr-consent[hidden] { display: none; }
.fr-consent-inner { max-width: 1200px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; gap: 20px; }
.fr-consent-text { flex: 1; min-width: 0; font-size: 13px; color: var(--fr-text-soft); }
.fr-consent-text strong { display: block; color: var(--fr-text); font-size: 13.5px; margin-bottom: 3px; }
.fr-consent-text p { margin: 0; line-height: 1.55; }
.fr-consent-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: flex-end; }
.fr-consent-option { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--fr-border); }
.fr-consent-option strong { font-size: 14px; }
.fr-consent-option .fr-muted { font-size: 12.5px; line-height: 1.5; margin-top: 3px; }
.fr-consent-always { flex-shrink: 0; font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: #00a32a; padding-top: 2px; }
.fr-consent-modal-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; margin-top: 18px; }
.fr-switch { position: relative; flex-shrink: 0; width: 46px; height: 26px; margin-top: 2px; cursor: pointer; }
.fr-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.fr-switch > span:not(.screen-reader-text) { position: absolute; inset: 0; background: var(--fr-border); border-radius: 999px; transition: background .15s; }
.fr-switch > span:not(.screen-reader-text)::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .15s; }
.fr-switch input:checked + span { background: var(--fr-blue); }
.fr-switch input:checked + span::before { transform: translateX(20px); }
.fr-switch input:focus-visible + span { outline: 2px solid var(--fr-blue); outline-offset: 2px; }
@media (max-width: 820px) {
	.fr-consent-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 14px 16px; }
	.fr-consent-actions { justify-content: stretch; }
	.fr-consent-actions .fr-btn { flex: 1 1 auto; }
}

/* ---------- Forms ---------- */
.fr-form label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; }
.fr-input, .fr-form input[type="text"], .fr-form input[type="email"], .fr-form input[type="password"], .fr-form input[type="search"], .fr-form textarea, .fr-form select {
	width: 100%; padding: 9px 12px; border: 1px solid var(--fr-border); border-radius: 8px;
	background: var(--fr-surface); color: var(--fr-text); font-size: 14px; font-family: inherit; outline: none;
}
.fr-input:focus, .fr-form input:focus, .fr-form textarea:focus, .fr-form select:focus { border-color: var(--fr-blue); box-shadow: 0 0 0 3px rgba(33, 150, 243, .15); }
.fr-form .fr-btn { margin-top: 12px; }
.fr-field { margin-bottom: 14px; }

/* ---------- Filter panel ---------- */
.fr-search-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr) 300px; gap: 20px; align-items: start; }
.fr-filter-panel { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: var(--fr-radius); box-shadow: var(--fr-shadow); padding: 16px; }
.fr-filter-panel { position: sticky; top: calc(var(--fr-header-h) + 60px); max-height: calc(100vh - 90px); overflow: auto; }
.fr-filter-col { min-width: 0; }
.fr-filter-toggle { display: none; }
.fr-filter-group { padding: 12px 0; border-bottom: 1px solid var(--fr-border); }
.fr-filter-group:last-child { border-bottom: 0; }
.fr-filter-title {
	width: 100%; border: 0; background: none; padding: 0 0 8px; margin: 0;
	font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
	cursor: pointer; color: var(--fr-text); display: flex; justify-content: space-between; align-items: center; gap: 8px;
	font-family: inherit; text-align: left;
}
.fr-filter-title:hover { color: var(--fr-blue); }
.fr-filter-caret { transition: transform .15s; font-size: 10px; color: var(--fr-text-soft); }
.fr-filter-title[aria-expanded="false"] .fr-filter-caret { transform: rotate(-90deg); }
.fr-filter-body { display: flex; flex-direction: column; gap: 7px; }
.fr-filter-body.collapsed { display: none; }
.fr-filter-row { display: flex; align-items: center; gap: 7px; font-size: 13.5px; }
.fr-filter-row input[type="checkbox"], .fr-filter-row input[type="radio"] { accent-color: var(--fr-blue); }
.fr-filter-row label { cursor: pointer; }
.fr-filter-count { margin-left: auto; color: var(--fr-text-soft); font-size: 12px; }
.fr-filter-search { font-size: 12.5px; padding: 6px 10px; }
.fr-filter-actions { display: flex; gap: 8px; margin-top: 14px; }

/* Active filter chips (Fragrantica-style) */
.fr-active-filters { margin-bottom: 16px; }
.fr-active-filters-head { display: none; }
.fr-active-filters-main { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.fr-active-chips { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; min-width: 0; }
.fr-active-chip {
	display: inline-flex; align-items: center; gap: 3px; max-width: 100%;
	color: #fff; background: #334155; border-radius: 999px;
	font-size: 12.5px; font-weight: 600; line-height: 1;
	padding: 5px 5px 5px 11px;
}
.fr-active-chip-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fr-active-chip-x {
	display: inline-flex; align-items: center; justify-content: center;
	width: 18px; height: 18px; color: rgba(255, 255, 255, .92);
	font-size: 14px; font-weight: 700; line-height: 1; border-radius: 50%;
	text-decoration: none; flex: 0 0 auto;
}
.fr-active-chip-x:hover { color: #fff; background: rgba(255, 255, 255, .22); text-decoration: none; }
.fr-chip--gender-female { background: #ec4899; }
.fr-chip--gender-male { background: #2563eb; }
.fr-chip--gender-unisex { background: #64748b; }
.fr-chip--brand, .fr-chip--note, .fr-chip--accord, .fr-chip--family, .fr-chip--type, .fr-chip--exclude {
	background: #0f766e;
}
.fr-chip--votes, .fr-chip--year, .fr-chip--perfumer, .fr-chip--country,
.fr-chip--company, .fr-chip--industry, .fr-chip--color { background: #475569; }
.fr-active-filters .fr-chip-extra { display: none; }
.fr-active-filters.is-expanded .fr-chip-extra { display: inline-flex; }
.fr-active-more, .fr-active-less {
	display: inline-flex; align-items: center; background: var(--fr-tag-bg);
	color: var(--fr-text); border: 0; border-radius: 999px;
	padding: 5px 11px; font-size: 12.5px; font-weight: 600; cursor: pointer;
	transition: background .15s;
}
.fr-active-more:hover, .fr-active-less:hover { background: var(--fr-border); }
.fr-active-clear {
	color: var(--fr-text-soft); font-size: 12.5px; font-weight: 600;
	white-space: nowrap; text-decoration: none;
}
.fr-active-clear:hover { color: var(--fr-red); text-decoration: none; }
.fr-active-clear--row { margin-left: auto; }
.fr-active-count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
	background: var(--fr-blue); color: #fff; font-size: 11.5px; font-weight: 800;
}

.fr-filter-badge {
	display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px;
	background: var(--fr-blue); color: #fff; border-radius: 99px; font-size: 11px; font-weight: 800; padding: 0 5px;
}
.fr-year-fields { display: flex; align-items: flex-end; gap: 8px; }
.fr-year-fields .fr-filter-field { flex: 1; min-width: 0; }
.fr-filter-field-label { display: block; font-size: 11px; font-weight: 700; color: var(--fr-text-soft); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.fr-year-sep { padding-bottom: 9px; color: var(--fr-text-soft); }
.fr-filter-hint { font-size: 11.5px; color: var(--fr-text-soft); margin: 2px 0 0; line-height: 1.4; }
.fr-result-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.fr-result-count { color: var(--fr-text-soft); font-size: 13.5px; }
.fr-sort-select { margin-left: auto; padding: 7px 10px; border: 1px solid var(--fr-border); border-radius: 8px; background: var(--fr-surface); color: var(--fr-text); font-size: 13px; }

/* ---------- Single perfume ---------- */
.fr-breadcrumb { font-size: 12.5px; color: var(--fr-text-soft); margin-bottom: 14px; }
.fr-perfume-hero { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 24px; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px; box-shadow: var(--fr-shadow); padding: 22px; }
.fr-perfume-hero-media { display: flex; align-items: flex-start; justify-content: center; }
.fr-perfume-hero-media svg { width: 100%; max-width: 260px; }
.fr-perfume-hero-media-col { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 260px; }
.fr-buy-under-media { display: flex; flex-direction: column; gap: 8px; }
.fr-buy-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 14px; border-radius: 10px; background: #ff9900; color: #111; font-size: 14px; font-weight: 800; text-align: center; text-decoration: none; box-shadow: var(--fr-shadow); transition: filter .15s, transform .15s; }
.fr-buy-cta-btn:hover { filter: brightness(1.06); transform: translateY(-1px); text-decoration: none; }
.fr-buy-cta-btn .fr-buy-store-badge { background: rgba(0,0,0,.12); color: inherit; }
.fr-buy-cta-btn[data-store="eBay"] { background: #e53238; color: #fff; }
.fr-buy-cta-btn[data-store="Walmart"] { background: #0071ce; color: #fff; }
.fr-buy-cta-btn[data-store="Sephora"] { background: #111; color: #fff; }
.fr-buy-cta-btn[data-store="FragranceX"] { background: #1e40af; color: #fff; }
.fr-buy-cta-btn[data-store="Jomashop"] { background: #0f766e; color: #fff; }
.fr-buy-under-media-note { margin: 0; font-size: 11.5px; line-height: 1.45; color: var(--fr-text-soft); text-align: center; }
.fr-perfume-hero-info h1 { font-size: 26px; font-weight: 800; margin: 4px 0 2px; }
.fr-perfume-designer { font-size: 15px; font-weight: 700; color: var(--fr-blue); }
.fr-perfume-sub { color: var(--fr-text-soft); font-size: 13.5px; margin: 4px 0 10px; }
.fr-accord-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0; }
.fr-accord-pill { border: 1px solid var(--fr-border); border-radius: 999px; padding: 5px 13px; font-size: 13px; font-weight: 600; background: var(--fr-surface-2); }
.fr-accord-pill a { color: var(--fr-text); }
.fr-accord-pill a:hover { color: var(--fr-blue); }
.fr-hero-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--fr-border); }
.fr-score-big { display: flex; align-items: baseline; gap: 8px; margin: 12px 0; }
.fr-score-big .fr-score-value { font-size: 34px; font-weight: 800; }
.fr-score-big .fr-score-stars { font-size: 18px; }

/* Rating bars */
.fr-vote-block { margin: 22px 0; }
.fr-vote-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: flex; justify-content: space-between; }
.fr-vote-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.fr-bar-row { display: grid; grid-template-columns: 90px 1fr 56px; align-items: center; gap: 10px; margin-bottom: 7px; font-size: 13px; }
.fr-bar-label { font-weight: 600; text-transform: capitalize; cursor: pointer; }
.fr-bar-track { height: 10px; background: var(--fr-surface-2); border-radius: 99px; overflow: hidden; }
.fr-bar-fill { height: 100%; border-radius: 99px; transition: width .4s ease; }
.fr-bar-count { text-align: right; color: var(--fr-text-soft); font-size: 12px; }

/* Pyramid */
.fr-pyramid { margin: 18px 0; }
.fr-pyramid-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }
.fr-pyramid-level { width: 100%; text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; color: var(--fr-text-soft); text-transform: uppercase; margin-bottom: 4px; }
.fr-pyramid-note {
	border: 1px solid var(--fr-border); background: var(--fr-surface); border-radius: 999px;
	padding: 4px 13px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .15s;
	text-decoration: none; color: var(--fr-text); display: inline-block;
}
.fr-pyramid-note:hover { border-color: var(--fr-blue); color: var(--fr-blue); }
.fr-pyramid-note .fr-pvote { color: var(--fr-text-soft); font-size: 11.5px; font-weight: 500; }
.fr-pyramid-toggle { font-size: 12.5px; color: var(--fr-blue); cursor: pointer; background: none; border: 0; }

/* Pros / Cons */
.fr-pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fr-pc-list { list-style: none; margin: 0; padding: 0; }
.fr-pc-list li { display: flex; align-items: center; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--fr-border); font-size: 13.5px; }
.fr-pc-list li:last-child { border-bottom: 0; }
.fr-pc-vote { display: inline-flex; align-items: center; gap: 4px; margin-left: auto; border: 1px solid var(--fr-border); border-radius: 999px; padding: 2px 9px; font-size: 12px; cursor: pointer; background: var(--fr-surface); flex-shrink: 0; }
.fr-pc-vote:hover { border-color: var(--fr-blue); color: var(--fr-blue); }
.fr-pc-vote.active { background: var(--fr-blue); border-color: var(--fr-blue); color: #fff; }

/* Similar */
.fr-similar-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }

/* Detail sections */
.fr-detail-section { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px; box-shadow: var(--fr-shadow); padding: 20px 22px; margin-top: 18px; }
.fr-detail-section h2 { font-size: 17px; font-weight: 800; margin-bottom: 14px; }
.fr-article-content { font-size: 14.5px; line-height: 1.75; }
.fr-article-content h2 { margin: 26px 0 10px; font-size: 19px; }
.fr-article-content h2:first-child { margin-top: 0; }
.fr-article-content h3 { margin: 18px 0 8px; font-size: 15.5px; }
.fr-article-content p { margin: 0 0 14px; }
.fr-article-content ul, .fr-article-content ol { margin: 0 0 14px 20px; padding: 0; }
.fr-article-content li { margin-bottom: 6px; }
.fr-article-content code { background: var(--fr-surface-2); padding: 1px 5px; border-radius: 5px; font-size: 13px; }

/* Note profile: merged hero + description card (single note pages) */
.fr-note-profile { padding: 24px 26px; margin-top: 18px; }
.fr-note-profile-head { display: flex; align-items: center; gap: 18px; }
.fr-note-profile-icon { width: 88px; height: 88px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 34px; font-weight: 800; color: #fff; flex-shrink: 0; overflow: hidden; box-shadow: 0 0 0 4px rgba(0,0,0,.04), 0 10px 24px rgba(0,0,0,.10); }
.fr-note-profile-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fr-note-profile-info { min-width: 0; }
.fr-note-profile-info h1 { margin: 0 0 7px; font-size: 27px; font-weight: 800; line-height: 1.2; }
.fr-note-profile-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fr-note-profile-tag { display: inline-block; background: var(--fr-surface-2, #f1f5f9); border: 1px solid var(--fr-border, #e2e8f0); color: var(--fr-text-soft, #475569); border-radius: 999px; padding: 3px 11px; font-size: 12px; font-weight: 700; }
.fr-note-profile-tag--source { background: #eef4ff; border-color: #c7d8ff; color: #1d4ed8; }
.fr-note-profile-desc { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--fr-border, #e5e7eb); }
.fr-note-profile-desc p { margin: 0 0 8px; line-height: 1.7; color: var(--fr-text, #1f2937); }
@media (max-width: 620px) {
	.fr-note-profile { padding: 18px 16px; }
	.fr-note-profile-head { flex-direction: column; text-align: center; gap: 12px; }
	.fr-note-profile-tags { justify-content: center; }
	.fr-note-profile-info h1 { font-size: 23px; }
}

.fr-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.fr-info-cell { background: var(--fr-surface-2); border-radius: 10px; padding: 10px 12px; }
.fr-info-cell-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--fr-text-soft); }
.fr-info-cell-value { font-size: 14px; font-weight: 700; margin-top: 2px; }

/* Reviews */
.fr-review-list { list-style: none; margin: 0; padding: 0; }
.fr-comment { list-style: none; }
.fr-comment-body { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--fr-border); }
.fr-comment-main { flex: 1; min-width: 0; }
.fr-comment-head { display: flex; align-items: center; gap: 9px; margin-bottom: 6px; flex-wrap: wrap; }
.fr-comment-author { font-weight: 700; font-size: 14px; }
.fr-comment-rating { font-size: 11.5px; font-weight: 800; text-transform: uppercase; border: 1px solid currentColor; border-radius: 99px; padding: 1px 9px; }
.fr-comment-date { color: var(--fr-text-soft); font-size: 12px; }
.fr-comment-content { font-size: 14px; }
.fr-comment-actions { margin-top: 6px; font-size: 12.5px; }
.fr-comment-actions a { color: var(--fr-text-soft); margin-right: 10px; }
.fr-comment-actions a:hover { color: var(--fr-blue); }
.fr-review-form { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; box-shadow: var(--fr-shadow); padding: 22px; margin-top: 18px; }
#respond .comment-reply-title { font-size: 17px; font-weight: 800; margin: 0 0 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
#respond .comment-reply-title small a { color: var(--fr-text-soft); font-size: 12.5px; font-weight: 600; }
#respond .comment-reply-title small a:hover { color: var(--fr-red); }
#respond .logged-in-as { font-size: 13px; color: var(--fr-text-soft); margin: 0 0 14px; }
#respond .logged-in-as a { color: var(--fr-blue); }
#commentform { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; margin: 0; }
#commentform p { margin: 0; }
#commentform .fr-review-rating-field, #commentform .comment-form-comment { grid-column: 1 / -1; }
#commentform label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 6px; color: var(--fr-text); }
#commentform .required { color: var(--fr-red); border: 0; }
#commentform input[type="text"], #commentform input[type="email"], #commentform input[type="url"], #commentform textarea {
	width: 100%; background: var(--fr-surface); color: var(--fr-text); border: 1px solid var(--fr-border);
	border-radius: 8px; padding: 9px 12px; font-size: 13.5px; font-family: inherit; outline: none;
	transition: border-color .15s, box-shadow .15s;
}
#commentform input[type="text"]:focus, #commentform input[type="email"]:focus, #commentform input[type="url"]:focus, #commentform textarea:focus {
	border-color: var(--fr-blue); box-shadow: 0 0 0 3px rgba(33, 150, 243, .15);
}
#commentform textarea { min-height: 120px; resize: vertical; }
#commentform .comment-form-cookies-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: var(--fr-text-soft); }
#commentform .comment-form-cookies-consent input { margin: 3px 0 0; accent-color: var(--fr-blue); }
#commentform .comment-form-cookies-consent label { font-size: 12.5px; font-weight: 400; color: var(--fr-text-soft); margin: 0; }
#commentform .form-submit { grid-column: 1 / -1; margin-top: 2px; }
#commentform .form-submit input[type="submit"] {
	display: inline-flex; align-items: center; gap: 6px; background: var(--fr-blue); border: 1px solid var(--fr-blue);
	color: #fff; border-radius: 999px; padding: 10px 26px; font-size: 14px; font-weight: 700; cursor: pointer;
	transition: background .15s, transform .1s;
}
#commentform .form-submit input[type="submit"]:hover { background: var(--fr-blue-dark); }
#commentform .form-submit input[type="submit"]:active { transform: scale(.97); }
.fr-review-rating-field label { margin-bottom: 8px; }
.fr-rating-options { display: flex; flex-wrap: wrap; gap: 8px; }
.fr-rating-option {
	display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--fr-border); border-radius: 999px;
	padding: 6px 15px; font-size: 13px; font-weight: 600; cursor: pointer; background: var(--fr-surface);
	transition: border-color .15s, color .15s, background .15s, box-shadow .15s; user-select: none;
}
.fr-rating-option:hover { border-color: var(--fr-blue); color: var(--fr-blue); }
.fr-rating-option input { margin: 0; accent-color: var(--fr-blue); cursor: pointer; }
.fr-rating-option:has(input:checked) { background: var(--fr-blue); border-color: var(--fr-blue); color: #fff; }
.fr-rating-option:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(33, 150, 243, .25); }
@media (max-width: 620px) {
	#commentform { grid-template-columns: 1fr; }
	.fr-review-form { padding: 16px; }
}

/* Buy online / affiliate */
.fr-buy-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fr-sponsored-badge {
	display: inline-flex; align-items: center; background: var(--fr-tag-bg); color: var(--fr-text-soft);
	border-radius: 99px; padding: 2px 10px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
}
.fr-buy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 10px; margin: 4px 0 12px; }
.fr-buy-link {
	display: flex; flex-direction: column; gap: 2px;
	border: 1px solid var(--fr-border); border-radius: 12px; padding: 12px 14px;
	background: var(--fr-surface); color: var(--fr-text); text-decoration: none; box-shadow: var(--fr-shadow);
	transition: transform .12s, box-shadow .12s, border-color .12s;
}
.fr-buy-link:hover { transform: translateY(-2px); box-shadow: var(--fr-shadow-lg); text-decoration: none; }
.fr-buy-link[data-store="eBay"] { border-top: 3px solid #e53238; }
.fr-buy-link[data-store="Amazon"] { border-top: 3px solid #ff9900; }
.fr-buy-link[data-store="Notino"] { border-top: 3px solid #dc2626; }
.fr-buy-link[data-store="FragranceX"] { border-top: 3px solid #1e40af; }
.fr-buy-link[data-store="Jomashop"] { border-top: 3px solid #0f766e; }
.fr-buy-link[data-store="Walmart"] { border-top: 3px solid #0071ce; }
.fr-buy-store { font-weight: 800; font-size: 14px; }
.fr-buy-cta { font-size: 12px; color: var(--fr-blue); }
.fr-buy-link-deep .fr-buy-store::before { content: "● "; color: #00a32a; font-size: 10px; vertical-align: 1px; }
.fr-affiliate-note { font-size: 11.5px; color: var(--fr-text-soft); margin: 0; }

/* Buy mini card (hero area) */
.fr-buy-mini { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; box-shadow: var(--fr-shadow); padding: 12px 16px; margin-bottom: 20px; }
.fr-buy-mini-head { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 15px; margin-bottom: 10px; }
.fr-buy-mini-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.fr-buy-mini-link { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--fr-border); border-radius: 999px; padding: 6px 13px; font-size: 13px; font-weight: 700; color: var(--fr-text); text-decoration: none; transition: border-color .15s, color .15s; }
.fr-buy-mini-link:hover { border-color: var(--fr-blue); color: var(--fr-blue); text-decoration: none; }
.fr-buy-mini-more { font-size: 12.5px; font-weight: 700; color: var(--fr-blue); }
.fr-buy-store-badge { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; background: #6b7280; flex-shrink: 0; }
.fr-buy-link .fr-buy-store-badge { margin-bottom: 4px; }
.fr-buy-mini-link[data-store="Official Site"] .fr-buy-store-badge, .fr-buy-link[data-store="Official Site"] .fr-buy-store-badge { background: #111827; }
.fr-buy-mini-link[data-store="eBay"] .fr-buy-store-badge, .fr-buy-link[data-store="eBay"] .fr-buy-store-badge { background: #e53238; }
.fr-buy-mini-link[data-store="Amazon"] .fr-buy-store-badge, .fr-buy-link[data-store="Amazon"] .fr-buy-store-badge { background: #ff9900; }
.fr-buy-mini-link[data-store="Notino"] .fr-buy-store-badge, .fr-buy-link[data-store="Notino"] .fr-buy-store-badge { background: #dc2626; }
.fr-buy-mini-link[data-store="Sephora"] .fr-buy-store-badge, .fr-buy-link[data-store="Sephora"] .fr-buy-store-badge { background: #e4002b; }
.fr-buy-mini-link[data-store="FragranceX"] .fr-buy-store-badge, .fr-buy-link[data-store="FragranceX"] .fr-buy-store-badge { background: #1e40af; }
.fr-buy-mini-link[data-store="Jomashop"] .fr-buy-store-badge, .fr-buy-link[data-store="Jomashop"] .fr-buy-store-badge { background: #0f766e; }
.fr-buy-mini-link[data-store="Walmart"] .fr-buy-store-badge, .fr-buy-link[data-store="Walmart"] .fr-buy-store-badge { background: #0071ce; }

/* Similar-fragrance shop entry */
.fr-similar-cell { display: flex; flex-direction: column; }
.fr-similar-cell .fr-card { flex: 1; }
.fr-similar-shop { display: block; text-align: center; margin-top: 8px; font-size: 12.5px; font-weight: 700; color: var(--fr-blue); }
.fr-similar-shop:hover { text-decoration: underline; }

/* Sticky mobile buy bar */
.fr-buy-sticky { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--fr-surface); border-top: 1px solid var(--fr-border); box-shadow: 0 -4px 16px rgba(0, 0, 0, .12); padding: 10px 14px; align-items: center; gap: 12px; }
.fr-buy-sticky-title { font-size: 12.5px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
.fr-buy-sticky-cta { flex-shrink: 0; }
@media (max-width: 767px) {
	.fr-buy-sticky { display: flex; }
	body.single-perfume .fr-main { padding-bottom: 70px; }
}
.fr-rating-options { display: flex; gap: 8px; flex-wrap: wrap; }
.fr-rating-option { display: inline-flex; align-items: center; gap: 4px; border: 1px solid var(--fr-border); border-radius: 999px; padding: 3px 12px; cursor: pointer; font-size: 13px; }
.fr-rating-option input { accent-color: var(--fr-blue); }

/* ---------- Page hero ---------- */
.fr-page-hero { background: linear-gradient(135deg, #1976d2, #7c3aed); color: #fff; border-radius: 14px; padding: 34px 30px; margin-bottom: 22px; }
.fr-page-hero h1 { font-size: 30px; font-weight: 800; margin: 0 0 6px; }
.fr-page-hero p { opacity: .9; max-width: 640px; margin: 0; }

/* ---------- About page ---------- */
.fr-about-intro p:last-child { margin-bottom: 0; }
.fr-about-stats {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
	margin: 18px 0 0;
}
.fr-about-stat {
	background: linear-gradient(150deg, #1976d2, #7c3aed); color: #fff;
	border-radius: 12px; padding: 18px 14px; text-align: center;
}
.fr-about-stat strong { display: block; font-size: 25px; line-height: 1.2; font-weight: 800; }
.fr-about-stat span { display: block; margin-top: 5px; font-size: 12px; opacity: .9; line-height: 1.4; }
.fr-about-grid {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
	margin-top: 18px;
}
.fr-about-card {
	display: block; color: var(--fr-text); background: var(--fr-surface);
	border: 1px solid var(--fr-border); border-top: 3px solid var(--fr-blue);
	border-radius: 12px; padding: 16px 17px 15px; box-shadow: var(--fr-shadow);
	text-decoration: none; transition: border-color .15s, transform .12s;
}
.fr-about-card:hover { border-top-color: var(--fr-purple); color: var(--fr-text); transform: translateY(-2px); text-decoration: none; }
.fr-about-card h3 { font-size: 15.5px; font-weight: 800; margin: 0 0 7px; }
.fr-about-card p { font-size: 13px; color: var(--fr-text-soft); margin: 0 0 12px; line-height: 1.55; }
.fr-about-card-link { font-size: 13px; font-weight: 700; color: var(--fr-blue); }
.fr-about-card:hover .fr-about-card-link { color: var(--fr-purple); }
.fr-about-values {
	display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px;
	margin-top: 18px;
}
.fr-about-value {
	background: var(--fr-surface-2); border: 1px solid var(--fr-border);
	border-radius: 12px; padding: 15px 16px;
}
.fr-about-value strong { display: block; font-size: 14.5px; font-weight: 800; margin-bottom: 6px; }
.fr-about-value span { display: block; font-size: 13px; color: var(--fr-text-soft); line-height: 1.55; }
.fr-about-contact-grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
	margin-top: 16px;
}
.fr-about-contact-grid > div {
	background: var(--fr-surface-2); border: 1px solid var(--fr-border);
	border-radius: 12px; padding: 15px 16px;
}
.fr-about-contact-grid h3 { font-size: 14.5px; font-weight: 800; margin: 0 0 7px; }
.fr-about-contact-grid p { font-size: 13px; color: var(--fr-text-soft); margin: 0 0 5px; }
.fr-about-contact-grid p:last-child { margin-bottom: 0; }
.fr-about-contact-grid a { font-weight: 700; }

/* Alphabet index */
.fr-alpha-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 18px; }
.fr-alpha-nav a { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--fr-border); border-radius: 7px; font-size: 13px; font-weight: 700; color: var(--fr-text); background: var(--fr-surface); }
.fr-alpha-nav a:hover { border-color: var(--fr-blue); color: var(--fr-blue); text-decoration: none; }
.fr-alpha-group { margin-bottom: 22px; }
.fr-alpha-letter { font-size: 19px; font-weight: 800; color: var(--fr-blue); border-bottom: 2px solid var(--fr-border); padding-bottom: 4px; margin-bottom: 12px; }
.fr-alpha-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.fr-notes-count { font-size: 12.5px; margin-bottom: 12px; }
.fr-pagination { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; justify-content: center; margin-top: 22px; }
.fr-pagination-gap { color: var(--fr-text-soft); padding: 0 4px; }
.fr-logo-card { display: flex; align-items: center; gap: 12px; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 10px; padding: 12px 14px; color: var(--fr-text); box-shadow: var(--fr-shadow); }
.fr-logo-card:hover { border-color: var(--fr-blue); text-decoration: none; color: var(--fr-blue); }
.fr-logo-mark { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 800; color: #fff; flex-shrink: 0; }
.fr-logo-mark img.fr-note-icon { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.fr-logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.fr-logo-card-name { font-weight: 700; font-size: 14px; }
.fr-logo-card-count { font-size: 12px; color: var(--fr-text-soft); }

/* Country cards */
.fr-entity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.fr-entity-card { display: flex; align-items: center; gap: 12px; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 16px; box-shadow: var(--fr-shadow); color: var(--fr-text); }
.fr-entity-card:hover { border-color: var(--fr-blue); color: var(--fr-blue); text-decoration: none; }
.fr-flag { font-size: 30px; }
.fr-flag img { width: 46px; height: 34px; object-fit: cover; border-radius: 6px; display: block; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); }
.fr-entity-name { font-weight: 700; font-size: 14.5px; }
.fr-entity-count { font-size: 12.5px; color: var(--fr-text-soft); }

/* Compare */
.fr-compare-steps, .fr-finder-steps {
	display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; margin: 0 0 20px; padding: 14px 18px;
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; box-shadow: var(--fr-shadow);
	font-size: 13.5px; font-weight: 600; align-items: center;
}
.fr-compare-steps li, .fr-finder-steps li { display: flex; align-items: center; gap: 8px; }
.fr-step-num {
	width: 22px; height: 22px; border-radius: 50%; background: var(--fr-blue); color: #fff;
	display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0;
}
.fr-compare-grid { display: grid; grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr); gap: 16px; align-items: stretch; }
.fr-compare-vs { display: flex; align-items: center; justify-content: center; }
.fr-compare-swap { width: 44px; height: 44px; font-size: 20px; }
.fr-compare-pick { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 16px; box-shadow: var(--fr-shadow); }
.fr-compare-pick h3 { margin-bottom: 10px; font-size: 15px; }
.fr-compare-selected { margin-top: 12px; }
.fr-compare-empty { font-size: 13px; color: var(--fr-text-soft); background: var(--fr-surface-2); border-radius: 10px; padding: 14px; text-align: center; }
.fr-compare-selected-card {
	display: flex; align-items: center; gap: 12px;
	background: var(--fr-surface-2); border: 1px solid var(--fr-blue); border-radius: 12px; padding: 12px;
}
.fr-cmp-thumb { width: 46px; height: 60px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.fr-cmp-thumb svg { width: 100%; height: 100%; }
.fr-cmp-info { flex: 1; min-width: 0; }
.fr-cmp-name { font-weight: 800; font-size: 14.5px; line-height: 1.25; }
.fr-cmp-brand { font-size: 12.5px; color: var(--fr-blue); font-weight: 700; }
.fr-cmp-score { font-size: 12px; color: var(--fr-text-soft); margin-top: 2px; }
.fr-cmp-clear { flex-shrink: 0; }
.fr-compare-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 18px 0 6px; }
.fr-compare-hint { font-size: 13px; }
#fr-compare-btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; }
.fr-compare-results { margin-top: 20px; }
.fr-compare-results:target, .fr-compare-results { scroll-margin-top: calc(var(--fr-header-h) + 70px); }
.fr-compare-table { width: 100%; border-collapse: collapse; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; overflow: hidden; box-shadow: var(--fr-shadow); }
.fr-compare-table th, .fr-compare-table td { padding: 11px 14px; border-bottom: 1px solid var(--fr-border); font-size: 13.5px; text-align: left; }
.fr-compare-table th { background: var(--fr-surface-2); font-weight: 800; text-transform: uppercase; font-size: 11.5px; letter-spacing: .6px; }
.fr-compare-table tr:last-child td { border-bottom: 0; }
.fr-cmp-head { display: flex; align-items: center; gap: 10px; text-transform: none; font-size: 14px; }
.fr-cmp-head-thumb { width: 30px; height: 40px; flex-shrink: 0; display: flex; }
.fr-cmp-head-thumb svg { width: 100%; height: 100%; }
.fr-cmp-head-name { font-weight: 800; }
.fr-cmp-diff { background: rgba(33, 150, 243, .08); }
[data-theme="dark"] .fr-cmp-diff { background: rgba(33, 150, 243, .16); }
.fr-compare-footer { font-size: 12px; margin-top: 10px; }

/* Colors */
.fr-color-intro {
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px;
	padding: 14px 18px; margin-bottom: 16px; box-shadow: var(--fr-shadow); font-size: 13.5px;
}
.fr-color-intro p { margin: 6px 0 0; color: var(--fr-text-soft); }
.fr-color-picker { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-bottom: 22px; }
.fr-color-swatch-card {
	display: flex; align-items: center; gap: 10px; padding: 10px 12px;
	border: 1px solid var(--fr-border); border-radius: 12px; background: var(--fr-surface); cursor: pointer;
	box-shadow: var(--fr-shadow); transition: border-color .15s, box-shadow .15s; font-family: inherit; color: var(--fr-text); text-align: left;
}
.fr-color-swatch-card:hover { border-color: var(--fr-blue); }
.fr-color-swatch-card.active { border-color: var(--fr-blue); box-shadow: 0 0 0 2px rgba(33, 150, 243, .35); }
.fr-color-swatch { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--fr-surface); box-shadow: 0 0 0 1px var(--fr-border); flex-shrink: 0; }
.fr-color-name { font-size: 13px; font-weight: 700; }
.fr-color-count { margin-left: auto; background: var(--fr-tag-bg); color: var(--fr-text-soft); border-radius: 99px; font-size: 11.5px; font-weight: 800; padding: 1px 8px; }

/* Finder */
.fr-finder-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.fr-finder-count {
	display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 24px;
	background: var(--fr-blue); color: #fff; border-radius: 99px; font-size: 12.5px; font-weight: 800; padding: 0 7px;
}
.fr-finder-head .fr-btn { margin-left: auto; }
.fr-finder-progress-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin: 14px 0 6px; font-size: 12.5px; }
.fr-finder-progress-label { font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--fr-text-soft); }
.fr-finder-progress-status { font-weight: 700; color: var(--fr-blue); }
.fr-finder-hint { font-size: 12.5px; margin-top: 8px; }
.fr-finder-results-head { display: flex; align-items: baseline; gap: 14px; margin: 26px 0 14px; flex-wrap: wrap; }
.fr-finder-empty {
	background: var(--fr-surface); border: 1px dashed var(--fr-border); border-radius: 14px;
	padding: 36px 20px; text-align: center; color: var(--fr-text-soft); margin-top: 20px;
}
.fr-finder-empty p { margin: 0; font-size: 14px; }
.fr-finder-card { position: relative; }
.fr-finder-card .fr-perfume-card { height: 100%; }
.fr-match-badge {
	position: absolute; top: 8px; right: 8px; z-index: 3;
	background: var(--fr-green); color: #fff; border-radius: 99px; padding: 2px 9px;
	font-size: 11px; font-weight: 800; box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}
.fr-finder-chips { display: flex; flex-wrap: wrap; gap: 8px; min-height: 44px; }

/* Ingredients search */
.fr-ing-columns { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.fr-ing-columns .fr-compare-pick { min-width: 0; }
.fr-ing-controls { display: flex; gap: 22px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 14px; }
.fr-ing-control { display: flex; flex-direction: column; }
.fr-ing-controls .fr-ing-clear { margin-left: auto; }
.fr-ing-chips { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 12px 14px; box-shadow: var(--fr-shadow); }
.fr-ing-chips-group { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.fr-ing-chip-group-label { font-size: 12px; font-weight: 800; color: var(--fr-text-soft); text-transform: uppercase; letter-spacing: .5px; }
.fr-ing-chips .fr-chip { background: var(--fr-blue); }
.fr-ing-chips #fr-ing-chips-exclude .fr-chip { background: var(--fr-red); }
.fr-ing-col-count {
	display: inline-flex; align-items: center; justify-content: center; min-width: 22px; height: 22px;
	background: var(--fr-blue); color: #fff; border-radius: 99px; font-size: 12px; font-weight: 800; padding: 0 6px; vertical-align: middle;
}
.fr-ing-note-count { font-weight: 700; }
.fr-chip { display: inline-flex; align-items: center; gap: 6px; background: var(--fr-blue); color: #fff; border-radius: 999px; padding: 5px 13px; font-size: 13px; font-weight: 600; }
.fr-chip button { background: none; border: 0; color: #fff; cursor: pointer; font-size: 15px; line-height: 1; padding: 0; }
.fr-progress { height: 10px; background: var(--fr-surface-2); border-radius: 99px; overflow: hidden; margin: 14px 0; }
.fr-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--fr-blue), #7c3aed); border-radius: 99px; transition: width .3s; }
.fr-search-picker { position: relative; }
.fr-search-picker-results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; box-shadow: var(--fr-shadow-lg); max-height: 300px; overflow: auto; }
.fr-search-picker-results button { display: flex; width: 100%; gap: 8px; padding: 9px 12px; border: 0; background: none; text-align: left; cursor: pointer; color: var(--fr-text); font-size: 13.5px; }
.fr-search-picker-results button:hover { background: var(--fr-surface-2); }

/* Pulse */
.fr-pulse-intro {
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px;
	padding: 14px 18px; margin-bottom: 16px; box-shadow: var(--fr-shadow); font-size: 13.5px;
}
.fr-pulse-intro p { margin: 6px 0 0; color: var(--fr-text-soft); }
.fr-pulse-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 16px; box-shadow: var(--fr-shadow); margin-bottom: 18px; }
.fr-pulse-control { display: flex; flex-direction: column; gap: 6px; }
.fr-pulse-control-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--fr-text-soft); }
.fr-pulse-slider-control { flex: 1; min-width: 260px; }
.fr-pulse-slider-head { display: flex; justify-content: space-between; align-items: center; }
.fr-pulse-slider-value {
	background: var(--fr-blue); color: #fff; border-radius: 99px; padding: 1px 10px;
	font-size: 12px; font-weight: 800;
}
.fr-slider { flex: 1; min-width: 200px; accent-color: var(--fr-blue); }
.fr-seg { display: inline-flex; border: 1px solid var(--fr-border); border-radius: 999px; overflow: hidden; }
.fr-seg button { border: 0; background: var(--fr-surface); padding: 6px 14px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--fr-text); }
.fr-seg button.active { background: var(--fr-blue); color: #fff; }
.fr-pulse-slider-labels { display: flex; justify-content: space-between; gap: 12px; font-size: 12px; color: var(--fr-text-soft); }
.fr-pulse-hint { font-size: 12.5px; color: var(--fr-text-soft); margin: -8px 0 18px; }
.fr-pulse-results-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.fr-pulse-summary { font-size: 12.5px; color: var(--fr-text-soft); margin-left: auto; }
.fr-pulse-list { display: flex; flex-direction: column; gap: 10px; }
.fr-pulse-row { display: flex; gap: 12px; align-items: center; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 10px 14px; box-shadow: var(--fr-shadow); }
.fr-pulse-thumb { width: 44px; flex-shrink: 0; }
.fr-pulse-meta { flex: 1; min-width: 0; }
.fr-pulse-name { font-weight: 700; font-size: 14px; }
.fr-pulse-sub { font-size: 12.5px; color: var(--fr-text-soft); }
.fr-pulse-signal { font-weight: 800; font-size: 13px; padding: 4px 10px; border-radius: 99px; }
.fr-pulse-signal::before { content: 'Signal ▲ '; font-weight: 700; font-size: 10.5px; opacity: .8; }
.fr-pulse-legend { font-size: 12px; margin-top: 12px; }

/* Groups */
.fr-group-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.fr-group-card { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 18px; box-shadow: var(--fr-shadow); display: flex; flex-direction: column; }
.fr-group-card h3 { margin: 0 0 6px; font-size: 17px; }
.fr-group-card p { font-size: 13px; color: var(--fr-text-soft); flex: 1; }

/* Feed */
.fr-feed-composer { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px; padding: 16px; box-shadow: var(--fr-shadow); margin-bottom: 18px; }
.fr-feed-post { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px; padding: 16px; box-shadow: var(--fr-shadow); margin-bottom: 14px; }
.fr-feed-head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.fr-feed-author { font-weight: 700; font-size: 14px; }
.fr-feed-time { font-size: 12px; color: var(--fr-text-soft); }
.fr-feed-text { font-size: 14.5px; }
.fr-feed-perfume { display: flex; gap: 10px; align-items: center; background: var(--fr-surface-2); border-radius: 10px; padding: 8px 12px; margin-top: 10px; }
.fr-feed-perfume svg { width: 34px; height: 44px; }
.fr-feed-perfume img.fr-perfume-img { width: 34px; height: 44px; object-fit: cover; border-radius: 5px; }
.fr-feed-actions { display: flex; gap: 6px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--fr-border); }
.fr-feed-action { display: inline-flex; align-items: center; gap: 5px; border: 0; background: none; color: var(--fr-text-soft); font-size: 13px; font-weight: 600; cursor: pointer; padding: 5px 10px; border-radius: 99px; }
.fr-feed-action:hover { background: var(--fr-surface-2); color: var(--fr-blue); }
.fr-feed-action.liked { color: var(--fr-red); }
.fr-feed-comments { margin-top: 10px; }
.fr-feed-comment { display: flex; gap: 8px; padding: 7px 0; font-size: 13px; }
.fr-who-card { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--fr-border); }
.fr-who-card:last-child { border-bottom: 0; }
.fr-who-name { font-weight: 700; font-size: 13.5px; }
.fr-who-meta { font-size: 12px; color: var(--fr-text-soft); }

/* Fragram */
.fr-fragram-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 24px; align-items: start; }
.fr-fragram-sidebar { position: sticky; top: calc(var(--fr-header-h) + 60px); }
.fr-fragram-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.fr-fragram-nav a, .fr-fragram-nav button {
	display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 10px; border: 0; background: none;
	border-radius: 8px; color: var(--fr-text); font-size: 13.5px; font-weight: 600; cursor: pointer; font-family: inherit; text-align: left;
}
.fr-fragram-nav a:hover, .fr-fragram-nav button:hover { background: var(--fr-surface-2); color: var(--fr-blue); text-decoration: none; }
.fr-fragram-search-count { font-size: 12px; margin: 8px 0 0; }
.fr-fragram-main { min-width: 0; }
.fr-fragram-composer-cta p { margin: 0 0 10px; font-size: 14px; }
.fr-fragram-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.fr-fragram-period { margin-bottom: 10px; }
.fr-fragram-topic-pills { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 16px; }
.fr-masonry { columns: 4 220px; column-gap: 14px; }
.fr-masonry-item { break-inside: avoid; margin-bottom: 14px; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; overflow: hidden; box-shadow: var(--fr-shadow); }
.fr-masonry-item img { width: 100%; display: block; }
.fr-fragram-photo { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--fr-surface-2); }
.fr-fragram-photo-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.fr-fragram-photo-vignette { position: absolute; inset: 0; background: radial-gradient(120% 105% at 50% 40%, transparent 52%, rgba(0,0,0,.30) 100%); pointer-events: none; }
.fr-fragram-photo-shadow { position: absolute; left: 50%; bottom: 7%; width: 42%; height: 4%; transform: translateX(calc(-50% + var(--fr-pos, 0px))); background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.40), rgba(0,0,0,0) 68%); border-radius: 50%; pointer-events: none; }
.fr-fragram-photo-bottle { position: absolute; left: 50%; bottom: 7.5%; width: var(--fr-w, 52%); transform: translateX(calc(-50% + var(--fr-pos, 0px))) rotate(var(--fr-rot, 0deg)); mix-blend-mode: multiply; pointer-events: none; }
.fr-masonry-caption { padding: 10px 12px; font-size: 13px; }
.fr-masonry-item .fr-feed-perfume {
	display: flex; align-items: center; gap: 8px; margin: 0 12px 8px; padding: 7px 10px;
	background: var(--fr-surface-2); border-radius: 9px; font-size: 12.5px; font-weight: 700; color: var(--fr-text);
}
.fr-masonry-item .fr-feed-perfume:hover { color: var(--fr-blue); }
.fr-masonry-item .fr-feed-perfume svg { width: 24px; height: 32px; }
.fr-masonry-item .fr-feed-perfume img.fr-perfume-img { width: 24px; height: 32px; object-fit: cover; border-radius: 4px; }
.fr-card-media img.fr-perfume-img { max-height: 210px; width: auto; object-fit: contain; }
.fr-perfume-hero-media img.fr-perfume-img { max-width: 260px; width: 100%; height: auto; }
.fr-recent-thumb img.fr-perfume-img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.fr-masonry-meta { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-top: 1px solid var(--fr-border); font-size: 12.5px; color: var(--fr-text-soft); }
.fr-fragram-author { font-weight: 700; color: var(--fr-text); font-size: 12.5px; }
.fr-fragram-author:hover { color: var(--fr-blue); }
.fr-fragram-comments { font-size: 12px; }
.fr-creator-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; margin-bottom: 20px; }
.fr-creator-card {
	display: flex; align-items: center; gap: 12px; background: var(--fr-surface); border: 1px solid var(--fr-border);
	border-radius: 12px; padding: 14px; box-shadow: var(--fr-shadow);
}
.fr-creator-name { font-weight: 800; font-size: 14px; color: var(--fr-text); }
.fr-creator-name:hover { color: var(--fr-blue); }
.fr-creator-meta { font-size: 12px; color: var(--fr-text-soft); }

/* Profile */
.fr-profile-hero { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px; padding: 24px; box-shadow: var(--fr-shadow); display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.fr-profile-stats { display: flex; gap: 22px; flex-wrap: wrap; margin-left: auto; }
.fr-profile-stat { text-align: center; }
.fr-profile-stat strong { display: block; font-size: 22px; font-weight: 800; }
.fr-profile-stat span { font-size: 12px; color: var(--fr-text-soft); }
.fr-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--fr-border); margin: 20px 0 16px; }
.fr-tab { border: 0; background: none; padding: 10px 16px; font-size: 14px; font-weight: 700; color: var(--fr-text-soft); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.fr-tab.active { color: var(--fr-blue); border-bottom-color: var(--fr-blue); }
.fr-tab-panel { display: none; }
.fr-tab-panel.active { display: block; }
.fr-shelf { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; padding: 16px; margin-bottom: 16px; box-shadow: var(--fr-shadow); }
.fr-shelf-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.fr-shelf-title { font-weight: 800; font-size: 15px; }
.fr-shelf-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; }

/* Auth */
.fr-auth-wrap { max-width: 430px; margin: 30px auto; background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 16px; box-shadow: var(--fr-shadow); padding: 28px; }
.fr-auth-wrap h1 { font-size: 22px; margin-bottom: 4px; }
.fr-auth-sub { color: var(--fr-text-soft); font-size: 13.5px; margin-bottom: 18px; }

/* Awards */
.fr-award-section { margin-bottom: 26px; }
.fr-award-year-title { font-size: 26px; font-weight: 800; margin: 0 0 16px; }
.fr-awards-hero { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.fr-awards-hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fr-awards-hero-note { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 7px 16px; font-size: 13px; font-weight: 700; }
.fr-awards-years { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.fr-award-cat { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px; box-shadow: var(--fr-shadow); padding: 16px 18px; margin-bottom: 18px; }
.fr-award-cat-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.fr-award-cat-head h3 { font-size: 17px; font-weight: 800; margin: 0; }
.fr-award-votes-total { margin-left: auto; font-size: 12.5px; font-weight: 700; color: var(--fr-text-soft); }
.fr-award-yourvote { font-size: 12.5px; font-weight: 700; color: var(--fr-green); }
.fr-award-hint { margin: 6px 0 12px; font-size: 12px; color: var(--fr-text-soft); }
.fr-award-row { display: grid; grid-template-columns: 36px 42px minmax(0, 1fr) minmax(90px, 180px) 44px auto auto; gap: 12px; align-items: center; padding: 11px 8px; border-top: 1px solid var(--fr-border); transition: background .12s; }
.fr-award-row:first-of-type { border-top: 0; }
.fr-award-row:hover { background: var(--fr-surface-2); }
.fr-award-row.is-leader { background: rgba(255, 193, 7, .08); }
.fr-award-medal { font-size: 17px; text-align: center; font-weight: 800; color: var(--fr-text-soft); }
.fr-award-row.is-leader .fr-award-medal { color: #f59e0b; }
.fr-award-thumb { display: block; width: 34px; height: 44px; }
.fr-award-thumb img.fr-perfume-img { width: 34px; height: 44px; object-fit: cover; border-radius: 5px; }
.fr-award-name { font-size: 14px; font-weight: 600; color: var(--fr-text); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.fr-award-name:hover { color: var(--fr-blue); }
.fr-award-bar-track { height: 8px; border-radius: 99px; background: var(--fr-surface-2); border: 1px solid var(--fr-border); overflow: hidden; }
.fr-award-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--fr-blue), #64b5f6); transition: width .35s ease; }
.fr-award-row.is-leader .fr-award-bar-fill { background: linear-gradient(90deg, #f59e0b, #fbbf24); box-shadow: 0 1px 4px rgba(245, 158, 11, .45); }
.fr-award-count { font-size: 13px; font-weight: 800; color: var(--fr-text); text-align: right; }
.fr-award-tag { font-size: 11.5px; font-weight: 800; color: var(--fr-green); white-space: nowrap; }
.fr-award-row .fr-btn { white-space: nowrap; }
@media (max-width: 720px) {
	.fr-award-row { grid-template-columns: 26px 38px minmax(0, 1fr) auto; }
	.fr-award-bar-track { grid-column: 2 / 5; order: 5; }
	.fr-award-count { grid-column: 3; order: 4; text-align: left; }
	.fr-award-tag { display: none; }
}

/* Map */
.fr-map-intro {
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px;
	padding: 14px 18px; margin-bottom: 16px; box-shadow: var(--fr-shadow); font-size: 13.5px;
}
.fr-map-intro p { margin: 6px 0 0; color: var(--fr-text-soft); }
.fr-map-wrap { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 14px; box-shadow: var(--fr-shadow); overflow: hidden; }
.fr-map-controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 12px 14px; border-bottom: 1px solid var(--fr-border); }
.fr-map-count {
	background: var(--fr-blue); color: #fff; border-radius: 99px; padding: 3px 11px;
	font-size: 12.5px; font-weight: 800; white-space: nowrap;
}
.fr-map-canvas { position: relative; width: 100%; height: 560px; background: radial-gradient(circle at 20% 30%, #eef4ff, #f8f9fa 60%); }
[data-theme="dark"] .fr-map-canvas { background: radial-gradient(circle at 20% 30%, #1d2634, #14171c 60%); }
.fr-map-axis { position: absolute; font-size: 11px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--fr-text-soft); opacity: .55; pointer-events: none; }
.fr-map-axis-tl { top: 12px; left: 16px; }
.fr-map-axis-tr { top: 12px; right: 16px; }
.fr-map-axis-bl { bottom: 12px; left: 16px; }
.fr-map-axis-br { bottom: 12px; right: 16px; }
.fr-map-dot {
	position: absolute; transform: translate(-50%, -50%); width: 14px; height: 14px; border-radius: 50%;
	border: 2px solid #fff; box-shadow: 0 1px 5px rgba(0, 0, 0, .35); cursor: pointer; transition: transform .12s;
	animation: fr-map-drift 7s ease-in-out infinite alternate;
}
.fr-map-dot:hover, .fr-map-dot.match { transform: translate(-50%, -50%) scale(1.6); z-index: 5; }
.fr-map-dot.match { box-shadow: 0 0 0 5px rgba(33, 150, 243, .35), 0 1px 5px rgba(0, 0, 0, .3); }
.fr-map-canvas.paused .fr-map-dot { animation-play-state: paused; }
.fr-map-noresults {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: 12px;
	padding: 18px 24px; font-weight: 600; box-shadow: var(--fr-shadow-lg);
}
.fr-map-tooltip {
	position: absolute; display: none; background: var(--fr-text); color: var(--fr-bg); font-size: 12px;
	border-radius: 8px; padding: 7px 11px; pointer-events: none; z-index: 10; min-width: 90px; max-width: 170px;
	box-shadow: var(--fr-shadow-lg);
}
.fr-map-tooltip span { opacity: .8; }
.fr-map-tooltip.show { display: block; }
.fr-map-legend { padding: 9px 14px; border-top: 1px solid var(--fr-border); font-size: 12px; color: var(--fr-text-soft); }

@keyframes fr-map-drift {
	from { margin-top: 0; }
	to { margin-top: -7px; }
}

/* ================= Forum (bbPress) ================= */
.fr-forum-hero { display: flex; gap: 24px; align-items: center; justify-content: space-between; }
.fr-forum-hero-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.fr-forum-hero-actions .bbp-search-form { margin: 0; }
.fr-forum-hero-actions .bbp-search-form form { display: flex; gap: 6px; }
.fr-forum-hero-actions .bbp-search-form input[type="text"] {
	background: rgba(255,255,255,.96); color: #212529; border: 0; border-radius: 999px;
	padding: 8px 16px; font-size: 13px; min-width: 200px; outline: none;
}
.fr-forum-hero-actions .bbp-search-form input[type="text"]:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.fr-forum-hero-actions .bbp-search-form .button {
	background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.55);
	border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer;
	transition: background .15s;
}
.fr-forum-hero-actions .bbp-search-form .button:hover { background: rgba(255,255,255,.3); }

.fr-forum-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-bottom: 22px; }
.fr-forum-stat {
	background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: var(--fr-radius);
	box-shadow: var(--fr-shadow); padding: 14px 10px; text-align: center; min-width: 0;
}
.fr-forum-stat strong { display: block; font-size: 19px; font-weight: 800; color: var(--fr-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fr-forum-stat span { display: block; font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--fr-text-soft); margin-top: 2px; }

.fr-board { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: var(--fr-radius); box-shadow: var(--fr-shadow); overflow: hidden; margin-bottom: 22px; }
.fr-board-head, .fr-board-row { display: grid; grid-template-columns: minmax(0, 1fr) 86px 86px 190px; align-items: center; }
.fr-board-head { background: var(--fr-surface-2); padding: 10px 16px; font-size: 11.5px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; color: var(--fr-text-soft); }
.fr-board-row { padding: 14px 16px; border-top: 1px solid var(--fr-border); transition: background .12s; }
.fr-board-row:hover { background: var(--fr-surface-2); }
.fr-board-name { display: flex; gap: 12px; align-items: flex-start; min-width: 0; }
.fr-board-icon { font-size: 21px; line-height: 1; margin-top: 3px; }
.fr-board-title-wrap { min-width: 0; }
.fr-board-title { font-size: 15px; font-weight: 700; color: var(--fr-text); }
.fr-board-title:hover { color: var(--fr-blue); text-decoration: none; }
.fr-board-desc { font-size: 12.5px; color: var(--fr-text-soft); margin-top: 2px; }
.fr-board-new { display: inline-block; margin-top: 5px; font-size: 12px; font-weight: 700; color: var(--fr-blue); }
.fr-board-new:hover { text-decoration: underline; }
.fr-board-count { text-align: center; font-size: 14px; font-weight: 600; color: var(--fr-text-soft); }
.fr-board-last { font-size: 12.5px; color: var(--fr-text-soft); padding-left: 14px; min-width: 0; }
.fr-board-fresh a { font-weight: 600; color: var(--fr-text); }
.fr-board-fresh a:hover { color: var(--fr-blue); }
.fr-board-fresh-author { margin-top: 2px; font-size: 12px; }
.fr-board-fresh-author .avatar { vertical-align: middle; border-radius: 50%; }

.fr-forum-recent { padding: 18px 20px; margin-bottom: 22px; }
.fr-forum-recent-title { font-size: 17px; font-weight: 800; margin-bottom: 12px; }
.fr-forum-recent-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.fr-forum-recent-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 4px; border-top: 1px solid var(--fr-border); }
.fr-forum-recent-list li:first-child { border-top: 0; }
.fr-forum-recent-main { display: flex; flex-direction: column; min-width: 0; }
.fr-forum-recent-topic { font-weight: 600; color: var(--fr-text); }
.fr-forum-recent-topic:hover { color: var(--fr-blue); }
.fr-forum-recent-count { flex-shrink: 0; font-size: 12.5px; color: var(--fr-text-soft); }

.fr-subforums { padding: 16px 18px; margin-bottom: 22px; }
.fr-subforums-title { font-size: 15px; font-weight: 800; margin-bottom: 10px; }

#bbpress-forums { font-size: 14px; line-height: 1.55; }
#bbpress-forums .bbp-breadcrumb { font-size: 12.5px; color: var(--fr-text-soft); margin-bottom: 10px; }
#bbpress-forums .bbp-breadcrumb a { color: var(--fr-blue); }
#bbpress-forums .bbp-breadcrumb-sep { margin: 0 7px; }

#bbpress-forums input[type="text"], #bbpress-forums input[type="password"], #bbpress-forums input[type="email"],
#bbpress-forums input[type="url"], #bbpress-forums textarea {
	background: var(--fr-surface); color: var(--fr-text); border: 1px solid var(--fr-border);
	border-radius: 8px; padding: 8px 12px; font-size: 13.5px; font-family: inherit; outline: none; max-width: 100%;
}
#bbpress-forums input[type="text"]:focus, #bbpress-forums input[type="password"]:focus,
#bbpress-forums input[type="email"]:focus, #bbpress-forums textarea:focus { border-color: var(--fr-blue); box-shadow: 0 0 0 3px rgba(33,150,243,.15); }
#bbpress-forums .button, #bbpress-forums button[type="submit"] {
	display: inline-flex; align-items: center; gap: 6px; background: var(--fr-blue); color: #fff;
	border: 1px solid var(--fr-blue); border-radius: 999px; padding: 8px 18px; font-size: 13px;
	font-weight: 700; cursor: pointer; transition: background .15s;
}
#bbpress-forums .button:hover, #bbpress-forums button[type="submit"]:hover { background: var(--fr-blue-dark); }

#bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-replies {
	list-style: none; margin: 0; padding: 0; background: var(--fr-surface);
	border: 1px solid var(--fr-border); border-radius: var(--fr-radius); box-shadow: var(--fr-shadow);
}
#bbpress-forums li.bbp-header, #bbpress-forums li.bbp-body, #bbpress-forums li.bbp-footer { list-style: none; }
#bbpress-forums li.bbp-footer { display: none; }

#bbpress-forums li.bbp-header ul.forum-titles {
	display: grid; grid-template-columns: minmax(0, 1fr) 80px 80px 180px; list-style: none; margin: 0; padding: 0;
	background: var(--fr-surface-2); border-radius: 7px 7px 0 0;
}
#bbpress-forums .forum-titles li { padding: 9px 14px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--fr-text-soft); }
#bbpress-forums .forum-titles .bbp-forum-topic-count, #bbpress-forums .forum-titles .bbp-topic-voice-count,
#bbpress-forums .forum-titles .bbp-forum-reply-count, #bbpress-forums .forum-titles .bbp-topic-reply-count { text-align: center; }
#bbpress-forums .forum-titles .bbp-forum-freshness, #bbpress-forums .forum-titles .bbp-topic-freshness { text-align: right; }

#bbpress-forums li.bbp-body > ul {
	display: grid; grid-template-columns: minmax(0, 1fr) 80px 80px 180px; align-items: center; list-style: none;
	margin: 0; padding: 0; border-top: 1px solid var(--fr-border);
}
#bbpress-forums li.bbp-body > ul:first-child { border-top: 0; }
#bbpress-forums li.bbp-body > ul:hover { background: var(--fr-surface-2); }
#bbpress-forums li.bbp-body > ul > li { padding: 12px 14px; min-width: 0; }
#bbpress-forums li.bbp-body > ul > li.bbp-topic-voice-count,
#bbpress-forums li.bbp-body > ul > li.bbp-topic-reply-count,
#bbpress-forums li.bbp-body > ul > li.bbp-forum-topic-count,
#bbpress-forums li.bbp-body > ul > li.bbp-forum-reply-count { text-align: center; color: var(--fr-text-soft); font-weight: 600; }
#bbpress-forums li.bbp-body > ul > li.bbp-topic-freshness,
#bbpress-forums li.bbp-body > ul > li.bbp-forum-freshness { text-align: right; font-size: 12.5px; color: var(--fr-text-soft); }

#bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink { font-size: 14.5px; font-weight: 700; color: var(--fr-text); }
#bbpress-forums .bbp-forum-title:hover, #bbpress-forums .bbp-topic-permalink:hover { color: var(--fr-blue); text-decoration: none; }
#bbpress-forums .bbp-forum-content, #bbpress-forums .bbp-topic-meta { font-size: 12px; color: var(--fr-text-soft); margin-top: 3px; }
#bbpress-forums .bbp-topic-meta a { color: var(--fr-blue); }
#bbpress-forums .bbp-topic-meta .avatar { vertical-align: middle; border-radius: 50%; }
#bbpress-forums .bbp-topic-freshness > a, #bbpress-forums .bbp-forum-freshness > a { font-weight: 600; color: var(--fr-text); }
#bbpress-forums .bbp-topic-freshness > a:hover, #bbpress-forums .bbp-forum-freshness > a:hover { color: var(--fr-blue); }
#bbpress-forums .bbp-topic-pagination { margin: 4px 0 0; font-size: 12px; }
#bbpress-forums .bbp-topic-pagination .page-numbers { padding: 2px 7px; border-radius: 4px; border: 1px solid var(--fr-border); }

#bbpress-forums .bbp-pagination { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; font-size: 12.5px; color: var(--fr-text-soft); }
#bbpress-forums .bbp-pagination-links { display: flex; gap: 4px; flex-wrap: wrap; }
#bbpress-forums .bbp-pagination-links a, #bbpress-forums .bbp-pagination-links span.page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 28px; height: 28px; padding: 0 8px;
	border: 1px solid var(--fr-border); border-radius: 999px; font-size: 12.5px; font-weight: 700; color: var(--fr-text);
}
#bbpress-forums .bbp-pagination-links a:hover { border-color: var(--fr-blue); color: var(--fr-blue); text-decoration: none; }
#bbpress-forums .bbp-pagination-links span.current { background: var(--fr-blue); border-color: var(--fr-blue); color: #fff; }

#bbpress-forums .bbp-template-notice { background: #e3f2fd; border: 1px solid #90caf9; color: #0d47a1; border-radius: 8px; padding: 10px 14px; margin: 12px 0; font-size: 13px; }
#bbpress-forums .bbp-template-notice ul { list-style: none; margin: 0; padding: 0; }
#bbpress-forums .bbp-template-notice.info { background: #e8f5e9; border-color: #a5d6a7; color: #1b5e20; }
#bbpress-forums .bbp-template-notice.warning { background: #fff3e0; border-color: #ffcc80; color: #e65100; }
#bbpress-forums .bbp-template-notice.error { background: #ffebee; border-color: #ef9a9a; color: #b71c1c; }

/* Topic + reply forms */
#bbpress-forums .bbp-topic-form, #bbpress-forums .bbp-reply-form { background: var(--fr-surface); border: 1px solid var(--fr-border); border-radius: var(--fr-radius); box-shadow: var(--fr-shadow); padding: 18px 20px; margin-top: 22px; }
#bbpress-forums .bbp-form fieldset { border: 0; margin: 0; padding: 0; }
#bbpress-forums .bbp-form legend { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
#bbpress-forums .bbp-form label { font-size: 12.5px; font-weight: 700; color: var(--fr-text); }
#bbpress-forums .bbp-form p { margin: 0 0 12px; }
#bbpress-forums .bbp-form textarea { width: 100%; min-height: 130px; }
#bbpress-forums .bbp-form .bbp-the-content-wrapper { margin: 6px 0 12px; }
#bbpress-forums .bbp-form .wp-editor-container { border: 1px solid var(--fr-border); border-radius: 8px; }
#bbpress-forums .bbp-form .wp-editor-tabs button { background: var(--fr-surface-2); border: 1px solid var(--fr-border); border-bottom: 0; padding: 6px 12px; font-size: 12px; border-radius: 6px 6px 0 0; }
#bbpress-forums .bbp-form .quicktags-toolbar { background: var(--fr-surface-2); border: 0; border-radius: 7px 7px 0 0; }
#bbpress-forums .bbp-form .quicktags-toolbar .button { background: var(--fr-surface); color: var(--fr-text); border: 1px solid var(--fr-border); border-radius: 4px; padding: 4px 9px; font-size: 12px; }
#bbpress-forums .bbp-form .wp-editor-area { width: 100%; background: var(--fr-surface); color: var(--fr-text); border: 1px solid var(--fr-border); border-radius: 0 0 8px 8px; padding: 10px 12px; }
#bbpress-forums .bbp-allowed-tags { background: var(--fr-surface-2); border-radius: 8px; padding: 10px 12px; font-size: 12px; color: var(--fr-text-soft); margin-bottom: 12px; }
#bbpress-forums .bbp-allowed-tags code { background: transparent; color: var(--fr-text); }
#bbpress-forums .bbp-submit-wrapper { margin-top: 4px; }
#bbpress-forums .bbp-submit-wrapper .button { padding: 9px 22px; font-size: 14px; }

/* Replies thread */
#bbpress-forums ul.bbp-replies > li.bbp-header { display: grid; grid-template-columns: 150px minmax(0, 1fr); background: var(--fr-surface-2); border-radius: 7px 7px 0 0; }
#bbpress-forums ul.bbp-replies > li.bbp-header .bbp-reply-author { padding: 9px 14px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--fr-text-soft); }
#bbpress-forums ul.bbp-replies > li.bbp-header .bbp-reply-content { padding: 9px 14px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--fr-text-soft); }
#bbpress-forums ul.bbp-replies > li.bbp-body > .bbp-reply-header { display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--fr-border); padding: 10px 14px; font-size: 12px; color: var(--fr-text-soft); background: var(--fr-surface-2); }
#bbpress-forums ul.bbp-replies > li.bbp-body > .bbp-reply-header:first-child { border-top: 0; border-radius: 7px 7px 0 0; }
#bbpress-forums ul.bbp-replies > li.bbp-body > .bbp-reply-header .bbp-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
#bbpress-forums ul.bbp-replies > li.bbp-body > .bbp-reply-header .bbp-reply-permalink { font-weight: 700; color: var(--fr-text-soft); }
#bbpress-forums ul.bbp-replies > li.bbp-body > .bbp-reply-header .bbp-admin-links a { color: var(--fr-blue); font-size: 12px; }
#bbpress-forums ul.bbp-replies > li.bbp-body > div.reply { display: grid; grid-template-columns: 150px minmax(0, 1fr); border-top: 1px solid var(--fr-border); }
#bbpress-forums ul.bbp-replies > li.bbp-body > div.reply:last-child { border-bottom: 0; }
#bbpress-forums .bbp-reply-author { padding: 14px; text-align: center; }
#bbpress-forums .bbp-reply-author .bbp-author-avatar img.avatar { border-radius: 50%; border: 2px solid var(--fr-border); }
#bbpress-forums .bbp-reply-author .bbp-author-name { display: block; font-weight: 700; font-size: 13.5px; color: var(--fr-text); margin-top: 6px; }
#bbpress-forums .bbp-reply-author .bbp-author-role { display: inline-block; font-size: 10.5px; color: var(--fr-text-soft); background: var(--fr-tag-bg); border-radius: 999px; padding: 2px 8px; margin-top: 5px; }
#bbpress-forums .bbp-reply-content { padding: 14px 18px; font-size: 14px; color: var(--fr-text); min-width: 0; }
#bbpress-forums .bbp-reply-content p:last-child { margin-bottom: 0; }
#bbpress-forums .bbp-reply-content blockquote { margin: 10px 0; padding: 8px 14px; border-left: 3px solid var(--fr-blue); background: var(--fr-surface-2); border-radius: 0 6px 6px 0; }

/* Topic tags */
#bbpress-forums .bbp-topic-tags { margin-bottom: 12px; }
#bbpress-forums .bbp-topic-tag-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; flex-wrap: wrap; }
#bbpress-forums .bbp-topic-tag-list a { display: inline-block; background: var(--fr-tag-bg); color: var(--fr-text-soft); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 600; }
#bbpress-forums .bbp-topic-tag-list a:hover { background: var(--fr-blue); color: #fff; text-decoration: none; }

/* ---------- Forum inner pages: extra polish ---------- */
.fr-topic-list, .fr-reply-list { margin-bottom: 18px; }
#bbpress-forums .bbp-pagination { padding: 8px 14px 12px; margin: 0; }
#bbpress-forums .bbp-pagination-count { border: 0; color: var(--fr-text-soft); }

.fr-forum-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.fr-forum-meta span {
	display: inline-flex; align-items: center; gap: 4px; background: rgba(255,255,255,.16);
	border: 1px solid rgba(255,255,255,.35); border-radius: 999px; padding: 4px 12px;
	font-size: 12.5px; font-weight: 700;
}
.fr-forum-hero .bbp-breadcrumb { color: rgba(255,255,255,.78); margin-bottom: 8px; }
.fr-forum-hero .bbp-breadcrumb a { color: #fff; }
.fr-forum-hero .bbp-breadcrumb a:hover { text-decoration: underline; }
.fr-forum-hero-sub { color: rgba(255,255,255,.92); font-size: 13.5px; margin: 8px 0 0; }
.fr-forum-hero-sub .avatar { border-radius: 50%; vertical-align: middle; }

/* Search results + lead topic cards */
#bbpress-forums ul.bbp-search-results, #bbpress-forums ul.bbp-lead-topic {
	list-style: none; margin: 0; padding: 0; background: var(--fr-surface);
	border: 1px solid var(--fr-border); border-radius: var(--fr-radius); box-shadow: var(--fr-shadow);
}
#bbpress-forums ul.bbp-search-results > li.bbp-header, #bbpress-forums ul.bbp-lead-topic > li.bbp-header {
	display: grid; grid-template-columns: 150px minmax(0, 1fr); list-style: none;
	background: var(--fr-surface-2); border-radius: 7px 7px 0 0;
}
#bbpress-forums ul.bbp-search-results > li.bbp-header div, #bbpress-forums ul.bbp-lead-topic > li.bbp-header div {
	padding: 9px 14px; font-size: 11.5px; font-weight: 800; text-transform: uppercase;
	letter-spacing: .6px; color: var(--fr-text-soft);
}
#bbpress-forums ul.bbp-search-results > li.bbp-body, #bbpress-forums ul.bbp-lead-topic > li.bbp-body { list-style: none; }
#bbpress-forums ul.bbp-search-results > li.bbp-body > div, #bbpress-forums ul.bbp-lead-topic > li.bbp-body > div {
	display: grid; grid-template-columns: 150px minmax(0, 1fr); border-top: 1px solid var(--fr-border);
}
#bbpress-forums ul.bbp-search-results > li.bbp-body > div:first-child, #bbpress-forums ul.bbp-lead-topic > li.bbp-body > div:first-child { border-top: 0; }
#bbpress-forums ul.bbp-search-results > li.bbp-body > .bbp-topic-header, #bbpress-forums ul.bbp-search-results > li.bbp-body > .bbp-reply-header,
#bbpress-forums ul.bbp-lead-topic > li.bbp-body > .bbp-topic-header {
	display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--fr-border);
	padding: 10px 14px; font-size: 12px; color: var(--fr-text-soft); background: var(--fr-surface-2);
}
#bbpress-forums .bbp-topic-title h3, #bbpress-forums .bbp-reply-title h3 { font-size: 14px; margin: 0 0 2px; font-weight: 800; }
#bbpress-forums .bbp-topic-title-meta { font-size: 12px; color: var(--fr-text-soft); }
#bbpress-forums ul.bbp-lead-topic > li.bbp-footer { display: none; }

/* Author column + reply content on topic/reply/search pages */
#bbpress-forums .bbp-reply-author, #bbpress-forums .bbp-topic-author { padding: 16px 10px; text-align: center; }
#bbpress-forums .bbp-reply-author img.avatar, #bbpress-forums .bbp-topic-author img.avatar {
	width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--fr-border);
}
#bbpress-forums .bbp-reply-author .bbp-author-name, #bbpress-forums .bbp-topic-author .bbp-author-name {
	display: block; font-weight: 700; font-size: 13.5px; color: var(--fr-text); margin-top: 8px;
}
#bbpress-forums .bbp-reply-author .bbp-author-role, #bbpress-forums .bbp-topic-author .bbp-author-role {
	display: inline-block; font-size: 10.5px; color: var(--fr-text-soft); background: var(--fr-tag-bg);
	border-radius: 999px; padding: 2px 8px; margin-top: 5px;
}
#bbpress-forums .bbp-reply-content, #bbpress-forums .bbp-topic-content { padding: 16px 18px; font-size: 14px; color: var(--fr-text); min-width: 0; }
#bbpress-forums .bbp-reply-content p:last-child, #bbpress-forums .bbp-topic-content p:last-child { margin-bottom: 0; }
#bbpress-forums .bbp-reply-content blockquote, #bbpress-forums .bbp-topic-content blockquote {
	margin: 10px 0; padding: 8px 14px; border-left: 3px solid var(--fr-blue);
	background: var(--fr-surface-2); border-radius: 0 6px 6px 0;
}

/* Reply/topic header meta (thread + search + lead) */
#bbpress-forums .bbp-reply-header .bbp-meta, #bbpress-forums .bbp-topic-header .bbp-meta {
	display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
#bbpress-forums .bbp-reply-header .bbp-reply-permalink, #bbpress-forums .bbp-topic-header .bbp-topic-permalink {
	font-weight: 700; color: var(--fr-text-soft); margin-left: auto;
}
#bbpress-forums .bbp-admin-links { margin-left: auto; display: flex; gap: 8px; }
#bbpress-forums .bbp-admin-links a { color: var(--fr-blue); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
#bbpress-forums .bbp-topic-tags { float: none; margin-bottom: 14px; }
#bbpress-forums p.bbp-topic-meta img.avatar { border-radius: 50%; }

/* Login / register prompt shown inside forum feedback */
#bbpress-forums .bbp-login-form { max-width: 420px; margin: 14px 0 4px; }
#bbpress-forums .bbp-login-form fieldset { border: 0; margin: 0; padding: 0; }
#bbpress-forums .bbp-login-form label { display: block; margin: 10px 0 4px; font-size: 12.5px; font-weight: 700; }
#bbpress-forums .bbp-login-form .bbp-remember-me label { display: inline; font-weight: 400; }
#bbpress-forums .bbp-login-form input[type="text"], #bbpress-forums .bbp-login-form input[type="password"] { width: 100%; }
#bbpress-forums .bbp-login-form .bbp-submit-wrapper { margin-top: 12px; text-align: left; }
#bbpress-forums .bbp-login-form .bbp-login-links { display: flex; gap: 14px; margin-top: 8px; font-size: 12.5px; }
#bbpress-forums .bbp-login-form .bbp-login-links a { color: var(--fr-blue); }

/* Sticky / closed topic badges */
#bbpress-forums li.bbp-body > ul.sticky .bbp-topic-permalink::before,
#bbpress-forums li.bbp-body > ul.super-sticky .bbp-topic-permalink::before { content: "📌 "; }
#bbpress-forums li.bbp-body > ul.status-closed .bbp-topic-permalink::before { content: "🔒 "; }

/* Editor + submit */
#bbpress-forums .bbp-form .bbp-the-content-wrapper textarea.bbp-the-content { min-height: 150px; padding: 10px 12px; font-size: 13.5px; }
#bbpress-forums .bbp-form .quicktags-toolbar { padding: 6px 8px; }
#bbpress-forums .bbp-form .bbp-submit-wrapper { text-align: right; }

@media (max-width: 900px) {
	.fr-forum-hero { flex-direction: column; align-items: flex-start; }
	.fr-forum-hero-actions { justify-content: flex-start; }
	.fr-forum-hero-actions .bbp-search-form { flex: 1; width: 100%; }
	.fr-forum-hero-actions .bbp-search-form form { width: 100%; }
	.fr-forum-hero-actions .bbp-search-form input[type="text"] { flex: 1; }
	.fr-forum-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fr-board-head, .fr-board-row, #bbpress-forums li.bbp-header ul.forum-titles, #bbpress-forums li.bbp-body > ul {
		grid-template-columns: minmax(0, 1fr) 70px 70px 150px;
	}
}
@media (max-width: 620px) {
	.fr-board-head, .fr-board-row, #bbpress-forums li.bbp-header ul.forum-titles, #bbpress-forums li.bbp-body > ul {
		grid-template-columns: minmax(0, 1fr) 54px 54px;
	}
	.fr-board-head .fr-board-last, .fr-board-row .fr-board-last,
	#bbpress-forums .forum-titles .bbp-forum-freshness, #bbpress-forums .forum-titles .bbp-topic-freshness,
	#bbpress-forums li.bbp-body > ul > li.bbp-forum-freshness, #bbpress-forums li.bbp-body > ul > li.bbp-topic-freshness { display: none; }
	.fr-board-head, .fr-board-row { grid-template-columns: minmax(0, 1fr) 54px 54px; }
	.fr-board-name { flex-wrap: wrap; }
	#bbpress-forums ul.bbp-replies > li.bbp-header, #bbpress-forums ul.bbp-replies > li.bbp-body > div.reply { grid-template-columns: 96px minmax(0, 1fr); }
	#bbpress-forums .bbp-reply-author .bbp-author-role { display: none; }
}

@media (max-width: 620px) {
	#bbpress-forums ul.bbp-search-results > li.bbp-header, #bbpress-forums ul.bbp-lead-topic > li.bbp-header,
	#bbpress-forums ul.bbp-search-results > li.bbp-body > div, #bbpress-forums ul.bbp-lead-topic > li.bbp-body > div,
	#bbpress-forums ul.bbp-replies > li.bbp-header, #bbpress-forums ul.bbp-replies > li.bbp-body > div.reply {
		grid-template-columns: 92px minmax(0, 1fr);
	}
	#bbpress-forums .bbp-reply-author, #bbpress-forums .bbp-topic-author { padding: 10px 6px; }
	#bbpress-forums .bbp-reply-content, #bbpress-forums .bbp-topic-content { padding: 12px; }
	#bbpress-forums .bbp-reply-author img.avatar, #bbpress-forums .bbp-topic-author img.avatar { width: 44px; height: 44px; }
	#bbpress-forums .bbp-admin-links { display: none; }
}

/* Responsive */
@media (max-width: 1100px) {
	.fr-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 16px; }
	.fr-search-layout { grid-template-columns: 240px minmax(0, 1fr); }
	.fr-search-layout .fr-sidebar { grid-column: 1 / -1; position: static; }
}
@media (max-width: 900px) {
	.fr-grid { grid-template-columns: minmax(0, 1fr); }
	.fr-sidebar { position: static; order: 2; }
	.fr-search-layout { grid-template-columns: minmax(0, 1fr); }
	.fr-fragram-layout { grid-template-columns: minmax(0, 1fr); }
	.fr-fragram-sidebar { position: static; }
	.fr-filter-toggle { display: inline-flex; margin-bottom: 12px; }
	.fr-filter-panel { display: none; position: static; max-height: none; }
	.fr-filter-panel.open { display: block; }
	.fr-filter-panel { order: 2; }
	.fr-active-filters {
		background: var(--fr-surface); border: 1px solid var(--fr-border);
		border-radius: var(--fr-radius); box-shadow: var(--fr-shadow); padding: 12px;
	}
	.fr-active-filters-head {
		display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
	}
	.fr-active-filters-title { font-size: 14px; font-weight: 700; }
	.fr-active-clear--head { margin-left: auto; }
	.fr-active-clear--row { display: none; }
	.fr-active-filters .fr-chip-extra { display: inline-flex; }
	.fr-active-filters.is-expanded .fr-chip-extra { display: inline-flex; }
	.fr-active-more, .fr-active-less { display: none; }
	.fr-about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fr-about-grid { grid-template-columns: minmax(0, 1fr); }
	.fr-about-values { grid-template-columns: minmax(0, 1fr); }
	.fr-about-contact-grid { grid-template-columns: minmax(0, 1fr); }
	.fr-nav { display: none; }
	.fr-burger { display: inline-flex; }
	.fr-subheader-links .fr-btn span { display: none; }
	.fr-footer-grid { grid-template-columns: 1fr; }
	.fr-perfume-hero { grid-template-columns: 1fr; }
	.fr-perfume-hero-media { max-width: 240px; margin: 0 auto; }
	.fr-pc-grid { grid-template-columns: 1fr; }
	.fr-compare-grid { grid-template-columns: 1fr; }
	.fr-ing-columns { grid-template-columns: 1fr; }
	.fr-compare-vs { order: 3; }
	.fr-compare-pick:nth-of-type(1) { order: 1; }
	.fr-compare-pick:nth-of-type(3) { order: 2; }
	.fr-nav-panel { position: static; transform: none; min-width: 0; box-shadow: none; border: 0; border-radius: 0; padding: 0; }
	.fr-nav-panel-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.fr-container { padding: 0 14px; }
	.fr-logo-word { font-size: 13px; letter-spacing: .2px; white-space: nowrap; }
	.fr-logo-tagline {
		max-width: 170px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
		font-size: 7.5px; letter-spacing: 1.2px;
	}
	.fr-searchbar kbd { display: none; }
	.fr-news-grid { grid-template-columns: 1fr; }
	.fr-alpha-grid { grid-template-columns: 1fr 1fr; }
	.fr-hero-actions .fr-btn { flex: 1; justify-content: center; }
	.fr-footer-brand-list { grid-template-columns: 1fr 1fr; }
	.fr-profile-hero { flex-direction: column; align-items: flex-start; }
	.fr-profile-stats { margin-left: 0; }
}

/* Utility */
.fr-mt-0 { margin-top: 0; }
.fr-muted { color: var(--fr-text-soft); }
.fr-center { text-align: center; }
.fr-flex { display: flex; }
.fr-gap-8 { gap: 8px; }
.fr-gap-12 { gap: 12px; }
.fr-wrap { flex-wrap: wrap; }
.fr-hide { display: none !important; }
.fr-loading { opacity: .5; pointer-events: none; }
