.cart-icon-link {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e53935; /* Merah */
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    display: none; /* Sembunyi secara default */
}

/* === Gaya Umum & Body === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7fdf8;
    color: #333;
}

/* === Header === */
header {
    background-color: #f7fdf8;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}
.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.main-nav {
    display: flex;
    gap: 40px;
}
.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 24px;
}
.header-right a {
    color: #333;
}