:root {
  --brand: #f45f72;
  --brand-dark: #d94359;
  --brand-soft: #fff0f2;
  --ink: #241f23;
  --muted: #746d72;
  --line: #e9e4e7;
  --surface: #ffffff;
  --soft: #f8f6f7;
  --success: #23b26d;
  --shadow: 0 12px 32px rgba(40, 23, 33, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fcfbfc;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: 100%; max-width: none; margin-inline: auto; padding-inline: clamp(18px, 2.2vw, 42px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.muted { color: var(--muted); }
:where(a, button, input, summary):focus-visible { outline: 3px solid rgba(244,95,114,.35); outline-offset: 3px; }

html.adult-gate-required, html.adult-gate-required body { overflow: hidden; }
.adult-gate { position: fixed; inset: 0; z-index: 200; display: none; min-height: 100vh; min-height: 100dvh; overflow-y: auto; padding: clamp(16px, 4vw, 40px); place-items: center; background: #fcfbfc; }
html.adult-gate-required .adult-gate { display: grid; }
.adult-gate__panel { width: min(100%, 520px); max-height: calc(100dvh - 32px); overflow-y: auto; padding: clamp(24px, 5vw, 42px); border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 24px 70px rgba(40,23,33,.13); text-align: center; }
.adult-gate__logo { width: min(210px, 62%); height: auto; margin: 0 auto 22px; }
.adult-gate__badge { display: inline-flex; margin: 0 0 10px; padding: 5px 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.adult-gate h2 { margin: 0; font-size: clamp(27px, 5vw, 36px); line-height: 1.12; letter-spacing: -.03em; }
.adult-gate__panel > p:not(.adult-gate__badge) { margin: 14px auto 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.adult-gate__actions { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 9px; margin-top: 25px; }
.adult-gate__actions .button { min-height: 48px; padding-inline: 14px; }
.cookie-notice { position: fixed; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); left: max(14px, env(safe-area-inset-left)); z-index: 190; display: none; width: min(760px, calc(100% - 28px)); margin-inline: auto; align-items: center; gap: 18px; padding: 13px 14px 13px 17px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.98); box-shadow: 0 14px 44px rgba(40,23,33,.14); }
html.adult-confirmed.cookie-notice-required .cookie-notice { display: flex; }
.cookie-notice__copy { min-width: 0; flex: 1; }
.cookie-notice__copy strong { display: block; margin-bottom: 2px; font-size: 13px; }
.cookie-notice__copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.cookie-notice__copy a { color: var(--brand-dark); font-weight: 750; }
.cookie-notice .button { flex: 0 0 auto; min-height: 40px; padding-inline: 16px; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-main { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 190px; height: 48px; object-fit: contain; object-position: left center; }
.header-actions, .header-account-actions { display: flex; align-items: center; gap: 10px; }
.header-search { position: relative; display: flex; width: clamp(190px, 22vw, 340px); margin-left: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); transition: border-color .18s ease, box-shadow .18s ease; }
.header-search:focus-within { border-color: #efb1ba; box-shadow: 0 0 0 3px rgba(244,95,114,.1); }
.header-search input { width: 100%; min-width: 0; height: 42px; padding: 8px 42px 8px 13px; border: 0; outline: 0; background: transparent; }
.header-search > button { position: absolute; top: 4px; right: 4px; width: 34px; height: 34px; border: 0; border-radius: 7px; background: var(--brand-soft); color: var(--brand-dark); font-size: 22px; cursor: pointer; }
.search-dropdown { position: absolute; top: calc(100% + 7px); right: 0; left: 0; z-index: 90; overflow: hidden; border: 1px solid var(--line); border-radius: 11px; background: white; box-shadow: var(--shadow); }
.search-suggestion { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-bottom: 1px solid var(--line); text-decoration: none; }
.search-suggestion:last-child { border-bottom: 0; }
.search-suggestion:hover { background: var(--brand-soft); }
.search-suggestion img { width: 46px; height: 35px; border-radius: 6px; object-fit: cover; }
.search-suggestion span { display: grid; min-width: 0; }
.search-suggestion strong, .search-suggestion small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-suggestion strong { font-size: 13px; }
.search-suggestion small { color: var(--muted); font-size: 11px; }
.header-favorite { position: relative; display: grid; width: 40px; height: 40px; place-items: center; color: var(--brand-dark); font-size: 25px; text-decoration: none; }
.header-favorite span { position: absolute; top: 0; right: -2px; min-width: 18px; padding: 1px 4px; border-radius: 10px; background: var(--brand); color: white; font-size: 10px; font-weight: 800; text-align: center; }
.locale-switcher { position: relative; flex: 0 0 auto; }
.locale-switcher summary { display: flex; min-height: 40px; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: white; color: var(--muted); font-size: 12px; cursor: pointer; list-style: none; }
.locale-switcher summary::-webkit-details-marker { display: none; }
.locale-switcher summary::after { margin-left: 1px; border-width: 4px 3px 0; border-style: solid; border-color: currentColor transparent transparent; content: ""; }
.locale-switcher[open] summary { border-color: #efb1ba; color: var(--brand-dark); box-shadow: 0 0 0 3px rgba(244,95,114,.1); }
.locale-menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 100; display: grid; min-width: 132px; padding: 6px; border: 1px solid var(--line); border-radius: 11px; background: white; box-shadow: var(--shadow); }
.locale-menu a { display: flex; min-height: 39px; align-items: center; gap: 8px; padding: 7px 9px; border-radius: 7px; color: var(--ink); font-size: 12px; text-decoration: none; }
.locale-menu a:hover, .locale-menu a[aria-current="true"] { background: var(--brand-soft); color: var(--brand-dark); }
.mobile-search-toggle, .mobile-search-panel, .mobile-search-backdrop { display: none; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 9px 20px; border: 1px solid transparent; border-radius: 10px; background: none; color: var(--ink); font-weight: 750; text-decoration: none; cursor: pointer; transition: .18s ease; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--brand); color: white; box-shadow: 0 7px 18px rgba(244,95,114,.24); }
.button--primary:hover { background: var(--brand-dark); }
.button--outline { background: white; border-color: var(--brand); color: var(--brand-dark); }
.button--outline:hover { background: var(--brand-soft); }
.button--quiet:hover { background: var(--soft); }
.button--small { min-height: 40px; padding-inline: 17px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 9px; background: var(--soft); }
.menu-toggle i { display: block; height: 2px; margin: 4px 0; background: var(--ink); border-radius: 2px; }
.category-nav { border-top: 1px solid #f3eff1; }
.category-nav__inner { display: flex; align-items: center; gap: 6px; min-height: 52px; overflow-x: auto; scrollbar-width: none; }
.category-nav__inner::-webkit-scrollbar { display: none; }
.category-nav a { position: relative; padding: 14px 17px; color: #5b5459; font-size: 14px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.category-nav a:hover { color: var(--brand-dark); }
.category-nav a[aria-current="page"] { color: var(--brand-dark); }
.category-nav a[aria-current="page"]::after { position: absolute; right: 16px; bottom: 7px; left: 16px; height: 3px; border-radius: 3px; background: var(--brand); content: ""; }

.page-intro { padding-top: clamp(16px, 1.5vw, 22px); padding-bottom: 10px; }
.eyebrow { margin: 0 0 12px; color: var(--brand-dark); font-size: 12px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.page-intro h1 { max-width: 920px; margin: 0; font-size: clamp(27px, 2.1vw, 34px); line-height: 1.15; letter-spacing: -.025em; }
.message-page h1 { max-width: 880px; margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.06; letter-spacing: -.035em; }
.page-intro__copy { max-width: 880px; margin: 7px 0 0; color: var(--muted); font-size: clamp(14px, 1.2vw, 16px); }
.discovery { padding-bottom: 10px; }
.popular-tags { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-width: 0; padding: 7px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.popular-tags__group { display: flex; min-width: 0; flex: 1; align-items: center; gap: 10px; }
.popular-tags__heading { flex: 0 0 auto; color: var(--ink); font-size: 13px; font-weight: 800; }
.tag-strip { display: flex; min-width: 0; align-items: center; gap: 7px; flex-wrap: wrap; padding-block: 2px; }
.tag-chip { flex: 0 0 auto; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: white; color: #675f64; font-size: 12px; font-weight: 700; line-height: 1.2; text-decoration: none; }
.tag-chip:hover { border-color: #f0aeb7; color: var(--brand-dark); }
.tag-chip.is-selected { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-dark); }
.active-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; padding-top: 7px; color: var(--muted); font-size: 12px; }
.active-filters > span:first-child { font-weight: 750; }
.active-filter-form, .clear-filters-form { display: inline-flex; margin: 0; }
.active-filter { padding: 4px 8px; border: 0; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); font-size: 12px; font-weight: 750; text-decoration: none; cursor: pointer; }
.active-filter:hover { background: #ffe3e7; }
.active-filters .clear-filters { margin-left: 2px; padding: 0; border: 0; background: none; color: var(--brand-dark); font-size: 12px; font-weight: 750; text-decoration: underline; cursor: pointer; }
.filters-trigger { min-height: 40px; padding: 7px 14px; font-size: 13px; }
.filters-trigger span { display: grid; min-width: 20px; height: 20px; margin-left: 7px; place-items: center; border-radius: 999px; background: var(--brand); color: white; font-size: 11px; }
body.drawer-open, body.filter-open, body.mobile-nav-open, body.mobile-search-open { overflow: hidden; }
.mobile-nav-drawer, .mobile-nav-backdrop { display: none; }
.filter-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(52,40,47,.24); opacity: 0; pointer-events: none; transition: opacity 240ms ease; }
.filter-backdrop.is-open { opacity: 1; pointer-events: auto; }
.filter-drawer { position: fixed; top: 0; right: 0; z-index: 70; display: flex; width: min(430px, 100%); height: 100vh; height: 100dvh; flex-direction: column; overflow: hidden; border-left: 1px solid var(--line); background: white; box-shadow: -20px 0 50px rgba(44,28,37,.14); transform: translateX(102%); visibility: hidden; transition: transform 240ms ease, visibility 0s linear 240ms; }
.filter-drawer.is-open { transform: translateX(0); visibility: visible; transition: transform 240ms ease; }
.filter-drawer__header { position: sticky; top: 0; z-index: 2; display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.filter-drawer__header h2 { margin: 0; font-size: 21px; letter-spacing: -.02em; }
.filter-drawer__header span { display: block; margin-top: 2px; color: var(--muted); font-size: 12px; }
.filter-drawer__close { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border: 0; border-radius: 9px; background: var(--soft); color: var(--ink); font-size: 27px; line-height: 1; cursor: pointer; }
.filter-drawer__form { display: flex; min-height: 0; flex: 1; flex-direction: column; }
.filter-drawer__body { flex: 1; overflow-y: auto; padding: 18px; overscroll-behavior: contain; }
.filter-drawer__footer { position: sticky; bottom: 0; z-index: 2; display: flex; justify-content: flex-end; gap: 9px; padding: 13px 18px; border-top: 1px solid var(--line); background: rgba(255,255,255,.97); box-shadow: 0 -8px 24px rgba(35,24,30,.05); }
.filter-drawer__footer .button--primary { min-width: 150px; }
.tag-search-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.tag-search-wrap label { flex: 0 0 auto; font-size: 13px; font-weight: 800; }
.tag-search { width: min(100%, 360px); min-height: 40px; padding: 8px 12px; border: 1px solid #dcd5d9; border-radius: 9px; background: var(--soft); color: var(--ink); }
.tag-search::placeholder { color: #999196; }
.tag-selector { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding: 2px; }
.tag-option { display: flex; min-width: 0; align-items: center; gap: 7px; padding: 7px 8px; border: 1px solid transparent; border-radius: 8px; color: #5f575c; cursor: pointer; font-size: 12px; }
.tag-option:hover { border-color: var(--line); background: var(--soft); }
.tag-option:has(input:checked) { border-color: #f2b6be; background: var(--brand-soft); color: var(--brand-dark); font-weight: 750; }
.tag-option input { accent-color: var(--brand); }
.tag-option span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tag-option small { margin-left: auto; color: #999196; }
.tag-search-empty { color: var(--muted); font-size: 13px; }
.models-section { padding-bottom: 64px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.results-heading { align-items: baseline; margin-bottom: 11px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin: 0; font-size: clamp(21px, 2vw, 27px); letter-spacing: -.02em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.section-heading p strong { color: var(--ink); }
.live-key { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
.live-key i, .status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(35,178,109,.12); }
.model-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: clamp(10px, 1vw, 16px); }
.model-card { min-width: 0; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 3px 16px rgba(35,24,30,.035); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.model-card:hover { transform: translateY(-3px); border-color: #f3bec5; box-shadow: var(--shadow); }
.model-card__link { display: block; text-decoration: none; }
.model-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: #eee9ec; }
.model-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.model-card:hover .model-card__media img { transform: scale(1.025); }
.image-fallback { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(145deg, var(--brand-soft), #eee8ec); color: var(--brand); font-size: 44px; font-weight: 850; }
.online-badge, .viewer-badge { position: absolute; top: 10px; padding: 5px 8px; border-radius: 7px; color: white; font-size: 10px; font-weight: 850; letter-spacing: .04em; line-height: 1; text-transform: uppercase; backdrop-filter: blur(8px); }
.online-badge { left: 10px; display: flex; align-items: center; gap: 5px; background: rgba(22,158,91,.9); }
.online-badge i { width: 6px; height: 6px; border-radius: 50%; background: white; }
.viewer-badge { right: 10px; background: rgba(34,28,32,.68); }
.private-badge { position: absolute; right: 10px; bottom: 10px; display: flex; align-items: center; gap: 5px; padding: 5px 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 7px; background: rgba(117,35,50,.88); color: white; font-size: 10px; font-weight: 850; letter-spacing: .03em; line-height: 1; text-transform: uppercase; backdrop-filter: blur(8px); }
.private-badge svg { flex: 0 0 auto; fill: currentColor; }
.model-card__body { min-height: 112px; padding: 12px 13px 14px; }
.model-card__title-row { display: flex; align-items: baseline; gap: 7px; }
.model-card__title-row h3 { min-width: 0; margin: 0; overflow: hidden; font-size: 15px; letter-spacing: -.01em; text-overflow: ellipsis; white-space: nowrap; }
.model-card__title-row span { flex: 0 0 auto; color: var(--brand-dark); font-size: 13px; font-weight: 750; }
.model-card__location { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.model-card__location { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.model-card__subject { display: -webkit-box; min-height: 34px; margin: 8px 0 0; padding-top: 7px; overflow: hidden; border-top: 1px solid #f1edef; color: #635b60; font-size: 11px; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.show-more-wrap { padding-top: 34px; text-align: center; }
.show-more { min-width: 180px; }
.show-more[disabled] { opacity: .65; cursor: wait; transform: none; }
.load-message { min-height: 22px; margin: 8px 0 0; color: var(--brand-dark); font-size: 13px; }
.notice { padding: 40px; border: 1px solid #f1d7db; border-radius: 14px; background: var(--brand-soft); text-align: center; }
.notice h2 { margin-top: 0; }
.notice p { margin-bottom: 0; color: var(--muted); }
.notice--empty .button { margin-top: 20px; }

.directory-page, .random-cam-page { padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(42px, 6vw, 72px); }
.directory-intro { max-width: 820px; margin-bottom: 28px; }
.directory-intro h1 { margin: 0; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.12; letter-spacing: -.035em; }
.directory-intro p { margin: 10px 0 0; color: var(--muted); font-size: clamp(14px, 1.3vw, 17px); }
.directory-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.directory-groups--single { grid-template-columns: 1fr; }
.directory-group { min-width: 0; padding: clamp(20px, 2.5vw, 30px); border: 1px solid var(--line); border-radius: 14px; background: white; }
.directory-group h2 { margin: 0 0 14px; font-size: 21px; }
.directory-links, .directory-tags { display: grid; grid-template-columns: repeat(auto-fill, minmax(165px, 1fr)); gap: 8px; }
.directory-links a, .directory-tag { display: flex; width: 100%; min-width: 0; min-height: 52px; align-items: flex-start; justify-content: center; flex-direction: column; padding: 9px 11px; border: 1px solid var(--line); border-radius: 9px; background: var(--soft); color: var(--ink); font: inherit; text-decoration: none; cursor: pointer; }
.directory-links a:hover, .directory-tag:hover { border-color: #efb1ba; background: var(--brand-soft); }
.directory-links span, .directory-tag strong { overflow: hidden; text-overflow: ellipsis; font-size: 13px; white-space: nowrap; }
.directory-links small, .directory-tag span { color: var(--muted); font-size: 11px; }
.directory-tag-form { margin: 0; }
.browse-all-link { display: inline-block; margin-top: 16px; color: var(--brand-dark); font-size: 13px; font-weight: 800; }
.tag-list-search { display: grid; max-width: 420px; gap: 6px; margin-bottom: 18px; }
.tag-list-search label { font-size: 12px; font-weight: 800; }
.tag-list-search input, .search-page-form input, .mobile-nav-search input { min-width: 0; height: 46px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; background: white; }
.search-page-form { display: flex; max-width: 720px; gap: 8px; margin-bottom: 8px; }
.search-page-form input { flex: 1; }
.search-guidance { min-height: 24px; margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.favorites-loading { color: var(--muted); }
.offline-favorites-section { margin-top: 38px; }
.offline-favorites { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.offline-favorite a { display: flex; align-items: center; gap: 11px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: white; text-decoration: none; }
.offline-favorite__avatar { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--soft); color: var(--brand-dark); font-weight: 850; }
.offline-favorite a > span:last-child { display: grid; min-width: 0; }
.offline-favorite strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.offline-favorite small { color: var(--muted); }
.random-cam-frame { position: relative; width: 100%; height: clamp(620px, 82dvh, 920px); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.random-cam-frame iframe { display: block !important; width: 100% !important; height: 100% !important; border: 0 !important; }

.editorial { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding-top: 64px; padding-bottom: 80px; border-top: 1px solid var(--line); }
.editorial__item { padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.editorial__item h2 { margin: 0 0 12px; font-size: 23px; letter-spacing: -.02em; }
.editorial__item p { margin: 0; color: var(--muted); }
.faq-section { padding-top: 8px; padding-bottom: 72px; }
.faq-section > h2 { margin: 0 0 16px; font-size: clamp(23px, 2vw, 29px); letter-spacing: -.025em; }
.faq-list { max-width: 900px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 17px 4px; font-weight: 800; cursor: pointer; }
.faq-list summary::marker { color: var(--brand); }
.faq-list p { margin: -5px 4px 18px; color: var(--muted); line-height: 1.65; }
.info-page { width: 100%; max-width: 900px; margin-inline: auto; padding-top: clamp(32px, 5vw, 62px); padding-bottom: clamp(48px, 6vw, 72px); }
.info-page header { padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.info-page h1 { margin: 0; font-size: clamp(30px, 4vw, 45px); line-height: 1.1; letter-spacing: -.035em; }
.info-page header p { max-width: 760px; margin: 13px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.info-content section { padding-top: 30px; }
.info-content section + section { margin-top: 0; }
.info-content h2 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.02em; }
.info-content p { margin: 0; color: #554e52; line-height: 1.75; white-space: pre-line; }
.info-links { display: flex; flex-wrap: wrap; gap: .55rem 1rem; margin-top: .8rem; }
.info-links a { color: var(--brand-dark); font-weight: 700; overflow-wrap: anywhere; }
.info-cta { margin-top: 30px; }
.info-page__faq { width: 100%; padding: 38px 0 0; }
.info-page__faq .faq-list { width: 100%; max-width: none; }
.footer-relationship { max-width: 42rem; font-size: .9rem; }

.room-page { padding-top: 14px; padding-bottom: 38px; }
.breadcrumbs { display: flex; min-width: 0; align-items: center; gap: 7px; margin-bottom: 12px; overflow: hidden; color: var(--muted); font-size: 12px; white-space: nowrap; }
.breadcrumbs a { color: var(--brand-dark); font-weight: 700; text-decoration: none; }
.breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }
.room-layout { display: grid; grid-template-columns: minmax(0, 3fr) minmax(320px, 1fr); align-items: stretch; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.room-layout--cam { grid-template-columns: minmax(0, 7fr) minmax(360px, 3fr); }
.room-layout--cam .room-player-shell { aspect-ratio: auto; }
.room-layout--cam .room-player { flex: none; aspect-ratio: 16 / 9; }
.room-media { display: flex; min-width: 0; min-height: 0; flex-direction: column; overflow: hidden; background: white; }
.room-player-shell { display: flex; min-width: 0; min-height: 0; flex-direction: column; aspect-ratio: 16 / 9; background: #100e10; }
.room-player { position: relative; min-width: 0; min-height: 0; flex: 1; background: #100e10; }
.room-player iframe { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; background: #100e10; }
.room-stream-bar { z-index: 2; display: flex; flex: 0 0 auto; align-items: center; justify-content: space-between; gap: 14px; min-height: 52px; padding: 9px 14px; border-top: 1px solid rgba(255,255,255,.1); background: #171317; color: white; pointer-events: none; }
.room-stream-state, .room-player-controls, .room-mode-switch { display: flex; align-items: center; gap: 9px; }
.room-stream-state strong { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.room-stream-state strong i { width: 7px; height: 7px; border-radius: 50%; background: #38d98a; box-shadow: 0 0 0 4px rgba(56,217,138,.16); }
.room-watching { color: rgba(255,255,255,.82); font-size: 12px; }
.room-player-controls { pointer-events: auto; }
.room-mode-switch { padding: 3px; border: 1px solid rgba(255,255,255,.24); border-radius: 9px; background: rgba(20,16,19,.62); }
.room-mode-switch button, .room-fullscreen { min-height: 32px; padding: 5px 10px; border: 0; border-radius: 6px; background: transparent; color: rgba(255,255,255,.78); font: inherit; font-size: 12px; font-weight: 750; cursor: pointer; }
.room-mode-switch button.is-active { background: white; color: var(--ink); }
.room-fullscreen { min-width: 34px; padding-inline: 8px; background: rgba(20,16,19,.62); color: white; font-size: 18px; }
.room-fullscreen img { display: block; width: 18px; height: 18px; filter: brightness(0) invert(1); }
.room-fullscreen img[hidden], .room-fullscreen span[hidden] { display: none; }
.room-player-shell.is-expanded { position: fixed; inset: 0; z-index: 1200; width: 100vw; height: 100dvh; aspect-ratio: auto; background: #100e10; }
.room-player-shell.is-expanded .room-player { flex: 1; aspect-ratio: auto; }
.room-player-shell.is-expanded .room-stream-bar { padding-inline: clamp(14px, 2vw, 28px); }
body.room-player-open { overflow: hidden; }
.room-info { display: flex; min-width: 0; min-height: 0; flex-direction: column; overflow-y: auto; padding: clamp(20px, 2vw, 30px); border-left: 1px solid var(--line); background: white; }
.room-status { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 9px; color: #168454; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.room-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(35,178,109,.12); }
.room-status--offline { color: var(--muted); }
.room-status--offline i { background: #a49da1; box-shadow: 0 0 0 4px rgba(120,112,117,.1); }
.room-identity h1 { margin: 0; overflow-wrap: anywhere; font-size: clamp(27px, 2.1vw, 34px); line-height: 1.12; letter-spacing: -.03em; }
.room-username { margin: 5px 0 0; color: var(--muted); font-size: 14px; }
.room-audience { display: flex; align-items: baseline; gap: 7px; margin-top: 20px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.room-audience strong { font-size: 22px; letter-spacing: -.02em; }
.room-audience span { color: var(--muted); font-size: 13px; }
.room-subject { margin-top: 19px; }
.room-subject h2 { margin: 0 0 7px; color: var(--muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.room-subject p { display: -webkit-box; margin: 0; overflow: hidden; color: #51494e; font-size: 14px; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.room-facts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 18px; margin: 22px 0; }
.room-facts div { min-width: 0; }
.room-facts dt { color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.room-facts dd { margin: 2px 0 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 700; }
.room-facts a { color: var(--brand-dark); }
.room-actions { margin-top: 18px; padding-top: 8px; }
.room-cta { width: 100%; min-height: 50px; }
.room-actions > p { margin: 9px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.room-primary-action { position: relative; }
.room-primary-action .room-cta { padding-right: 88px; }
.free-badge { position: absolute; top: 50%; right: 10px; padding: 4px 7px; border-radius: 6px; background: rgba(255,255,255,.94); color: var(--brand-dark); font-size: 10px; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; transform: translateY(-50%); }
.room-secondary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.room-secondary-actions .button { min-height: 42px; padding: 7px 10px; font-size: 12px; }
.favorite-button[aria-pressed="true"] { border-color: #f0aeb7; background: var(--brand-soft); color: var(--brand-dark); }
.favorite-button { gap: 6px; }
.favorite-button b { font: inherit; }
.room-share-prompt { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding: 11px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.room-share-button { padding: 0; border: 0; background: none; color: var(--brand-dark); font: inherit; font-weight: 800; cursor: pointer; }
.room-meta-pills, .room-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.room-meta-pills span, .room-tags a, .room-tags span { padding: 5px 8px; border: 1px solid var(--line); border-radius: 999px; background: var(--soft); color: #625a5f; font-size: 10px; font-weight: 700; line-height: 1.2; text-decoration: none; }
.room-tags a { border-color: #f3c6cd; background: var(--brand-soft); color: var(--brand-dark); }
.room-trust { display: grid; gap: 6px; margin-top: 17px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.35; }
.room-trust span::first-letter { color: var(--success); }
.offline-copy { font-size: 13px !important; text-align: left !important; }
.offline-room-media { position: absolute; inset: 0; }
.offline-room-media img { width: 100%; height: 100%; object-fit: cover; opacity: .72; filter: saturate(.65); }
.image-fallback--room { min-height: 100%; }
.offline-room-media__label { position: absolute; top: 50%; left: 50%; padding: 9px 15px; border-radius: 999px; background: rgba(27,22,25,.78); color: white; font-size: 13px; font-weight: 800; text-transform: uppercase; transform: translate(-50%,-50%); }
.model-about { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr); gap: clamp(28px, 5vw, 72px); padding-top: clamp(42px, 5vw, 70px); padding-bottom: clamp(42px, 5vw, 70px); border-bottom: 1px solid var(--line); }
.model-about__copy { max-width: 860px; }
.model-about__copy > h2, .model-facts-card > h2 { margin: 0 0 18px; font-size: clamp(24px, 2.1vw, 31px); letter-spacing: -.025em; }
.model-about__copy > p { margin: 0 0 12px; color: #554e52; line-height: 1.72; }
.model-faq { margin-top: 30px; border-top: 1px solid var(--line); }
.model-faq h3 { margin: 24px 0 8px; font-size: 19px; }
.model-faq details { border-bottom: 1px solid var(--line); }
.model-faq summary { padding: 15px 2px; font-weight: 800; cursor: pointer; }
.model-faq summary::marker { color: var(--brand); }
.model-faq p { margin: -3px 2px 17px; color: var(--muted); line-height: 1.65; }
.model-facts-card { align-self: start; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow); }
.model-facts-card > h2 { margin-bottom: 12px; font-size: 21px; }
.model-facts-card dl { margin: 0; }
.model-facts-card dl div { display: grid; grid-template-columns: minmax(90px, .7fr) minmax(0, 1.3fr); gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.model-facts-card dl div:last-child { border-bottom: 0; }
.model-facts-card dt { color: var(--muted); font-size: 12px; }
.model-facts-card dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 750; text-align: right; }
.model-fact-status { color: #168454; }
.model-fact-status.is-offline { color: var(--muted); }
.related-section { scroll-margin-top: 24px; padding-top: 48px; padding-bottom: 62px; }
.related-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.category-breadcrumbs { padding-top: 12px; margin-bottom: -8px; }
.related-categories { padding-top: 2px; padding-bottom: 46px; }
.related-categories__heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 10px; }
.related-categories__heading h2 { margin: 0; font-size: 19px; }
.related-categories__heading a { color: var(--brand-dark); font-size: 13px; font-weight: 750; }
.related-categories__links { display: flex; flex-wrap: wrap; gap: 8px; }
.related-categories__links a { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: white; color: #675f64; font-size: 13px; font-weight: 700; text-decoration: none; }
.related-categories__links a:hover { border-color: #f0aeb7; color: var(--brand-dark); }
.model-support { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; padding-top: 34px; padding-bottom: 58px; border-top: 1px solid var(--line); }
.model-support article { padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--soft); }
.model-support h2 { margin: 0 0 9px; font-size: 21px; }
.model-support p { margin: 0; color: var(--muted); }
.share-dialog { width: min(92vw, 520px); padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: white; color: var(--ink); box-shadow: 0 24px 70px rgba(35,24,30,.22); }
.share-dialog::backdrop { background: rgba(52,40,47,.28); }
.share-dialog__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 22px 24px 18px; border-bottom: 1px solid var(--line); }
.share-dialog__header span { color: var(--muted); font-size: 12px; }
.share-dialog__header h2 { margin: 2px 0 0; font-size: 24px; }
.share-dialog__header button { width: 38px; height: 38px; border: 0; border-radius: 8px; background: var(--soft); color: var(--ink); font-size: 24px; cursor: pointer; }
.share-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; padding: 20px 24px 10px; }
.share-options a, .share-options button { display: flex; min-height: 44px; align-items: center; justify-content: center; padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px; background: white; color: var(--ink); font: inherit; font-size: 13px; font-weight: 750; text-align: center; text-decoration: none; cursor: pointer; }
.share-options a:hover, .share-options button:hover { border-color: #f0aeb7; background: var(--brand-soft); color: var(--brand-dark); }
.share-status { min-height: 24px; margin: 4px 24px 16px; color: var(--brand-dark); font-size: 12px; text-align: center; }
.message-page { min-height: 55vh; padding-top: 100px; padding-bottom: 100px; text-align: center; }
.message-page h1 { margin-inline: auto; }
.message-page p:not(.eyebrow) { max-width: 580px; margin: 20px auto 28px; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); background: #f7f4f6; }
.footer-grid { display: grid; grid-template-columns: minmax(280px, 2fr) repeat(3, minmax(130px, 1fr)); gap: 40px; padding-top: 56px; padding-bottom: 48px; }
.brand--footer img { width: 160px; height: 42px; }
.footer-grid p { max-width: 430px; color: var(--muted); }
.footer-grid h2 { margin: 0 0 14px; font-size: 14px; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; color: var(--muted); font-size: 14px; text-decoration: none; }
.footer-grid a:hover { color: var(--brand-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 28px; border-top: 1px solid #e4dee2; color: var(--muted); font-size: 12px; }

@media (max-width: 1100px) {
	.room-layout { display: flex; height: auto; flex-direction: column; }
	.room-info { display: contents; }
	.room-media { order: 0; }
	.room-player-shell { flex: none; aspect-ratio: auto; }
	.room-player { flex: none; aspect-ratio: 16 / 9; }
	.room-player-shell.is-expanded .room-player { flex: 1; aspect-ratio: auto; }
	.room-identity { order: 1; padding: 20px 20px 16px; background: white; }
	.room-actions, .room-secondary-actions, .room-share-prompt, .room-subject, .room-meta-pills, .room-tags, .room-trust { order: 1; margin-right: 20px; margin-left: 20px; }
	.room-actions { margin-top: 14px; }
	.room-trust { margin-bottom: 22px; }
	.room-mode-switch { display: none; }
	.model-about { grid-template-columns: 1fr; }
	.model-facts-card { width: 100%; max-width: 620px; }
}
@media (max-width: 850px) {
  .shell { padding-inline: 16px; }
  .site-header { position: relative; }
  .header-main { min-height: 68px; }
  .brand { min-width: 0; margin-right: auto; }
  .brand img { width: 132px; height: 40px; }
  .header-actions, .header-account-actions, .header-search, .category-nav { display: none; }
  .mobile-search-toggle { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; padding: 0; border: 0; border-radius: 9px; background: var(--soft); color: var(--brand-dark); font-size: 23px; cursor: pointer; }
  .locale-switcher summary { min-height: 40px; padding-inline: 8px; }
  .locale-menu { position: fixed; top: 62px; right: 62px; }
  .menu-toggle { display: block; flex: 0 0 auto; margin-left: 0; }
  .mobile-search-panel { position: absolute; top: 100%; right: 0; left: 0; z-index: 95; padding: 10px 16px 12px; border-top: 1px solid var(--line); background: rgba(255,255,255,.99); box-shadow: 0 12px 28px rgba(40,23,33,.1); }
  .mobile-search-panel.is-open { display: block; }
  .mobile-header-search { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto 40px; gap: 7px; max-width: 680px; margin-inline: auto; }
  .mobile-header-search input { width: 100%; min-width: 0; height: 44px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 9px; outline: 0; }
  .mobile-header-search input:focus { border-color: #efb1ba; box-shadow: 0 0 0 3px rgba(244,95,114,.1); }
  .mobile-header-search > button { min-height: 40px; padding: 7px 13px; border: 0; border-radius: 8px; background: var(--brand); color: white; font-weight: 800; cursor: pointer; }
  .mobile-header-search > .mobile-search-close { padding: 0; background: var(--soft); color: var(--ink); font-size: 23px; }
  .mobile-header-search .search-dropdown { top: calc(100% + 7px); max-height: min(55dvh, 420px); overflow-y: auto; overscroll-behavior: contain; }
  .mobile-search-backdrop { position: fixed; inset: 0; z-index: 29; background: rgba(52,40,47,.2); opacity: 0; pointer-events: none; }
  .mobile-search-backdrop.is-open { display: block; opacity: 1; pointer-events: auto; }
  .mobile-nav-backdrop { position: fixed; inset: 0; z-index: 70; display: block; background: rgba(52,40,47,.24); opacity: 0; pointer-events: none; transition: opacity 240ms ease; }
  .mobile-nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
  .mobile-nav-drawer { position: fixed; top: 0; bottom: 0; left: 0; z-index: 80; display: flex; width: min(86vw, 360px); overflow-y: auto; flex-direction: column; background: white; box-shadow: 18px 0 45px rgba(40,23,33,.14); transform: translateX(-102%); transition: transform 240ms ease; }
  .mobile-nav-drawer.is-open { transform: translateX(0); }
  .mobile-nav-drawer > header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--line); background: white; }
  .mobile-nav-drawer > header button { width: 40px; height: 40px; border: 0; border-radius: 8px; background: var(--soft); font-size: 24px; cursor: pointer; }
  .mobile-nav-drawer nav { display: grid; padding: 8px 16px 18px; }
  .mobile-nav-drawer nav h2 { margin: 17px 0 5px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-nav-drawer nav > a { padding: 10px 7px; border-radius: 7px; font-size: 14px; font-weight: 750; text-decoration: none; }
  .mobile-nav-drawer nav > a:hover { background: var(--brand-soft); color: var(--brand-dark); }
  .mobile-nav-drawer nav > a[aria-current="page"] { background: var(--brand-soft); color: var(--brand-dark); }
  .mobile-nav-drawer footer { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding: 16px; border-top: 1px solid var(--line); }
  .directory-groups { grid-template-columns: 1fr; }
  .page-intro { padding-top: 18px; }
  .popular-tags { align-items: end; gap: 10px; }
  .popular-tags__group { min-width: 0; align-items: flex-start; flex-direction: column; gap: 4px; }
  .tag-strip { width: 100%; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: thin; padding-bottom: 4px; }
  .filters-trigger { flex: 0 0 auto; }
  .model-grid { grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 12px; }
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 25px; }
	.room-player { aspect-ratio: 4 / 3; }
	.room-player-shell.is-expanded .room-player { aspect-ratio: auto; }
}
@media (max-width: 600px) {
  .adult-gate { padding: 12px; }
  .adult-gate__panel { max-height: calc(100dvh - 24px); padding: 24px 18px; border-radius: 14px; }
  .adult-gate__logo { margin-bottom: 16px; }
  .adult-gate__actions { grid-template-columns: 1fr; margin-top: 20px; }
  .cookie-notice { align-items: flex-end; gap: 10px; padding: 11px 11px 11px 13px; }
  .cookie-notice__copy p { font-size: 11px; line-height: 1.35; }
  .cookie-notice .button { min-width: 68px; padding-inline: 12px; }
  .header-actions .button { padding-inline: 12px; font-size: 13px; }
  .page-intro { padding-bottom: 9px; }
  .page-intro h1 { font-size: clamp(24px, 7vw, 28px); }
  .page-intro__copy { font-size: 14px; }
  .discovery { padding-bottom: 9px; }
  .tag-search-wrap { align-items: stretch; flex-direction: column; gap: 6px; }
  .tag-search { width: 100%; }
  .filter-drawer__body { padding: 14px; }
  .filter-drawer__header, .filter-drawer__footer { padding-inline: 14px; }
  .section-heading { align-items: start; }
  .results-heading { flex-direction: column; gap: 2px; margin-bottom: 10px; }
  .category-breadcrumbs { padding-top: 9px; margin-bottom: -8px; }
  .related-categories__heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .model-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .model-card { border-radius: 11px; }
  .model-card__body { min-height: 76px; padding: 10px 10px 12px; }
  .model-card__subject { display: none; }
  .viewer-badge { display: none; }
  .editorial { grid-template-columns: 1fr; padding-top: 45px; padding-bottom: 55px; }
  .faq-section { padding-bottom: 52px; }
  .info-page { padding-top: 30px; }
  .info-page header p { font-size: 15px; }
  .room-page { padding-top: 9px; padding-inline: 0; }
  .breadcrumbs { padding-inline: 14px; }
  .room-layout { border-right: 0; border-left: 0; border-radius: 0; box-shadow: none; }
  .room-info { padding: 20px 16px 24px; }
  .room-identity { padding: 17px 16px 14px; }
  .room-actions, .room-secondary-actions, .room-share-prompt, .room-subject, .room-meta-pills, .room-tags, .room-trust { margin-right: 16px; margin-left: 16px; }
  .room-secondary-actions { grid-template-columns: 1fr; }
  .room-stream-bar { padding: 10px 12px; }
  .room-watching { font-size: 11px; }
  .model-about { padding-top: 36px; padding-bottom: 42px; }
  .model-facts-card { padding: 19px; }
  .share-options { grid-template-columns: 1fr; }
  .room-identity h1 { font-size: clamp(24px, 7vw, 28px); }
  .room-facts { gap: 12px; }
  .related-section { padding-top: 8px; }
  .model-support { grid-template-columns: 1fr; padding-top: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .directory-page, .random-cam-page { padding-top: 24px; }
  .directory-intro { margin-bottom: 20px; }
  .directory-links, .directory-tags { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-group { padding: 16px; }
  .search-page-form { align-items: stretch; flex-direction: column; }
  .random-cam-frame { height: max(560px, 78dvh); min-height: 0; border-radius: 10px; }
}
@media (max-width: 380px) {
  .shell { padding-inline: 12px; }
  .header-main { gap: 7px; }
  .brand img { width: 112px; }
  .locale-switcher summary { gap: 4px; padding-inline: 7px; }
  .mobile-search-panel { padding-inline: 12px; }
  .locale-menu { right: 58px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
