.font-blauer-nue{
    font-family: "Blauer Nue";
}
/* Controls (toggle + currency) */
.pricing-options {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.toggle-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #011627;
}

.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(26, 35, 126, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #011627;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: rgba(26, 35, 126, 0.4);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.currency-selector {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    color: #011627;
}

.currency-selector .wcc-wrapper {
    margin-top: 0;
    width: 100px !important;
}

body .currency-selector .wcc-wrapper .wcc-crnt-currency {
    border-radius: 30px !important;
    height: 54px !important;
    max-width: 100px;
}

.currency-selector select {
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid rgba(26, 35, 126, 0.2);
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: #011627;
    outline: none;
    min-width: fit-content;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.currency-selector select:hover,
.currency-selector select:focus {
    border-color: #011627;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.15);
}


/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: clamp(30px,2.813vw,54px);
    margin-bottom: 30px;
}
@media(max-width:575px){
    .pricing-cards{
        margin-bottom: 0;
    }
}

.pricing-card {
    background: white;
    padding: 39px clamp(10px,2.239vw,30px) 39px;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    background: #CAA228;
    color: white;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(202, 162, 40, 0.4);
    z-index: 10;
}

.star-icon {
    font-size: 16px;
    color: white;
}

.pricing-card.popular {
    border: 2px solid #CAA228;
}


/* ULTRA Card */

.pricing-card.ultra .plan-title {
    color: #CAA228;
}

.pricing-card.ultra .plan-features li {
    color: #011627;
}


.plan-title {
    font-size: clamp(26px,1.667vw,32px);
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #011627;
    text-transform: uppercase;
    font-family: "Blauer Nue";
}
.ultra .plan-subtitle{
    height: -webkit-fill-available;
}
.plan-subtitle {
    font-size: clamp(14px,0.833vw,16px);
    color: #011627;
    line-height: 1.4;
    height: 45px;
}

/* Plan Price */
.plan-price {
    display: flex;
    align-items: baseline;
    font-size: 36px;
    font-weight: 700;
    color: #011627;
    flex-wrap: wrap;
}

.currency-symbol {
    font-size: 30px;
    font-weight: 700;
    margin-left: 10px;
    font-family: "Blauer Nue";
}

.price-amount {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    font-family: "Blauer Nue";
}


.price-period {
    font-size: clamp(26px,1.667vw,32px);
    font-weight: 600;
    color: #011627;
    margin-left: 5px;
    font-family: "Blauer Nue";
}

.price-text {
    font-weight: 700;
    color: #011627;
    line-height: 1.3;
}

.sur-inscription {
    font-size: clamp(18px,1.493vw,20px);
    text-align: center;
    min-height: 104.4px;
}


@media(max-width:1402px){
    .price-text,.price-amount,.currency-symbol{
        font-size: clamp(26px,2.282vw,32px);
    }
    .plan-title{
        font-size: 22px;
    }
}
/* Buttons */
.btn-offre {
    padding: clamp(6px,0.746vw,10px) 20px !important;
    padding-right: clamp(6px, 0.746vw, 10px) !important;
    border-radius:32px;
    font-size: 15px;
    gap: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    margin-bottom: clamp(28px,2.344vw,45px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    position: relative;
}

.btn-offre.current-user-plan .btn-arrow {
    width: 0 !important;
    padding-left: 0;
    padding-right: 0;
}

.w-100{
    width: 100%;
    font-size: clamp(12px,0.833vw,16px)
}
.btn-outline {
    background-color: transparent !important;
    color: #011627 !important;
    border: 2px solid #011627;
}
.btn-outline .btn-arrow{
    background: #011627 !important;
    transition: all 0.3s;
}
.btn-outline:hover {
    background-color: #011627 !important;
    color: white !important;
}
.btn-outline:hover .btn-arrow{
    background: #fff !important;
}
.btn-outline:hover .btn-arrow svg path{
    fill: #011627;
}
.btn-solid {
    background-color: #011627 !important;
    color: white !important;
    border: 2px solid #011627;
}

.btn-solid .btn-arrow, .btn-solid:hover .btn-arrow svg path, .btn-outline:hover .btn-arrow svg path, .btn-gold:hover .btn-arrow svg path, .btn-gold .btn-arrow{
    transition: all 0.3s;
}
.btn-solid:hover {
    background-color: transparent !important;
    color: #011627 !important;
    border: 2px solid #011627;
}
.btn-solid:hover .btn-arrow{
    background: #011627 !important;
}
.btn-solid:hover .btn-arrow svg path{
    fill: #CAA228;
}

.btn-gold {
    background:#CAA228 !important;
    color: white !important;
    border: 2px solid transparent;
}
.btn-gold:hover {
    background-color: transparent !important;
    color: #CAA228 !important;
    border: 2px solid #CAA228 !important;
}
.btn-gold:hover .btn-arrow{
    background: #011627;
    
}
.btn-gold:hover .btn-arrow svg path{
    fill: #CAA228;
}


/* Plan Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    border-top: 1px rgba(1, 22, 39, 0.3) solid;
}

.plan-features li {
    padding: 12px 0;
    font-size: clamp(14px,0.938vw,18px);
    color: #011627;
    display: flex;
    /* align-items: center; */
    gap: 12px;
}
.plan-features li:first-child{
    padding-top: clamp(28px,2.344vw,45px);
}

