/* ====== THIN STICKY HEADER ====== */
.thin-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(67, 97, 238, 0.2); /* Using accent-primary */
  z-index: 2000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  height: 50px;
  box-sizing: border-box;
}

/* Adjust body padding to account for fixed header */
body {
  padding-top: calc(env(safe-area-inset-top) + 70px);
}

.thin-header-left, .thin-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.thin-header-logo {
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #9e4ad7, #4361ee); /* Original pink/purple/blue gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.thin-header-logo:hover {
  opacity: 0.9;
}

.thin-header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.thin-header-phone svg {
  width: 14px;
  height: 14px;
  color: #832bbdaa; /* Pink accent */
}

.thin-header-right {
  gap: 15px;
}

.thin-header-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Business badge with original gradient */
.business-badge {
  background: linear-gradient(135deg, rgba(88, 28, 114, 0.15), rgba(114, 9, 183, 0.15), rgba(67, 97, 238, 0.15));
  border: 1px solid rgba(247, 37, 133, 0.3);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff; /* Pink text */
  text-decoration: none;
  transition: all 0.2s ease;
}

.business-badge:hover {
  background: linear-gradient(135deg, rgba(247, 37, 133, 0.25), rgba(114, 9, 183, 0.25), rgba(67, 97, 238, 0.25));
  transform: translateY(-1px);
}

/* ====== MOBILE VERSION ====== */
@media (max-width: 768px) {
  .thin-header {
    padding: 8px 12px !important;
    height: 44px;
    gap: 8px !important;
  }
  
  .thin-header-left, .thin-header-right {
    gap: 8px !important;
  }
  
  .thin-header-logo {
    font-size: 1rem !important;
  }
  
  .thin-header-phone {
    font-size: 0.7rem !important;
    gap: 4px;
  }
  
  .thin-header-phone svg {
    width: 12px;
    height: 12px;
  }
  
  .thin-header-item {
    font-size: 0.6rem !important;
  }
  
  .business-badge {
    padding: 3px 8px;
    font-size: 0.6rem !important;
  }
  
  /* Adjust body padding for mobile */
  body {
    padding-top: calc(env(safe-area-inset-top) + 64px);
  }
}

/* ====== DESKTOP STYLES ====== */
@media (min-width: 769px) {
  .thin-header {
    padding: 10px 40px;
  }
}

/* ====== SAFE AREA ADJUSTMENTS FOR NOTCHED DEVICES ====== */
.thin-header {
  padding-top: calc(10px + env(safe-area-inset-top, 0px));
  padding-bottom: 10px;
  height: calc(50px + env(safe-area-inset-top, 0px));
}

@media (max-width: 768px) {
  .thin-header {
    padding-top: calc(8px + env(safe-area-inset-top, 0px));
    height: calc(44px + env(safe-area-inset-top, 0px));
  }
}