/* ==========================================================================
   Lokality Design System - Layout & Header
   Matches the clean mobile & responsive experience in image.png
   ========================================================================== */

/* Top Device / Status Simulation or Notification Bar (Clean & subtle) */
.device-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: #FFFFFF;
}

.device-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: -0.03em;
}

.seller-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--brand-green);
  color: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 700;
  background: #FFFFFF;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.seller-app-btn:hover {
  background: var(--brand-green-light);
  transform: translateY(-1px);
}

/* Page Section Layout */
.page-section {
  padding: 32px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.page-section:last-of-type {
  border-bottom: none;
}

.page-section-header {
  margin-bottom: 22px;
}

.page-section-title {
  font-size: 1.68rem;
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

/* Footer */
.site-footer {
  padding: 24px 20px 36px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand-dark);
}

.footer-logo-img {
  height: 24px;
  width: auto;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
