/* ============================================
   WOMEN'S DAY LANDING PAGE - Font Faces
   ============================================ */

/* Aktiv Grotesk Ex Hebr - Regular */
@font-face {
    font-family: "Aktiv Grotesk Ex Hebr";
    src: url("../fonts/AktivGroteskExHebr/AktivGroteskExHebr-Regular.otf") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "Aktiv Grotesk Ex Hebr";
    src: url("../fonts/AktivGroteskExHebr/AktivGroteskExHebr-Medium.otf") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
}

/* Aktiv Grotesk Ex Hebr - Bold */
@font-face {
    font-family: "Aktiv Grotesk Ex Hebr";
    src: url("../fonts/AktivGroteskExHebr/AktivGroteskExHebr-Bold.otf") format("opentype");
    font-display: auto;
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
}



/* Slow spin animation for decorative SVG pseudo-elements */
@keyframes wdlp-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   WOMEN'S DAY LANDING PAGE - MOBILE FIRST CSS
   ============================================ */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ============================================
   BASE / GLOBAL STYLES
   ============================================ */

#womans-day-landing-page {
    font-family: "Aktiv Grotesk Ex Hebr", sans-serif;
    font-weight: 400;
    color: #2d2d2d;
    width: 100%;
    overflow-x: hidden;
    direction: rtl;
}

#womans-day-landing-page *,
#womans-day-landing-page *::before,
#womans-day-landing-page *::after {
    box-sizing: border-box;
}

#womans-day-landing-page section {
    width: 100%;
    height: auto;
}

/* #womans-day-landing-page img {
    max-width: 100%;
    height: auto;
    display: block;
} */

.page-template-page-womans-day footer#footer::before {
    display: none;
}

/* ============================================
   COMMON BUTTON STYLES
   ============================================ */

.wdlp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-family: "Aktiv Grotesk Ex Hebr", sans-serif;
    font-size: 14px;
    font-weight: 400;
    min-width: 145px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    max-height: 44px;
}

.wdlp-btn:hover {
    opacity: 0.85;
}

.wdlp-btn:active {
    transform: scale(0.97);
}

#womans-day-landing-page a.wdlp-btn-primary,
#womans-day-landing-page a.wdlp-btn-primary:link,
#womans-day-landing-page a.wdlp-btn-primary:visited,
#womans-day-landing-page a.wdlp-btn-primary:hover,
#womans-day-landing-page a.wdlp-btn-primary:active {
    background-color: #4756FF;
    color: #fff;
    border: 1px solid #4756FF;
}

#womans-day-landing-page a.wdlp-btn-secondary,
#womans-day-landing-page a.wdlp-btn-secondary:link,
#womans-day-landing-page a.wdlp-btn-secondary:visited,
#womans-day-landing-page a.wdlp-btn-secondary:hover,
#womans-day-landing-page a.wdlp-btn-secondary:active {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

/* ============================================
   SECTION 1: HERO / INTRO SECTION
   ============================================ */

#wdlp-hero-section {
    padding-top: 80px;
}

.wdlp-hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px 0;
    gap: 30px;
}

/* Hero Content */
.wdlp-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    width: 100%;
    min-width: 333px;
}

.wdlp-hero-download-label+.wdlp-hero-buttons,
.wdlp-hero-buttons+.wdlp-hero-download-label {
    margin-top: -16px;
}

.wdlp-hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.02;
    color: #4756FF;
    margin: 0;


    letter-spacing: -0.64px;
    max-width: 320px;
}

.wdlp-hero-title .wdlp-title-line-1,
.wdlp-hero-title .wdlp-title-line-2 {
    display: block;
}

.wdlp-hero-title .wdlp-title-line-1 {
    font-size: 22px;
    font-weight: 400;
    color: #171717;
    line-height: 1.1;
    margin-bottom: 5px;
}

