/* ========================================
   GOLDEFFF — Premium Design System
   ======================================== */

:root {
  --bg:          #0a0a0a;
  --bg-card:     #131313;
  --bg-card2:    #1a1a1a;
  --gold:        #C9A84C;
  --gold-light:  #dfc27a;
  --gold-dark:   #a8883a;
  --gold-muted:  rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.2);
  --text:        #f0e8d8;
  --text-muted:  #8a8070;
  --text-sub:    #c8bfaf;
  --white:       #ffffff;
  --success:     #22c55e;
  --warning:     #f59e0b;
  --danger:      #ef4444;
  --info:        #3b82f6;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 32px rgba(201,168,76,0.15);
  --transition:  0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 20px; }

.page-content { padding: 40px 0 80px; }


/* ── INVESTOR DEMO BANNER ── */
.demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 16px;
  background: linear-gradient(90deg, rgba(201,168,76,.18), rgba(201,168,76,.06));
  border-bottom: 1px solid var(--gold-border);
  color: var(--text-sub);
  font-size: .78rem;
  text-align: center;
}
.demo-banner strong { color: var(--gold-light); letter-spacing: .4px; }
@media (max-width: 640px) {
  .demo-banner { align-items: flex-start; flex-direction: column; gap: 0; }
}

/* ── NAVIGATION ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  color: var(--text-sub);
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: var(--gold-muted);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ── HERO ── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── SECTION ── */
.section { padding: 60px 0; }
.section-header { margin-bottom: 36px; }
.section-header h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.section-header p { color: var(--text-muted); }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}
.card-body { padding: 24px; }
.card-footer { padding: 16px 24px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ── LISTING CARD ── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.listing-card { cursor: pointer; }
.listing-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-card2);
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.05); }
.listing-card-img .category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.listing-card-body { padding: 16px 20px 20px; }
.listing-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.listing-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.listing-meta span { display: flex; align-items: center; gap: 4px; }
.listing-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.listing-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-gold:hover { background: var(--gold-light); color: #0a0a0a; transform: translateY(-1px); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline-gold:hover { background: var(--gold-muted); color: var(--gold-light); }

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-sub);
  border: 1px solid rgba(255,255,255,0.08);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--text); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #dc2626; }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #16a34a; }

