/* Cart Icon */
.cart__icon {
    position: relative;
    cursor: pointer;
}
.cart__icon svg {
    width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}
.ci__count {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 16px;
    color: #FFFFFF;
    background-color: #E10811;
    font-family: "Roboto", Sans-serif;
}
@media(max-width: 1024px){
.cart__icon svg {
    width: 25px;
    height: 25px;
}
.ci__count {
    transform: translate(4px, -4px);
}
}
@media(max-width:767px){
.cart__icon svg {
    fill: #4B4F52;
}
.ci__count {
    width: 14px;
    height: 14px;
    font-size: 12px;
    transform: translate(-3px, -4px);
}
}


/* Lang switcher */
.oman__lang ul {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.oman__lang ul li:not(:last-child) {
    display: flex;
    align-items: center;
}
.oman__lang ul li:not(:last-child):after {
    content: '|';
    display: block;
    margin: 0 10px;
}