.wdlp-hero-desc {
    font-size: 20px;
    font-weight: 400;
    color: #2d2d2d;
    margin: 0;
    max-width: 333px;
    margin-top: -14px;
    margin-bottom: 14px;
}

/* Download label - on mobile: appears AFTER buttons (order: 1) */
.wdlp-hero-download-label {
    color: #2d2d2d;
    text-align: center;
    font-family: "Aktiv Grotesk Ex Hebr", sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    margin-bottom: 3px;
}

.wdlp-hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: center;
    font-family: aktiv-grotesk-hebrew, sans-serif;
}

/* Hero Image */
.wdlp-hero-image {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: auto;
}

.wdlp-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: -210px;
}

@media screen and (min-width: 410px) {
    .wdlp-hero-image img {
        margin-bottom: -230px;
    }
}

/* .wdlp-hero-image img {
    margin-bottom: -160px;
}

@media screen and (min-width: 410px) {
    .wdlp-hero-image img {
        margin-bottom: -180px;
    }
} */

/* ============================================
   SECTION 2: CONTENT SECTION
   ============================================ */

#wdlp-content-section {
    margin-top: 100px;
    background-color: #F5F5F5;
    background: linear-gradient(to bottom,
            #F5F5F5 35%,
            #FFFFFF 35%,
            #FFFFFF 73%,
            #F5F5F5 73%);
}

.wdlp-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 20px 70px;
    position: relative;
}

/* Content Description */
.wdlp-content-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #2d2d2d;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 320px;
}

/* Toggle Buttons - hidden on mobile/tablet, shown on desktop */
.wdlp-toggle-buttons {
    display: none;
}

/* Tab Panels */
.wdlp-tabs-container {
    width: 100%;
    position: relative;
}

/* Mobile/Tablet: show ALL panels stacked */
.wdlp-tab-panel {
    display: block;
    margin-bottom: 48px;
}

.wdlp-tab-panel:last-child {
    margin-bottom: 0;
}

.wdlp-tab-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

/* Tab Image */
.wdlp-tab-image {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.wdlp-tab-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    width: 300px;
}

#wdlp-tab-whats-inside .wdlp-tab-image img {
    margin-right: -12%;
    max-width: 79%;
}

#wdlp-tab-who-is-it-for .wdlp-tab-image img {
    margin-left: -12%;
    margin-right: auto;
    max-width: 77%;
}


/* #wdlp-tab-whats-inside .wdlp-tab-image{
    background: #F5F5F5;
} */

/* Mobile/desktop image toggling */
#womans-day-landing-page .wdlp-tab-image .wdlp-tab-image-mobile {
    display: block;
}

#womans-day-landing-page .wdlp-tab-image .wdlp-tab-image-desktop {
    display: none;
}

#wdlp-tab-who-is-it-for .wdlp-tab-inner {
    gap: 0px;
}

/* Tab Text */
.wdlp-tab-text {
    width: 100%;
    text-align: right;
    margin-top: 20px;
    max-width: 420px;
}

.wdlp-tab-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #4756FF;
    margin: 0 4px 16px 0;
    letter-spacing: -0.48px;
    text-align: right;
}

.wdlp-tab-list {
    list-style: disc;
    padding: 0 30px 0 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.33;
    color: #2d2d2d;
}

.wdlp-tab-list li {
    margin-bottom: 4px;
    text-align: right;
}

.wdlp-tab-list li:last-child {
    margin-bottom: 0;
}


/* Apply slow spin to all decorative SVG pseudo-elements */
#wdlp-tab-whats-inside .wdlp-tab-image::after,
.wdlp-tabs-container::after {
    animation: wdlp-spin 20s linear infinite;
}

#wdlp-tab-whats-inside .wdlp-tab-image::before {
    content: "";
    background: url("../images/womans-day/yellow-top.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 32px;
    height: 32px;
    left: 40px;
    top: 0;
}

#wdlp-tab-whats-inside .wdlp-tab-image::after {
    content: "";
    background: url("../images/womans-day/red.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 54px;
    height: 54px;
    left: 38px;
    bottom: 18px;
}

