/* ====== THIN STICKY HEADER ====== */
:root {
  --bg-dark: #0a0a0c;
  --cyber-blue: #00f3ff;
  --text-light: #ffffff;
}

.thin-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2000;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
}

.thin-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.thin-header-logo {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5ff, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  white-space: nowrap;
}

.thin-header-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.thin-header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.original-price {
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
  font-weight: 400;
  
  line-height: 1;
}

.sale-price {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2ed573;
  line-height: 1.2;
}


/* ====== MOBILE VERSION ====== */
@media (max-width: 768px) {
  .thin-header {
    padding: 5px 10px !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    justify-content: space-between !important;
    min-height: 40px !important;
  }
  
  .thin-header-left {
    gap: 5px !important;
    order: 1;
    flex: 1;
    overflow: hidden;
  }
  
  .thin-header-right {
    order: 2;
    gap: 5px !important;
    flex-shrink: 0;
  }
  
  .thin-header-logo {
    font-size: 0.8rem !important;
    white-space: nowrap;
  }
  
  .thin-header-phone {
    font-size: 0.6rem !important;
    white-space: nowrap;
  }
  
  .original-price {
    font-size: 0.6rem !important;
  }
  
  .sale-price {
    font-size: 0.65rem !important;
  }
}

/* ====== DESKTOP STYLES ====== */
@media (min-width: 768px) {
  .thin-header {
    padding: 10px 40px;
  }
  
  .thin-header-logo {
    font-size: 1.5rem;
  }
  
  .thin-header-phone {
    font-size: 0.95rem;
  }
  
  .original-price {
    font-size: 0.92rem;
  }

  .sale-price {
    font-size: 1rem;
  }
  
}