:root {
  --jungle: #1a4a2e;
  --palm: #2d6a4f;
  --lime: #74c69d;
  --coral: #f97316;
  --sand: #fef3c7;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8faf9;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.site-header {
  background: var(--jungle);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--jungle);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text strong { display: block; font-size: 17px; font-weight: 800; }
.logo-text span { font-size: 10px; color: var(--lime); letter-spacing: 0.12em; font-weight: 600; }
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a { color: #ccc; text-decoration: none; font-size: 14px; transition: color 0.2s; }
.header-nav a:hover { color: #fff; }
.btn-list {
  background: var(--coral);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px !important;
  transition: background 0.2s !important;
}
.btn-list:hover { background: #ea6c00 !important; }

/* ── Hero ── */
.hero {
  background: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
              url('../images/bynd-hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 56px 20px 64px;
  text-align: center;
}
.hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 900; line-height: 1.15; margin-bottom: 14px; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero p { color: #a8d5b8; font-size: 17px; max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.search-wrap { max-width: 520px; margin: 0 auto; position: relative; }
.search-wrap input {
  width: 100%;
  padding: 16px 56px 16px 22px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  outline: none;
  color: #1a1a1a;
}
.search-wrap input:focus { box-shadow: 0 4px 24px rgba(0,0,0,0.25), 0 0 0 3px rgba(116,198,157,0.4); }
.search-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: var(--coral); border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.search-btn:hover { background: #ea6c00; }
.search-btn svg { width: 18px; height: 18px; color: #fff; stroke: #fff; }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--lime); }
.hero-stat span { font-size: 12px; color: #7ab893; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Filter Bar ── */
.filter-bar {
  background: #fff;
  border-bottom: 1px solid #e8ede9;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid #d4ddd6;
  background: transparent;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s;
  font-family: inherit;
}
.filter-btn:hover { border-color: var(--coral); color: var(--coral); }
.filter-btn.active { background: var(--jungle); color: #fff; border-color: var(--jungle); }

/* ── Grid ── */
.grid-section { max-width: 1200px; margin: 0 auto; padding: 32px 20px 60px; }
.results-info { font-size: 13px; color: #888; margin-bottom: 20px; }
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Card ── */
.listing-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.04);
  border: 1px solid #eef2ef;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.22s, transform 0.22s;
}
.listing-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.14); transform: translateY(-3px); }

.card-cover {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  overflow: hidden;
}
.card-cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.card-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.card-cover-content { position: relative; z-index: 1; width: 100%; }
.card-cover h3 { color: #fff; font-size: 18px; font-weight: 800; line-height: 1.2; }
.card-cat-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  color: #fff;
  backdrop-filter: blur(4px);
  margin-bottom: 6px;
}
.card-price {
  position: absolute; top: 14px; right: 14px; z-index: 1;
  background: rgba(255,255,255,0.92);
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-body { padding: 16px 18px 18px; }
.card-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: #f59e0b; font-size: 15px; letter-spacing: 1px; }
.stars .empty { color: #d1d5db; }
.rating-num { font-weight: 700; font-size: 14px; color: #1a1a1a; }
.review-count { font-size: 12px; color: #999; }
.card-location { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #777; margin-bottom: 10px; }
.card-location svg { width: 13px; height: 13px; flex-shrink: 0; }
.card-excerpt { font-size: 13px; color: #555; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.tag { font-size: 11px; color: #4a6754; background: #e8f5ee; padding: 3px 9px; border-radius: 999px; font-weight: 500; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid #f0f4f1; }
.read-more { font-size: 13px; font-weight: 600; color: var(--coral); }
.card:hover .read-more { text-decoration: underline; }

/* ── No results ── */
.no-results { text-align: center; padding: 80px 20px; }
.no-results .icon { font-size: 48px; margin-bottom: 12px; }
.no-results h3 { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 6px; }
.no-results p { color: #888; font-size: 14px; }

/* ── Footer ── */
.site-footer { background: var(--jungle); color: #fff; padding: 48px 20px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.footer-col p { font-size: 13px; color: #87b898; line-height: 1.65; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #87b898; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 12px; color: #5a7d65; }

/* ── Listing page ── */
.listing-hero {
  height: 340px;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.listing-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.listing-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%, transparent 100%); }
.listing-hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 20px 28px; width: 100%; }
.listing-hero-content .cat-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
  color: #fff; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); margin-bottom: 10px;
}
.listing-hero-content h1 { color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 900; }
.listing-hero-content p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 6px; font-style: italic; }

.listing-main { max-width: 1200px; margin: 0 auto; padding: 40px 20px 80px; }
.listing-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .listing-layout { grid-template-columns: 1fr; } }

.card-box { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #eef2ef; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 20px; }
.card-box h2 { font-size: 18px; font-weight: 800; margin-bottom: 18px; color: #1a1a1a; }
.card-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }

.rating-hero { display: flex; align-items: center; gap: 24px; }
.rating-big { text-align: center; }
.rating-big strong { display: block; font-size: 52px; font-weight: 900; line-height: 1; color: #1a1a1a; }
.rating-big .stars-big { font-size: 22px; color: #f59e0b; letter-spacing: 2px; display: block; margin: 4px 0; }
.rating-big small { font-size: 12px; color: #999; }
.rating-summary { flex: 1; padding-left: 24px; border-left: 1px solid #eee; font-size: 14px; color: #444; line-height: 1.65; font-weight: 500; }

.prose { font-size: 15px; line-height: 1.75; color: #3a3a3a; }
.prose p { margin-bottom: 16px; }
.prose p:last-child { margin-bottom: 0; }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box { background: #edfaf4; border: 1px solid #b8e8d0; border-radius: 14px; padding: 20px; }
.cons-box { background: #fef2f2; border: 1px solid #fcc; border-radius: 14px; padding: 20px; }
.pros-box h3 { color: #166534; margin-bottom: 12px; }
.cons-box h3 { color: #991b1b; margin-bottom: 12px; }
.pros-box ul, .cons-box ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pros-box li { font-size: 13px; color: #166534; display: flex; gap: 8px; align-items: flex-start; }
.cons-box li { font-size: 13px; color: #991b1b; display: flex; gap: 8px; align-items: flex-start; }
.pros-box li::before { content: "✓"; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-box li::before { content: "✗"; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { font-size: 13px; background: #e8f5ee; color: #2d6a4f; padding: 5px 14px; border-radius: 999px; font-weight: 500; }

.sidebar { }
.info-box { background: #fff; border-radius: 16px; padding: 22px; border: 1px solid #eef2ef; box-shadow: 0 2px 8px rgba(0,0,0,0.05); margin-bottom: 14px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #f4f4f4; }
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row .icon { font-size: 18px; width: 26px; flex-shrink: 0; text-align: center; margin-top: 1px; }
.info-row .label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #999; font-weight: 600; margin-bottom: 2px; }
.info-row .value { font-size: 14px; color: #2a2a2a; line-height: 1.45; }

.btn-primary {
  display: block; width: 100%; padding: 15px; background: var(--coral); color: #fff;
  text-align: center; border-radius: 12px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: background 0.2s; margin-bottom: 10px;
}
.btn-primary:hover { background: #ea6c00; }
.btn-secondary {
  display: block; width: 100%; padding: 14px; background: #fff; color: #333;
  text-align: center; border-radius: 12px; font-weight: 600; font-size: 14px;
  text-decoration: none; border: 1.5px solid #ddd; transition: background 0.2s; margin-bottom: 10px;
}
.btn-secondary:hover { background: #f5f5f5; }
.btn-back { display: block; text-align: center; font-size: 13px; color: var(--coral); text-decoration: none; margin-top: 6px; }
.btn-back:hover { text-decoration: underline; }

/* Photo gallery */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.photo-grid img:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }

@media (max-width: 600px) {
  .hero { padding: 40px 16px 48px; }
  .hero-stats { gap: 24px; }
  .header-nav { display: none; }
  .listing-hero { height: 260px; }
  .rating-hero { flex-direction: column; gap: 16px; }
  .rating-summary { border-left: none; padding-left: 0; border-top: 1px solid #eee; padding-top: 16px; }
}

/* ── Header Auth ── */
.auth-user-link { display: flex; align-items: center; gap: 8px; text-decoration: none; color: #fff; }
.auth-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.auth-initials { background: var(--lime); color: var(--jungle); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.auth-user-name { font-size: 13px; font-weight: 600; color: #fff; }
.auth-signout-btn { background: none; border: 1px solid rgba(255,255,255,0.25); color: #ccc; font-size: 12px; padding: 5px 12px; border-radius: 999px; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.auth-signout-btn:hover { border-color: #fff; color: #fff; }
.btn-signin { background: var(--lime); color: var(--jungle) !important; font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: 999px; text-decoration: none; transition: opacity 0.2s; }
.btn-signin:hover { opacity: 0.85; }

/* ── Auth page ── */
.auth-page { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: #f8faf9; }
.auth-card { background: #fff; border-radius: 20px; padding: 40px; width: 100%; max-width: 420px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 1px solid #eef2ef; }
.auth-title { font-size: 24px; font-weight: 900; color: #1a1a1a; margin-bottom: 6px; }
.auth-subtitle { font-size: 14px; color: #777; margin-bottom: 28px; line-height: 1.5; }
.auth-tabs { display: flex; gap: 4px; background: #f3f4f6; border-radius: 10px; padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 8px; border: none; background: none; border-radius: 8px; font-size: 14px; font-weight: 600; color: #777; cursor: pointer; font-family: inherit; transition: all 0.18s; }
.auth-tab.active { background: #fff; color: var(--jungle); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.auth-message { padding: 12px 14px; border-radius: 10px; font-size: 13px; margin-bottom: 16px; }
.auth-msg-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.auth-msg-success { background: #edfaf4; color: #166534; border: 1px solid #b8e8d0; }
.auth-submit-btn { width: 100%; margin-top: 4px; }
.auth-divider { text-align: center; margin: 20px 0; position: relative; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: #e5e7eb; }
.auth-divider span { background: #fff; padding: 0 12px; color: #9ca3af; font-size: 13px; position: relative; }
.btn-google { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 12px; border: 1.5px solid #e5e7eb; border-radius: 10px; background: #fff; font-size: 14px; font-weight: 600; color: #333; cursor: pointer; font-family: inherit; transition: all 0.18s; }
.btn-google:hover { border-color: #9ca3af; background: #f9fafb; }

/* ── Review form ── */
.rf-field { margin-bottom: 16px; }
.rf-label { display: block; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.rf-required { color: var(--coral); }
.rf-input { width: 100%; padding: 10px 14px; border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: 14px; font-family: inherit; color: #1a1a1a; transition: border-color 0.18s; background: #fff; }
.rf-input:focus { outline: none; border-color: var(--palm); }
.rf-textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #e5e7eb; border-radius: 10px; font-size: 14px; font-family: inherit; color: #1a1a1a; resize: vertical; transition: border-color 0.18s; background: #fff; }
.rf-textarea:focus { outline: none; border-color: var(--palm); }
.rf-hint { font-size: 12px; color: #9ca3af; margin-top: 5px; display: block; }
.rf-dims-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.rf-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }
.btn-rf-cancel { padding: 10px 20px; border: 1.5px solid #e5e7eb; border-radius: 10px; background: #fff; font-size: 14px; font-weight: 600; color: #666; cursor: pointer; font-family: inherit; transition: all 0.18s; }
.btn-rf-cancel:hover { border-color: #9ca3af; }
.btn-submit-review { padding: 10px 24px; background: var(--coral); color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background 0.18s; }
.btn-submit-review:hover { background: #ea6c00; }
.btn-submit-review:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Star picker ── */
.sp { display: flex; gap: 3px; }
.sp-star { font-size: 24px; color: #d1d5db; cursor: pointer; transition: color 0.12s; line-height: 1; }
.sp-star.active, .sp-star:hover { color: #f59e0b; }

/* ── Reviews section ── */
.reviews-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.reviews-title-row h2 { margin-bottom: 0; }
.cr-count-badge { background: var(--jungle); color: #fff; font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.review-cta { margin-bottom: 20px; }
.btn-write-review { display: inline-block; padding: 10px 22px; background: var(--jungle); color: #fff; border: none; border-radius: 10px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: inherit; text-decoration: none; transition: background 0.18s; }
.btn-write-review:hover { background: var(--palm); }
.review-signin-prompt { padding: 16px; background: #f8faf9; border-radius: 12px; border: 1px dashed #d4ddd6; text-align: center; }
.reviews-empty { color: #9ca3af; font-size: 14px; padding: 20px 0; }
.reviews-loading { color: #9ca3af; font-size: 14px; }
.review-form { background: #f8faf9; border: 1px solid #e5e7eb; border-radius: 14px; padding: 24px; margin-top: 4px; }

/* ── Community review card ── */
.community-review { padding: 20px 0; border-bottom: 1px solid #f0f4f1; }
.community-review:last-child { border-bottom: none; padding-bottom: 0; }
.cr-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.cr-reviewer { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.cr-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.cr-initials { background: var(--lime); color: var(--jungle); font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.cr-reviewer-info { display: flex; flex-direction: column; gap: 2px; }
.cr-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.cr-ig { font-size: 12px; color: var(--palm); }
.cr-right { text-align: right; }
.cr-stars { font-size: 16px; letter-spacing: 1px; }
.cr-date { font-size: 12px; color: #9ca3af; margin-top: 2px; }
.cr-dims { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.cr-dim { display: flex; align-items: center; gap: 5px; background: #f3f4f6; padding: 4px 10px; border-radius: 999px; }
.cr-dim-label { font-size: 11px; font-weight: 600; color: #555; text-transform: uppercase; letter-spacing: 0.04em; }
.cr-dim-stars { font-size: 11px; }
.cr-text { font-size: 14px; color: #444; line-height: 1.65; margin-bottom: 10px; }
.cr-video { margin: 12px 0; border-radius: 10px; overflow: hidden; aspect-ratio: 16/9; }
.cr-video iframe { width: 100%; height: 100%; border: none; }
.cr-ig-post { display: inline-block; font-size: 13px; color: var(--palm); font-weight: 600; text-decoration: none; margin-top: 6px; }
.cr-ig-post:hover { text-decoration: underline; }

/* ── Profile page ── */
.profile-page { min-height: calc(100vh - 64px); background: #f8faf9; }
.profile-loading { text-align: center; padding: 80px 20px; color: #9ca3af; }
.profile-hero { background: var(--jungle); color: #fff; padding: 40px 20px; }
.profile-hero-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: flex-start; gap: 24px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid rgba(255,255,255,0.3); }
.profile-initials { background: var(--lime); color: var(--jungle); font-size: 28px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.profile-hero-info { flex: 1; }
.profile-name { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.profile-ig { display: inline-flex; align-items: center; gap: 5px; color: var(--lime); font-size: 14px; font-weight: 600; text-decoration: none; margin-bottom: 8px; }
.profile-ig:hover { text-decoration: underline; }
.profile-bio { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 12px; }
.profile-stats { display: flex; gap: 24px; }
.profile-stat strong { display: block; font-size: 22px; font-weight: 900; color: var(--lime); }
.profile-stat span { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.btn-edit-profile { margin-left: auto; padding: 9px 18px; background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 10px; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.18s; flex-shrink: 0; }
.btn-edit-profile:hover { background: rgba(255,255,255,0.22); }
.profile-edit-wrap { background: #fff; border-bottom: 1px solid #e5e7eb; padding: 32px 20px; }
.profile-edit-wrap .profile-section { max-width: 900px; margin: 0 auto; }
.profile-section { max-width: 900px; margin: 0 auto; padding: 32px 20px; }
.profile-section h2 { font-size: 18px; font-weight: 800; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.profile-review-count { background: #e5e7eb; color: #555; font-size: 12px; font-weight: 700; padding: 2px 9px; border-radius: 999px; }
.profile-review-card { background: #fff; border: 1px solid #eef2ef; border-radius: 14px; padding: 18px 20px; margin-bottom: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.prc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.prc-gym { font-size: 15px; font-weight: 700; color: var(--jungle); text-decoration: none; }
.prc-gym:hover { text-decoration: underline; }
.prc-stars { display: flex; align-items: center; gap: 5px; font-size: 15px; }
.prc-score { font-size: 13px; font-weight: 700; color: #555; }
.prc-date { font-size: 12px; color: #9ca3af; margin-top: 8px; }
