header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

.brand_switch_wrap {
    width: 100%;
    display: flex;
    background: linear-gradient(to right, #b12029 50%, #000 50%);
}

.brand_switch {
    flex: 0 0 50%;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
}

.flash_sale_bar {
    color: #fff;
    padding: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
    text-transform: uppercase;
    background-color: #000000;
    transition: transform 0.3s ease, opacity 0.2s ease;
    will-change: transform, opacity;
}

#siteHeader:has(.brand_switch.active[data-brand="zlaataIndia"]) .flash_sale_bar {
    background-color: #b12029;
}

.flash_sale_content {
    color: inherit;
    display: inline-block;
    padding-left: 100%;
    animation: marquee-animation 40s linear infinite;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.header_navbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    padding: 14px 50px;
    transition: transform 0.3s ease, opacity 0.2s ease, background 0.3s ease;
    will-change: transform, opacity, background;
}

body.bl .header_navbar {
    justify-content: start;
}

.header_navbar:has(.lp_sidebar.active),
.header_navbar:has(~ .account_tabs_container.active),
body.product_listing:has(.header_navbar ~ .account_tabs_container.active) .header_navbar,
#siteHeader.scrolled .header_navbar {
    background-color: var(--bg-color);
}

body.landing_page .header_navbar,
body.boss_lady .header_navbar,
body.zlaata_india .header_navbar,
body.product_listing:has(.prod_listing_container .prod_listing_hero_banner) .header_navbar {
    position: absolute;
    width: 100%;
    top: 100%;
    background-color: transparent;
}

#siteHeader.pageScrolled {
    pointer-events: none;
}

#siteHeader.pageScrolled .brand_switch_wrap {
    pointer-events: auto;
}

#siteHeader.pageScrolled>.flash_sale_bar,
#siteHeader.pageScrolled>.header_navbar {
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
}

.brand_logo_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px
}

.brand_logo {
    max-width: 115px;
    width: 100%;
}

body.landing_page .brand_logo {
    max-width: 203px;
}

.track-error.error-message,
.footer_track_btn.loading .loader,
body.landing_page .toggle_icon {
    display: block;
}

.toggle_icon {
    width: 20px;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    display: none;
}

.toggle_icon span {
    display: block;
    position: absolute;
    height: 2px;
    background: #333333;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    pointer-events: none;
    transition: top 0.25s ease-in-out,
        width 0.25s ease-in-out,
        left 0.25s ease-in-out,
        transform 0.25s ease-in-out,
        opacity 0.25s ease-in-out;
}

.toggle_icon span:nth-child(1) {
    top: 0%;
    width: 75%;
    left: 12.5%;
}

.toggle_icon span:nth-child(2),
.toggle_icon span:nth-child(3) {
    top: calc(50% - 1px);
    width: 100%;
    left: 0;
}

.toggle_icon span:nth-child(4) {
    top: calc(100% - 2px);
    width: 55%;
    left: 22.5%;
}

#siteHeader:has(.lp_sidebar.active) .toggle_icon span:nth-child(1),
#siteHeader:has(.lp_sidebar.active) .toggle_icon span:nth-child(4) {
    top: calc(50% - 1px);
    width: 0%;
    left: 50%;
}

#siteHeader:has(.lp_sidebar.active) .toggle_icon span:nth-child(2) {
    transform: rotate(45deg);
}

#siteHeader:has(.lp_sidebar.active) .toggle_icon span:nth-child(3) {
    transform: rotate(-45deg);
}

.header_cta_wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

body.bl .header_cta_wrap {
    margin-left: auto;
}

.header_cta_btn {
    width: 32px;
    aspect-ratio: 1;
    cursor: pointer;
    position: relative;
}

.header_cta_btn.Cls_cart_btn:not([data-cart-count]),
.header_cta_btn.Cls_cart_btn[data-cart-count=""],
.header_cta_btn.Cls_cart_btn[data-cart-count="0"] {
    --cart-display: none;
}

.header_cta_btn.Cls_cart_btn::after {
    content: attr(data-cart-count);
    position: absolute;
    top: 0;
    right: 0;
    width: 18px;
    aspect-ratio: 1;
    display: var(--cart-display, flex);
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 50%;
    color: white;
    pointer-events: none;
    background-color: #b12029;
    transform: translate(50%, -50%);
}

