.catalysis-header {
    background: #212540;
    height: 92px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 123;
}

.logo {
    display: inline-block;
    color: #fff;
    font-family: var(--font-Marcellus);
    font-size: 30px;
    line-height: normal;
    white-space: nowrap;
}

.menu-mobile {
    flex-wrap: wrap;
    gap: 39px;
}

.menu-mobile .menu-main {
    margin: 0;
    gap: 39px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.menu-mobile .menu-main a {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 42px; /* 280% */
    letter-spacing: 0.15px;
	text-transform: capitalize;
}

.menu-mobile .menu-main a:hover {
    font-weight: 700;
    color: var(--primary-color);
}

.search-header {
    position: relative;
}

.search-header input {
    padding-left: 40px;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 6px;
    background: #fff;
    width: 200px;
    height: 35px;
    color: #212540;
    font-size: 14px;
    line-height: 42px; /* 300% */
    letter-spacing: 0.14px;
}

.search-header button {
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    width: 39px;
    height: 39px;
    background-image: url("../../images/ic-search.webp");
    background-position: center center;
    background-repeat: no-repeat;
}

.ic-search,
.ic-menu {
    display: none;
}

.language,
.language label {
    display: flex;
}

.language li {
    list-style: none;
}

.language a {
    display: block;
    font-size: 18px;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .ic-search,
    .ic-menu {
        display: block;
    }
    .logo {
        font-size: 25px;
    }
    .catalysis-header {
        height: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .menu-mobile .menu-main {
        gap: 18px;
    }
    .search-header {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #343b64;
        padding: 22px 40px;
        display: none;
    }
    .search-header input {
        width: 100%;
    }
    .search-header button {
        left: 53px;
    }
    .menu-mobile .menu-main .current-menu-item a {
        font-weight: 700;
    }
    .menu-mobile .menu-main a {
        font-size: 20px;
    }
    .menu-main-menu-container {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #343b64;
        padding: 22px 40px;
    }
    #menu-main-menu.menu-main li {
        width: 100%;
        text-align: right;
    }
    .menu-mobile {
        gap: 10px;
    }
}

/* Cart Icon with Badge */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

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

.cart-count-badge {
    position: absolute;
    top: 0px;
    right: -10px;
    background: #ff0606;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: badge-pop 0.3s ease-out;
}

@keyframes badge-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-count-badge.updated {
    animation: badge-pulse 0.5s ease-out;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}
