/* Header */
header {
    font-family: 'Raleway';
    background: white;
    color: black;
    padding: 1rem 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Raleway', Tahoma, Geneva, Verdana, sans-serif;
    font-size: min(8vw, 2rem);
    font-weight: bold;
    cursor: pointer;
    color: #2c3e50;
}

.cart-icon {
    position: relative;
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}

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

/* Breadcrumb */
.breadcrumb {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);

}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}