@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap');

:root { --ink: #24312d; --muted: #718078; --cream: #f6f3ed; --paper: #fffdf8; --green: #315b4e; --red: #a64032; --line: #dedbd2; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html::-webkit-scrollbar,
body::-webkit-scrollbar,
.side-panel::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.side-panel::-webkit-scrollbar-track { background: #f1eee7; }
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.side-panel::-webkit-scrollbar-thumb { background: #a64032; border: 2px solid #f1eee7; border-radius: 6px; }
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.side-panel::-webkit-scrollbar-thumb:hover { background: #7c2d27; }
html,
body,
.side-panel { scrollbar-width: thin; scrollbar-color: #a64032 #f1eee7; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: 'DM Sans', Arial, sans-serif; }
button, input { font: inherit; }
button { cursor: pointer; }
.topbar { height: 76px; display: flex; align-items: center; gap: 48px; padding: 0 5vw; background: rgba(255,253,248,.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-family: 'Playfair Display', serif; font-size: 1.25rem; text-decoration: none; white-space: nowrap; }
.brand > span:last-child > span { color: var(--red); }
.brand-mark, .profile-mark { display: grid; place-items: center; width: 32px; height: 32px; color: #fff7e8; background: var(--red); border-radius: 50%; font: 600 .7rem 'DM Sans', sans-serif; letter-spacing: .04em; }
.main-nav { display: flex; gap: 26px; margin-right: auto; }
.nav-link, .quiet-button { color: var(--muted); background: none; border: 0; text-decoration: none; font-size: .85rem; padding: 28px 0; }
.nav-link.active, .nav-link:hover, .quiet-button:hover { color: var(--red); }
.account-nav { display: flex; gap: 22px; }
.hero { min-height: 475px; display: flex; align-items: center; justify-content: space-between; padding: 72px 11vw 68px; background: linear-gradient(105deg, #e8eee5 0%, #f2efe7 55%, #eadbd0 100%); position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; width: 430px; height: 430px; right: -130px; top: -170px; border: 1px solid rgba(49,91,78,.18); border-radius: 50%; box-shadow: 0 0 0 34px rgba(49,91,78,.04), 0 0 0 68px rgba(49,91,78,.035); }
.hero-copy { position: relative; z-index: 1; max-width: 620px; }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font: 500 clamp(2.8rem, 6vw, 5.1rem)/.96 'Playfair Display', serif; letter-spacing: -.04em; }
h1 em { color: var(--red); font-weight: 500; }
.hero-text { max-width: 480px; color: #586861; line-height: 1.65; font-size: .98rem; }
.search-box { width: min(100%, 550px); height: 56px; display: flex; align-items: center; gap: 12px; margin-top: 30px; padding: 6px 7px 6px 18px; background: var(--paper); border: 1px solid #d8d5cb; box-shadow: 0 8px 24px rgba(55,60,52,.1); }
.search-icon { color: var(--red); font-size: 1.8rem; line-height: 1; transform: rotate(-20deg); }
.search-box input { min-width: 0; flex: 1; color: var(--ink); border: 0; outline: 0; background: transparent; font-size: .86rem; }
.search-box button, .panel-action { padding: 12px 19px; color: #fffaf1; background: var(--green); border: 0; font-size: .78rem; font-weight: 600; }
.quick-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.filter-chip { padding: 7px 13px; color: var(--muted); background: transparent; border: 1px solid #c9d0c9; border-radius: 20px; font-size: .74rem; }
.filter-chip.active, .filter-chip:hover { color: #fff; background: var(--red); border-color: var(--red); }
.hero-note { align-self: flex-end; display: flex; align-items: center; gap: 12px; max-width: 220px; margin-bottom: 13px; padding: 17px; color: #fffaf0; background: var(--green); box-shadow: 12px 12px 0 rgba(49,91,78,.13); transform: rotate(-3deg); }
.note-pin { color: #f2c36b; font-size: 1.5rem; }.hero-note strong, .hero-note span { display: block; }.hero-note strong { font: 500 1rem 'Playfair Display', serif; }.hero-note span { margin-top: 5px; color: #cfddd4; font-size: .7rem; }
.trail-section { max-width: 1220px; margin: 0 auto; padding: 70px 5vw 100px; }.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 25px; }.section-heading h2 { margin: 0; font: 500 2.25rem 'Playfair Display', serif; }.result-count { color: var(--muted); font-size: .75rem; }
.trail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }.trail-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease; }.trail-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(47,57,49,.1); }.card-image { height: 178px; position: relative; overflow: hidden; }.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }.trail-card:hover .card-image img { transform: scale(1.04); }.card-badge { position: absolute; top: 12px; left: 12px; padding: 5px 9px; color: #fff; background: var(--red); font-size: .65rem; letter-spacing: .05em; text-transform: uppercase; }.card-content { position: relative; padding: 17px 18px 20px; }.card-place { margin-bottom: 7px; color: var(--red); font-size: .67rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }.card-content h3 { margin-bottom: 8px; font: 500 1.3rem 'Playfair Display', serif; }.card-description { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }.save-button { position: absolute; right: 16px; top: 14px; color: var(--red); background: none; border: 0; font-size: 1.55rem; }.save-button.saved { color: var(--red); }.empty-state { padding: 30px 0; color: var(--muted); text-align: center; }
.side-panel { width: min(390px, 90vw); height: 100vh; padding: 90px 34px 30px; position: fixed; top: 0; right: 0; z-index: 30; color: var(--ink); background: var(--paper); box-shadow: -12px 0 30px rgba(24,36,30,.14); transform: translateX(105%); transition: transform .25s ease; }.side-panel.open { transform: translateX(0); }.close-panel { position: absolute; top: 24px; right: 26px; color: var(--muted); background: none; border: 0; font-size: 2rem; }.side-panel h2 { margin-bottom: 25px; font: 500 2.5rem 'Playfair Display', serif; }.side-panel h3 { margin-top: 18px; font: 500 1.25rem 'Playfair Display', serif; }.side-panel p:not(.eyebrow) { color: var(--muted); font-size: .9rem; line-height: 1.6; }.profile-mark { width: 62px; height: 62px; font-size: 1rem; }.panel-action { margin-top: 22px; }.setting-row { display: flex; justify-content: space-between; gap: 18px; padding: 19px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .85rem; line-height: 1.4; }.panel-backdrop { position: fixed; inset: 0; z-index: 20; background: rgba(31,40,35,.38); }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 850px) { .topbar { gap: 20px; padding: 0 22px; }.main-nav { gap: 14px; }.account-nav { gap: 10px; }.hero { display: block; padding: 62px 8vw; }.hero-note { margin: 48px 0 0 auto; }.trail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .topbar { height: 66px; }.main-nav { display: none; }.quiet-button { padding: 22px 0; font-size: .73rem; }.hero { min-height: 550px; padding: 50px 7vw; }h1 { font-size: 3.2rem; }.section-heading h2 { font-size: 1.8rem; }.trail-grid { grid-template-columns: 1fr; }.card-image { height: 210px; }.hero-note { margin-top: 42px; } }

/* Accueil mobile inspire de l'interface de decouverte fournie. */
.topbar { height: 50px; padding: 0 10px; justify-content: space-between; gap: 0; background: #fff; border-bottom: 1px solid #d9d9d4; }
.menu-button, .notification-button { border: 0; background: none; color: #59615b; font-size: 1.15rem; line-height: 1; }
.notification-button img { width: 22px; height: 22px; display: block; }
.menu-button { position: absolute; left: 50%; width: 28px; height: 28px; padding: 0; margin: 0; border: 0; transform: translateX(-50%); }
.menu-button img { width: 28px; height: 28px; display: block; }
.ai-assistant-button { position: absolute; right: 12px; width: 30px; height: 30px; display: grid; place-items: center; padding: 0; background: rgba(255,255,255,.8); border: 1px solid rgba(166,64,50,.35); border-radius: 50%; box-shadow: 0 2px 7px rgba(72,20,18,.14); font-size: 1.05rem; line-height: 1; }
.ai-assistant-button img { width: 19px; height: 19px; display: block; }
.ai-assistant-button:hover { background: #fff1ed; border-color: #a64032; }
.back-home-link { position: absolute; left: calc(50% - 48px); top: 50%; width: 28px; height: 28px; transform: translateY(-50%); }
.back-home-link img { width: 100%; height: 100%; display: block; }
.brand { position: absolute; left: 50%; transform: translateX(-50%); color: #303834; font: 400 .85rem/.95 Arial, sans-serif; text-align: center; }
.brand-script b { color: #303834; font-size: .85rem; font-weight: 400; letter-spacing: 0; }
.brand-mark, .main-nav { display: none; }
.account-nav { margin-left: 0; display: flex; gap: 13px; align-items: center; }
.quiet-button { padding: 5px 0; color: #68736b; font-size: .7rem; }
.auth-status { padding: 7px 13px; color: #fff; background: linear-gradient(135deg, #123d72, #2f79c6); border: 1px solid #0d315d; border-radius: 5px; box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 2px 4px rgba(19,49,85,.2); font-size: .68rem; }
.auth-status:hover { color: #fff; background: linear-gradient(135deg, #194d8d, #3b8cdb); }
.notification-button { color: #9f3026; }
.hero { min-height: 105px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0; background: #f1f1eb; }
.hero::after, .hero-note, .hero-copy { display: none; }
.action-tile { min-height: 105px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 3px; border: 0; border-radius: 0; color: #fff; text-align: center; }
.search-tile { background: #f04a23; }
.map-tile { background: #3d765e; font: inherit; }
.tile-symbol { display: block; height: 47px; font: 2.85rem/1 'DM Sans', sans-serif; text-shadow: 1px 2px 0 rgba(0,0,0,.15); }
.action-tile strong { font-size: .62rem; font-weight: 600; }
.compact-search { display: flex; width: 88%; height: 24px; margin-top: 3px; background: rgba(255,255,255,.18); }
.compact-search input { width: 100%; min-width: 0; padding: 0 6px; color: #fff; background: transparent; border: 0; outline: 0; font-size: .62rem; }
.compact-search input::placeholder { color: rgba(255,255,255,.88); }
.compact-search button { width: 26px; color: #f04a23; background: #fff; border: 0; font-size: .9rem; }
.tribe-banner { height: 105px; display: flex; align-items: center; padding: 14px 18px; position: relative; overflow: hidden; background: linear-gradient(90deg, rgba(21,68,42,.65), rgba(21,68,42,.12)), url('images/Sentiers en Forêt Landaise.JPG') center/cover; }
.tribe-banner::after { content: 'TRIBU'; position: absolute; right: -13px; bottom: -14px; color: rgba(255,255,255,.18); font: 600 4.8rem 'Playfair Display', serif; transform: rotate(-7deg); }
.tribe-banner .eyebrow { margin-bottom: 0; color: #e4d27f; font-size: .52rem; }
.tribe-banner h1 { margin: 0; color: #fff; font: italic 600 2.05rem/.9 'Playfair Display', serif; text-shadow: 1px 2px 1px #244a32; }
.tribe-banner h1 em { color: #fff; }
.create-button { margin-top: 9px; padding: 5px 11px; color: #2d5d3e; background: #fff; border: 0; font-size: .62rem; font-weight: 600; }
.shortcut-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 0 0; background: #f1f1eb; }
.shortcut-card { min-height: 96px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px; border: 0; border-radius: 0; color: #fff; text-decoration: none; }
.content-shortcut { background: #f6b900; }.subscription-shortcut { background: #67a51b; }
.shortcut-card span { font-size: 2rem; letter-spacing: -.18em; line-height: 1; text-shadow: 1px 2px 0 rgba(0,0,0,.16); }.shortcut-card strong { font-size: .65rem; font-weight: 500; }
.trail-section { margin: 0; padding: 17px 8px 50px; background: #f7f7f3; }.section-heading { align-items: center; margin: 0 2px 8px; }.section-heading h2 { font: 600 .78rem 'DM Sans', sans-serif; }.section-heading .eyebrow { display: none; }.result-count { font-size: .6rem; }.quick-filters { margin: 0 0 10px; gap: 5px; }.filter-chip { padding: 4px 8px; font-size: .6rem; }
.trail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }.trail-card { border: 1px solid #e2e2dc; border-radius: 0; background: #fff; }.card-image { height: 82px; }.card-badge { top: 5px; left: 5px; padding: 3px 5px; font-size: .48rem; }.card-content { min-height: 76px; padding: 7px 8px 8px; }.card-place { margin-bottom: 3px; font-size: .48rem; }.card-content h3 { margin-bottom: 3px; font: 600 .78rem 'DM Sans', sans-serif; }.card-description { display: none; }.save-button { top: 3px; right: 3px; font-size: 1.05rem; }
.side-panel { width: min(360px, 90vw); background: #fff; }.empty-state { font-size: .78rem; }
.account-panel-icon { width: 54px; height: 54px; margin-bottom: 18px; padding: 5px; background: #f8e8cf; border: 1px solid #cba29a; border-radius: 50%; }
@media (min-width: 700px) { .hero { min-height: 155px; }.action-tile { min-height: 155px; }.tribe-banner { height: 190px; }.shortcut-card { min-height: 135px; }.trail-section { max-width: 900px; margin: auto; }.card-image { height: 150px; } }

/* Interface mobile principale. */
body { background: #f4f4ef; }
.legacy-main { display: none !important; }
.mobile-home { display: block; max-width: 430px; min-height: calc(100vh - 50px); margin: 0 auto; background: #f4f4ef; }
.welcome-typing { min-height: 43px; margin: 0; padding: 18px 12px 10px; color: #303834; font: 500 1.75rem/1 'Cormorant Garamond', Georgia, serif; text-align: center; }
.welcome-typing::after { content: '|'; margin-left: 2px; color: #a64032; animation: typing-caret .8s steps(1) infinite; }
.welcome-typing.done::after { display: none; }
@keyframes typing-caret { 50% { opacity: 0; } }
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.quick-action { height: 101px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 8px; color: #fff; border: 0; border-radius: 0; font-size: .6rem; font-weight: 600; }
.quick-action img { width: 59px; height: 59px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); }
.search-action { background: #f04a23; }.create-action { background: #3f765f; }
.tribe-tile { height: 105px; position: relative; overflow: hidden; }
.tribe-tile > img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(1.1); }
.tribe-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 9px 25px; }
.tribe-overlay h1 { margin: 0; color: #fff; font: italic 600 1.75rem/.75 'Playfair Display', serif; text-shadow: 2px 2px 0 #1c4830; transform: rotate(-7deg); }
.tribe-overlay h1 em { color: #fff; font-size: 2rem; }.tribe-overlay button { width: 36px; height: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #216036; background: #fff; border: 0; font-size: 1.3rem; line-height: .75; }.tribe-overlay button img { width: 21px; height: 21px; }.tribe-overlay small { font-size: .52rem; }
.account-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding-top: 7px; }
.account-tile { height: 103px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: #fff; border: 0; border-radius: 0; font-size: .63rem; text-decoration: none; }
.account-tile img { width: 52px; height: 52px; object-fit: contain; filter: grayscale(1) brightness(0) invert(1); }.contents-tile { background: #f5b900; }.subscriptions-tile { background: #67a51b; }
.mobile-recommendations { padding: 12px 6px 35px; }.recommendation-heading { display: flex; justify-content: space-between; align-items: center; margin: 0 3px 7px; color: #313a35; font-size: .68rem; }.recommendation-row { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }.recommendation-card { overflow: hidden; position: relative; background: #fff; border: 1px solid #deded8; }.recommendation-card > img { width: 100%; height: 65px; display: block; object-fit: cover; }.recommendation-card > div { padding: 5px 7px 7px; }.recommendation-card strong, .recommendation-card small { display: block; }.recommendation-card strong { overflow: hidden; font-size: .64rem; text-overflow: ellipsis; white-space: nowrap; }.recommendation-card small { margin-top: 2px; color: #718078; font-size: .53rem; }.recommendation-card button { position: absolute; right: 4px; bottom: 5px; padding: 0; color: #3d765e; background: #fff; border: 1px solid #d3dfd8; border-radius: 50%; font-size: .8rem; line-height: 1.1; }
@media (min-width: 700px) { .mobile-home { max-width: 720px; }.quick-action { height: 150px; }.tribe-tile { height: 210px; }.account-tile { height: 145px; }.recommendation-card > img { height: 130px; } }

/* Mise en page responsive et icones SVG rouges en relief. */
.quick-action img, .account-tile img { filter: none; padding: 5px; background: #f8e8cf; border: 2px solid #76231f; border-radius: 50%; box-shadow: inset 0 2px 3px rgba(255,255,255,.75), 0 2px 0 rgba(72,20,18,.4), 0 3px 6px rgba(0,0,0,.25); }
.quick-action img { width: 58px; height: 58px; }.account-tile img { width: 54px; height: 54px; }
.mobile-home { width: min(100%, 1180px); max-width: 1180px; }
.quick-actions { padding: 0; }
.tribe-tile { margin-top: 7px; }
.account-actions { padding-top: 7px; }
.mobile-recommendations { padding-left: 0; padding-right: 0; }

@media (min-width: 700px) {
	.topbar { height: 64px; padding: 0 max(24px, calc((100vw - 1180px) / 2)); }
	.menu-button { order: 3; margin: 0; }
	.account-nav { order: 1; }
	.mobile-home { padding: 24px 32px 72px; }
	.quick-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
	.quick-action { height: 218px; border-radius: 5px; box-shadow: 0 5px 12px rgba(42,45,36,.16); font-size: .86rem; }
	.quick-action img { width: 110px; height: 110px; padding: 9px; }
	.tribe-tile { height: 275px; margin-top: 18px; border-radius: 5px; box-shadow: 0 5px 12px rgba(42,45,36,.16); }
	.tribe-overlay { padding: 28px 48px; }.tribe-overlay h1 { font-size: 3.3rem; }.tribe-overlay h1 em { font-size: 3.7rem; }.tribe-overlay button { width: 64px; height: 64px; font-size: 2rem; border-radius: 3px; }.tribe-overlay small { font-size: .7rem; }
	.account-actions { gap: 18px; padding-top: 18px; }.account-tile { height: 190px; border-radius: 5px; box-shadow: 0 5px 12px rgba(42,45,36,.14); font-size: .86rem; }.account-tile img { width: 96px; height: 96px; padding: 9px; }
	.mobile-recommendations { padding-top: 30px; }.recommendation-heading { margin-bottom: 12px; font-size: .95rem; }.recommendation-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }.recommendation-card > img { height: 190px; }.recommendation-card > div { padding: 12px 14px 15px; }.recommendation-card strong { font-size: .95rem; }.recommendation-card small { font-size: .72rem; }.recommendation-card button { right: 9px; bottom: 11px; font-size: 1.2rem; }
}

@media (max-width: 699px) {
	.topbar { background: #fff; border-bottom-color: #e5e5e5; -webkit-backdrop-filter: none; backdrop-filter: none; }
	.mobile-home { width: 100%; }
	.quick-action img { width: 58px; height: 58px; }
	.account-tile img { width: 54px; height: 54px; }
}

.recommendation-card button img { width: 100%; height: 100%; display: block; }
.site-footer { padding: 18px 12px 22px; color: #fff; background: rgba(0,0,0,.72); font-size: .68rem; line-height: 1.8; text-align: center; }
.site-footer a { color: #fff; text-decoration: none; font-weight: 300; }
.site-footer a:hover { text-decoration: underline; }
.tribe-overlay h1, .section-heading h2, .card-content h3, .side-panel h2, .side-panel h3 { font-family: Arial, sans-serif; }
.tribe-overlay h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; letter-spacing: .02em; }
.sidebar-panel { right: auto; left: 0; width: min(320px, 86vw); padding: 30px 22px; overflow-y: auto; border-right: 1px solid #e8e7e1; box-shadow: 8px 0 28px rgba(29,39,33,.08); transform: translateX(-105%); }
.sidebar-panel.open { transform: translateX(0); }
.sidebar-panel .close-panel { top: 20px; right: 18px; font-size: 1.6rem; font-weight: 300; }
.sidebar-brand { display: flex; align-items: center; gap: 9px; margin: 8px 0 42px; color: #303834; font: 400 1rem Arial, sans-serif; }
.sidebar-brand span { display: grid; place-items: center; width: 29px; height: 29px; color: #fff; background: #303834; border-radius: 50%; font: 600 .65rem Arial, sans-serif; }
.sidebar-brand strong { font-weight: 400; }.sidebar-panel h2 { margin-bottom: 18px; color: #303834; font: 500 1.55rem Arial, sans-serif; }
.sidebar-links { display: grid; gap: 3px; margin-top: 0; }
.sidebar-section-title { margin: 19px 8px 5px; color: #a64032; font-size: .62rem !important; font-weight: 600; letter-spacing: .12em; line-height: 1.2 !important; text-transform: uppercase; }
.sidebar-link { display: flex; align-items: center; gap: 12px; width: 100%; padding: 11px 8px; color: #68736b; background: transparent; border: 0; border-left: 2px solid transparent; text-align: left; text-decoration: none; font-size: .83rem; }
.sidebar-link:hover { color: #303834; background: #f6f5f0; border-left-color: #d9d6cd; }
.sidebar-link.active { color: #7c2d27; background: #fff1ed; border-left: 3px solid var(--red); font-weight: 600; box-shadow: inset 0 0 0 1px #f0d4ce; }
.sidebar-link.active img { border-color: var(--red); box-shadow: 0 1px 3px rgba(166,64,50,.2); }
.sidebar-link img { width: 22px; height: 22px; padding: 2px; background: #f8e8cf; border: 1px solid #cba29a; border-radius: 50%; box-shadow: none; }
.sidebar-note { margin-top: 42px; padding: 14px 8px 0; border-top: 1px solid #eceae4; color: #929b94; font-size: .73rem !important; line-height: 1.5 !important; }
.assistant-panel p:not(.eyebrow) { margin-bottom: 18px; }
.assistant-suggestions { display: grid; gap: 8px; }
.assistant-suggestions button { padding: 11px 12px; color: #1a73e8; background: #edf4ff; border: 1px solid #c9ddfb; border-radius: 4px; text-align: left; font-size: .78rem; }
.assistant-suggestions button:hover { color: #fff; background: #1a73e8; }
.assistant-panel { width: min(100vw, 460px); padding: 0; display: flex; flex-direction: column; overflow: hidden; background: #fff; }
.assistant-space { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; min-height: 220px; background: #fff; }.assistant-logo { width: 42px; height: 42px; }.assistant-questions { display: grid; width: min(88%, 390px); gap: 8px; }.assistant-questions button { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; color: #5f6368; background: #fff; border: 1px solid #ececec; border-radius: 8px; text-align: left; font-size: .76rem; }.assistant-questions button:hover { color: #202124; border-color: #c7c7c7; }.assistant-questions span { color: #a64032; font-size: 1.05rem; }
.assistant-questions button { gap: 9px; justify-content: flex-start; }.assistant-questions button img { width: 17px; height: 17px; flex: 0 0 auto; display: block; }.assistant-questions button span { color: #5f6368; font-size: .76rem; }
.assistant-composer { min-height: 58px; margin: 0 14px 14px; padding: 9px 14px; background: #fff; border: 1px solid #e4e4e4; border-radius: 15px; box-shadow: 0 3px 12px rgba(0,0,0,.1); }.assistant-composer input { width: 100%; padding: 4px 0; color: #333; background: transparent; border: 0; outline: 0; font-size: .92rem; }.assistant-composer input::placeholder { color: #929292; }
@media (max-width: 560px) { .assistant-panel { width: 100vw; }.assistant-space { min-height: 250px; }.assistant-composer { min-height: 58px; margin: 0 14px 14px; } }
.recommendation-card { border-radius: 5px; box-shadow: 0 3px 10px rgba(43,54,46,.09); cursor: pointer; }
.recommendation-card > img { border-radius: 5px 5px 0 0; }
.trail-meta { display: flex; align-items: center; gap: 4px; margin-top: 5px; color: #a64032; font-size: .55rem; font-weight: 600; }
.trail-meta img { width: 16px; height: 16px; padding: 1px; border-radius: 50%; }
.recommendation-card button { border-radius: 8px; }
@media (min-width: 700px) {
	.recommendation-card { border-radius: 6px; }
	.recommendation-card > img { border-radius: 6px 6px 0 0; }
	.trail-meta { font-size: .7rem; }.trail-meta img { width: 20px; height: 20px; }
}
