/* Visual Design: Premium Apple style with spacious layout */
:root {
    --pde-accent: #6F8F8E;
    --pde-dim-bg: rgba(10, 10, 10, 0.2);
    --pde-panel-bg: #ffffff;
    --pde-bone: #F7F7F7;
}

#pde-b01b8625 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    max-width: 1180px; /* Lock width strictly */
    margin: 0 auto;
    padding: 0 100px 24px;
    position: relative;
    min-height: 540px;
    box-sizing: border-box;
}

/* Flanking Chevrons Navigation styling */
.pde-nav-chevron {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 0;
    width: 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 20;
    opacity: 0.8;
}

.pde-nav-chevron:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.pde-nav-chevron svg {
    width: 44px;
    height: 44px;
    fill: var(--pde-accent);
}

.pde-chevron-left {
    left: -64px;
}

.pde-chevron-right {
    right: -64px;
}

.pde-nav-chevron:disabled,
.pde-nav-chevron.disabled {
    opacity: 0.1 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Intro Header */
.pde-intro-header {
    text-align: center;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 64px;
}

.pde-main-heading {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: lowercase;
    font-family: Helvetica, Arial, sans-serif;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.pde-main-subheading {
    font-size: 15px;
    font-family: Assistant, sans-serif;
    color: #222222;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

/* Header & Progress Indicator */
.pde-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
    height: 20px;
}

.pde-progress {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8E8E93;
}

.pde-progress .pde-step {
    transition: color 0.25s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

.pde-progress .pde-step.active {
    color: var(--pde-accent);
    font-weight: 400;
}
.pde-progress .pde-step::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--pde-accent);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.pde-progress .pde-step.active::after {
    width: 100%;
}


.pde-progress .pde-separator {
    color: #c7c7cc;
}

/* Workspace wrapper */
.pde-workspace-wrapper {
    position: relative;
    min-height: 540px;
    max-height: none;
    overflow: visible;
}

.pde-workspace {
    position: relative;
    z-index: 1;
}

.pde-screen {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.pde-screen.pde-screen-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Step 1: Discovery Cards Grid - Spacious but Compact 3x2 Layout so all 6 fit */
.pde-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 20px;
    align-items: stretch;
}

.pde-card {
    position: relative;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    min-height: 260px;
    height: 100%;
    max-height: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(111, 143, 142, 0.04);
    box-sizing: border-box;
    overflow: hidden;
}

.pde-card-1 { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.08) 100%); }
.pde-card-2 { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.10) 100%); }
.pde-card-3 { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.09) 100%); }
.pde-card-4 { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.11) 100%); }
.pde-card-5 { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.07) 100%); }
.pde-card-6 { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.12) 100%); }

.pde-card-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.pde-card-inner .pde-explore-link {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    color: var(--pde-accent);
    margin-top: 0;
    padding-top: 0;
    display: inline-block;
    transition: transform 0.2s ease;
}

.pde-card-title {
    margin: 0 0 10px 0;
    color: #1c1c1e;
    letter-spacing: -0.03em;
}

.pde-card-desc {
    font-size: 14px;
    line-height: 1.45;
    color: #636366;
    margin: 0 0 18px 0;
}

/* Popular Goals Box */
.pde-popular-goals-box {
    margin: 0;
}

.pde-pop-label {
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    text-transform: none;
    letter-spacing: 0.8px;
    color: var(--pde-accent);
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

#pde-b01b8625 .pde-pop-list{
    list-style:none;
    margin:12px 0 0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:8px;
}

#pde-b01b8625 .pde-pop-list li{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    line-height:1.45;
    color:#2B2B2B;
}

#pde-b01b8625 .pde-pop-list li::before{
    content:"âœ“";
    color:var(--pde-accent);
    font-weight:600;
    font-size:15px;
    flex-shrink:0;
}

#pde-b01b8625 .pde-pop-list li::after{
    display:none;
}

.pde-explore-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--pde-accent);
    margin-top: 12px;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Hover States */
.pde-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(111, 143, 142, 0.1);
    border-color: var(--pde-accent);
}

.pde-card:hover .pde-explore-link {
    transform: translateX(4px);
}

/* Step 2: Target Goals Screen - CSS ONLY MATCHING STEP 1 visual language */
#pde-step-2 .pde-step-title {
    font-size: 26px; /* Elegant H2 style */
    font-weight: 400; /* Light / not bold */
    letter-spacing: -1.5px;
    text-transform: lowercase;
    font-family: Helvetica, Arial, sans-serif;
    color: #000000;
    margin: 0 auto 32px auto;
    line-height: 1.2;
    text-align: center;
    max-width: 900px;
}

#pde-step-2 .pde-step-title::after {
    content: "Choose the option that best matches your goal.";
    display: block;
    font-size: 15px;
    font-family: Assistant, sans-serif;
    color: #222222;
    margin-top: 8px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: none; /* Turn off lowercase for subhead */
}

.pde-subgoals-group {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.pde-subgoals-group.active {
    display: grid;
}

.pde-subgoal-card {
    position: relative;
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    min-height: 130px;
    height: 100%;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(111, 143, 142, 0.04);
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;

    font-family: inherit;
    font-size: 22px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #1c1c1e;
}

.pde-subgoal-card:nth-child(1) { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.08) 100%); }
.pde-subgoal-card:nth-child(2) { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.10) 100%); }
.pde-subgoal-card:nth-child(3) { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.09) 100%); }
.pde-subgoal-card:nth-child(4) { background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.11) 100%); }

.pde-subgoal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(111, 143, 142, 0.1);
    border-color: var(--pde-accent);
}

.pde-subgoal-card::after {
    content: "Explore \2192";
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    color: var(--pde-accent);
    margin-top: 20px;
    display: inline-block;
    transition: transform 0.2s ease;
}