.plan-features li > svg{

}

.feature-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
    display: flex;
}
.feature-icon + span{
    /* display: flex; */
    align-items: center;
    gap: 6px;
    flex: 1
    /* width: max-content; */
}

.feature-icon + span svg {
    margin-left: 5px;
    vertical-align: middle;
}

.feature-icon > img , .feature-icon > svg {
    width: 22px;
    height: 22px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }    
    .pricing-card {
        max-width: 100%;
    }
}

@media (max-width:575px) {
    
    .plan-price {
        font-size: 28px;
    }
    
    .price-amount {
        font-size: 42px;
    }
}



/* comparaison */

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    min-width: 640px;
    display: flex;
    flex-direction: column;
    border: 1px solid #1E1E1E;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 210px repeat(4, minmax(150px, 1fr));
    border-bottom: 1px solid #EAE9E9;
    background: white;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header.comparison-row {
    border-bottom: 1px solid #1E1E1E;
}

.feature-cell,
.plan-cell {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #011627;
    border-right: 1px solid #1E1E1E;
}
.plan-cell:last-child{
    border-right: 0;
}
.feature-cell {
    font-weight: 600;
    border-right: 1px solid #1E1E1E;
    font-size: clamp(14px,0.938vw,18px);
}
.plan-price-inline .price-amount,.plan-price-inline .currency-symbol{
    font-size: clamp(32px,2.083vw,40px);
    font-family: "Blauer Nue", Sans-serif;
}
@media(max-width:1002px){
    .plan-price-inline .price-amount,.plan-price-inline .currency-symbol{
        font-size:18px !important;
    }
    .is-ultra .plan-price-inline{
        font-size: 16px !important;
    }
}
.feature-heading {
    text-transform: uppercase;
    font-size: 12px;
    color: #011627;
}
.comparison-row.body .plan-cell{
    justify-content: center;
    align-items: center;
}
.comparison-row.comparison-header .plan-heading{
    padding-top: 30px;
}
@media(min-width:1560px){
    .comparison-row.comparison-header .popular-badge{
        transform: translateX(clamp(-35px, -1.927vw, -37px));
        
    }
}
.plan-heading {
    flex-direction: column;
    align-items: flex-start;
    border-right: 1px solid #1E1E1E;
    position: relative;
    align-items: center;
}
.is-ultra .plan-name, .is-color .value-text:first-child{
    color: #CAA228;
}

.is-ultra .plan-price-inline{
    font-size:clamp(24px,1.667vw,32px);
    text-align: center;
    line-height: normal;
}
.comparison-row.body:first-of-type .plan-cell{
    display: none;
}

.plan-heading:last-child {
    border-right: none;
}

.plan-heading.is-highlighted {
    background: rgba(241, 219, 149, 0.3);
}

.plan-badge {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    background: #CAA228;
    color: white;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(202, 162, 40, 0.4);
    z-index: 10;
}

.plan-name {
    font-size: 16px;
    font-weight: 700;
    font-family: "Blauer Nue", Sans-serif;
}
.plan-price-inline .currency-symbol{
    margin-left: 2px;
}
.plan-price-inline {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #011627;
}

.plan-amount {
    font-size: 22px;
}

.plan-note {
    font-size: 12px;
    color: #5c6bc0;
    margin-top: 6px;
}

