/* Borneo RIG Mart — Afterpay-inspired light marketplace UI */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f6f6f7;
  --bg-2: #ffffff;
  --bg-3: #efefef;
  --bg-soft: #f0ebe4;
  --border: #e8e8ea;
  --border-strong: #d8d8dc;
  --text: #111113;
  --text-2: #5c5c66;
  --text-3: #8b8b95;
  --accent: #111113;
  --brand: #e85d04;
  --brand-soft: #fff1e6;
  --green: #0f9d58;
  --green-soft: #e8f7ef;
  --red: #d93025;
  --red-soft: #fdecea;
  --yellow: #b86e00;
  --yellow-soft: #fff6e5;
  --blue: #1a73e8;
  --blue-soft: #e8f0fe;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --nav-h: 64px;
  --shadow: 0 1px 2px rgba(17, 17, 19, 0.04);
  --shadow-md: 0 8px 24px rgba(17, 17, 19, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

.container { max-width: 720px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 960px) { .container { max-width: 1080px; padding: 0 24px; } }

/* ---------- Header (search-first) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 246, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0 8px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo img { height: 32px; width: 32px; border-radius: 8px; }
.logo .logo-text {
  display: none; font-weight: 700; font-size: 15px; letter-spacing: -0.02em;
}
.logo .logo-text span { color: var(--brand); }
@media (min-width: 768px) {
  .logo .logo-text { display: inline; }
}

.header-search { flex: 1; position: relative; }
.header-search form { display: flex; position: relative; }
.header-search .search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--text-3); pointer-events: none;
}
.header-search input {
  width: 100%; background: var(--bg-2); border: 0;
  border-radius: var(--radius-pill); padding: 12px 16px 12px 42px;
  color: var(--text); outline: none; box-shadow: var(--shadow);
  font-size: 15px; font-weight: 500;
}
.header-search input::placeholder { color: var(--text-3); font-weight: 400; }
.header-search input:focus { box-shadow: 0 0 0 2px var(--text); }

.header-links { display: none; gap: 20px; font-size: 14px; font-weight: 500; color: var(--text-2); align-items: center; }
.header-links a:hover { color: var(--text); }
@media (min-width: 768px) { .header-links { display: flex; } }

/* ---------- Bottom nav — outline icons ---------- */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: flex; background: var(--bg-2);
  border-top: 1px solid var(--border);
  height: var(--nav-h); padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 10px; font-weight: 500; color: var(--text-3);
}
.bottom-nav a.active { color: var(--text); }
.bottom-nav svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bottom-nav a.active svg { stroke-width: 2.1; }
main { padding-bottom: calc(var(--nav-h) + 28px); }
@media (min-width: 768px) {
  .bottom-nav { display: none; }
  main { padding-bottom: 48px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: var(--radius-pill); padding: 12px 20px;
  font-weight: 600; font-size: 14px; transition: .15s; text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #2a2a2e; }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { background: var(--bg-3); }
.btn-secondary { background: var(--bg-3); color: var(--text); }
.btn-secondary:hover { background: var(--border-strong); }
.btn-danger { background: var(--red); color: #fff; }
.btn-success { background: var(--green); color: #fff; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ---------- Cards / sections ---------- */
.card {
  background: var(--bg-2); border: 0; border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.section { margin: 28px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: 20px; font-weight: 700; letter-spacing: -0.03em;
}
.section-head a, .section-head .chev {
  color: var(--text); display: inline-flex; align-items: center;
}
.section-head .chev svg { width: 18px; height: 18px; }

/* ---------- Category pills (Afterpay tags) ---------- */
.cat-scroll {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 6px;
  scrollbar-width: none; margin: 0 -16px; padding-left: 16px; padding-right: 16px;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0; display: inline-flex; align-items: center;
  background: var(--bg-3); border: 0; border-radius: var(--radius-pill);
  padding: 9px 16px; font-size: 14px; font-weight: 500; color: var(--text);
  transition: .15s;
}
.cat-chip:hover, .cat-chip.active { background: var(--text); color: #fff; }
.cat-chip .icon { display: none; }

/* ---------- Promo banner ---------- */
.promo-banner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 12px;
  background: var(--bg-soft); border-radius: 20px; overflow: hidden;
  min-height: 148px; margin-top: 14px; position: relative;
  text-decoration: none; color: inherit;
}
.promo-banner .copy {
  padding: 22px 8px 22px 20px; display: flex; flex-direction: column; justify-content: center;
}
.promo-banner .eyebrow {
  font-size: 11px; font-weight: 600; color: var(--text-2);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px;
}
.promo-banner h2 {
  font-size: 22px; font-weight: 800; letter-spacing: -0.04em; line-height: 1.15;
}
.promo-banner p {
  margin-top: 8px; font-size: 13px; color: var(--text-2); font-weight: 500;
}
.promo-banner .media {
  position: relative; min-height: 148px;
  background: linear-gradient(160deg, #e8dfd4 0%, #d9cfc3 100%);
  display: flex; align-items: center; justify-content: center;
}
.promo-banner .media img {
  width: 78%; height: auto; object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.promo-banner .ad-tag {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(6px);
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px;
  color: var(--text-2);
}
@media (min-width: 768px) {
  .promo-banner { min-height: 180px; }
  .promo-banner h2 { font-size: 28px; }
}

/* ---------- Brand circles ---------- */
.brand-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 10px;
}
@media (min-width: 640px) { .brand-grid { grid-template-columns: repeat(8, 1fr); } }
.brand-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.brand-item .circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-2); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; letter-spacing: -0.02em;
  color: var(--text); border: 1px solid var(--border);
  transition: transform .15s;
}
.brand-item .circle.category-icon svg {
  width: 26px; height: 26px; color: var(--text);
}
.brand-item:hover .circle { transform: scale(1.04); }
.brand-item .label {
  font-size: 11px; font-weight: 500; color: var(--text-2);
  max-width: 72px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ---------- Product grid & card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 960px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: transparent; border: 0; border-radius: 0;
  overflow: visible; display: flex; flex-direction: column;
}
.product-card:hover { transform: none; }
.product-card .thumb {
  aspect-ratio: 1; background: var(--bg-2); position: relative;
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .thumb .cond {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,255,255,.92); color: var(--text);
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px;
}
.product-card .thumb .sold-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,.72); display: flex;
  align-items: center; justify-content: center; font-weight: 700; letter-spacing: .08em; color: var(--text);
  font-size: 13px;
}
.product-card .body { padding: 10px 4px 4px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.product-card .name {
  font-size: 13.5px; font-weight: 500; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 36px; color: var(--text);
}
.product-card .price { color: var(--text); font-weight: 700; font-size: 15px; letter-spacing: -0.02em; }
.product-card .meta { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.product-card .badges { margin-top: 2px; }

/* Popular row — larger cards */
.popular-scroll {
  display: flex; gap: 12px; overflow-x: auto; scrollbar-width: none;
  margin: 0 -16px; padding: 0 16px 4px;
}
.popular-scroll::-webkit-scrollbar { display: none; }
.popular-card {
  flex: 0 0 72%; max-width: 280px; text-decoration: none; color: inherit;
}
@media (min-width: 640px) { .popular-card { flex-basis: 240px; } }
.popular-card .thumb {
  aspect-ratio: 4/3; border-radius: 18px; overflow: hidden;
  background: var(--bg-2); position: relative; box-shadow: var(--shadow);
}
.popular-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.popular-card .body { padding: 10px 4px 0; }
.popular-card .name { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.popular-card .price { font-weight: 700; font-size: 15px; }

/* ---------- Badges ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 5px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; background: var(--bg-3); color: var(--text-2); border: 0;
}
.badge.b-green { color: var(--green); background: var(--green-soft); }
.badge.b-orange { color: var(--brand); background: var(--brand-soft); }
.badge.b-blue { color: var(--blue); background: var(--blue-soft); }
.badge.b-yellow { color: var(--yellow); background: var(--yellow-soft); }
.badge.b-red { color: var(--red); background: var(--red-soft); }

.pill { display: inline-block; padding: 4px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.pill-green { background: var(--green-soft); color: var(--green); }
.pill-orange { background: var(--brand-soft); color: var(--brand); }
.pill-red { background: var(--red-soft); color: var(--red); }
.pill-blue { background: var(--blue-soft); color: var(--blue); }
.pill-gray { background: var(--bg-3); color: var(--text-2); }
.pill-yellow { background: var(--yellow-soft); color: var(--yellow); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px; }
.form-control {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  border-radius: var(--radius-sm); padding: 12px 14px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { border-color: var(--text); box-shadow: 0 0 0 3px rgba(17,17,19,.06); }
textarea.form-control { resize: vertical; min-height: 90px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%238b8b95' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-check { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-2); }
.form-check input { margin-top: 3px; accent-color: var(--text); width: 16px; height: 16px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ---------- Alerts ---------- */
.alert { padding: 12px 14px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 14px; border: 0; }
.alert-success { background: var(--green-soft); color: #0b6b3c; }
.alert-error { background: var(--red-soft); color: #8f1d16; }
.alert-info { background: var(--blue-soft); color: #1248a0; }

/* ---------- Legacy hero (kept for non-home pages if used) ---------- */
.hero {
  background: var(--bg-soft); border: 0; border-radius: 20px;
  padding: 26px 20px; margin-top: 8px; position: relative; overflow: hidden;
}
.hero h1 { font-size: 24px; font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; }
.hero h1 span { color: var(--brand); }
.hero p { color: var(--text-2); font-size: 14px; margin: 8px 0 16px; max-width: 480px; }
.hero .actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Product detail ---------- */
.gallery { position: relative; }
.gallery .main-img {
  aspect-ratio: 1; background: var(--bg-2); border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery .main-img img { width: 100%; height: 100%; object-fit: contain; }
.gallery .thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.gallery .thumbs img {
  width: 62px; height: 62px; object-fit: cover; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0; background: var(--bg-2);
}
.gallery .thumbs img.active { border-color: var(--text); }

.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table td { padding: 10px 4px; border-bottom: 1px solid var(--border); vertical-align: top; }
.spec-table td:first-child { color: var(--text-3); width: 42%; }

.detail-layout { display: grid; gap: 20px; }
@media (min-width: 900px) { .detail-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.price-big { color: var(--text); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }

.cta-sticky {
  position: fixed; bottom: var(--nav-h); left: 0; right: 0; z-index: 40;
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center;
}
@media (min-width: 768px) { .cta-sticky { position: static; padding: 0; border: 0; background: transparent; } }

/* ---------- Timeline ---------- */
.timeline { list-style: none; position: relative; padding-left: 24px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.timeline li { position: relative; padding: 0 0 18px; }
.timeline li::before {
  content: ""; position: absolute; left: -24px; top: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--bg-2); border: 2px solid var(--border-strong);
}
.timeline li.done::before { background: var(--green); border-color: var(--green); }
.timeline li.current::before { background: var(--text); border-color: var(--text); box-shadow: 0 0 0 4px rgba(17,17,19,.08); }
.timeline .t-title { font-weight: 600; font-size: 14px; }
.timeline .t-meta { font-size: 12px; color: var(--text-3); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table { width: 100%; border-collapse: collapse; font-size: 13.5px; white-space: nowrap; }
.table th { text-align: left; color: var(--text-3); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.table th, .table td { padding: 12px 10px; border-bottom: 1px solid var(--border); }
.table tbody tr:hover { background: rgba(0,0,0,.015); }

/* ---------- Filters ---------- */
.filter-bar { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar > * { flex-shrink: 0; }
details.filter-panel { background: var(--bg-2); border: 0; border-radius: var(--radius); margin-bottom: 14px; box-shadow: var(--shadow); }
details.filter-panel summary { padding: 14px 16px; font-weight: 600; cursor: pointer; font-size: 14px; }
details.filter-panel .panel-body { padding: 0 16px 16px; display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { details.filter-panel .panel-body { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 24px 0; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: 8px 13px; border-radius: var(--radius-pill); border: 0;
  font-size: 13.5px; color: var(--text-2); background: var(--bg-2); font-weight: 500;
}
.pagination .active { background: var(--text); color: #fff; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border); margin-top: 40px; padding: 28px 0 40px;
  color: var(--text-3); font-size: 13px; background: var(--bg-2);
}
.site-footer .cols { display: grid; gap: 20px; }
@media (min-width: 768px) { .site-footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h4 { color: var(--text); font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.site-footer a { display: block; padding: 3px 0; font-weight: 500; }
.site-footer a:hover { color: var(--text); }

.countdown { font-variant-numeric: tabular-nums; font-weight: 800; font-size: 22px; color: var(--text); letter-spacing: 1px; }

.empty { text-align: center; padding: 48px 16px; color: var(--text-3); }
.empty .icon { font-size: 40px; margin-bottom: 10px; }

@keyframes shimmer { 0% { opacity: .5; } 50% { opacity: 1; } 100% { opacity: .5; } }
.skeleton { background: var(--bg-3); border-radius: var(--radius-sm); animation: shimmer 1.4s infinite; }

.auth-wrap { max-width: 420px; margin: 30px auto; }
.auth-wrap .logo-center { display: flex; justify-content: center; margin-bottom: 18px; }
.auth-wrap .logo-center img { height: 72px; border-radius: 16px; }

.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: var(--text-2); }
.summary-row.total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 12px; color: var(--text); font-weight: 700; font-size: 16px; }
.summary-row.total .amount { color: var(--text); }

/* ---------- Admin (same light system) ---------- */
.admin-layout { display: flex; min-height: 100vh; background: var(--bg); }
.admin-sidebar {
  width: 240px; background: var(--bg-2); border-right: 1px solid var(--border);
  padding: 18px 12px; position: fixed; top: 0; bottom: 0; overflow-y: auto; z-index: 60;
  transform: translateX(-100%); transition: transform .2s;
}
.admin-sidebar.open { transform: none; }
.admin-sidebar .logo { margin-bottom: 20px; padding: 0 8px; }
.admin-sidebar .logo .logo-text { display: inline; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px;
  color: var(--text-2); font-size: 14px; font-weight: 500; margin-bottom: 2px;
}
.admin-sidebar nav a:hover { background: var(--bg); color: var(--text); }
.admin-sidebar nav a.active { background: var(--text); color: #fff; font-weight: 600; }
.admin-sidebar .nav-label { font-size: 11px; text-transform: uppercase; color: var(--text-3); letter-spacing: .06em; padding: 14px 12px 6px; font-weight: 600; }
.admin-main { flex: 1; padding: 18px 16px 60px; min-width: 0; }
.admin-topbar { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.admin-topbar h1 { font-size: 20px; font-weight: 700; flex: 1; letter-spacing: -0.02em; }
.sidebar-toggle { background: var(--bg-2); border: 1px solid var(--border); color: var(--text); border-radius: 12px; padding: 8px 12px; }
.sidebar-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.35); z-index: 55; display: none; }
.sidebar-backdrop.show { display: block; }

@media (min-width: 1024px) {
  .admin-sidebar { transform: none; position: sticky; height: 100vh; }
  .sidebar-toggle, .sidebar-backdrop { display: none !important; }
  .admin-main { padding: 24px 28px 60px; }
}

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { background: var(--bg-2); border: 0; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.stat-card .num { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.stat-card .label { font-size: 12px; color: var(--text-3); margin-top: 2px; font-weight: 500; }
.stat-card.alert-stat .num { color: var(--red); }

.grid-2 { display: grid; gap: 16px; }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; align-items: start; } }

.divider { border: 0; border-top: 1px solid var(--border); margin: 16px 0; }
.text-muted { color: var(--text-3); }
.text-small { font-size: 12.5px; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; }
.flex { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
h1.page-title { font-size: 24px; font-weight: 800; margin: 18px 0 4px; letter-spacing: -0.03em; }
.breadcrumb { font-size: 12.5px; color: var(--text-3); margin-top: 14px; font-weight: 500; }
.breadcrumb a:hover { color: var(--text); }

/* Soft info strip for Rekber */
.info-strip {
  background: var(--bg-2); border-radius: 18px; padding: 18px;
  box-shadow: var(--shadow); display: grid; gap: 12px;
}
.info-strip .row { display: flex; gap: 12px; align-items: flex-start; }
.info-strip .mark {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-strip .mark svg { width: 18px; height: 18px; stroke: var(--text); fill: none; stroke-width: 1.8; }
.info-strip b { display: block; font-size: 14px; margin-bottom: 2px; }
.info-strip p { font-size: 13px; color: var(--text-2); margin: 0; }