.pde-subgoal-card:hover::after {
    transform: translateX(4px);
}

/* Step 3: Premium Compact Centered Screen Popup Overlay */
.pde-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pde-dim-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pde-blur-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.pde-recommendation-panel {
    width: 90%;
    max-width: 820px; /* Reduced from 960px for refined fit */
    background: var(--pde-panel-bg);
    border-radius: 20px;
    padding: 36px; /* Compact padding */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pde-blur-overlay.active .pde-recommendation-panel {
    transform: scale(1);
}

/* Simple X Close trigger with NO borders or boxes */
.pde-close-rec-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none !important;
    border: none !important;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6F8F8E; /* Styled exactly to #6F8F8E */
    transition: color 0.2s, transform 0.2s;
    z-index: 10;
    width: auto;
    height: auto;
    box-shadow: none !important;
}

.pde-close-rec-btn:hover {
    color: #000000;
    transform: scale(1.1);
}

.pde-rec-header {
    text-align: center;
    margin-bottom: 24px;
}

.pde-rec-subtitle {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--pde-accent);
    margin: 0 0 6px 0;
}

.pde-rec-headline {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1c1c1e;
    margin: 0;
}

/* Symmetrical balanced popup layout row */
.pde-rec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 760px;
    margin: 0 auto;
}

.pde-rec-column {
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.primary-column {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 1) 0%, rgba(111, 143, 142, 0.07) 100%);
    border: 2px solid var(--pde-accent);
    box-shadow: 0 10px 24px rgba(111, 143, 142, 0.08);
}

.upgrade-column {
    background: #FAFAFA;
    border: 1px dashed rgba(111, 143, 142, 0.2);
}

.pde-rec-badge {
    font-size: 11px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.05em;
    color: var(--pde-accent);
    margin-bottom: 4px;
    display: inline-block;
}

.pde-rec-badge.upgrade-badge {
    color: #8E8E93;
}

.pde-rec-category-label {
    font-size: 11px;
    color: #8E8E93;
    margin-bottom: 12px;
}

.pde-rec-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 8px 0;
    color: #1c1c1e;
}

.pde-rec-desc {
    font-size: 13px;
    line-height: 1.4;
    color: #636366;
    margin: 0 0 16px 0;
    min-height: 38px;
}

/* Compact 1:1 image lookups */
.pde-rec-image-wrapper {
    width: 80px; /* Reduced from 100% for an incredibly balanced and refined card visual */
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.pde-rec-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pde-rec-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.3) 100%);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}

/* Why recommended section */
.pde-rec-why-box {
    margin-bottom: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.pde-why-title {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #8E8E93;
    margin-bottom: 4px;
    display: block;
}

.pde-why-text {
    font-size: 12px;
    line-height: 1.4;
    color: #3a3a3c;
    margin: 0;
}

/* Button wrappers */
.pde-rec-action {
    margin-top: auto;
}

.pde-rec-action .elementor-button-wrapper {
    display: block;
}

.pde-global-btn {
    display: block;
    width: 100% !important;
    text-align: center !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
}

.pde-rec-action .elementor-button {
    color: var(--pde-bone) !important;
}

.pde-rec-action .elementor-button:hover {
    color: var(--pde-bone) !important;
}

/* Desktop-First Grid columns */
@media (min-width: 1025px) {
    .pde-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Start Here page supplies the widget heading and description */
.pde-intro-header {
    display: none !important;
}

/* Remove the Step 2 heading and generated description */
#pde-step-2 .pde-step-title {
    display: none !important;
}

/* Consistent minimal card treatment */
.pde-card-1,
.pde-card-2,
.pde-card-3,
.pde-card-4,
.pde-card-5,
.pde-card-6,
.pde-subgoal-card:nth-child(1),
.pde-subgoal-card:nth-child(2),
.pde-subgoal-card:nth-child(3),
.pde-subgoal-card:nth-child(4) {
    background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.08) 100%);
}

.pde-pop-list li {
    padding-left: 0;
}

.pde-pop-list li::before {
    content: none;
}

.pde-explore-link,
.pde-subgoal-card::after {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
}

