/* ===========================================================
   Apartmani Mir — Sokobanja
   Design system based on the business-card "matte" front:
   deep green, Italiana serif display, layered mountain motif.
   =========================================================== */

:root {
  --green-900: #1A3A28;
  --green-800: #2D5A3D;
  --green-700: #3A6B4B;
  --green-600: #4A7C59;
  --green-400: #6B9778;
  --green-300: #5A7A67;
  --cream:     #F5F7F3;
  --cream-2:   #ECF1EA;
  --white:     #ffffff;
  --ink:       #1d2620;
  --muted:     #5d6e64;
  --line:      rgba(26,58,40,0.12);
  --wa:        #25D366;

  --shadow-sm: 0 2px 8px rgba(26,58,40,0.07);
  --shadow-md: 0 10px 30px rgba(26,58,40,0.12);
  --shadow-lg: 0 24px 60px rgba(26,58,40,0.18);

  --radius:   14px;
  --radius-lg: 22px;
  --max:      1180px;

  --serif: 'Italiana', 'Cormorant Garamond', Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- language visibility ----------
   !important so these always win over any descendant
   display rules (e.g. .unit-meta span / .footer-contact span). */
[data-lang-sr], [data-lang-en] { display: none !important; }
html[lang="sr"] [data-lang-sr] { display: revert !important; }
html[lang="en"] [data-lang-en] { display: revert !important; }
/* inline spans default to inline */
span[data-lang-sr], span[data-lang-en] { display: none !important; }
html[lang="sr"] span[data-lang-sr] { display: inline !important; }
html[lang="en"] span[data-lang-en] { display: inline !important; }
/* language-tagged buttons must keep their flex layout when visible,
   otherwise the icon/text gap collapses */
html[lang="sr"] a.btn[data-lang-sr],
html[lang="en"] a.btn[data-lang-en] { display: inline-flex !important; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 66px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 19px;
  color: var(--green-800);
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}
.brand span { overflow: hidden; text-overflow: ellipsis; }
.brand .mark {
  width: 34px; height: 34px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand .mark svg { width: 100%; height: 100%; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--green-900);
  transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--cream-2); }
.nav-links a.active { color: var(--green-600); }

.nav-right { display: flex; align-items: center; gap: 10px; }

/* language toggle — always visible */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--green-600);
  border-radius: 999px;
  overflow: hidden;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--green-700);
  padding: 6px 12px;
  cursor: pointer;
  font: inherit;
  letter-spacing: .5px;
}
.lang-toggle button.active {
  background: var(--green-700);
  color: #fff;
}

