/*
 * General Body & Font Styles
 */
body {
  /* This creates space at the top so the sticky header doesn't cover page content */
  padding-top: 0px; 
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#wrapper {
  background-color: #ffffff;
}

a {
  color: #000000;
  text-decoration: none;
}

/*
 * Sticky Header Styles
 */
.gemini-header {
  position: fixed; /* This makes the header "sticky" */
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #ffffff; /* White background */
  border-bottom: 1px solid #f5f5f5; /* A very subtle line to separate it */
  z-index: 1000;
  
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100%;
}

.header-left .site-name {
  font-weight: normal;
  font-size: 1.2rem;
  text-transform: none;
}

.header-right {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.menu-trigger, .cart-link {
  cursor: pointer;
  padding: 10px;
}

.menu-trigger {
  display: flex;
  align-items: center;
}

/* Custom 2-line burger icon */
.burger-icon {
  margin-left: 8px;
}
.burger-line {
  width: 22px;
  height: 2px;
  background-color: #000000;
  margin: 4px 0;
}

/* Remove the default shadow from the header */
.gemini-header {
    box-shadow: none !important;
}