/* Tablet */
@media (max-width: 1024px) {
    #pde-b01b8625 {
        max-width: 100%;
        padding: 0 72px 24px;
        min-height: auto;
        max-height: none;
    }

    .pde-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        gap: 16px;
    }

    .pde-card {
        min-height: 260px;
        height: 100%;
        padding: 22px;
    }

    .pde-nav-chevron {
        width: 48px;
        height: 48px;
    }

    .pde-nav-chevron svg {
        width: 32px;
        height: 32px;
    }

    .pde-chevron-left {
        left: 10px;
    }

    .pde-chevron-right {
        right: 10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #pde-b01b8625 {
        width: 100%;
        max-width: 100%;
        padding: 0 14px 20px;
        min-height: auto;
        max-height: none;
        overflow: visible;
    }

    .pde-header {
        height: auto;
        margin-bottom: 18px;
    }

    .pde-progress {
        width: 100%;
        gap: 7px;
        font-size: 12px;
        letter-spacing: 0.4px;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .pde-progress .pde-step,
    .pde-progress .pde-separator {
        white-space: nowrap;
    }

    .pde-workspace-wrapper {
        min-height: 0;
        max-height: none;
    }

    .pde-cards-grid,
    .pde-subgoals-group,
    .pde-subgoals-group.active {
        grid-template-columns: 1fr;
        gap: 12px;
        width: calc(100% - 42px);
        margin: 0 auto;
    }

    .pde-card {
        min-height: 0;
        height: auto;
        max-height: none;
        padding: 20px;
        border-radius: 16px;
        overflow: hidden;
    }

    .pde-card-title {
        font-size: 21px;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .pde-card-desc {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pde-pop-label {
        font-size: 9px;
    }

    .pde-pop-list li {
        font-size: 11px;
        margin-bottom: 3px;
    }

    .pde-explore-link {
        font-size: 11px;
        margin-top: 14px;
    }

    .pde-subgoal-card {
        min-height: 94px;
        max-height: none;
        padding: 18px 16px;
        border-radius: 16px;
        font-size: 18px;
        text-transform: none;
    }

    .pde-subgoal-card::after {
        font-size: 11px;
        margin-top: 12px;
    }

    .pde-nav-chevron {
        top: 50%;
        width: 34px;
        height: 52px;
        z-index: 30;
    }

    .pde-nav-chevron svg {
        width: 25px;
        height: 25px;
    }

    .pde-chevron-left {
        left: -2px;
    }

    .pde-chevron-right {
        right: -2px;
    }

    .pde-blur-overlay {
        padding: 12px;
        align-items: center;
    }

    .pde-recommendation-panel {
        width: 94vw;
        max-height: 90vh;
        padding: 24px 18px 18px;
        border-radius: 18px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .pde-close-rec-btn {
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        font-size: 21px;
    }

    .pde-rec-header {
        margin-bottom: 18px;
        padding: 0 28px;
    }

    .pde-rec-headline {
        font-size: 22px;
    }

    .pde-rec-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: none;
    }

    .pde-rec-column {
        padding: 18px;
    }

    .pde-rec-image-wrapper {
        width: 104px;
        margin: 0 auto 14px;
    }

    .pde-rec-title {
        font-size: 20px;
        text-align: center;
    }

    .pde-rec-desc {
        min-height: 0;
        font-size: 12px;
        text-align: center;
    }

    .pde-global-btn {
        padding: 12px 18px !important;
    }
}


/* Final card containment safeguards */
#pde-b01b8625 .pde-cards-grid {
    align-items: stretch;
}

#pde-b01b8625 .pde-card {
    height: 100%;
    max-height: none;
    overflow: hidden;
}

#pde-b01b8625 .pde-card-inner {
    min-height: 100%;
    flex: 1 1 auto;
}

#pde-b01b8625 .pde-card-inner .pde-explore-link {
    margin-top: auto;
    padding-top: 20px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    #pde-b01b8625 .pde-card {
        height: auto;
        min-height: 0;
    }
}


/* Goal tile consistency overrides */
#pde-b01b8625 .pde-subgoal-card {
    font-family: inherit;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #1c1c1e;
}

#pde-b01b8625 .pde-subgoal-card::after {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    color: var(--pde-accent);
    margin-top: 20px;
}

@media (max-width: 767px) {
    #pde-b01b8625 .pde-subgoal-card {
        font-size: 21px;
        padding: 20px;
        min-height: 110px;
    }

    #pde-b01b8625 .pde-subgoal-card::after {
        font-size: 11px;
        margin-top: 16px;
    }
}


/* Stable step layout: prevents the page from jumping between Explore and Goal */
#pde-b01b8625 #pde-step-1.pde-screen-active {
    min-height: 540px;
}

#pde-b01b8625 #pde-step-2.pde-screen-active {
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pde-b01b8625 #pde-step-2 .pde-subgoals-group.active {
    width: 100%;
}

/* Chevrons are aligned to the active tile workspace */
#pde-b01b8625 .pde-workspace-wrapper > .pde-nav-chevron {
    top: 50%;
}

@media (max-width: 1024px) and (min-width: 768px) {
    #pde-b01b8625 .pde-workspace-wrapper {
        min-height: 820px;
    }

    #pde-b01b8625 #pde-step-1.pde-screen-active,
    #pde-b01b8625 #pde-step-2.pde-screen-active {
        min-height: 820px;
    }

    #pde-b01b8625 .pde-chevron-left {
        left: -54px;
    }

    #pde-b01b8625 .pde-chevron-right {
        right: -54px;
    }
}

@media (max-width: 767px) {
    #pde-b01b8625 .pde-workspace-wrapper,
    #pde-b01b8625 #pde-step-1.pde-screen-active,
    #pde-b01b8625 #pde-step-2.pde-screen-active {
        min-height: 0;
    }

    #pde-b01b8625 #pde-step-2.pde-screen-active {
        display: block;
    }

    #pde-b01b8625 .pde-chevron-left {
        left: -4px;
    }

    #pde-b01b8625 .pde-chevron-right {
        right: -4px;
    }
}


/* Final Goal tile typography and link correction */
#pde-b01b8625 .pde-subgoal-card {
    font-weight: 400;
}

#pde-b01b8625 .pde-subgoal-card::after {
    content: "Explore \2192";
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    color: var(--pde-accent);
    margin-top: 20px;
    display: inline-block;
}

@media (max-width: 767px) {
    #pde-b01b8625 .pde-subgoal-card::after {
        font-size: 11px;
        margin-top: 16px;
    }
}


/* FINAL: Goal titles use the exact same H3 styling as Explore titles */
#pde-b01b8625 .pde-subgoal-card {
    display: flex;
    flex-direction: column;
}

#pde-b01b8625 .pde-subgoal-title {
    font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    margin: 0 0 10px 0 !important;
    color: #1c1c1e !important;
    letter-spacing: -0.03em !important;
    font-family: inherit !important;
    text-transform: none !important;
}

#pde-b01b8625 .pde-subgoal-card::after {
    content: "Explore \2192" !important;
    font-family: "IBM Plex Mono", monospace !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
    color: var(--pde-accent) !important;
    margin-top: auto !important;
    padding-top: 20px !important;
    display: inline-block !important;
}