.nav-ico {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: inline-grid; place-items: center;
  color: #fff; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .12s;
}
.nav-ico:hover { transform: translateY(-1px); }
.nav-ico svg { width: 18px; height: 18px; }
.nav-ico.nav-wa { background: var(--wa); }
.nav-ico.nav-viber { background: #7360f2; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  display: block;
  width: 19px; height: 2px;
  background: var(--green-800);
  position: relative;
  transition: .2s;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after  { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .burger { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; border-radius: 10px; }
  .nav-cta span.cta-label { display: none; }
  .nav-right { gap: 8px; }
  .burger { position: relative; z-index: 2; }
}

/* phones: tighten the header so brand, toggle and menu always fit */
@media (max-width: 560px) {
  .nav { gap: 8px; }
  .brand { font-size: 15px; letter-spacing: 1.5px; gap: 8px; }
  .brand .mark { width: 30px; height: 30px; }
  .nav-ico { display: none; }            /* floating buttons cover this on phones */
  .lang-toggle button { padding: 6px 10px; }
}

/* =========================================================
   HERO — branded mountain motif (card front)
   ========================================================= */
.hero {
  position: relative;
  background: var(--green-800);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
/* exact card artwork: fill the whole hero, stretched like the card */
.hero-mtns {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-mtns svg { width: 100%; height: 100%; display: block; }
/* on narrow/portrait screens, keep the artwork's natural proportions
   (anchored to the bottom) instead of stretching it tall */
@media (max-width: 700px) {
  .hero-mtns { top: auto; bottom: 0; height: auto; }
  .hero-mtns svg { height: auto; }
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 92px 22px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-frame {
  border: 1.5px solid rgba(255,255,255,0.7);
  padding: 30px 40px;
  margin-bottom: 30px;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(34px, 8vw, 62px);
}
.hero-sub {
  font-size: clamp(16px, 2.4vw, 20px);
  max-width: 620px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
  font-weight: 300;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .12s ease, box-shadow .15s, background .15s, color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: #fff; color: var(--green-800); box-shadow: var(--shadow-md); }
.btn-green   { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-green:hover { background: var(--green-800); }
.btn-wa      { background: var(--wa); color: #fff; box-shadow: var(--shadow-sm); }
.btn-wa:hover{ background: #1fb957; }
.btn-viber   { background: #7360f2; color: #fff; box-shadow: var(--shadow-sm); }
.btn-viber:hover { background: #5e4bd0; }
.btn-ico     { padding: 11px; gap: 0; }
.btn-ico svg { margin: 0; }
.btn-booking { background: #003580; color: #fff; }
.btn-booking:hover { background: #00255c; }
.btn-outline { border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost { border-color: var(--green-600); color: var(--green-700); background: #fff; }
.btn-ghost:hover { background: var(--cream-2); }

/* =========================================================
   SECTIONS / GENERIC
   ========================================================= */
.section { padding: 78px 0; }
.section.tight { padding: 56px 0; }
.section.cream { background: var(--cream); }
.section.green {
  background: var(--green-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-600);
  font-weight: 700;
  margin-bottom: 12px;
}
.section.green .eyebrow { color: var(--green-400); }

h2.h-display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: clamp(28px, 4.6vw, 42px);
  line-height: 1.1;
  color: var(--green-800);
  margin-bottom: 16px;
}
.section.green h2.h-display { color: #fff; }
.lead { font-size: 18px; color: var(--muted); max-width: 720px; }
.section.green .lead { color: rgba(255,255,255,0.9); }

.section-head { text-align: center; margin: 0 auto 46px; max-width: 760px; }
.section-head .lead { margin: 0 auto; }

/* divider mini mountain */
.mtn-divider { display: flex; justify-content: center; margin: 18px 0 0; }
.mtn-divider svg { width: 92px; height: auto; opacity: .9; }

/* =========================================================
   ABOUT split
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.split .media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.split p + p { margin-top: 14px; }
.signature {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-700);
  margin-top: 22px;
  letter-spacing: 1px;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .media { order: -1; }
}

/* =========================================================
   FEATURE / HIGHLIGHT CARDS
   ========================================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
@media (max-width: 820px){ .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.feature .ic {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream);
  color: var(--green-700);
  margin-bottom: 16px;
}
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18px; color: var(--green-900); margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15px; }

/* =========================================================
   UNIT (accommodation) CARDS
   ========================================================= */
.unit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
@media (max-width: 820px){ .unit-grid { grid-template-columns: 1fr; } }

.unit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.unit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.unit-gallery { position: relative; aspect-ratio: 16/10; background: var(--green-900); }
.unit-gallery img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
.unit-gallery img.active { opacity: 1; }
.unit-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(45,90,61,0.92);
  color: #fff;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
.unit-price {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--green-800);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 13px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border: 0;
  background: rgba(255,255,255,0.85);
  color: var(--green-800);
  border-radius: 999px;
  cursor: pointer;
  display: grid; place-items: center;
  z-index: 3;
  opacity: 0; transition: opacity .2s;
}
.unit-gallery:hover .gal-btn { opacity: 1; }
.gal-btn.prev { left: 10px; }
.gal-btn.next { right: 10px; }
.gal-btn svg { width: 18px; height: 18px; }
.gal-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.gal-dots i {
  width: 7px; height: 7px; border-radius: 999px;
  background: rgba(255,255,255,0.55);
}
.gal-dots i.active { background: #fff; }

.unit-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.unit-body h3 { font-family: var(--serif); font-size: 23px; color: var(--green-800); letter-spacing: 1px; }
.unit-meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 12px 0 14px; color: var(--muted); font-size: 14px; }
.unit-meta span { display: inline-flex; align-items: center; gap: 6px; }
.unit-meta svg { width: 16px; height: 16px; color: var(--green-600); }
.unit-body p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.unit-actions { margin-top: auto; display: flex; gap: 10px; flex-wrap: wrap; }
.unit-actions .btn { padding: 10px 18px; font-size: 14px; gap: 13px; }
.unit-actions .btn.btn-ico { padding: 11px; }
.unit-actions { gap: 9px; }

/* =========================================================
   AMENITIES
   ========================================================= */
.amen-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 920px){ .amen-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .amen-grid { grid-template-columns: repeat(2,1fr); } }
.amen {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--green-900);
}
.amen svg { width: 22px; height: 22px; color: var(--green-600); flex-shrink: 0; }

/* pricing band */
.price-band {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  margin-top: 30px;
}
.price-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 16px;
  padding: 20px 26px;
  text-align: center;
  min-width: 200px;
}
.price-pill .k { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--green-400); margin-bottom: 6px; }
.price-pill .v { font-family: var(--serif); font-size: 30px; color: #fff; }
.price-pill .v small { font-size: 14px; font-family: var(--sans); color: rgba(255,255,255,0.8); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; gap: 30px; } }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--green-900); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(74,124,89,0.15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }

.contact-side .info-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-side .info-item:last-of-type { border-bottom: 0; }
.contact-side .info-item .ic {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--cream);
  color: var(--green-700);
}
.contact-side .info-item .ic svg { width: 20px; height: 20px; }
.contact-side .info-item h4 { font-size: 14px; color: var(--green-900); margin-bottom: 2px; }
.contact-side .info-item p { font-size: 14.5px; color: var(--muted); }
.contact-side .info-item a { color: var(--green-700); font-weight: 600; }

.side-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.side-actions .btn { justify-content: center; width: 100%; }

.map-wrap {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.map-placeholder {
  height: 360px;
  display: grid; place-items: center;
  text-align: center;
  background: var(--cream-2);
  color: var(--muted);
  padding: 24px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--green-900);
  color: rgba(255,255,255,0.82);
  padding: 56px 0 26px;
  position: relative;
  overflow: hidden;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 26px; } }
.footer-brand {
  font-family: var(--serif);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.site-footer h5 { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green-400); margin-bottom: 14px; }
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-contact { font-size: 14.5px; display: flex; flex-direction: column; gap: 9px; }
.footer-contact span { display: flex; gap: 9px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--green-400); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* floating whatsapp */
.fab-stack {
  position: fixed;
  right: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 12px;
  z-index: 80;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 999px;
  color: #fff;
  display: grid; place-items: center;
  transition: transform .15s;
}
.fab-btn:hover { transform: scale(1.06); }
.fab-btn svg { width: 27px; height: 27px; }
.fab-btn.fab-wa { background: var(--wa); box-shadow: 0 10px 26px rgba(37,211,102,0.45); }
.fab-btn.fab-viber { background: #7360f2; box-shadow: 0 10px 26px rgba(115,96,242,0.45); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(16,28,21,0.92);
  z-index: 120;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close {
  position: absolute; top: 18px; right: 20px;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.15); border: 0; color: #fff;
  font-size: 22px; cursor: pointer;
}
.lightbox .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 999px;
  background: rgba(255,255,255,0.15); border: 0; color: #fff;
  cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-nav.prev { left: 16px; }
.lightbox .lb-nav.next { right: 16px; }
.lightbox .lb-nav svg { width: 24px; height: 24px; }

.thanks {
  display: none;
  background: #eaf6ee;
  border: 1px solid #b9e2c6;
  color: #1f6b3a;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.thanks.show { display: block; }

/* =========================================================
   GOOGLE-STYLE BUSINESS CARD (under the map)
   ========================================================= */
.gmb-card {
  display: block;
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e3e6ea;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 1px 4px rgba(32,33,36,0.10);
  font-family: 'Roboto', var(--sans);
  color: #202124;
}
.gmb-top { display: flex; gap: 16px; justify-content: space-between; align-items: flex-start; }
.gmb-info { min-width: 0; }
.gmb-name { font-size: 20px; font-weight: 600; line-height: 1.2; color: #202124; }
.gmb-sub { font-size: 13.5px; color: #70757a; margin: 3px 0 11px; }
.gmb-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #3c4043; padding: 4px 0;
}
.gmb-row svg { width: 18px; height: 18px; color: #70757a; flex-shrink: 0; margin-top: 1px; }
.gmb-thumb {
  width: 96px; height: 96px; border-radius: 10px; overflow: hidden;
  flex-shrink: 0; background: var(--cream);
}
.gmb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gmb-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #eceef0;
}
.gmb-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid #dadce0; border-radius: 999px;
  padding: 8px 15px; font-size: 13.5px; font-weight: 500;
  color: #1a73e8; background: #fff;
  transition: background .15s, box-shadow .15s;
}
.gmb-chip:hover { background: #f4f8ff; box-shadow: 0 1px 3px rgba(26,115,232,0.18); }
.gmb-chip svg { width: 16px; height: 16px; }
.gmb-chip.g { color: #3c4043; }
.gmb-chip.g:hover { background: #f1f3f4; box-shadow: 0 1px 3px rgba(60,64,67,0.18); }
@media (max-width: 480px) {
  .gmb-thumb { width: 72px; height: 72px; }
  .gmb-name { font-size: 18px; }
}
