.landing_page_wrap {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

main:has(#siteHeader .lp_sidebar.active) .landing_page_wrap {
    pointer-events: none;
    user-select: none;
}

.landing_page_card {
    flex: 0 0 50%;
    position: relative;
    width: 100%;
    aspect-ratio: 1.02;
}

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

.landing_page_content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.landing_page_title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 24px;
}

.landing_page_link_btn {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease-out;
    background-size: 200% 100%;
    background-position: right bottom;
    background-image: linear-gradient(to right, #b31b1b 50%, transparent 50%);
}

.landing_page_card:hover .landing_page_link_btn {
    background-position: left bottom;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

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

.hero-swiper .swiper-slide {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.swiper-pagination {
    bottom: 30px !important;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.swiper-pagination-bullet {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 1;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    transition: all ease 300ms;
}

.swiper-pagination-bullet-active {
    width: 100px;
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #FFFFFF;
    transition: width 0.1s linear;
}

.zi_hero_section {
    width: 100%;
    aspect-ratio: 2;
    overflow: hidden;
    position: relative;
}

.section_container {
    width: 100%;
    position: relative;
    margin-bottom: 32px;
    overflow: hidden;
}

.section_heading {
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 16px;
    text-align: center;
    text-transform: uppercase;
}

.new_in_swiper_wishlist {
    position: absolute;
    width: 27px;
    height: 27px;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.new_in_swiper .swiper-slide:last-child .new_in_swiper_wishlist {
    pointer-events: none;
    filter: blur(5px);
}

.new_in_swiper_wishlist.is-liked svg path {
    fill: currentColor;
    stroke: none;
}

.zi_special_banner {
    width: 100%;
    aspect-ratio: 2.13;
    position: relative;
}

.zi_loyalty_banner {
    width: 100%;
    aspect-ratio: 4.26;
}

.banner_link {
    display: block;
    width: 100%;
    height: 100%;
}

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

.influencer_prod_link {
    position: absolute;
    top: var(--desktop-y);
    left: var(--desktop-x);
    width: 18px;
    aspect-ratio: 1;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}

.influencer_prod_link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    will-change: transform;
    border-radius: 50%;
    background-color: #e3e3e3;
    animation: enlarge 2s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes enlarge {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.7);
    }
}

.influencer_prod_details_wrap {
    position: absolute;
    z-index: 2;
    width: 195px;
    display: flex;
    align-items: center;
    gap: 8px 4px;
    padding: 8px;
    opacity: 0;
    cursor: pointer;
    transition: 0.5s ease;
    background-color: #fff;
}

.influencer_prod_link.top .influencer_prod_details_wrap {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-bottom: 10px;
}

.influencer_prod_link.right .influencer_prod_details_wrap {
    top: 50%;
    left: 100%;
    transform: translate(0%, -50%);
    margin-left: 10px;
}

.influencer_prod_link.bottom .influencer_prod_details_wrap {
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-top: 10px;
}

.influencer_prod_link.left .influencer_prod_details_wrap {
    top: 50%;
    right: 100%;
    transform: translate(0%, -50%);
    margin-right: 10px;
}

.influencer_prod_link:hover .influencer_prod_details_wrap {
    opacity: 1;
    pointer-events: auto;
}

.influencer_prod_details_wrap::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
}

.influencer_prod_link.top .influencer_prod_details_wrap::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top-color: #fff;
}

.influencer_prod_link.right .influencer_prod_details_wrap::after {
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-right-color: #fff;
}

.influencer_prod_link.bottom .influencer_prod_details_wrap::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: #fff;
}

.influencer_prod_link.left .influencer_prod_details_wrap::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-left-color: #fff;
}

.influencer_prod_details_wrap picture {
    width: 40px;
    flex: 0 0 auto;
    aspect-ratio: 0.66;
}