@media (max-width: 767px) {
    #pde-b01b8625 .pde-subgoal-title {
        font-size: 21px !important;
    }

    #pde-b01b8625 .pde-subgoal-card::after {
        font-size: 11px !important;
        padding-top: 16px !important;
    }
}


/* ==========================================================
   RECOMMENDATION PANEL V2
   Square product images, concise content, mobile carousel
   ========================================================== */

#pde-b01b8625 .pde-blur-overlay {
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}

#pde-b01b8625 .pde-recommendation-panel {
    width: min(1180px, 96vw);
    max-width: 1180px;
    max-height: 94vh;
    overflow-y: auto;
    padding: 30px 34px 22px;
    border-radius: 22px;
    box-sizing: border-box;
}

#pde-b01b8625 .pde-close-rec-btn {
    top: 18px;
    right: 22px;
    width: 42px;
    height: 42px;
    font-size: 30px;
    line-height: 1;
    color: var(--pde-accent);
}

#pde-b01b8625 .pde-rec-header {
    margin-bottom: 22px;
}

#pde-b01b8625 .pde-rec-subtitle {
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.8px;
    color: var(--pde-accent);
    margin-bottom: 6px;
}

#pde-b01b8625 .pde-rec-headline {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.04em;
}

#pde-b01b8625 .pde-rec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: none;
    margin: 0;
}

#pde-b01b8625 .pde-rec-column {
    min-width: 0;
    padding: 22px;
    border-radius: 16px;
    box-sizing: border-box;
}

#pde-b01b8625 .pde-rec-badge {
    display: inline-flex;
    align-self: flex-start;
    width: fit-content;
    margin: 0 0 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(111, 143, 142, 0.10);
    color: var(--pde-accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .8px;
    text-transform: uppercase;
}

#pde-b01b8625 .pde-rec-card-body {
    display: grid;
    grid-template-columns: minmax(180px, 42%) 1fr;
    gap: 26px;
    align-items: start;
    flex: 1;
}

#pde-b01b8625 .pde-rec-image-wrapper {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    margin: 0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05);
}

#pde-b01b8625 .pde-rec-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

#pde-b01b8625 .pde-rec-image-placeholder {
    width: 100%;
    height: 100%;
    background: #fff;
}

#pde-b01b8625 .pde-rec-content {
    min-width: 0;
}

#pde-b01b8625 .pde-rec-title {
    margin: 0 0 16px;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

#pde-b01b8625 .pde-rec-section {
    margin-bottom: 18px;
}

#pde-b01b8625 .pde-rec-section-title,
#pde-b01b8625 .pde-why-title {
    display: block;
    margin-bottom: 8px;
    color: var(--pde-accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .8px;
    text-transform: uppercase;
}

#pde-b01b8625 .pde-rec-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

#pde-b01b8625 .pde-rec-points li {
    position: relative;
    margin: 0 0 7px;
    padding-left: 23px;
    color: #2f2f31;
    font-size: 13px;
    line-height: 1.35;
}

#pde-b01b8625 .pde-rec-points li::before {
    content: "Ã¢Å“â€œ";
    position: absolute;
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--pde-accent);
    border-radius: 50%;
    color: var(--pde-accent);
    font-size: 10px;
    line-height: 14px;
    text-align: center;
}

#pde-b01b8625 .pde-rec-why-box {
    margin: 0;
    padding-top: 17px;
    border-top: 1px solid rgba(0, 0, 0, .07);
}

#pde-b01b8625 .pde-why-text {
    margin: 0;
    color: #363638;
    font-size: 13px;
    line-height: 1.5;
}

#pde-b01b8625 .pde-rec-action {
    margin-top: 20px;
}

#pde-b01b8625 .pde-global-btn {
    display: block;
    width: 100% !important;
    padding: 13px 20px !important;
    text-align: center !important;
}

#pde-b01b8625 .pde-cart-btn {
    display: block;
    width: 100%;
    margin-top: 11px;
    padding: 5px 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--pde-accent) !important;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.3px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

#pde-b01b8625 .pde-cart-btn:hover {
    color: #000 !important;
}

#pde-b01b8625 .pde-carousel-dots {
    display: none;
}

#pde-b01b8625 .pde-rec-disclaimer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    color: #68686c;
}

#pde-b01b8625 .pde-disclaimer-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--pde-accent);
    border-radius: 50%;
    color: var(--pde-accent);
    font-size: 13px;
}

#pde-b01b8625 .pde-rec-disclaimer p {
    margin: 0;
    font-size: 10px;
    line-height: 1.4;
}

#pde-b01b8625 .pde-disclaimer-help {
    text-align: right;
}

#pde-b01b8625 .pde-rec-disclaimer a {
    color: var(--pde-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 900px) and (min-width: 768px) {
    #pde-b01b8625 .pde-rec-card-body {
        grid-template-columns: 1fr;
    }

    #pde-b01b8625 .pde-rec-image-wrapper {
        max-width: 220px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    #pde-b01b8625 .pde-blur-overlay {
        padding: 10px;
    }

    #pde-b01b8625 .pde-recommendation-panel {
        width: 96vw;
        max-height: 92vh;
        padding: 24px 14px 18px;
        overflow-x: hidden;
    }

    #pde-b01b8625 .pde-close-rec-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 27px;
    }

    #pde-b01b8625 .pde-rec-header {
        padding: 0 34px;
        margin-bottom: 16px;
    }

    #pde-b01b8625 .pde-rec-headline {
        font-size: 24px;
    }

    #pde-b01b8625 .pde-rec-grid {
        display: flex;
        gap: 12px;
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #pde-b01b8625 .pde-rec-grid::-webkit-scrollbar {
        display: none;
    }

    #pde-b01b8625 .pde-rec-column {
        flex: 0 0 calc(100% - 18px);
        min-width: calc(100% - 18px);
        scroll-snap-align: start;
        padding: 18px;
    }

    #pde-b01b8625 .pde-rec-card-body {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #pde-b01b8625 .pde-rec-image-wrapper {
        width: min(76vw, 270px);
        margin: 0 auto;
    }

    #pde-b01b8625 .pde-rec-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    #pde-b01b8625 .pde-rec-points li,
    #pde-b01b8625 .pde-why-text {
        font-size: 12px;
    }

    #pde-b01b8625 .pde-why-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }

    #pde-b01b8625 .pde-carousel-dots {
        display: flex;
        justify-content: center;
        gap: 7px;
        margin-top: 12px;
    }

    #pde-b01b8625 .pde-carousel-dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #d5d5d7;
        box-shadow: none;
    }

    #pde-b01b8625 .pde-carousel-dot.active {
        background: var(--pde-accent);
    }

    #pde-b01b8625 .pde-rec-disclaimer {
        grid-template-columns: auto 1fr;
        gap: 9px;
        margin-top: 14px;
        padding-top: 13px;
    }

    #pde-b01b8625 .pde-disclaimer-help {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 37px;
    }
}