.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-control {
  width: 100%;
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  font-family: inherit;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-success  { background: rgba(34,197,94,0.12);  color: #22c55e; border: 1px solid rgba(34,197,94,0.2); }
.badge-warning  { background: rgba(245,158,11,0.12); color: #f59e0b; border: 1px solid rgba(245,158,11,0.2); }
.badge-danger   { background: rgba(239,68,68,0.12);  color: #ef4444; border: 1px solid rgba(239,68,68,0.2); }
.badge-info     { background: rgba(59,130,246,0.12); color: #3b82f6; border: 1px solid rgba(59,130,246,0.2); }
.badge-primary  { background: var(--gold-muted);     color: var(--gold); border: 1px solid var(--gold-border); }
.badge-secondary { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid rgba(255,255,255,0.08); }

/* ── STATS CARDS ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.stat-card.gold-accent { border-color: var(--gold-border); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.stat-value { font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ── PROGRESS BAR ── */
.progress-wrapper { margin: 20px 0; }
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 4px;
}
.progress-step-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  flex: 1;
  line-height: 1.3;
}
.progress-step-label.done { color: var(--gold); }
.progress-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: 100px;
  transition: width 0.8s ease;
}
.progress-percent {
  text-align: right;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

/* ── TABLE ── */
.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}
tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
  color: var(--text-sub);
}
tbody tr:hover { background: rgba(255,255,255,0.02); }
tbody tr:last-child td { border-bottom: none; }

/* ── PANEL LAYOUT ── */
.panel-layout { display: flex; min-height: 100vh; }
.panel-sidebar {
  width: 250px;
  flex-shrink: 0;
  background: var(--bg-card);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.panel-main { flex: 1; padding: 32px; min-width: 0; }

.sidebar-user {
  padding: 0 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 16px;
}
.sidebar-user-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.sidebar-user-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.sidebar-user-role { font-size: 0.75rem; color: var(--gold); }

.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all var(--transition);
  border-left: 2px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--gold);
  background: var(--gold-muted);
  border-left-color: var(--gold);
}
.sidebar-nav .nav-section {
  padding: 16px 20px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.panel-title { font-size: 1.4rem; font-weight: 700; }
.panel-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

/* ── ALERTS ── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.alert-success { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; }
.alert-danger  { background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2);  color: #f87171; }
.alert-info    { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.2); color: #60a5fa; }
.alert-warning { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); color: #fbbf24; }

/* ── HOW IT WORKS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.step-number {
  width: 48px; height: 48px;
  background: var(--gold-muted);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── GOLD DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
  margin: 48px 0;
}

/* ── ICON BOX ── */
.icon-box {
  width: 48px; height: 48px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── ADVANTAGE CARDS ── */
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.advantage-card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 20px;
  align-items: flex-start;
}
.advantage-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.advantage-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; max-width: 280px; line-height: 1.7; }
.footer-links h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 14px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── DETAIL PAGE ── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.detail-images { position: sticky; top: 84px; }
.detail-img-main {
  aspect-ratio: 4/3;
  background: var(--bg-card2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 12px;
}
.detail-img-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-thumbs { display: flex; gap: 8px; }
.detail-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.detail-thumb.active, .detail-thumb:hover { border-color: var(--gold); }
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-info-card { position: sticky; top: 84px; }
.detail-info-card .card-body { padding: 28px; }
.detail-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.detail-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.detail-spec {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.8rem;
  color: var(--text-sub);
}
.detail-spec span { color: var(--gold); font-weight: 600; }
.detail-price { font-size: 2rem; font-weight: 800; color: var(--gold); margin: 16px 0 4px; }
.detail-saving {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--success);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.detail-desc { font-size: 0.9rem; color: var(--text-sub); line-height: 1.8; margin: 20px 0; }
.detail-sep { height: 1px; background: rgba(255,255,255,0.05); margin: 20px 0; }
.seller-row { display: flex; align-items: center; gap: 12px; }
.seller-avatar {
  width: 40px; height: 40px;
  background: var(--gold-muted);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
}
.seller-info .label { font-size: 0.75rem; color: var(--text-muted); }
.seller-info .name  { font-size: 0.9rem; font-weight: 600; }

/* ── GUARANTEE BOXES ── */
.guarantee-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.guarantee-box {
  text-align: center;
  padding: 12px 8px;
  background: var(--bg-card2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}
.guarantee-box .icon { font-size: 1.2rem; margin-bottom: 4px; }
.guarantee-box p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

/* ── AUTH PAGES ── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo .logo-text { font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.auth-logo .logo-sub  { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.auth-card h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.auth-card p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.auth-divider { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin: 20px 0; }
.auth-link { text-align: center; font-size: 0.88rem; color: var(--text-muted); margin-top: 20px; }

/* ── UPLOAD AREA ── */
.upload-area {
  border: 2px dashed var(--gold-border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--gold-muted);
}
.upload-area:hover { border-color: var(--gold); }
.upload-area p { font-size: 0.85rem; color: var(--text-muted); margin-top: 8px; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; color: var(--text-sub); }
.empty-state p  { font-size: 0.88rem; color: var(--text-muted); }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h3 { font-size: 1.1rem; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.3rem; cursor: pointer; }
.modal-close:hover { color: var(--text); }

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.search-input-wrap { flex: 1; min-width: 200px; }
.search-input-wrap .form-control { background: var(--bg-card2); }
.search-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.search-filters select { background: var(--bg-card2); border: 1px solid rgba(255,255,255,0.08); color: var(--text); padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.88rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open, .nav-actions.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--gold-border);
    padding: 16px;
    gap: 4px;
    z-index: 99;
  }
  .nav-actions.open { flex-direction: row; flex-wrap: wrap; top: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-images { position: static; }
  .detail-info-card { position: static; }
  .guarantee-row { grid-template-columns: 1fr; }
  .panel-layout { flex-direction: column; }
  .panel-sidebar {
    width: 100%;
    height: auto;
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 12px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .sidebar-user { display: none; }
  .sidebar-nav { display: flex; flex-direction: row; }
  .sidebar-nav a { white-space: nowrap; border-left: none; border-bottom: 2px solid transparent; }
  .sidebar-nav a.active, .sidebar-nav a:hover { border-left: none; border-bottom-color: var(--gold); }
  .sidebar-nav .nav-section { display: none; }
  .panel-main { padding: 20px 16px; }
  .hero h1 { font-size: 1.8rem; }
}


/* GOLDEFF Demo v2 — eksik ürün görselleri için kurumsal temsili kartlar */
.listing-placeholder,
.detail-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(214, 177, 72, .20), transparent 32%),
    linear-gradient(145deg, #17140d 0%, #0d0d0d 55%, #17130a 100%);
  isolation: isolate;
}

.listing-placeholder::before,
.detail-placeholder::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(214, 177, 72, .22);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(214, 177, 72, .10);
  z-index: -1;
}

