/* ===== Header Cart Icon & Badge Styles ===== */
.header-cart-icon {
    position: absolute;
    top: 15px;
    right: 5px;
    color: #f9f9f9;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.header-cart-icon:hover {
    color: var(--mena-gold);
    transform: scale(1.1);
}
  
.cart-badge {
    position: absolute;
    top: -11px;  /* Positions the badge slightly above the icon */
    right: -10px; /* Positions the badge slightly to the right of the icon */
    background-color: #E74C3C; /* A bright red for visibility */
    color: white;
    border-radius: 50%; /* Makes it a circle */
    padding: 2px 6px;
    font-size: 11px;
    font-weight: bold;
    font-family: sans-serif; /* A clear, simple font for numbers */
    border: 2px solid var(--mena-navy); /* Matches the header background */
}