.header .header-bottom {
    background: #97c544;
}
.header .header-middle .header__center {
    width: 34.5%;
}
.header-account-login a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    text-decoration: none;

    color: var(--header-text-color);  
}

.header-account-login a:hover {
    color: var(--primary-color); 
}

.header-account-login .svg-icon {
    margin-bottom: 3px;
}
 




.menu--product-categories {
    background-color: #fff;
}

.section-content.section-content__slider {
    position: relative;
    overflow: hidden;
}

/* 🔄 Element 1 (Top Right) */
.section-content.section-content__slider::before {
    content: "";
    position: absolute;

    width: 28vw;
    height: 28vw;
    max-width: 320px;
    max-height: 320px;

    top: -8vw;
    right: -8vw;

    background: url('https://demo.wellnesskart.in/storage/roating-element.png') center/contain no-repeat;
    animation: rotateSlow 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* 🔄 Element 2 (Bottom Left) */
.section-content.section-content__slider::after {
    content: "";
    position: absolute;

    width: 28vw;
    height: 28vw;
    max-width: 320px;
    max-height: 320px;

    bottom: -8vw;
    left: -8vw;

    background: url('https://demo.wellnesskart.in/storage/roating-element-av-3.png') center/contain no-repeat;
    animation: rotateSlowReverse 35s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* ✨ Animations */
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateSlowReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}
@media (max-width: 768px) {

    .section-content.section-content__slider::before,
    .section-content.section-content__slider::after {
        width: 180px;
        height: 180px;
    }

    .section-content.section-content__slider::before {
        top: -60px;
        right: -60px;
    }

    .section-content.section-content__slider::after {
        bottom: -60px;
        left: -60px;
    }
}








/* Main slider arrows fix */
.section-slides-wrapper .arrows-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

/* Arrow style */
.section-slides-wrapper .slick-arrow {
    pointer-events: all;
    width: 45px;
    height: 45px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
}

/* Left arrow */
.section-slides-wrapper .slick-prev-arrow {
    margin-left: 15px;
}

/* Right arrow */
.section-slides-wrapper .slick-next-arrow {
    margin-right: 15px;
}



.header-ticker {
    overflow: hidden;
    width: 100%;
    padding: 6px 0;
}

.ticker-track {
    display: flex;
    width: max-content;
}

.ticker-group {
    white-space: nowrap;
    padding-right: 100px; 
}
.ticker-group ul {
    list-style: none !important;    
    margin: 0;
    padding: 0;
}
.header .header-bottom .header-wrapper .navigation .navigation__center {
   justify-content: center;
}