#wdlp-tab-who-is-it-for .wdlp-tab-image::before {
    content: "";
    background: url("../images/womans-day/green.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 52px;
    height: 52px;
    right: 16%;
    top: 18px;
}

.wdlp-content-wrapper::after {
    content: "";
    background: url("../images/womans-day/yellow-right.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 90px;
    height: 90px;
    left: -28px;
    bottom: -45px;
}

/* ============================================
   SECTION 3: ROAD MAP SECTION
   ============================================ */



.wdlp-roadmap-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 20px 120px;
    gap: 32px;
}

/* Road Map Content */
.wdlp-roadmap-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
}

.wdlp-roadmap-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.02;
    color: #4756FF;
    margin: 0;
    letter-spacing: -0.72px;
}

.wdlp-roadmap-title span:first-child {
    color: #000;
    font-size: 22px;
    font-weight: 400;
}

.wdlp-roadmap-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #2d2d2d;
    margin: 0;
    max-width: 255px;
    margin-top: -12px;
}

.wdlp-roadmap-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    flex-wrap: nowrap;
}

/* Road Map Image */
.wdlp-roadmap-image {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    position: relative;
}

.wdlp-roadmap-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


.wdlp-roadmap-content .wdlp-hero-download-label {

    margin-top: 20px;
    margin-bottom: -10px;
}

/* ============================================
   TABLET BREAKPOINT 540px+)
   ============================================ */
/* #womans-day-landing-page img {
    max-width: 100%;
    height: auto;
    display: block;
} */

@media screen and (min-width: 540px) {
    .wdlp-hero-title {
        max-width: none;
        line-height: 1.1;
    }

    .wdlp-hero-title .wdlp-title-line-1,
    .wdlp-hero-title .wdlp-title-line-2 {
        display: block;
        white-space: nowrap;
    }

    .wdlp-hero-title .wdlp-title-line-1,
    .wdlp-roadmap-title span:first-child {
        font-size: 26px;
    }

    .wdlp-btn {
        font-size: 16px;
        font-weight: 400;
        min-width: 165px;
    }


}

/* ============================================
   TABLET BREAKPOINT (750px+)
   ============================================ */

