/* Outfit Font Family */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/static/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Open Sans Font Family */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/Open_Sans/static/OpenSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --lime-green: #CFF72D;
    --primary-blue: #00003C;
    --secondary-blue: #41479B;
}

* {
  margin: 0;
  box-sizing: border-box;
}

html {
  overscroll-behavior: none;
}

body {
  overscroll-behavior: none;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--primary-blue);
  letter-spacing: 0.02em;
  width: 100%;
}

br.web {
    display: none;
}

hr {
    border: none;
    height: 4px;
    background-color: #C3DBFB;
    margin: 30px 0;
    display: block;
}

section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section + section {
    margin-top: 40px;
}

section p {
    font-size: 20px;
    line-height: 150%;
    margin: 10px 0px;
}

section p:last-child {
    margin-bottom: 0;
}

ul {
    padding-left: 0px;
    margin-top: 0px;
}
li {
    list-style-type: none;
}

main {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
}

main .aside {
    display: block;
    position: relative;
    margin: 40px 32px 0px 32px;
}

main .aside .aside-block {
    position: relative;
    background: linear-gradient(to bottom, #F4F9FC 0%, rgba(244, 249, 252, 0) 100%), url('https://cdn.29next.store/media/maasbath/uploads/pre10bogo_woman_bg.webp') no-repeat center center;
    background-size: cover;
    text-align: center;
    border-radius: 16px;
    padding: 28px 15px 20px;
    overflow: hidden;
}

main .aside .aside-block button {
    margin: 15px auto 0;
    width: calc(100% - 30px);
    max-width: 320px;
}

main .aside .aside-block h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(24px, 5vw, 33px);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 110%;
}

main .aside .aside-block h3 span:last-child {
    font-weight: 700;
}

main .aside .subtitle {
    font-size: clamp(16px, 3.5vw, 20px);
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-blue);
    padding: 0px 15px;
    margin-bottom: 15px;
}

main .aside .aside-block .img-container {
    position: relative;
    margin: 15px 0;
}

main .aside .aside-block .img-container img {
    width: 100%;
    max-width: 265px;
    height: auto;
}

main .aside .payment-methods-container {
    justify-content: center;
    align-items: center;
    display: flex;
}

main .aside .img-container .payment-methods {
    width: auto;
    height: 75px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 68px;
    padding: 0px 15px;
}
.main-header .logo-container img {
    width: 112px;
}
.main-header .trending-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
}
.advertorial-bar {
    height: 25px;
    background-color: #F4F9FC;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--primary-blue);
}
.blue {
    color: #2D36F7 !important;
}
article {
    padding: 0 15px;
}

.breadcrumb {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.main-section h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0;
}

.main-section h1 span {
    font-weight: 700;
}

.time-views {
    display: flex;
    align-items: center;
}

.time-views p {
    font-size: 16px;
    margin: 0px;
    letter-spacing: 0em;
}

.time-views .article-date {
    margin: 0 0 0 8px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 13px;
}
.article-author .author {
    display: flex;
    align-items: center;
}
.article-author .author img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.article-author .author-texts {
    display: flex;
    flex-direction: column;
    padding-left: 13px;
    position: relative;
}

.article-author .author-texts::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #ccc;
}

.main-section h2 {
    letter-spacing: 0;
}

.article-author .author-title {
    color: #7f7f9d;
}

.quick-facts {
    background-color: #FAF8F4;
    border-radius: 24px;
    padding: 24px;
}
.quick-facts p:first-child {
    margin: 0px;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 15px;
}
.quick-facts ul {
    padding-left: 0px;
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    letter-spacing: 0em;
}

.quick-facts.green {
    padding: 24px;
}
.quick-facts.green ul {
    gap: 29px;
    letter-spacing: 0.02em;
}

.quick-facts ul li {
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.quick-facts ul li p {
    margin: 0px;
    font-size: 18px;
}
.quick-facts ul li img {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}
section h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 130%;
    color: var(--secondary-blue);
}
.img-container {
    margin: 15px 0px;
    width: 100%;
    height: auto;
    /* overflow: hidden; */
}

.img-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.img-container img.web {
    display: none;
}

.img-container img.convertible {
    object-fit: cover;
    object-position: center;
    /* width: auto; */
    height: 400px;
}

.breakthrough-section .text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakthrough-section p {
    font-size: 20px;
}

.imagine-section h2 {
    margin-bottom: 15px;
}

.imagine-section p:first-of-type {
    font-size: 18px;
}

.reviews-section > p {
    font-size: 18px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #F0F7FF;
    border-radius: 32px;
    padding: 32px;
}

.reviews-container hr {
    background-color: var(--white);
    margin: 4px 0;
}

.reviews-container p {
    margin: 0;
    font-size: 18px;
}

.reviews-container .review {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reviews-container .review > img {
    border-radius: 16px;
}

.review .review-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review .review-content .review-content-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review .review-content .review-content-rating p {
    font-size: 14px;
    color: #787c9e;
}

.review .review-content .review-content-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-content .review-content-user p {
    font-size: 14px;
}

.review-content .review-content-user .review-content-user-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    /* position: relative; */
    padding-left: 12px;
    border-left: 1px solid #d8dfec;
}

