/* ==============================================
   SIKKA — Desktop Design System v5 (Pro Edition)
   Professional Computer Platform Enhancements
   ============================================== */

/* --- Desktop Breakpoint Overrides --- */
:root {
  --dash-width: 280px;
  --admin-width: 260px;
  --topbar-height: 72px;
}

/* --- Premium Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: #334155;
}
[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* --- Topbar Redesign (Desktop Pro) --- */
.sikka-topbar {
  height: var(--topbar-height);
  padding: 0 32px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: all 0.3s ease;
}
[data-theme="dark"] .sikka-topbar {
  background: rgba(5,20,36,0.92);
  border-bottom: 1px solid rgba(30,41,59,0.6);
}

.sikka-topbar-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.sikka-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.sikka-logo-img {
  height: 38px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.sikka-logo:hover .sikka-logo-img {
  transform: scale(1.05);
}
.sikka-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0f172a, #334155);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
[data-theme="dark"] .sikka-logo-text {
  background: linear-gradient(135deg, #8dfdc0, #6cdca1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop Navigation */
.sikka-desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.sikka-desktop-nav .nav-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.sikka-desktop-nav .nav-item:hover {
  color: #0f172a;
  background: #f1f5f9;
}
.sikka-desktop-nav .nav-item.active {
  color: #0f172a;
  background: #f1f5f9;
  font-weight: 600;
}
.sikka-desktop-nav .nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #8dfdc0;
  border-radius: 2px;
}
[data-theme="dark"] .sikka-desktop-nav .nav-item {
  color: #94a3b8;
}
[data-theme="dark"] .sikka-desktop-nav .nav-item:hover,
[data-theme="dark"] .sikka-desktop-nav .nav-item.active {
  color: #f1f5f9;
  background: rgba(255,255,255,0.06);
}
[data-theme="dark"] .sikka-desktop-nav .nav-item.active::after {
  background: #8dfdc0;
}

.sikka-desktop-nav .nav-item i {
  font-size: 1.1rem;
}

/* Topbar Right Actions */
.sikka-topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sikka-location {
  display: flex;
  flex-direction: column;
  padding: 4px 14px;
  background: #f8fafc;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.sikka-location:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
}
[data-theme="dark"] .sikka-location {
  background: rgba(255,255,255,0.04);
}
[data-theme="dark"] .sikka-location:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
}

.sikka-location-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sikka-location-city {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
}
[data-theme="dark"] .sikka-location-city {
  color: #e2e8f0;
}

.sikka-topbar-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.sikka-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
  font-size: 1.15rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.sikka-icon-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}
[data-theme="dark"] .sikka-icon-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #f1f5f9;
}

/* Auth Buttons in Header */
#header-auth-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}
#header-auth-btns .auth-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
#header-auth-btns .auth-btn-primary {
  background: #0f172a;
  color: white;
}
#header-auth-btns .auth-btn-primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,23,42,0.2);
}
[data-theme="dark"] #header-auth-btns .auth-btn-primary {
  background: #8dfdc0;
  color: #003921;
}
[data-theme="dark"] #header-auth-btns .auth-btn-primary:hover {
  background: #6cdca1;
  box-shadow: 0 4px 12px rgba(108,220,161,0.3);
}

#header-auth-btns .auth-btn-ghost {
  background: transparent;
  color: #64748b;
}
#header-auth-btns .auth-btn-ghost:hover {
  background: #f1f5f9;
  color: #0f172a;
}
[data-theme="dark"] #header-auth-btns .auth-btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  color: #f1f5f9;
}