.value-icon {
    font-weight: 700;
    font-size: 16px;
    display: flex;
}


.value-text {
    font-size: clamp(14px,0.938vw,18px);
    color: #011627;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-row {
        grid-template-columns: 180px repeat(4, minmax(140px, 1fr));
    }
}
@media(max-width:630px){
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 36px;   
    }
    .plan-title,.price-text{
        text-align: center;
        line-height: normal;
    }
    .plan-price{
        justify-content: center;
    }
    .plan-subtitle{
        text-align: center;
        
    }
}
@media (max-width: 768px) {
    
    .pricing-card {
        max-width: 100%;
    }
    

    .pricing-comparison {
        padding: 0px;
    }

    .comparison-table {
        border: none;
    }

    .comparison-row {
        display: block;
        margin-bottom: 24px;
    }

    .comparison-header {
        display: none;
    }
    .feature-cell, .plan-cell{
        border-right: none;
    }

    .comparison-row .feature-cell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        font-size: 18px;
        justify-content: center;
    }
    .comparison-table{
        min-width: fit-content;
    }

    .comparison-row .plan-cell {
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
        padding: 12px 0;
    }

    .comparison-row .plan-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #011627;
        text-transform: uppercase;
    }

    .comparison-row .plan-cell:last-child {
        /* border-bottom: none; */
    }
}

@media (max-width: 575px) {
    
    
    .plan-price {
        font-size: 28px;
    }
    
    .price-amount {
        font-size: 32px;
    }
}

.text-animation .elementor-heading-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-animation .elementor-heading-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.btn-with-icon .elementor-button-content-wrapper{
    align-items: center;
}
.btn-with-icon svg{
    width: auto;
}

.plan-price span.from,.not-show {
    display: none;
}
select.variation_selector {
    margin-bottom: 15px;
}

/*slick*/

.slick-arrow {
    position: absolute;

}

.pricing-cards.slick-initialized.slick-slider {
    display: block;
}

.pricing-cards.slick-initialized.slick-slider .pricing-card {
    width: clamp(275px,35.282vw,300px);
    margin: 0 10px;
    height: auto;
}

.pricing-cards .slick-track {
    display: flex;
}

.pricing-cards .slick-arrow {
    padding: 0;
    background-color: transparent;
    border: 0;
    top: 0;
}

.pricing-cards .slick-arrow.slick-next {
    right: 10px;
} 

@media screen and (max-width: 992px) {
    .pricing-cards {
        padding-top: 40px;
        position: relative;
    }

    .pricing-cards > .pricing-card:not(:first-child) {
        display: none;
    }
    
}


/*sticky cell*/
@media screen and (max-width: 900px) {
    .comparison-table-wrapper {
        overflow-x: auto;  
        position: relative;

    }

    .comparison-table {
        display: table;
        width: max-content;  
        position: relative;
        overflow: visible;
        table-layout: fixed;
        margin: auto;
    }

    .comparison-row {
        display: table-row;
    }

    .plan-cell, .feature-cell {
        display: table-cell;
        padding: 8px;
    }

    .comparison-row .feature-cell {
        position: sticky;
        left: 0;
        background: white;   
        z-index: 5;
        font-size: 14px;
    }

    .comparison-row .plan-cell::before {
        content: none;
    }

    .popular-badge {
        display: none;
    }

    .plan-cell {
        padding: 10px !important;
    }

    .plan-cell.is-ultra {
        max-width: 160px;

    }

    .comparison-row .is-ultra .plan-price-inline {
        text-align: left;
        font-size: 15px !important;
    }

    .plan-name {
        font-size: 14px;
    }

    .plan-price-inline .price-amount, .plan-price-inline .currency-symbol {
        font-size: 16px !important;
    }

    .value-icon {
        display: inline;
        vertical-align: sub;
    }

    .comparison-table-wrapper::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 20px; /* Width of the scroll indicator */
        background: linear-gradient(to left, rgba(0, 0, 0, 0.1), transparent); /* Subtle shadow effect */
        pointer-events: none;
        display: none; /* Initially hidden */
    }

   
    
}

@media screen and (max-width:574px) {
    .comparison-row .feature-cell {
        width: 120px;
    }
}

.elementor-widget-shortcode .elementor-shortcode {
    display: contents;
}