/* =========================================================
   BOOSTPME — BOUTIQUE
========================================================= */

.boost-shop-page {
    --blue: #657cff;
    --purple: #9560ff;
    --pink: #ec5e9d;

    overflow: hidden;

    background: #f7f7fa;

    color: #19191f;
}

.boost-shop-page * {
    box-sizing: border-box;
}

.boost-shop-page em {
    font-style: normal;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--purple),
            var(--pink)
        );

    -webkit-background-clip: text;
    background-clip: text;
}


/* =========================================================
   HERO
========================================================= */

.boost-shop-hero {
    position: relative;

    min-height: 92vh;

    display: flex;
    align-items: center;

    padding: 145px 0 105px;

    overflow: hidden;
}

.boost-shop-orb {
    position: absolute;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;
}

.shop-orb-one {
    width: 500px;
    height: 500px;

    right: -160px;
    top: -160px;

    background:
        rgba(103, 119, 255, .13);
}

.shop-orb-two {
    width: 430px;
    height: 430px;

    left: -180px;
    bottom: -130px;

    background:
        rgba(235, 94, 157, .07);
}

.boost-shop-hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 70px;

    align-items: center;
}

.boost-shop-copy > span {
    color: #9898a2;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;
}

.boost-shop-copy h1 {
    margin: 18px 0 24px;

    color: #17171d;

    font-size:
        clamp(
            58px,
            6.5vw,
            98px
        );

    line-height: .91;

    letter-spacing: -5px;

    font-weight: 500;
}

.boost-shop-copy h1 em {
    display: block;
}

.boost-shop-copy p {
    max-width: 580px;

    color: #686871;

    font-size: 14px;

    line-height: 1.8;
}

.boost-shop-primary {
    min-height: 49px;

    display: inline-flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;

    padding: 0 18px;

    border-radius: 12px;

    background: #18191f;

    color: #f5f5f7;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   CONVERSATION
========================================================= */

.boost-shop-conversation {
    padding: 25px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, .88);

    box-shadow:
        0 30px 80px
        rgba(30, 30, 50, .07);
}

.boost-shop-page
.boost-sequence-message {
    opacity: 0;

    transform:
        translateY(17px)
        scale(.97);

    transition:
        opacity .43s ease,
        transform .43s ease;
}

.boost-shop-page
.boost-sequence-message.is-sequence-visible {
    opacity: 1;

    transform: none;
}

.shop-user,
.shop-ai {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 17px;
}

.shop-user {
    justify-content: flex-end;
}

.shop-user > div,
.shop-ai > div {
    max-width: 78%;

    padding:
        14px
        16px;
}

.shop-user > div {
    border-radius:
        17px
        6px
        17px
        17px;

    background: #18191f;
}

.shop-ai > div {
    border-radius:
        6px
        17px
        17px
        17px;

    background:
        linear-gradient(
            145deg,
            #f1eff9,
            #fff
        );
}

.shop-ai img {
    width: 35px;
    height: 35px;

    flex:
        0 0
        35px;

    border-radius: 50%;

    object-fit: cover;
}

.shop-user span,
.shop-ai span {
    display: block;

    margin-bottom: 5px;

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;
}

.shop-user span {
    color:
        rgba(255, 255, 255, .48);
}

.shop-ai span {
    color: #8061ca;
}

.shop-user p,
.shop-ai p {
    margin: 0;

    font-size: 11px;

    line-height: 1.68;
}

.shop-user p {
    color: #f3f3f5;
}

.shop-ai p,
.shop-ai .boost-sequence-text {
    color: #302b34;
}

.shop-status {
    width: max-content;

    max-width: 100%;

    display: flex;

    align-items: center;

    gap: 7px;

    margin:
        20px
        auto
        2px;

    padding:
        8px
        11px;

    border-radius: 999px;

    background:
        rgba(104, 171, 70, .07);

    color: #538b38;

    font-size: 7px;

    font-weight: 800;
}

.shop-status i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #72b84c;
}


/* =========================================================
   PRODUCTS
========================================================= */

.boost-shop-products {
    padding: 125px 0;

    background: #fff;
}

.boost-shop-title {
    max-width: 820px;

    margin-bottom: 58px;
}

.boost-shop-title > span {
    display: block;

    color: #9999a3;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.7px;
}

.boost-shop-title h2 {
    margin:
        14px
        0
        18px;

    color: #19191f;

    font-size:
        clamp(
            43px,
            5.2vw,
            74px
        );

    line-height: .97;

    letter-spacing: -4px;

    font-weight: 500;
}