/* --- Hero Section (Desktop Pro) --- */
.sikka-hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
[data-theme="dark"] .sikka-hero {
  background: linear-gradient(180deg, #051424 0%, #0d1c2d 100%);
}

.sikka-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(141,253,192,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99,102,241,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(236,72,153,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.sikka-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.sikka-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.sikka-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(141,253,192,0.12);
  border: 1px solid rgba(141,253,192,0.2);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out;
}
[data-theme="dark"] .sikka-hero-badge {
  background: rgba(141,253,192,0.08);
  color: #8dfdc0;
}
.sikka-hero-badge .live-dot {
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

.sikka-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
[data-theme="dark"] .sikka-hero-title {
  color: #f1f5f9;
}
.sikka-hero-title .gradient-text {
  background: linear-gradient(135deg, #8dfdc0, #6cdca1, #4ebd84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sikka-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
[data-theme="dark"] .sikka-hero-sub {
  color: #94a3b8;
}

/* Hero Search Premium */
.sikka-hero-search {
  max-width: 720px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  position: relative;
}

.sikka-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.sikka-search:focus-within {
  border-color: #8dfdc0;
  box-shadow: 0 8px 40px rgba(141,253,192,0.15), 0 0 0 4px rgba(141,253,192,0.1);
}
[data-theme="dark"] .sikka-search {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .sikka-search:focus-within {
  border-color: #8dfdc0;
  box-shadow: 0 8px 40px rgba(141,253,192,0.08), 0 0 0 4px rgba(141,253,192,0.05);
}

.sikka-search-icon {
  font-size: 1.2rem;
  color: #94a3b8;
  padding: 0 12px 0 16px;
  flex-shrink: 0;
}

.sikka-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #0f172a;
  background: transparent;
  padding: 14px 4px;
  font-family: inherit;
}
.sikka-search-input::placeholder {
  color: #94a3b8;
}
[data-theme="dark"] .sikka-search-input {
  color: #f1f5f9;
}
[data-theme="dark"] .sikka-search-input::placeholder {
  color: #64748b;
}

.sikka-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
}
.sikka-search-btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(15,23,42,0.2);
}
[data-theme="dark"] .sikka-search-btn {
  background: #8dfdc0;
  color: #003921;
}
[data-theme="dark"] .sikka-search-btn:hover {
  background: #6cdca1;
  box-shadow: 0 4px 16px rgba(108,220,161,0.3);
}

.sikka-search-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.sikka-search-filter:hover {
  background: #e2e8f0;
  color: #0f172a;
}
[data-theme="dark"] .sikka-search-filter {
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
}
[data-theme="dark"] .sikka-search-filter:hover {
  background: rgba(255,255,255,0.1);
  color: #f1f5f9;
}

/* Search Tags */
.sikka-search-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}
.sikka-search-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
}
.sikka-search-tag:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: white;
  transform: translateY(-2px);
}
[data-theme="dark"] .sikka-search-tag {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: #94a3b8;
}
[data-theme="dark"] .sikka-search-tag:hover {
  background: #8dfdc0;
  border-color: #8dfdc0;
  color: #003921;
}

/* Hero Stats */
.sikka-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  animation: fadeInUp 0.8s ease-out 1s both;
}
.sikka-hero-stat {
  text-align: center;
}
.sikka-hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}
[data-theme="dark"] .sikka-hero-stat-num {
  color: #f1f5f9;
}
.sikka-hero-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
}
.sikka-hero-stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  align-self: center;
}
[data-theme="dark"] .sikka-hero-stat-divider {
  background: rgba(255,255,255,0.08);
}

/* --- Categories Section --- */
.sikka-categories-header {
  max-width: 1440px;
  margin: 48px auto 20px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sikka-section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
}
[data-theme="dark"] .sikka-section-title {
  color: #f1f5f9;
}
.sikka-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #8dfdc0;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: none;
  font-family: inherit;
}
.sikka-link:hover {
  color: #6cdca1;
}

/* Categories Grid Desktop */
#categories-grid {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.sikka-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.sikka-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
  border-color: transparent;
}
[data-theme="dark"] .sikka-cat-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .sikka-cat-card:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: 0 16px 32px rgba(0,0,0,0.2);
}

.sikka-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  font-size: 1.5rem;
  transition: transform 0.35s ease;
}
[data-theme="dark"] .sikka-cat-icon {
  background: rgba(141,253,192,0.08);
}
.sikka-cat-card:hover .sikka-cat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.sikka-cat-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0f172a;
}
[data-theme="dark"] .sikka-cat-name {
  color: #e2e8f0;
}

/* --- Business Cards Section --- */
.sikka-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 32px;
}
.sikka-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.sikka-section-header .sikka-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Business Cards Grid */
.sikka-cards-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Business Card (Sikka Biz Card) */
.sikka-biz-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.sikka-biz-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.08);
  border-color: transparent;
}
[data-theme="dark"] .sikka-biz-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] .sikka-biz-card:hover {
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

.sikka-biz-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.sikka-biz-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255,255,255,0.95));
}
[data-theme="dark"] .sikka-biz-card-img::after {
  background: linear-gradient(transparent, rgba(5,20,36,0.95));
}