@media screen and (min-width: 750px) {

    /* --- HERO --- */
    .wdlp-hero-wrapper {
        flex-direction: row;
        align-items: stretch;
        padding: 48px 40px 0;
        gap: 40px;
    }

    .wdlp-hero-content {
        align-items: flex-start;
        text-align: right;
        flex: 1;
        margin-bottom: 64px;
        margin-top: 50px;
    }

    .wdlp-hero-title {
        font-size: 36px;
        letter-spacing: -0.72px;
    }

    /* Tablet+: label goes back above buttons (reset order) */
    .wdlp-hero-download-label {
        order: 0;
        text-align: right;
        margin-top: 25px;
    }

    .wdlp-hero-buttons {
        justify-content: flex-start;
    }

    .wdlp-hero-image {
        align-self: flex-end;
    }

    /* 
    #womans-day-landing-page img {
        margin-bottom: -40px;
        padding-top: 50px;
    } */


    .wdlp-hero-image img {
        margin-bottom: -96px;
    }

    .wdlp-hero-image {
        flex: 0 0 auto;
        width: 50%;
        max-width: 500px;
    }

    /* --- CONTENT SECTION --- */
    #wdlp-content-section {
        margin-top: 0;
        background: #F5F5F5;
    }

    .wdlp-content-wrapper {
        padding: 110px 40px 40px;
    }

    .wdlp-content-desc {
        font-size: 16px;
        max-width: 750px;

    }

    /* Toggle Buttons - SHOW from tablet */
    .wdlp-toggle-buttons {
        display: flex;
        justify-content: center;
        margin-bottom: 8px;
    }

    .wdlp-toggle-btn {
        font-family: "Aktiv Grotesk Ex Hebr", sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: normal;
        width: 221px;
        height: 55px;
        border: none;
        cursor: pointer;
        color: #fff;
        transition: all 0.3s ease;
        background: #000;
    }

    /* First button (right in RTL) - rounded right corners */
    .wdlp-toggle-btn:first-child {
        border-radius: 0 40px 40px 0;
    }

    /* Second button (left in RTL) - rounded left corners */
    .wdlp-toggle-btn:last-child {
        border-radius: 40px 0 0 40px;
    }

    .wdlp-toggle-btn.active {
        background: #4756FF;
        color: #ffffff;
        font-weight: 500;
    }

    /* Swap mobile/desktop images from tablet */
    #womans-day-landing-page .wdlp-tab-image .wdlp-tab-image-mobile {
        display: none;
    }

    #womans-day-landing-page .wdlp-tab-image .wdlp-tab-image-desktop {
        display: block;
    }

    #wdlp-tab-whats-inside .wdlp-tab-image img,
    #wdlp-tab-who-is-it-for .wdlp-tab-image img {
        max-width: 100%;
    }


    /* Tablet+: only show active tab panel */
    .wdlp-tab-panel {
        display: none;
        margin-bottom: 0;
    }


    .wdlp-tab-panel.active {
        display: block;
    }

    /* Tab Inner: side by side from tablet */
    .wdlp-tab-inner {
        flex-direction: row-reverse;
        align-items: start;
        gap: 32px;
        padding: 23px 0;
    }

    .wdlp-tab-image {
        flex: 1 1 50%;
        max-width: 50%;
        order: 1;
    }

    .wdlp-tab-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        width: auto;
    }

    #wdlp-tab-who-is-it-for .wdlp-tab-image img {
        margin-right: -50px;
    }

    .wdlp-tab-text {
        flex: 1 1 45%;
        max-width: 45%;
        order: 0;
        margin-top: 12%;
    }

    .wdlp-tab-title {
        text-align: right;
        font-size: 24px;
    }

    /* --- ROAD MAP --- */
    .wdlp-roadmap-wrapper {
        flex-direction: row;
        align-items: center;
        padding: 56px 40px 80px;
        gap: 40px;
    }

    .wdlp-roadmap-content {
        align-items: flex-start;
        text-align: right;
        flex: 1;
        min-width: 0;
    }

    .wdlp-roadmap-buttons {
        justify-content: flex-start;
    }

    .wdlp-roadmap-image {
        display: flex;
        flex: 0 0 auto;
        width: 50%;
        max-width: 400px;
    }


    #wdlp-tab-whats-inside .wdlp-tab-image::before {
        display: none;
    }

    .wdlp-tabs-container::before {
        content: "";
        background: url("../images/womans-day/yellow-bottom.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        width: 54px;
        height: 54px;
        left: 3%;
        bottom: 0px;
    }

    #wdlp-tab-whats-inside .wdlp-tab-image::after {
        display: none;
    }

    .wdlp-tabs-container::after {
        content: "";
        background: url("../images/womans-day/red.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        width: 82px;
        height: 82px;
        left: 8%;
        top: 0;
    }

    #wdlp-tab-who-is-it-for .wdlp-tab-image::before {
        display: none;
    }

    .wdlp-content-wrapper::before {
        content: "";
        background: url("../images/womans-day/green.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        width: 100px;
        height: 100px;
        left: 47%;
        bottom: 50px;
    }

    .wdlp-content-wrapper::after {
        display: none;
    }


    .wdlp-roadmap-image::before {
        content: "";
        background: url("../images/womans-day/blue.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        width: 72px;
        height: 72px;
        right: -58px;
        bottom: 10px;
    }


}

/* ============================================
   DESKTOP BREAKPOINT (1080px+)
   ============================================ */

@media screen and (min-width: 1080px) {

    /* --- BUTTONS --- */
    .wdlp-btn {
        font-size: 18px;
        padding: 12px 16px;
        min-width: 180px;
    }

    /* --- HERO --- */

    .wdlp-hero-content {
        gap: 28px;
        margin-bottom: 30px;
    }

    .wdlp-hero-wrapper {
        padding: 64px 64px 0;
        gap: 50px;
    }

    .wdlp-hero-title {
        font-size: 44px;
        letter-spacing: -0.88px;
    }

    .wdlp-hero-title .wdlp-title-line-1 {
        font-size: 40px;
    }

    .wdlp-hero-desc {
        max-width: 560px;
    }

    .wdlp-hero-image {
        width: 43%;
        max-width: 580px;
        margin-bottom: -21px;
        padding-top: 25px;
    }

    .wdlp-hero-download-label {
        order: 0;
        text-align: right;
        margin-top: 15px;
    }

    /* --- CONTENT SECTION --- */
    .wdlp-content-wrapper {
        padding: 145px 50px 40px;
    }

    .wdlp-content-desc {
        font-size: 20px;
        line-height: 35px;
        margin: 20px auto 70px;
        max-width: 950px;
    }

    /* Desktop: widen tab inner and adjust sizes */
    .wdlp-tab-inner {
        gap: 0;
        width: 1050px;
    }

    /* .wdlp-tab-image img {
        height: 432px;
        object-fit: cover;
    } */

    .wdlp-tab-inner {
        padding: 0 0 23px;
    }

    .wdlp-tab-text {
        flex: 1 1 50%;
        max-width: 50%;
    }

    #wdlp-tab-whats-inside .wdlp-tab-image img,
    #wdlp-tab-who-is-it-for .wdlp-tab-image img {
        margin-right: -20%;
        max-width: 103%;

    }

    .wdlp-tab-title {
        font-size: 36px;
        letter-spacing: -0.972px;
    }

    .wdlp-tab-list {
        font-size: 20px;
        line-height: 1.6;
    }

    .wdlp-tab-list li {
        margin-bottom: 8px;
        text-align: right;
    }

    .wdlp-content-wrapper::before {
        content: "";
        background: url("../images/womans-day/green.svg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        position: absolute;
        width: 120px;
        height: 120px;
        left: 52%;
        bottom: 50px;
    }

    /* --- ROAD MAP --- */
    .wdlp-roadmap-wrapper {
        padding: 64px 64px 100px;
        gap: 50px;
        flex-direction: row;
        align-items: start;
        justify-content: space-between;
    }

    .wdlp-roadmap-content {
        padding-top: 60px;
    }

    .wdlp-roadmap-title {
        font-size: 36px;
        line-height: 1.1;
        letter-spacing: -0.8px;
    }

    .wdlp-roadmap-title span:first-child {
        font-size: 34px;
    }

    .wdlp-roadmap-image {
        width: 50%;
        max-width: 508px;
    }

    .wdlp-roadmap-image img {
        width: 110%;
    }

    .wdlp-roadmap-desc {
        font-size: 20px;
        line-height: 1.6;
        max-width: 420px;
    }
}

/* ============================================
   WIDE DESKTOP ADJUSTMENTS (1280px+)
   ============================================ */

@media screen and (min-width: 1280px) {

    .wdlp-hero-wrapper {
        padding: 70px 64px 0;
    }

    .wdlp-hero-title {
        font-size: 48px;
        letter-spacing: -0.96px;
    }

    .wdlp-hero-desc {
        font-size: 20px;
    }

    .wdlp-tab-panel {
        min-height: 650px;
    }

    .wdlp-hero-image {
        width: 42%;
        max-width: 580px;
        margin-bottom: -51px;
        padding-top: 25px;
    }

    .wdlp-tab-inner {
        width: 1200px;
    }

    .wdlp-content-wrapper {
        padding: 150px 64px 64px 64px;
    }

    .wdlp-roadmap-wrapper {
        padding: 70px 64px 124px;
    }
}