.header_cta_btn svg {
    pointer-events: none;
}

body.zlaata_india .header_cta_btn svg {
    filter: brightness(0) invert(1);
}

body.zlaata_india:has(.scrolled) .header_cta_btn svg,
body.zlaata_india:has(.prevent_scrolling) .header_cta_btn svg {
    filter: none;
}

.lp_sidebar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    display: flex;
    justify-content: space-around;
    background-color: #ffffff;
    transform: translateY(-100%);
}

.lp_sidebar.active {
    position: absolute;
    top: 100%;
    transform: translateY(0);
    opacity: 1;
    transition: transform 500ms ease-in-out, opacity 300ms ease;
}

.brand_categories {
    flex: 0 0 50%;
    padding: 24px 24px 24px 32px;
}

.brand_categories:last-child {
    border-left: 1px solid #d9d9d9;
}

.brand_categories_header {
    color: #333333;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.brand_categories_card_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.brand_categories_card {
    flex: 0 0 13.2%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    border-radius: 6px;
    padding: 10px 12px 4px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    color: #333333;
}

.brand_categories_card:hover {
    background-color: #F4F4F4;
}

.brand_categories_card picture {
    display: block;
    max-width: 100px;
    min-width: 66px;
    width: 100%;
    aspect-ratio: 0.6666;
}

.brand_categories_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand_categories_card span {
    color: #333333;
    margin-top: 10px;
    display: inline-block;
}

.header_nav_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 8px 0;
    list-style: none;
}

body.bl .header_nav_wrap {
    margin-left: 6%;
}

.has_dropdown {
    position: relative;
}

.header_nav_link {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #333333;
    cursor: pointer;
    text-transform: uppercase;
}

body.zlaata_india .header_nav_link {
    color: #ffffff;
}

body.zlaata_india:has(.scrolled) .header_nav_link,
body.zlaata_india:has(.account_tabs_container.active) .header_nav_link,
body.zlaata_india:has(.prevent_scrolling) .header_nav_link {
    color: #333333;
}

body.zlaata_india .header_nav_link.active,
.header_nav_link.active,
.dropdown_category_link.active {
    color: #b12029 !important;
}

.dropdown_content {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    padding: 24px;
    display: flex;
    gap: 32px;
    min-width: 420px;
    max-height: 500px;
    overflow: hidden scroll;
    scrollbar-width: auto;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #eee;
    background-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    transition: transform 400ms ease-in-out, opacity 400ms ease;
}

.has_dropdown:hover .dropdown_content {
    opacity: 1;
    visibility: visible;
}

.has_dropdown:hover .arrow-icon {
    transform: rotate(180deg);
}

.dropdown_category_heading {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
}

.dropdown_category_link {
    display: block;
    color: #666;
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 12px;
    white-space: nowrap;
    transform: translateX(0);
    transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown_category_link:hover {
    color: #000;
    font-weight: 400;
    transform: translateX(0);
}

.footer_container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 52px;
    background-color: #EAEAEA;
    position: relative;
}

.footer_sub_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    max-width: 1440px;
    width: 100%;
    column-gap: 20px;
}

.chevron-icon,
.footer_track_btn.loading .footer_submit_btn,
.footer_content_header .footer_icon {
    display: none;
}

.footer_content_header .footer_icon path{
    stroke: #000000;
}

.footer_track_btn .footer_submit_btn path {
    stroke: #ffffff;
}

.footer_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.company_section {
    grid-area: 1 / 1 / 4 / 2;
}

.policy_section {
    grid-area: 1 / 2 / 2 / 3;
}

.support_section {
    grid-area: 2 / 2 / 4 / 3;
    margin-top: 13px;
}

.payment_cards_section {
    grid-area: 1 / 3 / 2 / 4;
}

.track_order_section {
    grid-area: 2 / 3 / 3 / 4;
}

.zlaata_logo_section {
    grid-area: 1 / 4 / 2 / 5;
}

.social_media_link_section {
    grid-area: 1 / 4 / 3 / 5;
    margin-top: 60px;
}