.sikka-biz-rating {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #f59e0b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sikka-biz-card-body {
  padding: 16px 18px;
  position: relative;
  z-index: 1;
}
.sikka-biz-card-name {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
[data-theme="dark"] .sikka-biz-card-name {
  color: #f1f5f9;
}
.sikka-biz-card-cat {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  margin-bottom: 8px;
}
.sikka-biz-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
  color: #64748b;
}
.sikka-biz-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sikka-biz-card-meta i {
  font-size: 0.8rem;
  color: #94a3b8;
}
.sikka-biz-card-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
.sikka-biz-card-status.open {
  color: #10b981;
}
.sikka-biz-card-status.closed {
  color: #ef4444;
}

/* Featured Badge */
.sikka-biz-card.featured::before {
  content: 'مميز';
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 9999px;
  z-index: 2;
}

/* Favorite Button */
.sikka-biz-card-fav {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  color: #94a3b8;
}
.sikka-biz-card-fav:hover {
  transform: scale(1.15);
  background: white;
}
.sikka-biz-card-fav.active {
  color: #ef4444;
  background: #fef2f2;
}

/* --- Sections Grid Layout --- */
.sikka-section .sikka-cards-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- Testimonials --- */
.testimonial-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.06);
}
[data-theme="dark"] .testimonial-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}

/* --- Section Tags --- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(141,253,192,0.12);
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #059669;
}

/* --- Yelp Search Page Desktop --- */
.yelp-search-page {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 340px;
  min-height: calc(100vh - 72px);
}

.yelp-filters {
  border-left: 1px solid #f1f5f9;
  padding: 24px 20px;
}
[data-theme="dark"] .yelp-filters {
  border-color: rgba(255,255,255,0.06);
}

.yelp-results {
  padding: 24px 28px;
  border-left: 1px solid #f1f5f9;
}
[data-theme="dark"] .yelp-results {
  border-color: rgba(255,255,255,0.06);
}

.yelp-map-panel {
  border-left: 1px solid #f1f5f9;
}
[data-theme="dark"] .yelp-map-panel {
  border-color: rgba(255,255,255,0.06);
}

/* --- Business Detail Page Desktop --- */
.yelp-page {
  background: #f8fafc;
}
[data-theme="dark"] .yelp-page {
  background: #080d18;
}

.yelp-container {
  max-width: 1200px;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 24px 24px 60px;
}

.yelp-hero {
  height: 420px;
  border-radius: 0;
}

.yelp-main {
  background: white;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
  border: 1px solid #f1f5f9;
}
[data-theme="dark"] .yelp-main {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}

.yelp-sidebar {
  position: sticky;
  top: 88px;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  background: white;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}
[data-theme="dark"] .yelp-sidebar {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}

.yelp-biz-name {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f172a;
}
[data-theme="dark"] .yelp-biz-name {
  color: #f1f5f9;
}

.yelp-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
[data-theme="dark"] .yelp-section-title {
  color: #f1f5f9;
}

/* --- Dashboard Desktop --- */
#page-dashboard .flex {
  max-width: 1440px;
  margin: 0 auto;
  background: #f8fafc;
  min-height: calc(100vh - 72px);
}
[data-theme="dark"] #page-dashboard .flex {
  background: #0a0f1e;
}

#dash-sidebar {
  width: var(--dash-width);
  background: white;
  border-left: 1px solid #f1f5f9;
  padding: 24px 16px;
  box-shadow: 2px 0 12px rgba(0,0,0,0.02);
}
[data-theme="dark"] #dash-sidebar {
  background: #0d1c2d;
  border-color: rgba(255,255,255,0.06);
}

#dash-sidebar.dash-sidebar-sticky {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}