.listing-placeholder::after,
.detail-placeholder::after {
  content: "GOLDEFF";
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: .58rem;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .22);
}

.listing-placeholder-icon {
  color: var(--gold);
  font-size: 4.25rem;
  line-height: 1;
  text-shadow: 0 0 28px rgba(214, 177, 72, .45);
  margin-bottom: 10px;
}

.listing-placeholder-label {
  color: #f1dfaa;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.listing-placeholder-sub {
  margin-top: 5px;
  max-width: 82%;
  color: rgba(255, 255, 255, .42);
  font-size: .62rem;
}

.detail-placeholder {
  min-height: 440px;
  padding: 42px;
}

.detail-placeholder-icon {
  color: var(--gold);
  font-size: 7rem;
  line-height: 1;
  text-shadow: 0 0 45px rgba(214, 177, 72, .38);
  margin-bottom: 18px;
}

.detail-placeholder-label {
  color: #f1dfaa;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.detail-placeholder-title {
  margin-top: 10px;
  max-width: 500px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
}

.detail-placeholder-sub {
  margin-top: 9px;
  max-width: 440px;
  color: rgba(255, 255, 255, .48);
  font-size: .78rem;
  line-height: 1.55;
}

.listing-placeholder--kolye .listing-placeholder-icon,
.listing-placeholder--kolye .detail-placeholder-icon { transform: rotate(4deg); }
.listing-placeholder--bilezik .listing-placeholder-icon,
.listing-placeholder--bilezik .detail-placeholder-icon { transform: scaleX(1.15); }
.listing-placeholder--kupe .listing-placeholder-icon,
.listing-placeholder--kupe .detail-placeholder-icon { letter-spacing: .18em; }
.listing-placeholder--set .listing-placeholder-icon,
.listing-placeholder--set .detail-placeholder-icon { filter: drop-shadow(0 0 12px rgba(214, 177, 72, .35)); }

.demo-login-box {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(214, 177, 72, .22);
  border-radius: 12px;
  background: rgba(214, 177, 72, .055);
}

.demo-login-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo-login-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.demo-login-btn {
  appearance: none;
  border: 1px solid rgba(214, 177, 72, .20);
  border-radius: 10px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.demo-login-btn:hover {
  border-color: rgba(214, 177, 72, .60);
  background: rgba(214, 177, 72, .08);
  transform: translateY(-1px);
}

.demo-login-role {
  display: block;
  color: #f1dfaa;
  font-size: .76rem;
  font-weight: 800;
}

.demo-login-mail,
.demo-login-pass {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
  font-size: .66rem;
  overflow-wrap: anywhere;
}

.demo-login-note {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: .68rem;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .demo-login-grid { grid-template-columns: 1fr; }
  .detail-placeholder { min-height: 320px; padding: 24px; }
  .detail-placeholder-icon { font-size: 5rem; }
}


/* V5 - ürün fiyatı altındaki sade değer satırları */
.detail-value-lines {
  margin: 10px 0 20px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.detail-value-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
}
.detail-value-line span {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.55px;
}
.detail-value-line strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .detail-value-line { gap: 10px; }
  .detail-value-line span { font-size: 0.66rem; }
  .detail-value-line strong { font-size: 0.82rem; }
}

/* V7 - login demo kartları ve ürün fiyat bilgi kutusu */
.auth-card--wide {
  max-width: 520px;
}