/* ==========================================================
   FINAL TARGETED FIXES Ã¢â‚¬â€ JULY 2026
   ========================================================== */

/* Goal titles: neutral span avoids Elementor's global H3 font/weight rules. */
#pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
    display: block !important;
    font-family: inherit !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    color: #1c1c1e !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
    font-style: normal !important;
}

/* Disabled fallback buttons never send customers to a generic shop page. */
#pde-b01b8625 .pde-button-disabled {
    opacity: .45;
    pointer-events: none;
}

/* Mobile recommendation: keep the square image visible without taking over the screen. */
@media (max-width: 767px) {
    #pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
        font-size: 21px !important;
    }

    #pde-b01b8625 .pde-rec-image-wrapper {
        width: 170px !important;
        max-width: 170px !important;
        height: 170px !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto 14px !important;
    }

    #pde-b01b8625 .pde-rec-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    #pde-b01b8625 .pde-rec-column {
        align-self: flex-start;
    }

    #pde-b01b8625 .pde-rec-card-body {
        gap: 12px !important;
    }

    #pde-b01b8625 .pde-rec-title {
        text-align: center;
        margin-bottom: 12px !important;
    }

    #pde-b01b8625 .pde-rec-section,
    #pde-b01b8625 .pde-rec-why-box {
        text-align: left;
    }
}


/* ==========================================================
   FINAL MOBILE + GOAL SCREEN REFINEMENTS
   ========================================================== */

/* Prevent browser scroll anchoring from moving the viewport between steps. */
#pde-b01b8625,
#pde-b01b8625 .pde-workspace-wrapper,
#pde-b01b8625 .pde-screen {
    overflow-anchor: none;
}

/* Goal titles: use Elementor Global Secondary Ã¢â‚¬â€ Helvetica Normal. */
#pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
    display: block !important;
    font-family: var(--e-global-typography-secondary-font-family, Helvetica), Helvetica, Arial, sans-serif !important;
    font-size: 22px !important;
    font-weight: var(--e-global-typography-secondary-font-weight, 400) !important;
    font-style: var(--e-global-typography-secondary-font-style, normal) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.03em !important;
    color: #1c1c1e !important;
    margin: 0 !important;
    padding: 0 !important;
    text-transform: none !important;
}

/* Correct the recommendation checkmark without relying on file encoding. */
#pde-b01b8625 .pde-rec-points li::before {
    content: "\2713" !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

/* Make the protocol card visibly peek into view on mobile. */
@media (max-width: 767px) {
    #pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
        font-size: 21px !important;
    }

    #pde-b01b8625 .pde-rec-grid {
        gap: 12px !important;
        padding-right: 42px;
        scroll-padding-left: 0;
    }

    #pde-b01b8625 .pde-rec-column {
        flex: 0 0 86% !important;
        min-width: 86% !important;
    }

    #pde-b01b8625 .pde-carousel-dots {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 7px;
    }

    #pde-b01b8625 .pde-carousel-dots::before {
        content: "Swipe for protocol \2192";
        width: 100%;
        margin-bottom: 5px;
        color: var(--pde-accent);
        font-family: "IBM Plex Mono", monospace;
        font-size: 10px;
        font-weight: 400;
        letter-spacing: .8px;
        text-align: center;
        text-transform: uppercase;
    }
}


/* ==========================================================
   APPROVED EXPLORE Ã¢â€ â€™ GOAL UI Ã¢â‚¬â€ VERSION 1.0.26
   ========================================================== */

/* Side arrows are intentionally removed from the experience. */
#pde-b01b8625 .pde-nav-chevron {
    display: none !important;
}

/* Shared tile treatment */
#pde-b01b8625 .pde-card,
#pde-b01b8625 .pde-subgoal-card {
    border: 1px solid var(--pde-accent) !important;
    background: radial-gradient(circle at center, #ffffff 0%, rgba(111, 143, 142, 0.055) 100%) !important;
    box-shadow: 0 8px 24px rgba(111, 143, 142, 0.055) !important;
}

#pde-b01b8625 .pde-card:hover,
#pde-b01b8625 .pde-subgoal-card:hover {
    border-color: var(--pde-accent) !important;
    box-shadow: 0 12px 28px rgba(111, 143, 142, 0.12) !important;
}

/* Explore tile internal layout */
#pde-b01b8625 .pde-card {
    min-height: 220px;
    padding: 22px;
}

#pde-b01b8625 .pde-card-inner {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) 18px;
    gap: 15px;
    align-items: start;
    min-height: 100%;
}

#pde-b01b8625 .pde-tile-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#pde-b01b8625 .pde-explore-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pde-accent);
    color: #ffffff;
    flex: 0 0 auto;
}