.dash-nav-item {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.dash-nav-item:hover {
  background: #f1f5f9;
  transform: translateX(-2px);
}
.dash-nav-item.active {
  background: rgba(141,253,192,0.12);
  color: #059669;
  font-weight: 700;
}
.dash-nav-item.active .dash-nav-icon {
  background: rgba(141,253,192,0.2) !important;
  color: #059669 !important;
}
[data-theme="dark"] .dash-nav-item:hover {
  background: rgba(255,255,255,0.04);
}
[data-theme="dark"] .dash-nav-item.active {
  background: rgba(141,253,192,0.08);
  color: #8dfdc0;
}

.dash-nav-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1rem;
}

#page-dashboard main {
  padding: 24px 32px;
  max-width: calc(100% - var(--dash-width));
  flex: 1;
}

/* Dashboard Stat Cards */
.dash-stat-card {
  padding: 24px;
  border-radius: 20px;
  background: white;
  border: 1px solid #f1f5f9;
  transition: all 0.35s ease;
}
.dash-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.04);
}
[data-theme="dark"] .dash-stat-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.dash-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.2rem;
}
.dash-stat-card .dash-stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}
[data-theme="dark"] .dash-stat-card .dash-stat-value {
  color: #f1f5f9;
}

/* Dashboard Content Cards */
.dash-section {
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  background: white;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}
[data-theme="dark"] .dash-section {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}
.dash-section-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f1f5f9;
}
[data-theme="dark"] .dash-section-header {
  border-color: rgba(255,255,255,0.06);
}
.dash-section-body {
  padding: 24px;
}

/* --- Admin Desktop --- */
#page-admin .flex {
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  background: #0a0f1e;
}
#page-admin aside {
  width: var(--admin-width);
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}
#page-admin main {
  flex: 1;
  padding: 24px 32px;
  max-width: calc(100% - var(--admin-width));
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
  cursor: pointer;
}
.admin-nav-item:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  transform: translateX(-2px);
}
.admin-nav-item.active {
  background: rgba(141,253,192,0.1);
  color: #8dfdc0;
  font-weight: 700;
}
.admin-nav-item i {
  font-size: 1.15rem;
  width: 24px;
  text-align: center;
}

/* --- Footer Desktop --- */
#main-footer {
  padding-top: 64px;
  padding-bottom: 32px;
}
#main-footer .max-w-7xl {
  max-width: 1440px;
}

/* --- Profile Page Desktop --- */
.sikka-profile {
  max-width: 600px;
  margin: 40px auto;
  padding: 0 32px;
}
.sikka-profile-card {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}
[data-theme="dark"] .sikka-profile-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.sikka-profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 2rem;
  color: #64748b;
}
[data-theme="dark"] .sikka-profile-avatar {
  background: rgba(255,255,255,0.06);
  color: #94a3b8;
}

/* --- About / Contact / Terms Desktop --- */
#page-about,
#page-contact,
#page-terms {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 32px;
}

/* --- Categories Page Desktop --- */
#page-categories .grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* --- Auth Modal Desktop --- */
.sikka-auth-modal {
  background: white;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-theme="dark"] .sikka-auth-modal {
  background: #122131;
  border: 1px solid rgba(255,255,255,0.06);
}

/* --- Notification Panel Desktop --- */
.notif-panel {
  width: 420px;
}

/* --- PWA Install Banner Desktop --- */
#pwa-install-banner {
  max-width: 400px;
  left: auto !important;
  right: 24px !important;
  bottom: 24px !important;
}

/* --- Scroll to Top Desktop --- */
.scroll-top {
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.scroll-top i {
  font-size: 1.25rem;
}

/* --- Map Page Desktop --- */
#page-mapview .flex {
  max-width: 1440px;
  margin: 0 auto;
}