.boost-shop-title p {
    max-width: 580px;

    margin: 0;

    color: #71717a;

    font-size: 11px;

    line-height: 1.75;
}

.boost-product-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.boost-product-card {
    position: relative;

    min-height: 570px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    border:
        1px solid
        rgba(30, 30, 40, .07);

    border-radius: 24px;

    background: #f8f8fa;

    overflow: hidden;

    transition:
        transform .28s ease,
        box-shadow .28s ease;
}

.boost-product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 28px 70px
        rgba(30, 30, 50, .08);
}

.boost-product-card.featured {
    background:
        radial-gradient(
            circle at top right,
            rgba(140, 94, 255, .09),
            transparent 38%
        ),
        #f8f8fa;
}

.boost-product-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.boost-product-avatar img {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    object-fit: cover;
}

.boost-product-symbol {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #667dff,
            #9961ff
        );

    color: #fff;

    font-size: 8px;

    font-weight: 800;
}

.boost-product-badge {
    padding:
        7px
        9px;

    border-radius: 999px;

    background:
        rgba(126, 93, 214, .08);

    color: #7c5fc3;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;
}

.boost-product-badge.roland {
    background:
        rgba(218, 120, 85, .08);

    color: #b46a50;
}

.boost-product-badge.web,
.boost-product-badge.app {
    background:
        rgba(91, 117, 235, .08);

    color: #5970c6;
}

.boost-product-card h3 {
    margin:
        34px
        0
        13px;

    color: #202027;

    font-size: 29px;

    letter-spacing: -1.3px;
}

.boost-product-description {
    min-height: 57px;

    max-width: 480px;

    margin: 0;

    color: #6d6d76;

    font-size: 11px;

    line-height: 1.7;
}

.boost-product-card ul {
    display: grid;

    gap: 9px;

    margin:
        27px
        0
        30px;

    padding: 0;

    list-style: none;
}

.boost-product-card li {
    position: relative;

    padding-left: 16px;

    color: #53535c;

    font-size: 10px;
}

.boost-product-card li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 5px;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #9562e7;
}


/* =========================================================
   PRICE
========================================================= */

.boost-product-price {
    margin-top: auto;

    padding-top: 23px;

    border-top:
        1px solid
        rgba(30, 30, 40, .07);
}

.boost-product-price small {
    display: block;

    color: #9999a3;

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;
}

.boost-product-price strong {
    display: block;

    margin-top: 6px;

    color: #222229;

    font-size: 21px;

    letter-spacing: -.7px;
}

.boost-product-price > span {
    display: block;

    margin-top: 4px;

    color: #85858e;

    font-size: 9px;
}


/* =========================================================
   ACTIONS
========================================================= */

.boost-product-actions {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.boost-product-actions a {
    min-height: 45px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 15px;

    border-radius: 11px;

    text-decoration: none;

    font-size: 8px;

    font-weight: 800;
}

.boost-product-more {
    border:
        1px solid
        rgba(30, 30, 40, .09);

    background: #fff;

    color: #303037;
}

.boost-product-buy {
    background: #18191f;

    color: #f5f5f7;
}

.boost-product-buy.full {
    width: 100%;
}


/* =========================================================
   FINAL
========================================================= */

.boost-shop-final {
    padding: 130px 0;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(116, 91, 247, .08),
            transparent 42%
        ),
        #f5f5f8;
}

.boost-shop-final img {
    width: 62px;
    height: 62px;

    border-radius: 50%;

    object-fit: cover;
}

.boost-shop-final > .container > span {
    display: block;

    margin-top: 15px;

    color: #8464d4;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}

.boost-shop-final h2 {
    max-width: 760px;

    margin:
        18px
        auto
        17px;

    color: #1e1e24;

    font-size:
        clamp(
            42px,
            5vw,
            70px
        );

    line-height: .98;

    letter-spacing: -3.5px;

    font-weight: 500;
}

.boost-shop-final p {
    color: #707079;

    font-size: 11px;
}

.boost-shop-final a {
    min-height: 48px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 0 17px;

    border-radius: 12px;

    background: #18191f;

    color: #f5f5f7;

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:900px) {

    .boost-shop-hero-grid,
    .boost-product-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .boost-shop-hero {
        min-height: auto;

        padding: 120px 0 80px;
    }

    .boost-shop-products,
    .boost-shop-final {
        padding: 82px 0;
    }

    .boost-shop-copy h1,
    .boost-shop-title h2,
    .boost-shop-final h2 {
        letter-spacing: -2.5px;
    }

    .boost-product-card {
        min-height: auto;
    }

    .boost-product-actions {
        flex-direction: column;
    }

    .boost-product-actions a {
        width: 100%;
    }

}