.copyright_section {
    grid-area: 2 / 4 / 4 / 5;
    margin-top: 40px;
}

.footer_content_header h3 {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer_details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer_details a {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    width: fit-content;
    text-decoration: none;
}

.footer_details a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width 0.3s ease;
}

.footer_details a:hover::after {
    width: 100%;
}

.footer_payment_details {
    display: flex;
    gap: 4px;
    max-width: 250px;
}

.footer_social_media_link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social_media_link {
    width: 24px;
    aspect-ratio: 1;
    overflow: hidden;
    filter: invert(1);
}

.footer_copyrights_msg {
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
}

.footer_track_container {
    display: flex;
    align-items: center;
    max-width: 250px;
}

.footer_track_order_input {
    border: 1px solid #333333;
    background-color: #FFFFFF;
    padding: 13px;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #333333;
    outline: 0;
    width: 100%;
}

.footer_track_order_input:focus {
    border-color: #333333;
}

.footer_track_btn {
    position: relative;
    background-color: #333333;
    padding: 13px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_track_btn .loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.footer_track_btn.loading {
    cursor: not-allowed;
    opacity: 0.8;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.track-error {
    margin-top: 6px;
    font-size: 16px;
    color: #e53935;
    display: none;
}

.newsletter_section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background-color: #ffffff;
}

.newsletter_title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.newsletter_details {
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
}

.newsletter_input_wrap {
    max-width: 474px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-top: 12px;
    margin-bottom: 20px;
    padding: 16px 12px;
    border-bottom: 1px solid #d0d0d0;
}

.newsletter_input_wrap:has(.newsletter_input:focus),
.newsletter_input_wrap:has(.newsletter_input:not(:placeholder-shown)) {
    border-color: #000000;
}

.newsletter_input {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    border: none;
    outline: none;
}

.newsletter_submit_btn {
    width: 32px;
    flex: 0 0 auto;
    aspect-ratio: 1;
    cursor: pointer;
}

.newsletter_submit_btn svg {
    animation: hoverSlideOut 0.5s ease-in-out forwards;
}

.newsletter_submit_btn:hover svg {
    animation: hoverSlideIn 0.5s ease-in-out forwards;
}

.is-animating {
    animation: wishlist-animation-popup 0.45s ease-out;
}

.is-liked {
    color: #b12029;
}

@keyframes hoverSlideIn {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(90%);
        opacity: 0;
    }

    41% {
        transform: translateX(-90%);
        opacity: 0;
    }
}

@keyframes hoverSlideOut {

    0%,
    100% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(-90%);
        opacity: 0;
    }

    41% {
        transform: translateX(90%);
        opacity: 0;
    }
}

@keyframes wishlist-animation-popup {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}