/* --- Responsive Grid Adjustments --- */
@media (max-width: 1400px) {
  .sikka-cards-list,
  .sikka-section .sikka-cards-list {
    grid-template-columns: repeat(3, 1fr);
  }
  #categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  #page-categories .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 1200px) {
  .sikka-desktop-nav .nav-item {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  .sikka-desktop-nav .nav-item i {
    display: none;
  }
  .sikka-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .yelp-search-page {
    grid-template-columns: 220px 1fr 300px;
  }
}

@media (max-width: 1024px) {
  .sikka-cards-list,
  .sikka-section .sikka-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
  #categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  #page-categories .grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .yelp-search-page {
    grid-template-columns: 200px 1fr;
  }
  .yelp-map-panel {
    display: none;
  }
  .sikka-desktop-nav {
    display: none;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* --- Glass Card Effect --- */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
[data-theme="dark"] .glass-card {
  background: rgba(18,33,49,0.7);
  border: 1px solid rgba(141,253,192,0.06);
}

/* --- Gradient Text Utility --- */
.gradient-text-mint {
  background: linear-gradient(135deg, #8dfdc0, #6cdca1, #4ebd84);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Skeleton Loading Shimmer --- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}
[data-theme="dark"] .skeleton {
  background: linear-gradient(90deg, #1e293b 25%, #273647 50%, #1e293b 75%);
  background-size: 200% 100%;
}

/* --- Business Card Featured Border --- */
.sikka-biz-card.featured {
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.2);
}
.sikka-biz-card.featured:hover {
  border-color: #f59e0b;
  box-shadow: 0 24px 48px rgba(245,158,11,0.1), 0 0 0 1px rgba(245,158,11,0.2);
}

/* --- Search Autocomplete Desktop --- */
#search-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08);
  max-height: 480px;
  overflow-y: auto;
  z-index: 100;
  animation: fadeInUp 0.25s ease-out;
}
[data-theme="dark"] #search-autocomplete {
  background: #122131;
  border-color: rgba(255,255,255,0.06);
}

/* --- Voice Search Modal Desktop --- */
#voice-modal > div:last-child {
  width: 400px !important;
  padding: 40px !important;
}

/* --- Profile Stats Desktop --- */
.sikka-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.sikka-profile-stat {
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.sikka-profile-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.04);
}
[data-theme="dark"] .sikka-profile-stat {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.sikka-profile-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}
[data-theme="dark"] .sikka-profile-stat-num {
  color: #f1f5f9;
}
.sikka-profile-stat-label {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 500;
}

/* --- Pricing / Plans Desktop --- */
.plan-card {
  padding: 36px;
  border-radius: 24px;
}
.plan-price {
  font-size: 3.5rem;
}

/* --- Blog Page Desktop --- */
#page-blog .grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* --- Compare Page Desktop --- */
#page-compare .max-w-7xl {
  padding: 32px 32px;
}

/* --- Search Page Desktop --- */
.sikka-search-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 32px;
}
.sikka-search-page-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.sikka-search-page-bar:focus-within {
  border-color: #8dfdc0;
  box-shadow: 0 8px 40px rgba(141,253,192,0.15);
}
[data-theme="dark"] .sikka-search-page-bar {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .sikka-search-page-bar:focus-within {
  border-color: #8dfdc0;
  box-shadow: 0 8px 40px rgba(141,253,192,0.08);
}

/* --- Mobile Bottom Nav --- */
.sikka-bottomnav {
  display: none;
}
@media (max-width: 768px) {
  .sikka-bottomnav {
    display: flex;
  }
}

/* --- Flatpickr / Calendar Desktop --- */
.booking-calendar {
  max-width: 500px;
  margin: 0 auto;
}

/* --- Map View Page Desktop --- */
#page-mapview .flex {
  max-width: 1440px;
  margin: 0 auto;
}
#map-sidebar {
  width: 360px !important;
}

/* Hide hamburger menu on desktop */
#dash-sidebar .block.md\\:hidden {
  display: none;
}

/* --- Scroll Animations Desktop --- */
[data-aos] {
  transition-duration: 0.6s !important;
}

/* --- Testimonials Section Desktop --- */
.sikka-section-testimonials {
  background: #f8fafc;
}
[data-theme="dark"] .sikka-section-testimonials {
  background: #080d18;
}
.sikka-section-testimonials .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #0f172a;
}
[data-theme="dark"] .sikka-section-testimonials .section-title {
  color: #f1f5f9;
}
.sikka-section-testimonials .testimonial-card p {
  color: #475569 !important;
}
[data-theme="dark"] .sikka-section-testimonials .testimonial-card p {
  color: #94a3b8 !important;
}
.sikka-section-testimonials .testimonial-card div[style*="font-size:0.75rem"] {
  color: #94a3b8 !important;
}
[data-theme="dark"] .sikka-section-testimonials .testimonial-card div[style*="font-size:0.75rem"] {
  color: #64748b !important;
}

