.kf-header {
    background-color: #1F1F1F;
    height: 100px;
    border-bottom: 1px solid #888888;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.kf-btn img.kf-logo {
    height: 60px; /* 1.5x standard icon size */
    cursor: pointer;
}

/* Ensure center alignment for .kf-title even when right side is wider */
.kf-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    line-height: 1;
}

.kf-title h1 {
    font-size: 32px;  /* Increased from 24px */
    font-weight: bold;
    margin: 0;
}

.kf-title h2 {
    font-size: 20px;  /* Increased from 16px */
    font-weight: bold;
    margin: 0;
}

.kf-right {
    display: flex;
    align-items: center;
}

.kf-socials {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.kf-socials img {
    height: 20px;
    margin: 2px 0;
    cursor: pointer;
}

.kf-basket img {
    height: 60px; /* Matches kf-logo size */
    cursor: pointer;
}

/* Only affects basket badge in header_1.html */
.kf-basket {
    position: relative;
}

/* Count badge */
.basket-count {
    position: absolute;
    bottom: 4px;
    left: 4px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: none;
    padding: 0;
    border-radius: 0;
    line-height: 1;
    z-index: 10;
    pointer-events: none;
}

/* Hidden by default */
.basket-count.hidden {
    display: none;
}

.kf-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kf-home img {
    height: 60px;
    cursor: pointer;
}
