/*==================================================
 Checkout Lens Pro
 Landing Framework v3
 Base CSS
==================================================*/


/*==================================================
RESET
==================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body.cl-land-page{

    margin:0;

    background:#f8fafc;

    color:#1f2937;

    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

button,
input,
textarea,
select{

    font:inherit;

}

iframe{

    width:100%;

    border:0;

}


/*==================================================
ROOT
==================================================*/

:root{

    --cl-primary:#ff3b5c;

    --cl-primary-hover:#e42d50;

    --cl-success:#22c55e;

    --cl-warning:#f59e0b;

    --cl-danger:#ef4444;

    --cl-text:#111827;

    --cl-muted:#6b7280;

    --cl-bg:#f8fafc;

    --cl-white:#ffffff;

    --cl-border:#e5e7eb;

    --cl-radius:22px;

    --cl-shadow:
        0 15px 45px rgba(0,0,0,.08);

    --cl-transition:.30s ease;

    --cl-container:1280px;

}


/*==================================================
LAYOUT
==================================================*/

.cl-landing{

    position:relative;

    width:100%;

    overflow:hidden;

}

.cl-container{

    width:100%;

    max-width:var(--cl-container);

    margin:0 auto;

    padding-left:20px;

    padding-right:20px;

}

.cl-section{

    position:relative;

    padding:35px 0;

}

.cl-section:first-child{

    padding-top:40px;

}

.cl-section:last-child{

    padding-bottom:80px;

}

.cl-grid{

    display:grid;

}


/*==================================================
TYPOGRAPHY
==================================================*/

.cl-title{

    font-size:56px;

    line-height:1.1;

    font-weight:800;

    color:var(--cl-text);

}

.cl-subtitle{

    font-size:22px;

    color:var(--cl-muted);

}

.cl-text{

    font-size:17px;

    color:var(--cl-muted);

    line-height:1.8;

}

.cl-section-heading{

    text-align:center;

    margin-bottom:60px;

}

.cl-section-heading h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:12px;

}

.cl-section-heading p{

    font-size:17px;

    color:var(--cl-muted);

}


/*==================================================
BUTTON
==================================================*/

.cl-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:220px;

    min-height:58px;

    padding:0 34px;

    border:none;

    border-radius:999px;

    cursor:pointer;

    font-size:17px;

    font-weight:700;

    transition:var(--cl-transition);

}

.cl-btn-primary{

    background:var(--cl-primary);

    color:#fff;

}

.cl-btn-primary:hover{

    background:var(--cl-primary-hover);

}

.cl-btn-outline{

    background:#fff;

    border:2px solid var(--cl-primary);

    color:var(--cl-primary);

}

.cl-btn-outline:hover{

    background:var(--cl-primary);

    color:#fff;

}


/*==================================================
CARD
==================================================*/

.cl-card{

    background:#fff;

    border:1px solid var(--cl-border);

    border-radius:var(--cl-radius);

    box-shadow:var(--cl-shadow);

}


/*==================================================
IMAGE
==================================================*/

.cl-image{

    overflow:hidden;

    border-radius:var(--cl-radius);

}

.cl-image img{

    width:100%;

}


/*==================================================
BADGE
==================================================*/

.cl-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    border-radius:999px;

    background:#ffe7ee;

    color:var(--cl-primary);

    font-size:14px;

    font-weight:700;

}


/*==================================================
PRICE
==================================================*/

.cl-price{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:wrap;

}

.cl-old-price{

    color:#9ca3af;

    text-decoration:line-through;

    font-size:24px;

    font-weight:500;

}

.cl-new-price{

    color:var(--cl-primary);

    font-size:42px;

    font-weight:800;

}

.cl-save{

    padding:8px 14px;

    border-radius:999px;

    background:#dcfce7;

    color:#15803d;

    font-size:13px;

    font-weight:700;

}


/*==================================================
TAGS
==================================================*/

.cl-tags{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

}

.cl-tag{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 18px;

    background:#fff;

    border:1px solid var(--cl-border);

    border-radius:999px;

    font-size:15px;

    font-weight:600;

}


/*==================================================
FORM
==================================================*/

.cl-form{

    width:100%;

}

.cl-form input,
.cl-form textarea,
.cl-form select{

    width:100%;

    padding:14px 16px;

    border:1px solid var(--cl-border);

    border-radius:14px;

    background:#fff;

    outline:none;

}

.cl-form input:focus,
.cl-form textarea:focus,
.cl-form select:focus{

    border-color:var(--cl-primary);

}


/*==================================================
UTILITIES
==================================================*/

.cl-hidden{

    display:none!important;

}

.cl-text-center{

    text-align:center;

}

.cl-rounded{

    border-radius:var(--cl-radius);

}

.cl-shadow{

    box-shadow:var(--cl-shadow);

}

.cl-mb-20{

    margin-bottom:20px;

}

.cl-mb-30{

    margin-bottom:30px;

}

.cl-mb-40{

    margin-bottom:40px;

}

.cl-mb-60{

    margin-bottom:60px;

}


/*==================================================
ANIMATION
==================================================*/

.cl-fade{

    opacity:0;

    transform:translateY(40px);

    transition:.6s ease;

}

.cl-fade.active{

    opacity:1;

    transform:none;

}


body.cl-land-page{

    margin:0;

    padding-top:0 !important;

}

body.cl-land-page header,
body.cl-land-page #masthead,
body.cl-land-page .site-header,
body.cl-land-page .ast-header-break-point,
body.cl-land-page .elementor-location-header{
    display:none !important;
}