/* .review-content .review-content-user .review-content-user-verified::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background-color: #d8dfec;
} */

.review-content-user-verified p {
    color: #787c9e;
    line-height: 100%;
}

.purple-section {
    border-radius: 24px;
    padding: 48px;
    background-color: var(--secondary-blue);
    color: var(--white);
}

.purple-section h2 {
    color: var(--lime-green);
    letter-spacing: 0;
}

.purple-section p {
    font-size: 24px;
}

.bottom-cta-section{
    text-align: center;
}

.bottom-cta-section h2 {
    font-size: 48px;
}

.bottom-cta-section p {
    font-size: 32px;
}

.bottom-cta-section .cta-button {
    font-size: 16px;
    height: fit-content;
    padding: 26px 37px;
    border-radius: 16px;
    background: var(--lime-green);
    box-shadow: none;
}

button.cta-button {
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  margin-top: 24px;
  background: linear-gradient(var(--lime-green), #b2ff40); /* light lime gradient */
  border: 1px solid #d8dbc9; /* thin dark outline */
  border-radius: 8px; /* rounded corners */
  box-shadow: 0 4px 0 #4a4a00; /* subtle dark shadow for 3D look */
  color: var(--black);
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  height: 59px;
  font-size: 18px;
}

button.cta-button:active {
  box-shadow: 0 2px 0 #4a4a00;
  transform: translateY(2px);
}

footer {
    color: #fff;
    background-color: var(--primary-blue);
    text-align: center;
    padding: 40px 15px;
    font-size: 14px;
    line-height: 160%;
}
footer p {
    text-transform: uppercase;
}
footer .main-footer {
    font-size: 14px;
    margin-bottom: 32px;
}
footer .main-footer p {
    text-transform: capitalize;
}
footer .main-footer img {
    width: 150px;
    height: auto;
    margin-bottom: 25px;
}

footer .all-rights {
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
footer .disclaimer {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;

}
footer hr {
    margin: 25px 0px;
    height: 1px;
    background-color: var(--white);
}

.cta-fixed-mobile {
    position: fixed;
    bottom: -100px; /* start hidden below screen */
    left: 0;
    background: #303F91;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    transition: bottom 0.4s ease;
    z-index: 9999;
}
.cta-fixed-mobile.show {
    bottom: 0; /* slide up */
}
.cta-fixed-mobile.hide {
    bottom: -100px; /* slide down */
}

.cta-fixed-mobile button {
    width: 95%;
    max-width: 728px;
    margin-top: 0px;
    font-family: 'Open Sans', sans-serif;
}

@media screen and (max-width: 430px) {
    .time-views .article-date {
        margin: 0 0 0 6px;
    }

    .time-views p {
        font-size: 14px;
    }

    button.cta-button {
        padding: 10px;
    }

    .review-content .review-content-user {
        gap: 8px !important;
    }

    .review-content .review-content-user > img {
        width: 30px;
        height: auto;
    }

    .review-content .review-content-user p {
        font-size: 12px;
    }
} 

@media screen and (max-width: 375px) {
    .time-views p {
        font-size: 12px;
    } 
    
    .review-content .review-content-user {
        gap: 4px !important;
    }
}

@media (max-width: 439px) {
    br.mobile {
        display: none;
    }
}

@media (min-width: 441px) {
    br.mobile {
        display: none;
    }
    
    br.small-mobile {
        display: none;
    }
}

@media (min-width: 768px) {
    .img-container img.web {
        display: block;
    }

    .img-container img.mobile {
        display: none;
    }

   .img-container img.convertible {
        width: 100%;
        height: 400px;
    }

    .reviews-container .review {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    br.web {
        display: inline;
    }

    .cta-fixed-mobile {
        display: none;
    }

    .main-header .logo-container img {
        width: 112px;
    }
    .main-header .trending-container span {
        font-size: 16px;
        
    }
    .main-header {
       max-width: 1240px;
       margin: 0px auto;
    }

    article {
        max-width: 824px;
        padding: 0px;
    }

    .main-section h1 {
        font-size: 48px;
    }
    
    .main-section .article-author {
        margin: 15px 0px;
    }
    
    .article-author .author-texts {
        flex-direction: row;
        padding-left: 0px;
    }

    .author-texts .author-name {
        padding-right: 12px;
    }

    .author-texts .author-title {
        padding-left: 12px;
        border-left: 1px solid #ccc;
    }

    .author-texts::before {
        display: none;
    }

    main {
        display: grid;
        grid-template-columns: auto auto;
        gap: 40px;
        max-width: 1240px;
        margin: 0px auto;
        padding: 64px 0;
    }
    main .aside {
        position: sticky;
        top: 15px;
        height: fit-content;
        margin: 0px;
        max-width: 376px;
    }

    .purple-section {
        padding: 48px;
    }

    .bottom-cta-section .cta-button {
        font-size: 24px;
        padding: 23px;
    }

    .cta-fixed-mobile button {
        background: var(--lime-green);
        box-shadow: none;
    }

    footer .main-footer {
        font-size: 16px;
    }
    footer p {
        max-width: 1061px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        line-height: 160%;
    }
    footer hr {
        max-width: 1061px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1280px) {
   .review .review-content .review-content-user p {
        font-size: 16px;
    }
}