.icons_wrpr {
    position: fixed;
    bottom: 10px;
    z-index: 5;
    padding-inline: 16px;
    pointer-events: none;
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

main:has(#siteHeader .lp_sidebar.active) .icons_wrpr * {
    pointer-events: none;
}

.icons_wrpr>* {
    pointer-events: all;
}

.whatsapp_icon {
    width: 60px;
    cursor: pointer;
    margin-left: auto;
    pointer-events: all;
}

.prod_price_row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.prod_current_price {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.influencer_prod_details .prod_current_price {
    font-size: 12px;
}

.spl_offer .prod_current_price,
.spl_offer .product_discounted_price {
    color: #388E3C;
}

.prod_actual_price {
    color: #545454;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-decoration: line-through;
}

.prod_discount_percentage {
    color: #b12029;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.price_token {
    width: 20px;
}

.prod_price_row:has(.price_token) .price_token {
    margin-right: -5px;
}

.prod_main_details_head .prod_price_row {
    margin-bottom: 12px;
}

.game_cta_btn {
    width: 80px;
    aspect-ratio: 1;
    cursor: pointer;
}

.popularSearch_container_categories {
    background: #f4f4f4;
    width: 100%;
    padding: 10px 0 40px 0;
}

.popularSearch_container_categories_container {
    max-width: 90%;
    margin: 0 auto;
}

.popularSearch_container_categories_container ul {
    list-style-type: square;
    padding-left: 20px;
    margin-top: 10px;
    margin-left: 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
}

.popularSearch_container_categories_container ol {
    list-style-type: auto;
    padding-left: 20px;
    margin-top: 10px;
    margin-left: 30px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
}

.popularSearch_container_categories_container h1,
.popularSearch_container_categories_container h2,
.popularSearch_container_categories_container h3,
.popularSearch_container_categories_container h4,
.popularSearch_container_categories_container h5,
.popularSearch_container_categories_container h6 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    text-transform: uppercase;
}

.popularSearch_container_categories_container h5 {
    font-size: 16px;
}

.popularSearch_categories_para,
.popularSearch_container_categories_container p {
    margin-top: 8px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
}

p.popularSearch_categories_readmore {
    margin-top: 12px;
    font-weight: 300;
    font-size: 18px;
    cursor: pointer;
    text-decoration: underline;
    line-height: 22px;
}

p.popularSearch_categories_readmore a,
p.popularSearch_categories_lineparas a {
    color: inherit;
    text-decoration: underline;
}

p.popularSearch_categories_sheading {
    font-weight: 400;
    font-size: 16px;
    line-height: 0.7;
    margin-top: 24px;
    margin-bottom: 16px;
}

.popularSearch_categories_lineparas {
    margin-top: 8px;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.popularSearch_categories_lineparas a {
    text-decoration: underline;
    color: inherit;
}

.popularSearch_categories_lineparas a:not(:last-child)::after {
    content: "|";
    margin-left: 5px;
}

#popularSearch_cotainer_new {
    max-height: 5em;
    overflow: hidden;
    transition: max-height 0.8s ease-in-out;
}

@media (max-width: 1439px) {
    .header_navbar {
        padding: 14px 24px;
    }

    .header_cta_btn {
        width: 24px;
    }

    .brand_categories_card_wrap {
        gap: 22px;
    }

    .dropdown_category_link,
    .brand_categories_card {
        font-size: 14px;
    }

    .flash_sale_bar {
        padding: 10px;
        font-size: 10px;
    }

    .brand_switch {
        font-size: 10px;
    }

    .brand_logo {
        max-width: 56px;
    }

    body.landing_page .brand_logo {
        max-width: 84px;
    }

    .toggle_icon {
        width: 16px;
        display: block;
    }

    .header_nav_wrap {
        display: none;
    }

    .footer_container {
        padding: 24px;
    }

    .footer_sub_container {
        gap: 20px 10px;
    }
}

@media (max-width: 1023px) {
    .footer_sub_container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-rows: auto;
    }

    .price_token {
        width: 14px;
    }

    .prod_price_row:has(.price_token) .price_token {
        margin-right: -3px;
    }

    .prod_current_price {
        font-size: 16px;
    }

    .prod_actual_price {
        font-size: 12px;
    }

    .game_cta_btn {
        width: 60px;
    }
}