#pde-b01b8625 .pde-explore-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#pde-b01b8625 .pde-tile-chevron,
#pde-b01b8625 .pde-goal-chevron {
    color: var(--pde-accent);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    align-self: center;
    transition: transform .2s ease;
}

#pde-b01b8625 .pde-card:hover .pde-tile-chevron,
#pde-b01b8625 .pde-subgoal-card:hover .pde-goal-chevron {
    transform: translateX(3px);
}

/* Old Explore links are no longer used. */
#pde-b01b8625 .pde-explore-link,
#pde-b01b8625 .pde-card-inner .pde-explore-link {
    display: none !important;
}

/* Goal screen: smaller, icon-led cards */
#pde-b01b8625 #pde-step-2.pde-screen-active {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    min-height: 500px;
}

#pde-b01b8625 .pde-subgoals-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
}

#pde-b01b8625 .pde-subgoal-card {
    min-height: 96px !important;
    padding: 18px 20px !important;
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    gap: 14px;
    align-items: center;
    justify-content: initial !important;
}

#pde-b01b8625 .pde-subgoal-card::after {
    content: none !important;
    display: none !important;
}

#pde-b01b8625 .pde-goal-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--pde-accent);
}

#pde-b01b8625 .pde-goal-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
    font-family: var(--e-global-typography-secondary-font-family, Helvetica), Helvetica, Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: var(--e-global-typography-secondary-font-weight, 400) !important;
    font-style: var(--e-global-typography-secondary-font-style, normal) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.03em !important;
    margin: 0 !important;
}

/* Back link appears on Goal only */
#pde-b01b8625 .pde-back-to-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin: 24px 0 0;
    padding: 4px 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--pde-accent) !important;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .4px;
    cursor: pointer;
}

#pde-b01b8625 .pde-back-to-explore:hover {
    color: #000 !important;
}

/* Mobile approved layout */
@media (max-width: 767px) {
    #pde-b01b8625 {
        padding-left: 14px;
        padding-right: 14px;
    }

    #pde-b01b8625 .pde-cards-grid,
    #pde-b01b8625 .pde-subgoals-group,
    #pde-b01b8625 .pde-subgoals-group.active {
        width: 100% !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    #pde-b01b8625 .pde-card {
        min-height: 104px !important;
        padding: 16px !important;
        border-radius: 14px;
    }

    #pde-b01b8625 .pde-card-inner {
        grid-template-columns: 46px minmax(0, 1fr) 16px;
        gap: 13px;
        align-items: center;
    }

    #pde-b01b8625 .pde-explore-icon {
        width: 44px;
        height: 44px;
    }

    #pde-b01b8625 .pde-card-title {
        font-size: 19px !important;
        margin-bottom: 5px !important;
    }

    #pde-b01b8625 .pde-card-desc {
        font-size: 11px !important;
        line-height: 1.38 !important;
        margin: 0 !important;
    }

    #pde-b01b8625 .pde-popular-goals-box {
        display: none !important;
    }

    #pde-b01b8625 .pde-tile-chevron,
    #pde-b01b8625 .pde-goal-chevron {
        font-size: 29px;
    }

    #pde-b01b8625 #pde-step-2.pde-screen-active {
        min-height: 0 !important;
        justify-content: flex-start;
    }

    #pde-b01b8625 .pde-subgoal-card {
        min-height: 82px !important;
        padding: 14px 15px !important;
        grid-template-columns: 34px minmax(0, 1fr) 16px;
        gap: 12px;
        border-radius: 14px;
    }

    #pde-b01b8625 .pde-goal-icon {
        width: 32px;
        height: 32px;
    }

    #pde-b01b8625 .pde-goal-icon svg {
        width: 28px;
        height: 28px;
    }

    #pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
        font-size: 18px !important;
    }

    #pde-b01b8625 .pde-back-to-explore {
        margin-top: 20px;
        font-size: 11px;
    }
}


/* ==========================================================
   PEPTIDE DISCOVERY V2.0 Ã¢â‚¬â€ FINAL APPROVED UI
   ========================================================== */

/* Goal titles must exactly match Explore title typography and remain lowercase. */
#pde-b01b8625 .pde-card-title,
#pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
    font-family: var(--e-global-typography-secondary-font-family, Helvetica), Helvetica, Arial, sans-serif !important;
    font-weight: var(--e-global-typography-secondary-font-weight, 400) !important;
    font-style: var(--e-global-typography-secondary-font-style, normal) !important;
    text-transform: lowercase !important;
    letter-spacing: -0.03em !important;
}

/* Goal page: two columns and two rows on desktop and mobile. */
#pde-b01b8625 .pde-subgoals-group,
#pde-b01b8625 .pde-subgoals-group.active {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

#pde-b01b8625 .pde-subgoal-card {
    min-height: 104px !important;
    padding: 16px 18px !important;
}

