:root {
  --primary-orange: #F97316;
  --dark-orange: #EA580C;
  --dark-gray: #1F2937;
  --medium-gray: #4B5563;
  --light-gray: #F3F4F6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.header {
  background: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
}

.search-container {
  position: relative;
  width: 400px;
}

.search-bar {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: 25px;
  font-size: 0.9rem;
}

.search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.user-actions {
  display: flex;
  gap: 1.5rem;
}

.action-icon {
  text-decoration: none;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-orange);
  color: white;
  font-size: 0.6rem;
  padding: 0.1rem 0.35rem;
  border-radius: 50%;
}

@media (max-width: 480px) {
  .search-container {
    /*display: none;*/
    margin-left: 25px;
  }

  .logo {
    /*display: none;*/
    /*font-size: 0.2rem;*/
    font-size: 0; /* Hide text */
    display: flex;
    align-items: center;
  }

  .logo::before {
    content: "🏠"; /* Home icon */
    font-size: 1.5rem; /* Adjust size */
    color: var(--primary-orange);
    display: inline-block;
  }

  /*.logo::before {*/
  /*  content: "";*/
  /*  display: inline-block;*/
  /*  width: 25px; !* Adjust size as needed *!*/
  /*  height: 25px;*/
  /*  background: url('/img/home.png') no-repeat center center;*/
  /*  background-size: contain;*/
  /*}*/

  .user-actions {
    margin-left: 25px;
  }
}