.demo-login-box {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(214, 177, 72, .24);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(214, 177, 72, .08), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.demo-login-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.demo-login-title {
  color: var(--gold);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0;
}

.demo-login-subtitle {
  color: var(--text-muted);
  font-size: .74rem;
}

.demo-login-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.demo-login-grid--single {
  grid-template-columns: 1fr;
}

.demo-login-btn {
  appearance: none;
  border: 1px solid rgba(214, 177, 72, .16);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: rgba(13, 13, 15, .72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.demo-login-btn:hover,
.demo-login-btn.is-active {
  border-color: rgba(214, 177, 72, .58);
  background: rgba(214, 177, 72, .10);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.demo-login-btn--featured {
  border-color: rgba(214, 177, 72, .38);
  background: linear-gradient(180deg, rgba(214,177,72,.12), rgba(255,255,255,.03));
}

.demo-login-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.demo-login-role {
  display: block;
  color: #f3dfac;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.25;
}

.demo-login-badge {
  flex-shrink: 0;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 800;
  color: #1a1608;
  background: var(--gold);
}

.demo-login-credentials {
  display: grid;
  gap: 7px;
}

.demo-login-credential-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.demo-login-label {
  color: var(--text-muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.demo-login-value {
  color: var(--text);
  font-size: .76rem;
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.demo-login-hint {
  margin-top: 10px;
  font-size: .68rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.demo-login-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--text-muted);
  font-size: .72rem;
  line-height: 1.6;
}

.detail-value-box {
  margin: 14px 0 20px;
  padding: 16px;
  border: 1px solid rgba(214, 177, 72, .22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(214, 177, 72, .08), rgba(255,255,255,.02));
}

.detail-value-grid {
  display: grid;
  gap: 10px;
}

.detail-value-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}

.detail-value-line span {
  color: #efe2b8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.35;
}

.detail-value-line strong {
  color: var(--text);
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .auth-card--wide {
    max-width: 100%;
  }

  .demo-login-topline,
  .demo-login-credential-row,
  .detail-value-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-login-value,
  .detail-value-line strong {
    text-align: left;
  }

  .detail-value-line {
    gap: 6px;
  }
}

/* V8 - sade demo UI butonları, fiyat bilgi notları ve özel logo */
.site-logo-img {
  display: block;
  width: auto;
  height: 36px;
  max-width: 190px;
  object-fit: contain;
}
.site-logo-img--footer { height: 32px; max-width: 170px; }
.auth-brand-link { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.auth-brand-logo { display: block; width: auto; height: 54px; max-width: 260px; object-fit: contain; }

.demo-login-box--compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.demo-ui-btn {
  appearance: none;
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(214, 177, 72, .28);
  border-radius: 12px;
  background: rgba(214, 177, 72, .06);
  color: #f3e8cb;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.demo-ui-btn:hover,
.demo-ui-btn.is-active {
  border-color: rgba(214, 177, 72, .72);
  background: rgba(214, 177, 72, .14);
  transform: translateY(-1px);
}

.detail-value-box--notes {
  margin: 12px 0 18px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
}

.detail-value-grid--notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.detail-value-note {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(214, 177, 72, .13);
  border-radius: 9px;
  background: rgba(214, 177, 72, .035);
}

.detail-value-note span,
.detail-value-note strong {
  display: block;
}

.detail-value-note span {
  color: var(--text-muted);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.detail-value-note strong {
  margin-top: 4px;
  color: var(--text-sub);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.detail-value-note:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-width: 520px) {
  .site-logo-img { height: 31px; max-width: 155px; }
  .auth-brand-logo { height: 46px; max-width: 220px; }
  .demo-ui-btn { min-height: 50px; font-size: .78rem; }
  .detail-value-grid--notes { grid-template-columns: 1fr 1fr; gap: 7px; }
  .detail-value-note { padding: 8px 9px; }
  .detail-value-note span { font-size: .58rem; }
  .detail-value-note strong { font-size: .72rem; }
}

/* V11 - ana sayfa CTA ve detay bilgi kutuları düzeni */
.hero-secondary-btn {
  min-width: 220px;
  background: rgba(255,255,255,0.02);
  color: var(--gold);
  border: 1px solid rgba(214, 177, 72, .28);
}
.hero-secondary-btn:hover {
  background: rgba(214, 177, 72, .10);
  color: #f5e5b8;
}
.hero-demo-action {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}
.hero-demo-btn {
  min-width: 260px;
  letter-spacing: .05em;
  font-weight: 800;
}
.stats-section {
  padding: 0 0 26px;
}
.current-listings-section {
  padding-top: 28px;
}
.divider--tight {
  margin: 22px 0;
}

.detail-value-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.detail-value-column {
  display: grid;
  gap: 8px;
  align-content: start;
}

@media (max-width: 720px) {
  .hero-actions {
    gap: 10px;
  }
  .hero-secondary-btn,
  .hero-demo-btn {
    width: 100%;
    min-width: 0;
  }
  .hero-demo-action {
    margin-top: 10px;
  }
}

@media (max-width: 520px) {
  .detail-value-columns {
    grid-template-columns: 1fr;
  }
}

/* V12 - hero buton hizaları ve Neden GOLDEFF üst boşluğu */
.hero-actions {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.hero-actions .btn,
.hero-demo-action .btn {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  padding: 15px 24px;
}

.hero-actions .btn {
  width: 100%;
  min-width: 0;
}

.hero-demo-action {
  width: min(100%, 520px);
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
}

.hero-demo-action .btn {
  width: 100%;
  min-width: 0;
}

.current-listings-section {
  padding-bottom: 24px;
}

.current-listings-section + .divider {
  margin: 12px 0;
}

.current-listings-section + .divider + .section {
  padding-top: 28px;
}

@media (max-width: 640px) {
  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-demo-action {
    width: 100%;
    margin-top: 10px;
  }

  .hero-actions .btn,
  .hero-demo-action .btn {
    min-height: 56px;
    padding: 13px 18px;
  }
}

/* V13 - hero aksiyonlarını referans yerleşime göre kompaktlaştır */
.hero-actions,
.hero-demo-action {
  width: min(100%, 520px);
}

.hero-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-actions .btn,
.hero-demo-action .btn {
  min-height: 58px;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
}

.hero-demo-action {
  margin-top: 14px;
}

@media (max-width: 560px) {
  .hero-actions,
  .hero-demo-action {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .hero-demo-action .btn {
    min-height: 54px;
    padding: 0 16px;
  }

  .hero-demo-action {
    margin-top: 10px;
  }
}

/* V15 - siparişte sıradaki görev ve pratik demo hesap geçişi */
.next-task-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 177, 72, .32);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(214,177,72,.11), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.next-task-card--done {
  border-color: rgba(34,197,94,.25);
  background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(255,255,255,.02));
}
.next-task-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(214,177,72,.12);
  border: 1px solid rgba(214,177,72,.20);
  font-size: 1.25rem;
}
.next-task-card--done .next-task-icon {
  background: rgba(34,197,94,.10);
  border-color: rgba(34,197,94,.18);
}
.next-task-copy { min-width: 0; }
.next-task-eyebrow {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.next-task-card--done .next-task-eyebrow { color: var(--success); }
.next-task-title {
  color: var(--text);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.35;
}
.next-task-description {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: .80rem;
  line-height: 1.55;
}
.next-task-button {
  min-width: 154px;
  justify-content: center;
  text-align: center;
}
.demo-prefill-note {
  margin-bottom: 16px;
  padding: 11px 13px;
  border: 1px solid rgba(214,177,72,.22);
  border-radius: 10px;
  background: rgba(214,177,72,.07);
  color: var(--text-sub);
  font-size: .78rem;
  line-height: 1.45;
}
.demo-prefill-note strong { color: var(--gold); }

@media (max-width: 720px) {
  .next-task-card {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .next-task-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 440px) {
  .next-task-card {
    padding: 15px;
    gap: 12px;
  }
  .next-task-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .next-task-title { font-size: .90rem; }
  .next-task-description { font-size: .75rem; }
}

/* V18 - demo başlangıç notu ve sade ilan listesi */
.demo-start-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 177, 72, .30);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(214, 177, 72, .10), rgba(214, 177, 72, .045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.demo-start-note strong {
  color: #f4e8c9;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.45;
}
.demo-start-note span {
  color: var(--text-muted);
  font-size: .84rem;
  line-height: 1.55;
}
@media (max-width: 560px) {
  .demo-start-note {
    padding: 15px 16px;
    margin-bottom: 22px;
  }
  .demo-start-note strong { font-size: .88rem; }
  .demo-start-note span { font-size: .78rem; }
}

/* V19 - tüm sipariş görev ekranlarında ortak ilerleme kartı */
.order-progress-card {
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid rgba(214, 177, 72, .22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(214, 177, 72, .055), rgba(255, 255, 255, .018));
}

.order-progress-card--cancelled {
  border-color: rgba(239, 68, 68, .28);
  background: rgba(239, 68, 68, .035);
}

.order-progress-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.order-progress-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.order-progress-header > span {
  color: var(--gold);
  font-size: .84rem;
  font-weight: 800;
  white-space: nowrap;
}

.order-progress-card--cancelled .order-progress-header > span {
  color: var(--danger);
}

.order-progress-track {
  margin-bottom: 16px;
}

.order-progress-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.order-progress-step {
  min-width: 0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 10px;
  background: rgba(255, 255, 255, .018);
}

.order-progress-step.is-done {
  border-color: rgba(214, 177, 72, .20);
  background: rgba(214, 177, 72, .06);
}

.order-progress-step.is-active {
  border-color: rgba(214, 177, 72, .72);
  background: rgba(214, 177, 72, .14);
  box-shadow: inset 0 0 0 1px rgba(214, 177, 72, .08);
}

.order-progress-step-icon {
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: .72rem;
  line-height: 1;
}

.order-progress-step.is-done .order-progress-step-icon,
.order-progress-step.is-active .order-progress-step-icon {
  color: var(--gold);
}

.order-progress-step-label {
  min-width: 0;
  color: var(--text-muted);
  font-size: .71rem;
  font-weight: 600;
  line-height: 1.3;
}

.order-progress-step.is-done .order-progress-step-label {
  color: #d8c999;
}

.order-progress-step.is-active .order-progress-step-label {
  color: var(--gold-light);
  font-weight: 800;
}

@media (max-width: 640px) {
  .order-progress-card {
    padding: 15px;
  }

  .order-progress-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .order-progress-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .order-progress-step {
    min-height: 48px;
    padding: 8px;
  }

  .order-progress-step-label {
    font-size: .66rem;
  }
}

/* V20 - final mobile polish */
.demo-banner {
  display: none !important;
}

/* Ürün detayında masaüstü iki sütunlu değer düzenini mobilde de koru */
.detail-value-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 768px) {
  .page-content {
    padding: 18px 0 52px;
  }

  .container,
  .container-sm {
    padding-left: 14px;
    padding-right: 14px;
  }

  .detail-grid {
    gap: 16px;
  }

  .detail-img-main {
    aspect-ratio: 1 / 1;
    margin-bottom: 8px;
    border-radius: 14px;
  }

  .detail-thumbs {
    gap: 7px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .detail-thumb {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
  }

  .detail-info-card .card-body {
    padding: 18px;
  }

  .detail-title {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .detail-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 14px 0 16px;
  }

  .detail-spec {
    min-width: 0;
    padding: 8px 10px;
    font-size: .73rem;
    text-align: center;
  }

  .detail-price {
    font-size: 2.15rem;
    line-height: 1.1;
    margin: 18px 0 12px;
  }

  .detail-value-box--notes {
    margin: 8px 0 18px;
    padding: 9px;
  }

  .detail-value-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .detail-value-column {
    gap: 7px;
  }

  .detail-value-note {
    min-height: 68px;
    padding: 9px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .detail-value-note span {
    font-size: .56rem;
    line-height: 1.25;
    letter-spacing: .035em;
  }

  .detail-value-note strong {
    margin-top: 5px;
    font-size: .76rem;
    line-height: 1.2;
  }

  .detail-desc {
    margin: 17px 0;
    font-size: .86rem;
    line-height: 1.65;
  }

  .seller-row {
    gap: 10px;
  }

  .guarantee-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
  }

  .guarantee-box {
    min-width: 0;
    padding: 10px 5px;
  }

  .guarantee-box .icon {
    font-size: 1rem;
  }

  .guarantee-box p {
    font-size: .60rem;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  .detail-info-card .card-body {
    padding: 16px;
  }

  .detail-title {
    font-size: 1.28rem;
  }

  .detail-spec {
    padding: 7px 8px;
    font-size: .68rem;
  }

  .detail-price {
    font-size: 1.95rem;
  }

  .detail-value-note {
    min-height: 64px;
    padding: 8px;
  }

  .detail-value-note span {
    font-size: .52rem;
  }

  .detail-value-note strong {
    font-size: .70rem;
  }
}
/* Mobilde yalnızca üst menü logosunu ortala; footer logosu normal akışta kalsın */
@media (max-width: 768px) {
  .navbar .nav-inner {
    position: relative;
    justify-content: flex-end;
  }

  .navbar .nav-inner > .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .navbar .nav-toggle {
    margin-left: auto;
  }

  .footer .nav-logo {
    position: static;
    left: auto;
    transform: none;
    justify-content: flex-start;
    margin: 0 0 12px;
  }

  .footer .site-logo-img--footer {
    margin: 0;
  }
}