.influencer_prod_name {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.zi_collection_swiper .swiper-wrapper {
    width: 100%;
    display: flex;
    gap: 12px;
}

.zi_collection_card {
    flex: 0 0 calc(25% - 9px);
    display: block;
    aspect-ratio: 0.67;
    overflow: hidden;
    position: relative;
}

.zi_categories_card img,
.new_in_swiper .swiper-slide img,
.zi_collection_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.5s ease;
}

.zi_categories_card:hover img,
.new_in_swiper .swiper-slide:hover img,
.zi_collection_card:hover img {
    transform: scale(1.03);
}

.zi_collection_name {
    position: absolute;
    top: 75%;
    left: 50%;
    z-index: 2;
    color: #ffffff;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    transform: translate(-50%, -50%);
}

.new_in_swiper .swiper-slide {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.57;
}

.new_in_swiper .swiper-wrapper:has(.swiper-slide.skeleton-box) {
    gap: 12px;
}

.new_in_swiper .swiper-slide.skeleton-box {
    flex: 0 0 calc(21% - 6px);
}

.new_in_swiper .swiper-slide:last-child {
    pointer-events: none;
}

.new_in_swiper .swiper-slide:last-child img {
    filter: blur(10px);
    pointer-events: none;
    background-color: #ffffff1f;
}

.swiper-button-prev,
.swiper-button-next {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    outline: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.swiper-button-prev {
    transform: rotate(180deg);
}

.swiper-button-prev {
    left: 20px;
}

.swiper-button-next {
    right: 20px;
}

.new_in_overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px;
    background-color: #fefefeb8;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.new_in_swiper .swiper-slide:not(:last-child):hover .new_in_overlay {
    transform: translateY(0);
}

.new_in_heading {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 4px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.new_in_overlay .prod_current_price {
    font-size: 14px;
}

.new_in_redirect {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    pointer-events: all;
}

.zi_categories_wrap {
    display: grid;
    grid-template-columns: calc(25% - 9px) repeat(2, calc(25% - 9px)) calc(25% - 9px) repeat(2, calc(25% - 9px));
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

.zi_categories_card {
    position: relative;
    aspect-ratio: 1.37;
    transition: all 0.5s ease;
    overflow: hidden;
}

.zi_categories_card:nth-child(1) {
    grid-area: 1 / 1 / 3 / 2;
    aspect-ratio: 0.67;
}

.zi_categories_card:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
}

.zi_categories_card:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
}

.zi_categories_card:nth-child(4) {
    grid-area: 1 / 3 / 3 / 4;
    aspect-ratio: 0.67;
}

.zi_categories_card:nth-child(5) {
    grid-area: 1 / 4 / 2 / 5;
}

.zi_categories_card:nth-child(6) {
    grid-area: 2 / 4 / 3 / 5;
}

.zi_categories_card:nth-child(7) {
    grid-area: 1 / 5 / 3 / 6;
    aspect-ratio: 0.67;
}

.zi_categories_card:nth-child(8) {
    grid-area: 1 / 6 / 2 / 7;
}

.zi_categories_card:nth-child(9) {
    grid-area: 2 / 6 / 3 / 7;
}

.zi_categories_card_name {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 1;
    min-width: 160px;
    max-width: 100%;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 16px;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
    background-color: #ffffff;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.zi_categories_expand {
    width: max-content;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 24px auto 0px;
    cursor: pointer;
}

.zi_categories_expand svg {
    width: 0px;
    animation: hoverSlideOut 0.5s ease-in-out forwards;
}

.zi_categories_expand .next_icon {
    width: 24px;
}

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

.zi_categories_expand.expanded .next_icon {
    width: 0px;
}

.zi_categories_expand.expanded .previous_icon {
    width: 24px;
    rotate: 180deg;
}

.boss-lady-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.95;
}

.boss-lady-main-wrapper {
    cursor: pointer;
}

.bl_inner_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.bl_category {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.625;
}

.bl_category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    transform: scale(var(--scale-val, 1)) translateZ(0);
}

.bl_category:hover img {
    transform: scale(1.1) translateZ(0);
}

