@font-face {
  font-family: 'Charmonman';
  src: url('../font/Charmonman-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Charmonman';
  src: url('../font/Charmonman-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}



header {
    position: relative;
    top: 0;
    width: 100vw;
    background: #1a2954;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FF4000, #FAAA8D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.brand-info h1 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.2rem;
    text-align: center;
}

.brand-info p1 {
    font-size: 0.9rem;
    color: white;
    font-style: italic;
    text-align: left;
}

.brand-info p2 {
    font-size: 0.9rem;
    color: white;
    margin-left: 50px;
}


nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around; /* hoặc space-between */
    flex: 1; /* giúp ul giãn đầy chiều ngang */
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav a {
    color: white;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #FF4000;
    transform: translateY(-2px);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF4000, #FAAA8D);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn, .cart-btn, .policy-btn {
    background: linear-gradient(45deg, #50B2C0, #FAAA8D);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