/* --- Premium Stats Section --- */
.stats-section {
  padding: 80px 32px;
  max-width: 1440px;
  margin: 0 auto;
}
.stat-card {
  padding: 36px 28px;
  border-radius: 24px;
}

/* ==============================================
   MOBILE IMPROVEMENTS
   ============================================== */
@media (max-width: 768px) {
  .sikka-bottomnav {
    border-top: 1px solid var(--outline-variant, #e5e7eb);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
  }
  [data-theme="dark"] .sikka-bottomnav {
    background: rgba(15,23,42,0.95);
    border-top-color: #1e293b;
  }
  .sikka-bottomnav-item {
    transition: all 0.2s ease;
  }
  .sikka-bottomnav-item.active {
    color: var(--primary, #059669);
  }
  .sikka-bottomnav-item.active i {
    transform: scale(1.15);
    transition: transform 0.2s ease;
  }

  /* Better touch targets */
  .sikka-biz-card { min-height: 260px; }
  .sikka-biz-card-img { min-height: 160px; }
  .sikka-biz-card-fav { width: 36px; height: 36px; font-size: 1rem; }

  /* Search page mobile */
  .sikka-search-page-bar { padding: 10px 12px; }
  .sikka-search-input { font-size: 16px !important; }
  .search-top-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid { grid-template-columns: 1fr; }
  .deals-featured { padding: 20px; min-height: 160px; }
  .deals-featured-title { font-size: 1.2rem; }

  /* Better category cards on mobile */
  .sikka-cat-card { padding: 12px; }

  /* Fix bottom nav safe area */
  .sikka-bottomnav { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* ==============================================
   DARK MODE ENHANCEMENTS
   ============================================== */
[data-theme="dark"] {
  --surface: #0f172a;
  --surface-container: #1e293b;
  --surface-variant: #1e293b;
  --on-surface: #f1f5f9;
  --on-surface-variant: #94a3b8;
  --outline-variant: #334155;
}
[data-theme="dark"] body {
  background: #020617;
  color: #e2e8f0;
}
[data-theme="dark"] .sikka-biz-card {
  background: #0f172a;
  border-color: #1e293b;
}
[data-theme="dark"] .sikka-biz-card-body {
  background: #0f172a;
}
[data-theme="dark"] .sikka-biz-card:hover {
  border-color: #334155;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
[data-theme="dark"] .sikka-cat-card {
  background: #1e293b;
  border-color: #334155;
}
[data-theme="dark"] .sikka-cat-card:hover {
  background: #253349;
  border-color: var(--primary, #059669);
}
[data-theme="dark"] .search-top-card {
  background: #1e293b;
  border-color: #334155;
}
[data-theme="dark"] .search-top-card:hover { background: #253349; }
[data-theme="dark"] .search-open-card {
  background: #1e293b;
  border-color: #334155;
}
[data-theme="dark"] .search-open-card:hover { background: #1a2e25; border-color: #16a34a; }
[data-theme="dark"] .search-cat-chip {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}
[data-theme="dark"] .search-cat-chip:hover {
  background: #253349;
  border-color: var(--primary, #059669);
}
[data-theme="dark"] .deal-card {
  background: #0f172a;
  border-color: #1e293b;
}
[data-theme="dark"] .deal-card:hover {
  border-color: #334155;
}
[data-theme="dark"] .sikka-search-input {
  background: #1e293b;
  color: #e2e8f0;
  border-color: #334155;
}
[data-theme="dark"] .sikka-chip {
  background: #1e293b;
  border-color: #334155;
  color: #94a3b8;
}
[data-theme="dark"] .sikka-chip.active {
  background: rgba(5,150,105,0.15);
  border-color: var(--primary, #059669);
  color: var(--primary, #059669);
}
[data-theme="dark"] .search-sort-select {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}
[data-theme="dark"] .deals-home-banner {
  background: linear-gradient(135deg, #991b1b, #7f1d1d, #6b1212);
}
[data-theme="dark"] .search-suggestion-chip {
  background: #1e293b;
  color: #94a3b8;
}
[data-theme="dark"] .search-suggestion-chip:hover {
  background: #334155;
}

/* --- Animations --- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.sikka-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
[data-theme="dark"] .sikka-loading {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
}