.category-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 30px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #FFFFFF;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    will-change: transform, opacity;
    transform: translateY(var(--translate-y, 0)) translateZ(0);
    opacity: var(--overlay-opacity, 0);
}

.category-name {
    padding-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.see-all-link {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.see-all-link:hover {
    opacity: 0.8;
}

.arrow-icon {
    color: #FFFFFF;
    width: 16px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    overflow: hidden;
}

.arrow-icon svg {
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    animation: hoverSlideOut 0.5s ease-in-out forwards;
}

.see-all-link:hover .arrow-icon svg {
    animation: hoverSlideIn 0.5s ease-in-out forwards;
}

.boss-lady-loyalty-section {
    width: 100%;
    position: relative;
}

.bl_banner_link {
    width: 100%;
    display: block;
    aspect-ratio: 2.13;
    position: relative;
    overflow: hidden;
}

.bl_banner_link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.boss-lady-loyalty-explore {
    position: sticky;
    top: 82px;
    z-index: 0;
}

.boss-lady-gift-card {
    aspect-ratio: 3.45;
}

.featured_section {
    padding: 60px 0px;
    background-color: #EAEAEA;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.featured_heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.featured_swiper_wrapper {
    max-width: 96%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured_section_swiper {
    max-width: 1492px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.featured_section_card {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.8;
}

.featured_section_card picture {
    width: 100%;
    height: 100%;
}

.featured_section_card img {
    max-width: 200px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.featured_section_card.skeleton-box {
    flex: 0 0 100%;
    aspect-ratio: 15.07;
}

.swiper_controller {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.featured_swiper_wrapper>.swiper-button-prev,
.featured_swiper_wrapper>.swiper-button-next {
    flex: 0 0 auto;
    position: relative;
    inset: unset;
    height: unset;
    width: 24px;
    aspect-ratio: 1;
    border: none;
    box-shadow: none;
    transform: translateY(50%);
    background-color: transparent;
    pointer-events: all;
}

.featured_swiper_wrapper>.swiper-button-prev {
    transform: rotate(180deg) translateY(-50%);
}

.deal_zone_section {
    width: 100%;
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    padding: 40px;
    scrollbar-width: none;
    overflow: scroll;
}

.deal_zone_card {
    flex: 0 1 25%;
    aspect-ratio: 3.5;
    overflow: hidden;
    min-width: 24%;
}

.deal_zone_card img {
    width: 100%;
}

@media (max-width: 1439px) {
    .boss-lady-loyalty-explore {
        top: 64px;
    }

    .featured_section {
        padding: 40px 0px;
    }

    .featured_section_swiper {
        max-width: 90%;
    }

    .featured_section_card.skeleton-box {
        aspect-ratio: 10.05;
    }

    .featured_section_card img {
        max-width: 100px;
    }

    .featured_heading {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .landing_page_title {
        font-size: 32px;
    }

    .landing_page_link_btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .category-info-overlay {
        padding: 10px;
    }
}

@media (max-width: 767px) {

    .deal_zone_section {
        gap: 10px;
        padding: 24px 10px;
    }

    .deal_zone_card {
        flex: 0 1 30%;
    }

    .featured_section {
        padding: 32px 0px;
    }

    .featured_heading {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .featured_section_swiper {
        max-width: 75%;
    }

    .featured_section_card.skeleton-box {
        aspect-ratio: 5.77;
    }

    .featured_section_card img {
        max-width: 60px;
    }

    .landing_page_wrap {
        flex-direction: column;
        min-height: unset;
    }

    .landing_page_title {
        font-size: 20px;
    }

    .landing_page_link_btn {
        font-size: 16px;
        padding: 12px 24px;
    }

    .swiper-pagination-bullet {
        width: 30px;
        height: 2px;
    }

    .swiper-pagination-bullet-active {
        width: 50px;
    }

    .section_container {
        margin-bottom: 24px;
    }

    .section_heading {
        font-size: 14px;
    }

    .new_in_swiper_wishlist {
        width: 17px;
        height: 17px;
        right: 10px;
        top: 10px;
    }

    .zi_hero_section {
        aspect-ratio: 0.48;
    }

    .zi_special_banner {
        aspect-ratio: 0.51;
    }

    .zi_loyalty_banner {
        aspect-ratio: 1.03;
    }

    .influencer_prod_link {
        top: var(--mobile-y);
        left: var(--mobile-x);
        width: 14px;
    }

    .influencer_prod_details_wrap {
        width: 160px;
        padding: 6px;
        gap: 6px;
    }

    .influencer_prod_details_wrap picture {
        width: 36px;
    }

    .influencer_prod_name {
        font-size: 11px;
    }

    .zi_collection_swiper .swiper-wrapper {
        gap: 0px;
    }

    .zi_collection_card {
        flex: 0 0 100%;
    }

    .new_in_swiper .swiper-wrapper:has(.swiper-slide.skeleton-box) {
        gap: 6px;
    }

    .new_in_swiper .swiper-slide.skeleton-box {
        flex: 0 0 calc(42% - 5px);
    }

    .new_in_overlay {
        padding: 4px 8px;
        transform: unset;
    }

    .new_in_swiper .swiper-slide:has(.new_in_redirect) .new_in_overlay {
        display: none;
    }

    .new_in_heading {
        font-size: 10px;
        line-height: 1.5;
        margin-bottom: 2px;
    }

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

    .new_in_redirect {
        font-size: 10px;
    }

    .zi_categories_wrap {
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .zi_categories_card {
        aspect-ratio: 0.7375;
        overflow: hidden;
    }

    .zi_categories_card_name {
        font-size: 10px;
        padding: 10px 8px;
        min-width: 109px;
        bottom: 20px;
    }

    .zi_categories_card:nth-child(1) {
        grid-area: 1 / 1 / 2 / 3;
        aspect-ratio: 1.5;
    }

    .zi_categories_card:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .zi_categories_card:nth-child(3) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .zi_categories_card:nth-child(4) {
        grid-area: 3 / 1 / 4 / 3;
        aspect-ratio: 1.5;
    }

    .zi_categories_card:nth-child(5) {
        grid-area: 4 / 1 / 5 / 2;
    }

    .zi_categories_card:nth-child(6) {
        grid-area: 4 / 2 / 5 / 3;
    }

    .zi_categories_card:nth-child(7) {
        grid-area: 5 / 1 / 6 / 3;
        aspect-ratio: 1.5;
        height: 0px;
    }

    .zi_categories_card:nth-child(8) {
        grid-area: 6 / 1 / 7 / 2;
        height: 0px;
    }

    .zi_categories_card:nth-child(9) {
        grid-area: 6 / 2 / 7 / 3;
        height: 0px;
    }

    .zi_categories_wrap.active .zi_categories_card:nth-child(7),
    .zi_categories_wrap.active .zi_categories_card:nth-child(8),
    .zi_categories_wrap.active .zi_categories_card:nth-child(9) {
        height: auto;
    }

    .zi_categories_expand {
        font-size: 12px;
        margin-top: 10px;
    }

    .zi_categories_expand svg {
        rotate: 90deg;
    }

    .zi_categories_expand .next_icon {
        width: 18px;
    }

    .zi_categories_expand.expanded .previous_icon {
        width: 18px;
        rotate: 270deg;
    }

    .bl_banner_link {
        aspect-ratio: 0.74;
    }

    .boss-lady-gift-card {
        aspect-ratio: 1.37;
    }

    .bl_inner_wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .bl_category {
        aspect-ratio: 0.43;
    }

    .boss-lady-banner {
        aspect-ratio: 0.48;
    }

    .see-all-link {
        display: none;
    }

    .category-info-overlay {
        padding: 0 0px 10px 10px;
    }

    .category-name {
        font-size: 11px;
        font-weight: 400;
        text-align: center;
    }
}