@media (max-width: 767px) {

    .header_navbar {
        padding: 8px 10px;
    }

    .header_cta_wrap {
        gap: 10px;
    }

    .header_cta_btn.Cls_cart_btn::after {
        transform: translate(40%, -40%);
    }

    .lp_sidebar {
        display: block;
        max-width: 250px;
        height: calc(100dvh - 70px);
        transform: translateX(-100%);
        overflow-y: auto;
    }

    .lp_sidebar.active {
        transform: translateX(0);
    }

    .brand_categories {
        padding: 0;
        height: auto;
        overflow: hidden;
    }

    .brand_categories.active {
        height: calc(100% - 52px);
    }

    .brand_categories:last-child {
        border-top: 1px solid #d9d9d9;
        border-bottom: 1px solid #d9d9d9;
    }

    .brand_categories_header {
        padding: 16px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin-bottom: 0;
        font-size: 12px;
        background-color: #ffffff;
    }

    .brand_categories.active .brand_categories_header {
        color: #ffffff;
        background-color: #333333;
    }

    .chevron-icon {
        display: block;
        width: 18px;
        transition: transform 0.3s ease;
    }

    .brand_categories.active .brand_categories_header .chevron-icon {
        transform: rotate(180deg);
    }

    .brand_categories.active .brand_categories_header .chevron-icon path {
        fill: #ffffff;
    }

    .brand_categories_card_wrap {
        height: 0px;
        gap: 12px;
        padding: 0px 12px;
        overflow: hidden auto;
        transition: height 400ms ease-in-out, padding 400ms ease;
    }

    .brand_categories.active .brand_categories_card_wrap {
        height: calc(100% - 50px);
        padding: 12px;
        padding-bottom: 30px;
        overflow-y: scroll;
    }

    .brand_categories_card {
        flex: 0 0 calc(50% - 6px);
        font-size: 12px;
    }

    .brand_categories_card picture {
        max-width: 66px;
    }

    .footer_container {
        padding: 18px 12px;
    }

    body.zlaata_india .footer_container,
    body.boss_lady .footer_container,
    body.product_listing .footer_container {
        padding-bottom: 60px;
    }

    .footer_content_header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .footer_content_header .footer_icon {
        display: flex;
    }

    .footer_details {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-6px);
        display: flex;
        flex-direction: column;
        gap: 6px;
        transition:
            max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.6s ease,
            transform 0.6s ease;
    }

    .footer_details.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .footer_track_container {
        max-width: 100%;
    }

    .mid-vertical.active {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }

    .zlaata_logo_section {
        grid-area: 1 / 1 / 2 / 2;
    }

    .company_section {
        grid-area: 2 / 1 / 3 / 2;
        padding-top: 0;
        padding-bottom: 5px;
        border-bottom: 1px solid #484848;
    }

    .policy_section {
        grid-area: 3 / 1 / 4 / 2;
        border-bottom: 1px solid #484848;
        padding-bottom: 5px;
    }

    .support_section {
        grid-area: 4 / 1 / 5 / 2;
        border-bottom: 1px solid #484848;
        padding-bottom: 5px;
        margin-top: 0;
    }

    .track_order_section {
        grid-area: 5 / 1 / 6 / 2;
        margin-top: 0;
    }

    .payment_cards_section {
        grid-area: 6 / 1 / 7 / 2;
    }

    .social_media_link_section {
        grid-area: 7 / 1 / 8 / 2;
        margin-top: 0;
    }

    .copyright_section {
        grid-area: 8 / 1 / 9 / 2;
        margin-top: 0;
    }

    .newsletter_section {
        padding: 32px 16px 24px;
    }

    .newsletter_title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .newsletter_details {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .newsletter_input_wrap {
        max-width: 328px;
        padding: 8px;
    }

    .newsletter_input {
        font-size: 12px;
    }

    .newsletter_submit_btn {
        width: 24px;
    }

    .icons_wrpr {
        bottom: 42px;
        padding-inline: 12px;
    }

    body.zlaata_india .icons_wrpr,
    body.boss_lady .icons_wrpr,
    body.product_details .icons_wrpr,
    body.product_list .icons_wrpr {
        bottom: 55px;
    }

    body.cart_page .icons_wrpr,
    body.address_page .icons_wrpr,
    body.payment_page .icons_wrpr {
        bottom: 80px;
    }

    body:has(.checkout_processing_btn_container > .saved_amount_row) .icons_wrpr {
        bottom: 108px;
    }

    .footer_content_header h3 {
        font-size: 12px;
    }

    .footer_details a,
    .footer_copyrights_msg {
        font-size: 10px;
    }

    .footer_track_order_input {
        padding: 10px 16px;
        font-size: 12px;
    }

    .footer_track_btn {
        padding: 8px;
    }

    .track-error {
        font-size: 12px;
    }

    .prod_price_row {
        gap: 4px;
    }

    .prod_main_details_head .prod_price_row {
        margin-bottom: 8px;
    }

    .prod_current_price {
        font-size: 14px;
    }

    .prod_actual_price,
    .prod_discount_percentage {
        font-size: 10px;
    }

    .popularSearch_categories_para,
    .popularSearch_categories_lineparas {
        font-size: 14px;
    }

    .popularSearch_heading {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (max-width: 359px) {

    .quick_view_popup .prod_price_row {
        gap: 4px;
    }

    .footer_content_header h3 {
        font-size: 10px;
    }

    .footer_content {
        gap: 2px;
    }

    .footer_content_header .footer_icon {
        width: 16px;
        height: 16px;

    }
}
