.header { padding: 1rem 3.75rem; background-color: #f5f0e8; position: sticky; top: 0; z-index: 100; margin: 0; border: 0; } .header-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; } .logo { display: flex; flex-direction: column; line-height: 1.1; } .logo-main { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: #4a7c59; letter-spacing: 0.5px; } .logo-sub { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 4px; color: #4a7c59; text-transform: uppercase; } .nav { flex: 1; display: flex; justify-content: center; } .nav-list { display: flex; align-items: center; gap: 40px; } .nav-item { position: relative; } .nav-link { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400; color: #2d2d2d; transition: color 0.3s ease; } .nav-link:hover { color: #4a7c59; } .header-actions { display: flex; align-items: center; gap: 16px; } .cart-btn { position: relative; background: transparent; padding: 8px; display: flex; align-items: center; justify-content: center; } .cart-count { position: absolute; top: 0; right: 0; background-color: #4a7c59; color: white; font-size: 10px; font-weight: 600; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .book-session-btn { background-color: #4a7c59; color: white; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 30px; transition: background-color 0.3s ease; } .book-session-btn:hover { background-color: #3d6a4a; }