/* Three-card recommendation layout */
#pde-b01b8625 .pde-rec-grid-three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
    max-width: none;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-column {
    min-width: 0;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-image-wrapper {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

#pde-b01b8625 .pde-combo-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

#pde-b01b8625 .pde-combo-image {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

#pde-b01b8625 .pde-combo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#pde-b01b8625 .pde-combo-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px 14px;
    margin-bottom: 10px;
}

#pde-b01b8625 .pde-combo-product-link {
    color: var(--pde-accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: .5px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#pde-b01b8625 .pde-add-multiple.pde-loading {
    opacity: .65;
    pointer-events: none;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-title {
    font-size: 22px;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-points li,
#pde-b01b8625 .pde-rec-grid-three .pde-why-text {
    font-size: 12px;
}

/* Keep desktop popup balanced with three cards. */
#pde-b01b8625 .pde-recommendation-panel {
    width: min(1380px, 96vw) !important;
    max-width: 1380px !important;
}

/* Tablet: swipeable cards */
@media (max-width: 1100px) {
    #pde-b01b8625 .pde-rec-grid-three {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
    }

    #pde-b01b8625 .pde-rec-grid-three::-webkit-scrollbar {
        display: none;
    }

    #pde-b01b8625 .pde-rec-grid-three .pde-rec-column {
        flex: 0 0 48%;
        min-width: 48%;
        scroll-snap-align: start;
    }

    #pde-b01b8625 .pde-carousel-dots {
        display: flex !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    /* Explore remains a single clean column. */
    #pde-b01b8625 .pde-cards-grid {
        grid-template-columns: 1fr !important;
    }

    /* Goal remains 2 x 2 exactly like the approved concept. */
    #pde-b01b8625 .pde-subgoals-group,
    #pde-b01b8625 .pde-subgoals-group.active {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    #pde-b01b8625 .pde-subgoal-card {
        min-height: 118px !important;
        padding: 12px !important;
        grid-template-columns: 30px minmax(0, 1fr) 13px !important;
        gap: 8px !important;
        border-radius: 12px !important;
    }

    #pde-b01b8625 .pde-goal-icon {
        width: 30px !important;
        height: 30px !important;
    }

    #pde-b01b8625 .pde-goal-icon svg {
        width: 27px !important;
        height: 27px !important;
    }

    #pde-b01b8625 .pde-subgoal-card .pde-subgoal-title {
        font-size: 16px !important;
        line-height: 1.12 !important;
    }

    #pde-b01b8625 .pde-goal-chevron {
        font-size: 24px !important;
    }

    /* Recommendation: three swipeable cards with a visible next-card peek. */
    #pde-b01b8625 .pde-rec-grid-three {
        display: flex;
        gap: 12px;
        padding-right: 38px;
    }

    #pde-b01b8625 .pde-rec-grid-three .pde-rec-column {
        flex: 0 0 88% !important;
        min-width: 88% !important;
        scroll-snap-align: start;
    }

    #pde-b01b8625 .pde-rec-grid-three .pde-rec-image-wrapper {
        width: 165px !important;
        max-width: 165px !important;
        height: 165px !important;
    }

    #pde-b01b8625 .pde-combo-images {
        max-width: 220px;
    }

    #pde-b01b8625 .pde-rec-grid-three .pde-rec-title {
        font-size: 21px;
        text-align: center;
    }

    #pde-b01b8625 .pde-carousel-dots::before {
        content: "Swipe to compare \2192";
    }
}


/* ==========================================================
   V2.0.1 Ã¢â‚¬â€ DESKTOP SPACING, PRICES & CARD ALIGNMENT
   ========================================================== */

/* EXPLORE: title remains level with icon; supporting content begins at left edge. */
@media (min-width: 768px) {
    #pde-b01b8625 .pde-card {
        min-height: 0 !important;
        height: auto !important;
        padding: 22px 24px !important;
    }

    #pde-b01b8625 .pde-card-inner {
        display: grid !important;
        grid-template-columns: 52px minmax(0, 1fr) 18px !important;
        grid-template-rows: auto auto auto !important;
        column-gap: 16px !important;
        row-gap: 13px !important;
        align-items: center !important;
        min-height: 0 !important;
    }

    #pde-b01b8625 .pde-tile-copy {
        display: contents !important;
    }

    #pde-b01b8625 .pde-explore-icon {
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    #pde-b01b8625 .pde-card-title {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0 !important;
    }

    #pde-b01b8625 .pde-tile-chevron {
        grid-column: 3;
        grid-row: 1 / span 3;
        align-self: center;
    }

    #pde-b01b8625 .pde-card-desc {
        grid-column: 1 / 4;
        grid-row: 2;
        margin: 0 !important;
        max-width: none !important;
    }

    #pde-b01b8625 .pde-popular-goals-box {
        grid-column: 1 / 4;
        grid-row: 3;
        margin: 0 !important;
        padding: 0 !important;
    }

    #pde-b01b8625 .pde-pop-list {
        display: flex !important;
        flex-wrap: wrap;
        gap: 4px 12px;
        margin-top: 7px !important;
    }

    #pde-b01b8625 .pde-pop-list li {
        margin: 0 !important;
    }

    #pde-b01b8625 .pde-pop-list li:not(:last-child)::after {
        content: "\2022";
        margin-left: 12px;
        color: var(--pde-accent);
    }
}

/* RECOMMENDATION: equal cards, compact media, aligned actions. */
#pde-b01b8625 .pde-rec-grid-three {
    align-items: stretch !important;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-column {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 20px !important;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-card-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    flex: 1 1 auto !important;
}

#pde-b01b8625 .pde-rec-top {
    display: grid;
    grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-image-wrapper,
#pde-b01b8625 .pde-combo-images {
    width: 100% !important;
    max-width: 190px !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 !important;
}

#pde-b01b8625 .pde-combo-images {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

#pde-b01b8625 .pde-combo-image {
    aspect-ratio: 1 / 1;
}

#pde-b01b8625 .pde-rec-top .pde-rec-section {
    margin: 0 !important;
    align-self: start;
}

#pde-b01b8625 .pde-rec-grid-three .pde-rec-title {
    margin: 0 0 4px !important;
    font-size: 21px !important;
    text-align: left !important;
}

#pde-b01b8625 .pde-rec-price {
    margin: 0 0 14px;
    color: var(--pde-accent);
    font-family: "IBM Plex Mono", monospace;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
}

#pde-b01b8625 .pde-rec-price .woocommerce-Price-amount,
#pde-b01b8625 .pde-rec-price .amount {
    color: inherit !important;
    font: inherit !important;
}

