.site-header {
  background-color: white;
  padding: 0.8rem 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img { height: 50px; border-radius: 50%; object-fit: cover; }
.logo-text { 
  font-family: 'Edu NSW ACT Cursive', cursive; 
  font-size: 2.2rem; 
  color: #a75d67; 
  font-weight: 700; 
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
}
.header-nav a {
  color: #555;
  text-decoration: none;
  font-family: 'Edu NSW ACT Cursive', cursive;
  font-size: 1.4rem; 
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d46a92;
  transition: width 0.4s ease;
}
.header-nav a:hover { color: #d46a92; }
.header-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem; 
}
.header-actions a {
  color: #a75d67;
  text-decoration: none;
  font-size: 1.2rem;
}
.header-actions a:hover { color: #d46a92; }
.cart-icon { position: relative; font-size: 1.4rem; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #d46a92;
  color: white;
  border-radius: 50%;
  padding: 3px 7px;
  font-size: 12px;
}
.welcome-text {
  color: #a75d67;
  font-weight: 600; 
  font-family: 'Edu NSW ACT Cursive', cursive; 
  font-size: 1.4rem; 
}
.btn-header {
    background: transparent;
    border: 2px solid #d46a92;
    color: #d46a92;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}
.btn-header.primary, .btn-header:hover { background: #d46a92; color: white; }

.burger { display: none; }
@media (max-width: 1024px) {
  .burger { display: flex; cursor: pointer; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; z-index: 1001; }
  .burger div { width: 100%; height: 3px; background-color: #a75d67; border-radius: 3px; transition: all 0.3s ease; }
  .burger.open div:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
  .burger.open div:nth-child(2) { opacity: 0; }
  .burger.open div:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
  .nav-links { position: fixed; top: 0; right: 0; width: 300px; height: 100vh; background-color: white; box-shadow: -5px 0 15px rgba(0,0,0,0.1); flex-direction: column; justify-content: flex-start; align-items: flex-start; padding: 80px 30px 30px; gap: 1.5rem; transform: translateX(100%); transition: transform 0.4s ease-in-out; }
  .nav-links.show { transform: translateX(0); }
  .header-nav { flex-direction: column; align-items: flex-start; width: 100%; gap: 1rem; margin-bottom: 2rem; }
  .header-nav a { width: 100%; padding-bottom: 1rem; border-bottom: 1px solid #f0f0f0; }
  .header-actions { flex-direction: row; justify-content: flex-start; width: 100%; gap: 1.5rem; border-top: 1px solid #f0f0f0; padding-top: 1.5rem; flex-wrap: wrap; }
  .welcome-text { font-size: 1.2rem; order: -1; width: 100%; margin-bottom: 1rem; padding-bottom: 1rem; }
  .header-actions a { font-size: 1.5rem; }
}