#cart-icon-wrapper {
    position: fixed;
    right: 20px;
    top: 225px; /* Positioning the icon 225px down from the top of the screen */
    z-index: 1000;
}
#cart-icon-link {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#cart-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#cart-icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #528787;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (max-width: 767px) {
    #cart-icon-wrapper {
        right: 20px;
        top: auto;
        bottom: 20px;
    }
}
