:root {
  /* Override accent to clean mint green for Depolama */
  --accent: var(--mint);
}

/* Page base light styling */
body {
  background: var(--bg) !important;
  color: var(--label) !important;
}

/* Floating iOS-style Top Header for Depolama */
header.site-header {
  position: sticky;
  top: 16px;
  max-width: 1152px;
  width: calc(100% - 32px);
  margin: 0 auto;
  border-radius: var(--r-pill);
  background: var(--glass-regular-bg) !important;
  border: 1px solid var(--glass-rim) !important;
  box-shadow: var(--shadow-md);
  padding: 0 24px;
  height: 60px;
  z-index: var(--z-nav);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

@media (max-width: 768px) {
  header.site-header {
    width: calc(100% - 24px);
    top: 12px;
    padding: 0 16px;
  }

  header.site-header nav ul {
    display: none; /* Hide default top nav menu list */
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 80px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 242, 247, 0.7) 100%), url('/assets/warehouse_hero.png') no-repeat center center;
  background-size: cover;
  border-radius: var(--r-xl);
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--separator);
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(28, 28, 30, 0.8) 100%), url('/assets/warehouse_hero.png') no-repeat center center;
}

/* Specific cards */
.facility-spec {
  background: var(--bg-secondary);
  border: 1px solid var(--separator);
  padding: 24px;
  border-radius: var(--r-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-xs);
}

.facility-spec:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Custom interactive graphics */
.warehouse-grid-mockup {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--separator);
}

.grid-cell {
  aspect-ratio: 1;
  background: var(--fill);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--label-secondary);
  transition: background-color var(--dur-base) var(--ease-out);
}

.grid-cell.active {
  background: var(--accent);
  color: #000000;
  box-shadow: 0 0 10px color-mix(in oklab, var(--accent) 50%, transparent);
}

.grid-cell.occupied {
  background: var(--fill-secondary);
  color: var(--label-tertiary);
}

/* Map area */
.map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--surface-elevated) 100%);
  border: 1px solid var(--separator);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.map-placeholder svg {
  color: var(--accent);
  opacity: 0.2;
}

.map-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 16px;
    padding: 120px 20px 60px 20px !important;
  }
  main.container {
    padding-top: 80px !important;
  }
}