#pde-b01b8625 .pde-rec-price del {
    opacity: .45;
    margin-right: 6px;
}

#pde-b01b8625 .pde-rec-price ins {
    text-decoration: none;
}

#pde-b01b8625 .pde-rec-why-box {
    margin-top: 0 !important;
}

#pde-b01b8625 .pde-rec-action {
    margin-top: auto !important;
    padding-top: 18px;
}

#pde-b01b8625 .pde-rec-grid-three .pde-global-btn {
    min-height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#pde-b01b8625 .pde-combo-links {
    min-height: 34px;
    margin: 0 0 10px !important;
}

/* Keep the popup shorter and content padding even. */
#pde-b01b8625 .pde-recommendation-panel {
    padding: 26px 30px 18px !important;
}

#pde-b01b8625 .pde-rec-header {
    margin-bottom: 16px !important;
}

/* Professional icon rendering: crisp line work and consistent sizing. */
#pde-b01b8625 .pde-explore-icon svg,
#pde-b01b8625 .pde-goal-icon svg {
    stroke-width: 1.8 !important;
    vector-effect: non-scaling-stroke;
    shape-rendering: geometricPrecision;
}



/* ==========================================================
   FINAL MOBILE RECOMMENDATION RULES
   ========================================================== */
@media (max-width: 767px) {
    #pde-b01b8625 .pde-rec-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    #pde-b01b8625 .pde-rec-grid-three .pde-rec-image-wrapper,
    #pde-b01b8625 .pde-combo-images {
        max-width: 165px !important;
        margin: 0 auto !important;
    }

    #pde-b01b8625 .pde-rec-grid-three .pde-rec-title,
    #pde-b01b8625 .pde-rec-price {
        text-align: center !important;
    }
}

/* Explore icon images â€” retained */
#pde-b01b8625 .pde-explore-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

/* ==========================================================
   FINAL GOAL TILES â€” NO ICONS
   ========================================================== */

/* Hide every Goal icon, including SVG and uploaded-image versions */
#pde-b01b8625 #pde-step-2 .pde-goal-icon,
#pde-b01b8625 #pde-step-2 .pde-goal-icon-img,
#pde-b01b8625 #pde-step-2 .pde-goal-icon svg {
    display: none !important;
}

/* Goal tile structure: title on left, chevron fixed on right */
#pde-b01b8625 #pde-step-2 .pde-subgoal-card {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 104px !important;
    padding: 16px 52px 16px 18px !important;
    gap: 0 !important;
    text-align: left !important;
}

#pde-b01b8625 #pde-step-2 .pde-subgoal-title {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    align-self: center !important;
}

#pde-b01b8625 #pde-step-2 .pde-goal-chevron {
    position: absolute !important;
    right: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    align-self: auto !important;
}

/* Mobile: preserve 2 Ã— 2 layout and give the chevron breathing room */
@media (max-width: 767px) {
    #pde-b01b8625 #pde-step-2 .pde-subgoals-group,
    #pde-b01b8625 #pde-step-2 .pde-subgoals-group.active {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    #pde-b01b8625 #pde-step-2 .pde-subgoal-card {
        min-height: 118px !important;
        padding: 14px 38px 14px 14px !important;
        border-radius: 12px !important;
    }

    #pde-b01b8625 #pde-step-2 .pde-subgoal-title {
        font-size: 16px !important;
        line-height: 1.12 !important;
    }

    #pde-b01b8625 #pde-step-2 .pde-goal-chevron {
        right: 12px !important;
        font-size: 24px !important;
    }
}
/* ==========================================================
   DEFINITIVE EXPLORE TICKS + GOAL TILE FIX
   Based on the live HTML structure
   ========================================================== */

/* Restore the Explore ticks using a safe Unicode escape */
#pde-b01b8625 .pde-card-inner .pde-pop-list li::before {
    content: "\2713" !important;
    display: inline-block !important;
    color: var(--pde-accent) !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    flex: 0 0 auto !important;
}

/* Remove any corrupted or added symbols after the text */
#pde-b01b8625 .pde-card-inner .pde-pop-list li::after {
    content: none !important;
    display: none !important;
}

/* Keep each Explore point aligned neatly */
#pde-b01b8625 .pde-card-inner .pde-pop-list li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}


/* Remove Goal icons from every Goal pathway */
#pde-b01b8625 #pde-step-2 .pde-subgoal-card > .pde-goal-icon,
#pde-b01b8625 #pde-step-2 .pde-subgoal-card > .pde-goal-icon-img,
#pde-b01b8625 #pde-step-2 .pde-subgoal-card > svg,
#pde-b01b8625 #pde-step-2 .pde-subgoal-card > img {
    display: none !important;
}


/* Goal tile structure */
#pde-b01b8625 #pde-step-2 .pde-subgoal-card {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    padding: 18px 52px 18px 20px !important;
}

/* Goal title */
#pde-b01b8625 #pde-step-2 .pde-subgoal-card > .pde-subgoal-title {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* Goal chevron fixed against the right edge */
#pde-b01b8625 #pde-step-2 .pde-subgoal-card > .pde-goal-chevron {
    position: absolute !important;
    top: 50% !important;
    right: 18px !important;
    transform: translateY(-50%) !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
}


/* Mobile Goal tiles */
@media (max-width: 767px) {
    #pde-b01b8625 #pde-step-2 .pde-subgoal-card {
        padding: 14px 34px 14px 14px !important;
    }

    #pde-b01b8625 #pde-step-2 .pde-subgoal-card > .pde-goal-chevron {
        right: 12px !important;
        font-size: 22px !important;
    }
}
@media (min-width: 768px) {
    #pde-b01b8625 .pde-carousel-dots {
        display: none !important;
    }
}