/* header.css */

.logo-text {
    font-family: 'Fahkwang', sans-serif;
    font-size: 25px;
    color: #000;
    margin: 0;
}

header {
    background-color: #fff;  /* White background for header */
    border-bottom: 1px solid #ccc;  /* Subtle bottom border */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.logo-link {
    text-decoration: none;  /* Remove underline from logo link */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #000;  /* Adjusted text color to match the new white header */
    text-decoration: none;
    font-weight: bold;
}

/* Cart Icon in Header */
.cart-link {
    position: relative; /* Ensure positioning is relative to the link */
    display: inline-block;
}

.cart-icon {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6600;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    display: inline-block; /* Ensure the count stays within the link */
}
