/* ============================================================
   Gentils Copains — feuille de style globale
   Direction "stickers" : contours épais, ombres portées nettes,
   typo arrondie (Fredoka + Nunito), palette chaleureuse.
   ============================================================ */

:root {
  --bg:        #FFF6EA;
  --ink:       #2A1E17;
  --coral:     #FF6B4E;
  --green:     #2FA36B;
  --yellow:    #FFC94D;
  --blue:      #4DA3FF;
  --purple:    #B06BFF;
  --cream:     #FFFBF4;
  --muted:     #7A6A5D;
  --muted-2:   #9A8A7C;
  --line-soft: #E4D6C6;
  --border:    2.5px solid var(--ink);
  --radius:    16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
}
input, textarea, select, button { font-family: inherit; }
::placeholder { color: #B6A698; }
a { color: inherit; }

/* ---------- animations ---------- */
@keyframes gc-pop   { 0% { transform: scale(.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes gc-toast { 0% { transform: translate(-50%, 30px); opacity: 0; } 100% { transform: translate(-50%, 0); opacity: 1; } }
@keyframes gc-float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-10px) rotate(var(--r,0deg)); } }

/* ---------- layout shell ---------- */
.gc-app   { min-height: 100vh; position: relative; overflow: hidden; padding-bottom: 60px; }
.gc-doodles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.gc-doodles svg { position: absolute; opacity: .07; }
.gc-page  { position: relative; z-index: 10; max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* ---------- buttons (sticker) ---------- */
.gc-btn {
  border: var(--border); border-radius: 13px; box-shadow: 3px 3px 0 var(--ink);
  padding: 11px 20px; cursor: pointer; font-family: 'Fredoka', sans-serif;
  font-weight: 600; font-size: 16px; display: inline-flex; align-items: center;
  gap: 8px; transition: transform .06s, box-shadow .06s; color: #fff;
}
.gc-btn:hover  { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--ink); }
.gc-btn:active { transform: translate(2px,2px);  box-shadow: 0 0 0 var(--ink); }
.gc-btn--coral { background: var(--coral); }
.gc-btn--green { background: var(--green); }
.gc-btn--ink   { background: var(--ink); box-shadow: 3px 3px 0 rgba(0,0,0,.25); }
.gc-btn--white { background: #fff; color: var(--ink); }
.gc-btn--white:hover { background: #FFE9B8; }

.gc-link { background: none; border: none; cursor: pointer; font-weight: 800; color: var(--muted); font-size: 14px; padding: 0; }

/* ---------- navbar ---------- */
.gc-nav-wrap { position: sticky; top: 0; z-index: 40; background: #fff; border-bottom: var(--border); box-shadow: 0 4px 0 rgba(42,30,23,.06); }
.gc-nav { max-width: 1140px; margin: 0 auto; padding: 12px 22px; display: flex; align-items: center; gap: 18px; position: relative; }
.gc-brand { display: flex; align-items: center; gap: 10px; background: none; border: none; cursor: pointer; padding: 4px; }
.gc-brand-name { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -.3px; }
.gc-spacer { flex: 1; }
.gc-navlinks { display: flex; align-items: center; gap: 6px; }
.gc-navlink { background: none; border: none; cursor: pointer; font-weight: 700; font-size: 15px; color: var(--ink); padding: 8px 12px; border-radius: 10px; display: flex; align-items: center; gap: 6px; }
.gc-navlink:hover { background: #FFF0DC; }
.gc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; }
.gc-burger { display: none; align-items: center; justify-content: center; width: 42px; height: 42px; background: var(--bg); border: var(--border); border-radius: 12px; cursor: pointer; padding: 0; }
.gc-userwrap { display: flex; align-items: center; gap: 10px; }
.gc-userbtn { display: flex; align-items: center; gap: 9px; background: none; border: none; cursor: pointer; padding: 3px 6px; border-radius: 12px; }
.gc-userbtn:hover { background: #FFF0DC; }
.gc-username { font-weight: 800; font-size: 15px; }
.gc-quit { background: var(--bg); border: 2px solid var(--ink); border-radius: 10px; padding: 6px 10px; cursor: pointer; font-weight: 700; font-size: 13px; }
.gc-quit:hover { background: #FFE2D6; }

/* ---------- avatars ---------- */
.gc-avatar { border-radius: 50%; flex: none; border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; background-size: cover; background-position: center; }
.gc-avatar--sm { width: 26px; height: 26px; font-size: 12px; }
.gc-avatar--nav { width: 32px; height: 32px; font-size: 14px; border-width: 2.5px; cursor: pointer; }
.gc-avatar--md { width: 34px; height: 34px; font-size: 14px; }
.gc-avatar--lg { width: 96px; height: 96px; font-size: 40px; border: 3px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); font-family: 'Fredoka', sans-serif; font-weight: 700; }

/* ---------- hero + search ---------- */
.gc-hero { text-align: center; padding: 46px 16px 30px; }
.gc-pill { display: inline-block; background: var(--yellow); border: 2px solid var(--ink); border-radius: 999px; padding: 5px 16px; font-weight: 800; font-size: 13px; transform: rotate(-2deg); margin-bottom: 16px; }
.gc-h1 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: clamp(28px, 7vw, 46px); line-height: 1.05; margin: 0 0 12px; letter-spacing: -1px; }
.gc-lead { font-size: clamp(15px, 4vw, 18px); color: var(--muted); max-width: 560px; margin: 0 auto 26px; font-weight: 600; }
.gc-searchbar { max-width: 640px; margin: 0 auto; background: #fff; border: var(--border); border-radius: 18px; box-shadow: 5px 5px 0 var(--ink); padding: 8px; display: flex; gap: 8px; align-items: center; }
.gc-searchbar--page { max-width: 680px; margin: 0 0 18px; }
.gc-searchbar input { flex: 1; border: none; outline: none; font-size: 17px; font-weight: 600; background: transparent; padding: 10px 4px; }
.gc-search-ico { margin-left: 10px; flex: none; }
.gc-examples { display: flex; gap: 9px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.gc-examples-label { font-size: 13px; font-weight: 700; color: var(--muted-2); padding: 6px 2px; }
.gc-chip { background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 6px 14px; cursor: pointer; font-weight: 700; font-size: 13px; }
.gc-chip:hover { background: #FFE9B8; }

/* ---------- tabs / segmented ---------- */
.gc-tabs-row { display: flex; justify-content: center; margin: 18px 0 6px; }
.gc-tabs { display: inline-flex; background: #fff; border: var(--border); border-radius: 16px; box-shadow: 4px 4px 0 var(--ink); padding: 5px; }
.gc-tab { background: transparent; color: var(--ink); border: none; border-radius: 11px; padding: 11px 26px; cursor: pointer; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px; }
.gc-tab.is-active { background: var(--ink); color: #fff; }
.gc-tab-hint { text-align: center; color: var(--muted-2); font-weight: 700; font-size: 14px; margin: 6px 0 18px; }

.gc-seg { display: inline-flex; background: var(--bg); border: var(--border); border-radius: 14px; padding: 5px; width: 100%; }
.gc-seg-btn { flex: 1; background: transparent; color: var(--ink); border: none; border-radius: 10px; padding: 11px; cursor: pointer; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; }
.gc-seg-btn.is-active { background: var(--coral); color: #fff; }

/* ---------- categories ---------- */
.gc-cats { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.gc-cat { background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 8px 16px; cursor: pointer; font-weight: 800; font-size: 14px; }
.gc-cat.is-active { background: var(--yellow); box-shadow: 2px 2px 0 var(--ink); }

/* ---------- feed / cards ---------- */
.gc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 22px; padding-bottom: 20px; }
.gc-card { text-align: left; padding: 0; background: #fff; border: var(--border); border-radius: 20px; box-shadow: 4px 4px 0 var(--ink); cursor: pointer; overflow: hidden; display: flex; flex-direction: column; font-family: inherit; color: var(--ink); transition: transform .08s, box-shadow .08s; }
.gc-card:hover { transform: translate(-2px,-3px); box-shadow: 7px 8px 0 var(--ink); }
.gc-thumb { position: relative; height: 150px; display: flex; align-items: center; justify-content: center; border-bottom: var(--border); background-size: cover; background-position: center; }
.gc-badge { position: absolute; top: 12px; left: 12px; color: #fff; border: var(--border); border-radius: 999px; padding: 4px 13px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }
.gc-badge--don   { background: var(--coral); }
.gc-badge--pret  { background: var(--green); }
.gc-badge--event { background: var(--purple); }
.gc-reserved-tag { position: absolute; bottom: 10px; right: 10px; background: var(--ink); color: #fff; border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 800; transform: rotate(-4deg); }
.gc-card-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 11px; }
.gc-card-title { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; line-height: 1.15; }
.gc-owner { display: flex; align-items: center; gap: 8px; }
.gc-owner-name { font-weight: 700; font-size: 14px; }
.gc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.gc-tag { border: 2px solid var(--ink); border-radius: 999px; padding: 3px 10px; font-size: 12px; font-weight: 800; background: var(--bg); }
.gc-tag--soft { border: 2px solid var(--line-soft); font-weight: 700; color: var(--muted); }

/* ---------- CTA banner ---------- */
.gc-cta { margin: 14px 0 10px; background: var(--yellow); border: var(--border); border-radius: 22px; box-shadow: 5px 5px 0 var(--ink); padding: 26px 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.gc-cta-title { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 26px; margin-bottom: 4px; }
.gc-cta-sub { font-weight: 700; color: #5C4A3C; font-size: 16px; }

/* ---------- splash global ---------- */
@keyframes gc-bob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
.gc-splash { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; }
.gc-splash-logo { animation: gc-bob 1.6s ease-in-out infinite; }
.gc-splash-name { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 30px; letter-spacing: -.5px; color: var(--ink); white-space: nowrap; }
.gc-splash-row { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 800; font-size: 15px; }

/* ---------- skeleton loaders ---------- */
@keyframes gc-shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
.gc-skel { background: linear-gradient(90deg, #F0E6D8 25%, #FBF3E6 37%, #F0E6D8 63%); background-size: 400% 100%; animation: gc-shimmer 1.4s ease infinite; }
.gc-skel-card { background: #fff; border: var(--border); border-radius: 20px; box-shadow: 4px 4px 0 var(--ink); overflow: hidden; }
.gc-skel-thumb { height: 150px; border-bottom: var(--border); }
.gc-skel-line { height: 16px; border-radius: 6px; }
.gc-loader-row { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 40px; color: var(--muted); font-weight: 800; font-size: 16px; }
.gc-spinner { width: 26px; height: 26px; border: 3px solid var(--line-soft); border-top-color: var(--coral); border-radius: 50%; animation: gc-spin .8s linear infinite; }
@keyframes gc-spin { to { transform: rotate(360deg); } }

/* ---------- pagination ---------- */
.gc-pager { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin: 4px 0 8px; }
.gc-page-btn { min-width: 42px; height: 42px; padding: 0 12px; background: #fff; border: var(--border); border-radius: 12px; box-shadow: 2px 2px 0 var(--ink); cursor: pointer; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink); }
.gc-page-btn:hover:not(:disabled) { background: #FFE9B8; }
.gc-page-btn.is-active { background: var(--ink); color: #fff; }
.gc-page-btn:disabled { opacity: .4; cursor: default; box-shadow: none; }

/* ---------- derniers ajouts ---------- */
.gc-recent { margin: 34px 0 18px; }
.gc-recent-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.gc-recent-sub { font-weight: 700; color: var(--muted-2); font-size: 14px; }
.gc-recent-strip { display: flex; gap: 18px; overflow-x: auto; padding: 4px 4px 14px; scroll-snap-type: x proximity; }
.gc-recent-item { flex: 0 0 240px; scroll-snap-align: start; }

/* ---------- footer ---------- */
.gc-footer { position: relative; z-index: 10; text-align: center; padding: 30px 20px 10px; color: var(--muted-2); font-weight: 700; font-size: 13px; }

/* ---------- search view ---------- */
.gc-interp { background: #F0DCFF; border: var(--border); border-radius: 16px; padding: 16px 18px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.gc-interp-chip { background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 5px 13px; font-weight: 800; font-size: 14px; }
.gc-section-title { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 24px; margin: 0 0 18px; }
.gc-empty { text-align: center; background: #fff; border: 2.5px dashed var(--ink); border-radius: 20px; padding: 46px 24px; }
.gc-empty-title { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 22px; margin-bottom: 6px; }

/* ---------- forms ---------- */
.gc-narrow { max-width: 640px; margin: 0 auto; }
.gc-screen-pad { padding-top: 28px; }
.gc-h-screen { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 34px; margin: 0 0 6px; }
.gc-sub { color: var(--muted); font-weight: 700; margin: 0 0 22px; }
.gc-panel { background: #fff; border: var(--border); border-radius: 22px; box-shadow: 5px 5px 0 var(--ink); padding: 24px; }
.gc-label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 7px; }
.gc-input, .gc-select, .gc-textarea { width: 100%; border: var(--border); border-radius: 13px; padding: 12px 14px; font-size: 16px; font-weight: 600; outline: none; background: #fff; }
.gc-select { font-weight: 700; cursor: pointer; }
.gc-textarea { resize: vertical; }
.gc-field { margin-bottom: 18px; }
.gc-row { display: flex; gap: 14px; flex-wrap: wrap; }
.gc-row > div { flex: 1; min-width: 180px; }
.gc-dropzone { display: block; position: relative; overflow: hidden; border: 2.5px dashed var(--ink); border-radius: 16px; padding: 18px; text-align: center; color: var(--muted-2); font-weight: 700; background: var(--cream); cursor: pointer; }
.gc-dropzone:hover { background: #FFF3E2; }
.gc-dropzone input[type=file] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.gc-dropzone-emoji { font-size: 34px; margin-bottom: 4px; }
.gc-preview-img { height: 180px; border-radius: 11px; border: var(--border); background: #000; background-size: cover; background-position: center; }

/* ---------- chat ---------- */
.gc-chat { display: flex; background: #fff; border: var(--border); border-radius: 22px; box-shadow: 5px 5px 0 var(--ink); overflow: hidden; height: 560px; }
.gc-threads { width: 290px; border-right: var(--border); overflow-y: auto; flex: none; }
.gc-thread-row { width: 100%; display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: none; border-bottom: 2px solid #F0E4D4; background: #fff; cursor: pointer; text-align: left; }
.gc-thread-row.is-active { background: #FFF0DC; }
.gc-thread-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.gc-thread-name { font-weight: 800; font-size: 15px; }
.gc-thread-preview { font-size: 13px; color: var(--muted-2); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
.gc-conv { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.gc-conv-head { padding: 14px 18px; border-bottom: var(--border); display: flex; align-items: center; gap: 10px; background: var(--cream); }
.gc-conv-title { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; }
.gc-about { font-size: 12px; font-weight: 700; color: var(--muted); background: #fff; border: 2px solid var(--ink); border-radius: 999px; padding: 2px 10px; margin-left: 6px; }
.gc-item-ref { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 11px 18px; border: none; border-bottom: var(--border); background: #FFF0DC; cursor: pointer; font-family: inherit; }
.gc-item-ref:hover { background: #FFE9B8; }
.gc-item-ref-mini { width: 46px; height: 46px; flex: none; border-radius: 11px; border: 2px solid var(--ink); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.gc-item-ref-label { font-size: 11px; font-weight: 800; color: var(--muted-2); text-transform: uppercase; letter-spacing: .4px; }
.gc-item-ref-title { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gc-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: #FFF9F0; }
.gc-msg { max-width: 74%; border: var(--border); padding: 10px 14px; font-weight: 700; font-size: 15px; }
.gc-msg--mine { align-self: flex-end; background: var(--coral); color: #fff; border-radius: 16px 16px 4px 16px; }
.gc-msg--theirs { align-self: flex-start; background: #fff; border-radius: 16px 16px 16px 4px; }
.gc-msg-sender { margin: 0 0 1px 4px; font-size: 12px; font-weight: 800; }
.gc-msg--system { align-self: center; max-width: 88%; text-align: center; background: #F0DCFF; border: 2px solid var(--ink); border-radius: 14px; padding: 9px 16px; font-weight: 800; font-size: 13.5px; color: #5B3A7A; box-shadow: 2px 2px 0 rgba(42,30,23,.12); }
.gc-composer { padding: 14px; border-top: var(--border); display: flex; gap: 10px; background: #fff; }
.gc-composer input { flex: 1; border: var(--border); border-radius: 13px; padding: 11px 14px; font-size: 15px; font-weight: 600; outline: none; }
.gc-chat-locked { text-align: center; background: #fff; border: var(--border); border-radius: 22px; box-shadow: 5px 5px 0 var(--ink); padding: 54px 24px; max-width: 480px; margin: 30px auto; }
.gc-conv-empty { flex: 1; display: flex; align-items: center; justify-content: center; color: var(--muted-2); font-weight: 700; text-align: center; padding: 30px; }

/* ---------- profile ---------- */
.gc-profile-card { background: #fff; border: var(--border); border-radius: 22px; box-shadow: 5px 5px 0 var(--ink); padding: 24px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.gc-avatar-pick { position: relative; display: inline-block; width: 96px; height: 96px; flex: none; cursor: pointer; }
.gc-avatar-pick input[type=file] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 3; }
.gc-avatar-badge { position: absolute; bottom: -2px; right: -2px; width: 30px; height: 30px; border-radius: 50%; background: var(--yellow); border: 2.5px solid var(--ink); display: flex; align-items: center; justify-content: center; font-size: 15px; pointer-events: none; z-index: 2; }
.gc-my-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; flex-wrap: wrap; }
.gc-listing { background: #fff; border: var(--border); border-radius: 20px; box-shadow: 4px 4px 0 var(--ink); padding: 16px; display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.gc-listing-mini { width: 76px; height: 76px; flex: none; border-radius: 14px; border: var(--border); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.gc-listing-body { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 9px; }
.gc-listing-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 3px; }
.gc-mini-btn { background: #fff; border: 2px solid var(--ink); border-radius: 11px; padding: 8px 13px; cursor: pointer; font-weight: 800; font-size: 13px; }
.gc-mini-btn:hover { background: #F0DCFF; }
.gc-mini-btn--chat { background: #FFF0DC; }
.gc-mini-btn--chat:hover { background: #FFE2B8; }
.gc-status { border-radius: 999px; padding: 3px 11px; font-size: 12px; font-weight: 800; border: 2px solid var(--ink); }
.gc-status--ok { background: #D8F0DE; }
.gc-status--reserved { background: var(--ink); color: #fff; }
.gc-status--event { background: #F0DCFF; }

/* ---------- modals ---------- */
.gc-overlay { position: fixed; inset: 0; z-index: 80; background: rgba(42,30,23,.5); display: flex; align-items: center; justify-content: center; padding: 24px; }
.gc-overlay--auth { z-index: 90; }
.gc-overlay--light { z-index: 95; background: rgba(42,30,23,.88); cursor: zoom-out; padding: 40px; }
.gc-modal { width: 100%; background: #fff; border: var(--border); border-radius: 24px; box-shadow: 8px 8px 0 var(--ink); overflow: hidden; animation: gc-pop .18s ease-out; max-height: 90vh; overflow-y: auto; }
.gc-modal--item { max-width: 520px; }
.gc-modal--auth { max-width: 420px; padding: 28px; }
.gc-modal-thumb { position: relative; height: 200px; display: flex; align-items: center; justify-content: center; border-bottom: var(--border); background-size: cover; background-position: center; }
.gc-modal-body { padding: 24px; }
.gc-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: #fff; border: var(--border); cursor: pointer; font-size: 18px; font-weight: 800; line-height: 1; display: flex; align-items: center; justify-content: center; }
.gc-view-photo { position: absolute; bottom: 12px; right: 12px; display: flex; align-items: center; gap: 7px; background: #fff; border: var(--border); border-radius: 999px; padding: 7px 14px; cursor: pointer; font-weight: 800; font-size: 13px; box-shadow: 2px 2px 0 var(--ink); }
.gc-view-photo:hover { background: #FFE9B8; transform: translate(-1px,-1px); }
.gc-modal-h2 { font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 28px; margin: 0 0 14px; line-height: 1.1; }
.gc-when-box { display: flex; align-items: center; gap: 8px; background: var(--bg); border: 2px solid var(--line-soft); border-radius: 13px; padding: 11px 14px; font-weight: 800; font-size: 14px; }
.gc-reserved-banner { text-align: center; background: #D8F0DE; border: var(--border); border-radius: 14px; padding: 14px; font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 17px; }
.gc-lightbox-img { max-width: 92vw; max-height: 88vh; width: min(92vw, 900px); height: 80vh; background-size: contain; background-repeat: no-repeat; background-position: center; }
.gc-close--fixed { position: fixed; top: 22px; right: 22px; width: 44px; height: 44px; box-shadow: 3px 3px 0 var(--ink); font-size: 22px; }

/* ---------- toast ---------- */
.gc-toast { position: fixed; bottom: 28px; left: 50%; z-index: 100; transform: translateX(-50%); background: var(--ink); color: #fff; border-radius: 14px; padding: 14px 22px; font-weight: 800; font-size: 15px; box-shadow: 4px 4px 0 rgba(0,0,0,.25); animation: gc-toast .25s ease-out; display: flex; align-items: center; gap: 10px; }

/* ---------- utilities ---------- */
.gc-svg-stroke { stroke: #fff; }
.gc-flex { display: flex; }
.gc-grow { flex: 1; }
.gc-mt8 { margin-top: 8px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 760px) {
  .gc-nav { padding: 9px 14px; gap: 10px; }
  .gc-brand-name { font-size: 17px; }
  .gc-burger { display: flex; }
  .gc-navlinks {
    position: absolute; top: calc(100% + 8px); right: 14px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border: var(--border); border-radius: 16px;
    box-shadow: 4px 5px 0 var(--ink); padding: 8px; min-width: 184px; z-index: 50;
    display: none;
  }
  .gc-navlinks.is-open { display: flex; }
  .gc-navlink { font-size: 16px; padding: 11px 14px; justify-content: center; text-align: center; border-radius: 11px; }
  .gc-username { display: none; }
  .gc-search-txt { display: none; }
  .gc-search-loupe { display: block !important; }
  .gc-page { padding: 0 14px; }
  .gc-hero { padding: 30px 4px 22px; }
  .gc-cta { padding: 22px 20px; }
  .gc-chat { flex-direction: column; height: auto; }
  .gc-threads { width: 100%; max-height: 168px; border-right: none; border-bottom: var(--border); display: flex; overflow-x: auto; overflow-y: hidden; }
  .gc-threads .gc-thread-row { flex: 0 0 auto; min-width: 200px; border-bottom: none; border-right: 2px solid #F0E4D4; }
  .gc-conv { min-height: 420px; }
  .gc-tab { padding: 10px 15px; font-size: 15px; }
}
@media (max-width: 460px) {
  .gc-tab { padding: 9px 11px; font-size: 14px; }
}
.gc-search-loupe { display: none; }
