/* import fonts here */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* import fonts here */

@font-face {
    font-family: 'lucide';
    src: url('../fonts/lucide.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* basic css*/

:root {
    --primary-gradient: linear-gradient(to right, #f26021, #f98c1f);
    --purple-gradient: linear-gradient(to right, #6467f2, #7e47eb);
    --accent-orange: #F26021;
    --accent-fill-orange: #FEF2E8;
    --icon-color: #6467F2;
    --icon-fill-color: #EFEFFD;
    --green-active-color: #10B77F;
    --border-color: #E7EAEF;
    --heading-color: #11151D;
    --text-color: #637083;
    --white-color: #ffffff;
    --black-color: #000000;
    --box-shadow: 0 1px 3px 0 #0000000a, 0 1px 2px -1px #0000000a;
    --box-shadow-hover: 0 10px 30px -10px #6467f226, 0 4px 6px -2px #0000000d;
    --inter-font: "Inter", sans-serif;
    --plus-jakarta-sans-font: "Plus Jakarta Sans", sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--inter-font);
    background-color: var(--white-color);
    color: var(--text-color);
    overflow-x: hidden;
}

main {
    overflow: hidden;
}

i {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--plus-jakarta-sans-font);
    color: var(--heading-color);
}

p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

a {
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    font-family: var(--plus-jakarta-sans-font);
    transition: var(--transition);
}

i,
input,
textarea {
    outline: none;
    transition: var(--transition);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container-xl {
    max-width: calc(1340px + 40px);
    padding-inline: 20px;
    margin-inline: auto;
}

.container {
    max-width: calc(1024px + 40px);
    padding-inline: 20px;
    margin-inline: auto;
}

.mini-container {
    max-width: 768px;
    margin-inline: auto;
}

/* basic css */



/* utilities classes */

.theme__btn {
    background: var(--primary-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    gap: 8px;
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 10px;
    background-size: 100% 100%;
    transition: background-size 0.4s ease, filter 0.3s ease;
}

.theme__btn:hover {
    filter: brightness(1.1) saturate(1.1);
    background-position: right center;
}

.theme__btn i {
    font-weight: normal;
    transform: translateZ(0);
}

.theme__btn.large__btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    gap: 12px;
    padding: 10px 32px;
    border: none;
}

.gradient-text {
    display: inline-block;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text !important;
}

.padding-block-80 {
    padding-block: 80px;
}

.padding-block-96 {
    padding-block: 96px;
}

.section__title {
    max-width: 740px;
    margin-inline: auto;
    margin-bottom: 50px;
}

.title__label {
    background-color: var(--white-color);
    border-radius: 100px;
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
}

.section__title .title__label p {
    font-size: 12px;
}

.section__title h3 {
    font-size: 36px;
    line-height: 45px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section__title h3 span {
    background: var(--primary-gradient);
}

.section__title p {
    font-size: 16px;
    line-height: 24px;
    max-width: 570px;
    margin-inline: auto;
}

.section__title p.higher__width {
    font-size: 18px;
    line-height: 28px;
    max-width: 750px;
}

.section__title p strong {
    font-weight: 600;
}

/* utilities classes */



/* header area start here */

header {
    position: sticky;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 222;
    background-color: var(--white-color);
}

.header__top {
    padding-block: 6px;
}

.header__top__text p {
    display: flex;
    align-items: center;
    color: var(--white-color);
    gap: 8px;
    font-weight: 500;
}

.header__top__text p i {
    color: #FDE047;
    font-size: 16px;
}

.header__top__text a {
    margin-inline-start: 16px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: var(--accent-orange);
    background-color: var(--white-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    text-transform: uppercase;
    font-family: var(--inter-font);
}

.header__top__text a:hover {
    background-color: var(--accent-fill-orange);
}

.header__logo a {
    display: inline-flex;
}

.header__content {
    padding-block: 15px;
}

.header__logo img {
    width: 167px;
}

.header__logo {
    display: flex;
}

.header__navgiation ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__navgiation ul li {
    display: flex;
    position: relative;
}

.header__navgiation ul li a {
    font-weight: 500;
    color: #41444B;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--inter-font);
}

.header__navgiation ul li:hover>a {
    color: var(--heading-color);
}

.dropdown__menu {
    position: absolute;
    inset-inline-start: 0;
    top: 22px;
    border: 1px solid #EEEFF2;
    padding: 6px;
    min-width: 230px;
    border-radius: 12px;
    box-shadow: 0 0 3px #6A71814D;
    background-color: var(--white-color);
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 22;
}

.header__navgiation ul li a:hover i {
    color: var(--heading-color);
}

.header__navgiation ul li a.home__link {
    font-size: 20px;
}

.header__navgiation ul li:hover i.icon-chevron-down {
    transform: rotate(-180deg);
}

.header__navgiation ul li:hover .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown__menu ul {
    flex-direction: column;
    align-items: start;
    gap: 0;
}

.dropdown__menu ul li {
    width: 100%;
}

.dropdown__menu ul li a {
    padding: 8px 16px;
    display: flex;
    border-radius: 12px;
    width: 100%;
}

.dropdown__menu ul li a:hover {
    background: #F5F3F0;
}

.header__button {
    gap: 12px;
}

.header__button a {
    font-weight: 500;
    border: 1px solid var(--border-color);
    display: inline-flex;
    color: var(--heading-color);
    padding: 6px 12px;
    border-radius: 10px;
    justify-content: center;
}

.header__button a:hover {
    background-color: #EC4699;
    color: var(--white-color);
    border-color: #EC4699;
}

/* header area end here */



/* hero area start here */

.hero__area {
    padding-block: 64px 96px;
    position: relative;
}

.hero__area::before {
    position: absolute;
    content: '';
    background: linear-gradient(180deg, #f1f1fe 0%, #fff 100%);
    height: 50%;
    width: 100%;
    top: 0;
    z-index: -1;
}

.hero__content {
    max-width: 896px;
    margin-inline: auto;
}

.hero__text h1 {
    font-size: 60px;
    line-height: 81px;
    font-weight: 800;
    margin-bottom: 20px;
    text-wrap: balance;
    overflow: hidden;
}

.platform__dynamic ul li {
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
}

.platform__dynamic ul li.twitter {
    background: linear-gradient(to right, #38BDF8 0%, #2563EB) 100%;
}

.hero__text h1 .gradient-text {
    background: var(--purple-gradient);
}

.hero__text p {
    font-size: 18px;
    line-height: 28px;
    max-width: 660px;
    margin-inline: auto;
    margin-bottom: 40px;
}

.hero__text h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero__text h2+p {
    max-width: 500px;
    margin-bottom: 24px;
}

.hero__content .review__rating {
    margin-bottom: 70px;
}

.hero__text p a {
    color: var(--accent-orange);
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}

.platform__dynamic .instagram {
    background: linear-gradient(to right, #EC4899, #EF4444, #EAB308);
}

.platform__dynamic .tiktok {
    background: linear-gradient(to right, #22D3EE 0%, #FF3099) 100%;
}

.platform__dynamic .youtube {
    background: linear-gradient(to right, #DC2626 0%, #F87171) 100%;
}

.platform__dynamic .x-twitter {
    background: linear-gradient(to right, #38BDF8 0%, #2563EB) 100%;
}

.hero__tab__button .platform__button {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--border-color);
    font-size: 14px;
    line-height: 20px;
    transition: var(--transition);
    width: 21.7%;
    text-wrap: nowrap;
    transform: translateZ(0);
    font-family: var(--plus-jakarta-sans-font);
    background: transparent;
    color: var(--text-color);
    box-shadow: 0 0 0 1px transparent;
}

.hero__tab__button .platform__button i {
    font-weight: normal;
}

.hero__tab__button .platform__button:hover {
    box-shadow: 0 0 0 1px var(--border-color);
    transform: scale(1.05);
    background: var(--white-color);
}

.hero__buy__detail {
    max-width: 768px;
    margin-inline: auto;
}

.hero__tab__button .platform__button .platform__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    top: unset;
    transform: unset;
    inset-inline-start: unset;
    color: var(--text-color);
    font-size: 16px;
    border-radius: 12px;
    background: transparent;
}

.hero__tab__button .platform__button.active {
    background: var(--white-color);
    color: var(--heading-color);
    border-color: #BBB1E7;
    box-shadow: 0 0 20px #f260214d;
}

.hero__tab__button .platform__button.active .platform__icon {
    background-color: #41444A;
}

.hero__tab__button {
    gap: 15px;
    margin-bottom: 30px;
}

.hero__reviewStats__left ul {
    display: flex;
    align-items: center;
}

.hero__reviewStats__left ul li i {
    color: #FBBF24;
    font-size: 14px;
}

.hero__reviewStats__left p {
    font-size: 12px;
    line-height: 16px;
    margin-inline-start: 8px;
}

.hero__reviewStats__left p span {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.hero__reviewStats__left {
    padding-inline-end: 20px;
    border-inline-end: 1px solid var(--border-color);
}

.hero__reviewStats__right {
    padding-inline-start: 20px;
    gap: 8px;
}

.hero__reviewStats__right i {
    color: var(--green-active-color);
}

.hero__reviewStats__right p span {
    color: var(--heading-color);
    font-weight: 500;
}

.platform__block__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-block: 40px;
}

.hero__buy__block a {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 20px;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    background: var(--white-color);
}

.hero__buy__block a h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero__buy__block a span {
    font-size: 12px;
    line-height: 16px;
    color: var(--text-color);
}

.hero__buy__block a .button__decoration {
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 100px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    gap: 5px;
    margin-top: 12px;
}

.hero__buy__block a .button__decoration span {
    color: var(--white-color);
}

.hero__buy__block a .button__decoration i {
    font-weight: 400;
}

.hero__activity__bar {
    max-width: 576px;
    margin-inline: auto;
    padding: 10.2px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background-color: var(--white-color);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.active__service,
.active__delivery {
    gap: 6px;
    justify-content: center;
}

.active__order p {
    color: var(--heading-color);
    position: relative;
}

.active__order p::before {
    position: absolute;
    content: '';
    background-color: var(--green-active-color);
    width: 11px;
    height: 11px;
    border-radius: 100%;
    inset-inline-start: -18px;
    top: calc(50% + 0px);
    transform: translateY(-50%);
    flex-shrink: 0;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 211, 147, 0.8);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(16, 183, 127, 0);
    }
}

.active__order p span {
    font-weight: 600;
}

.active__service {
    border-inline: 1px solid var(--border-color);
    padding-inline: 15px;
}

.active__order {
    padding-inline: 16px;
    justify-content: end;
}

.active__service p,
.active__delivery p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    text-wrap: nowrap;
}

.active__delivery {
    padding-inline-start: 16px;
}

.active__service p strong {
    color: var(--green-active-color);
    font-weight: 600;
}

.active__service i {
    color: var(--green-active-color);
}

.active__delivery i {
    color: var(--accent-orange);
}

.platform__block__grid a {
    opacity: 0;
}

.new__label {
    padding: .125rem .375rem;
    display: flex;
    background: linear-gradient(to right, #EC4899, #FB7185);
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 9px;
    line-height: 20px;
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: 10px;
    border-radius: 10px;
}

.hero__tab__button .platform__button.instagram.active .platform__icon {
    background: linear-gradient(to bottom right, #EC4899, #EF4444, #EAB308);
    color: var(--white-color);
}

.hero__tab__button .platform__button.tiktok.active .platform__icon {
    background: linear-gradient(to bottom right, #22D3EE, #EC4899);
    color: var(--white-color);
}

.hero__tab__button .platform__button.youtube.active .platform__icon {
    background: linear-gradient(to bottom right, #DC2626, #EF4444);
    color: var(--white-color);
}

.hero__tab__button .platform__button.twitter.active .platform__icon {
    background: linear-gradient(to bottom right, #0EA5E9, #2563EB);
    color: var(--white-color);
}

/* hero area end here */



/* marquee area start here */

.marquee__area {
    padding-block: 32px;
    border-block: 1px solid var(--border-color);
    background-color: #F9FAFB;
}

.marquee__list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    animation: marquee-right 40s linear infinite;
}

@keyframes marquee-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.marquee__track::before {
    position: absolute;
    content: '';
    background: linear-gradient(to right, #F9FAFB 20%, #fff0 100%);
    height: 100%;
    width: 150px;
    inset-inline-start: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.marquee__track::after {
    position: absolute;
    content: '';
    background: linear-gradient(to left, #F9FAFB 20%, #fff0 100%);
    height: 100%;
    width: 150px;
    inset-inline-end: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
}

.marquee__list li {
    display: flex;
    padding-inline: 25px;
}

.marquee__list li span {
    display: block;
    padding: 12px 20px;
    text-wrap: nowrap;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--white-color);
    font-weight: 800;
    font-family: var(--plus-jakarta-sans-font);
    font-size: 14px;
    line-height: 20px;
}

.marquee__title h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* marquee area end here */



/* step area start here */

.step__area {
    background-color: #F9FAFB;
}

.step__wrapper {
    gap: 24px;
}

.single__step {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    gap: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.single__step:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-orange);
}

.step__number {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-gradient);
    border-radius: 100%;
    color: var(--white-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 800;
    font-family: var(--plus-jakarta-sans-font);
    flex-shrink: 0;
}

.step__text h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.step__text p {
    font-size: 16px;
    line-height: 26px;
}

.step__button {
    margin-top: 40px;
}

/* step area end here */



/* why us start here */

.why__usGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card__wrapper {
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    background-color: var(--white-color);
    transition: var(--transition);
    height: 100%;
}

.card__wrapper:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--box-shadow-hover);
}

.why__cardIcon {
    width: 64px;
    height: 64px;
    margin-inline: auto;
    background-color: var(--accent-fill-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-orange);
    font-size: 32px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.card__wrapper h5 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.card__wrapper p {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

/* why us end here */



/* service area start here */

.service__cardContent {
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    transition: var(--transition);
}

.service__rating__label {
    border: 1px solid var(--border-color);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 16px;
}

.service__rating__label div>span {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--plus-jakarta-sans-font);
}

.service__rating__label div>i {
    font-size: 14px;
    color: var(--green-active-color);
}

.service__rating__label div {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #fff;
}

.service__rating__label div+span {
    font-size: 12px;
    line-height: 21px;
    font-weight: 600;
    display: inline-block;
    padding: 4px 10px;
    background-color: #F8FAFD;
    border-inline-start: 1px solid var(--border-color);
}

.service__contentText h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.service__list li {
    font-size: 14px;
    line-height: 20px;
    text-align: start;
    position: relative;
    padding-inline-start: 28px;
}

.service__list li::before {
    position: absolute;
    content: '\e070';
    font-family: 'lucide';
    inset-inline-start: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 100%;
    color: var(--accent-orange);
    border: 1px solid var(--border-color);
    font-size: 12px;
    box-shadow: 0 1px 2px 0 #0000000d;
}

.service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.service__card__button .theme__btn.large__btn {
    padding: 10px 40px;
}

.service__cardContent:hover {
    box-shadow: var(--box-shadow-hover);
}

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

/* card color */

.blueCard {
    border-color: #E0F2FE;
    background-color: #F8FCFF;
}

.blueCard .theme__btn.large__btn {
    background: linear-gradient(to right, #0EA5E9, #2563EB);
}

.orangeCard {
    border-color: #FFEDD5;
    background-color: #FFFBF6;
}

.orangeCard .theme__btn.large__btn {
    background: linear-gradient(to right, #f26021, #f98c1f);
}

.purpleCard {
    border-color: #F3E8FF;
    background-color: #FCFAFF;
}

.purpleCard .theme__btn.large__btn {
    background: linear-gradient(to right, #A855F7, #7C3AED);
}

.pinkCard {
    border-color: #FCE7F3;
    background-color: #FFF9FB;
}

.pinkCard .theme__btn.large__btn {
    background: linear-gradient(to right, #EC4899, #F43F5E);
}

.tealCard {
    border-color: #CCFBF1;
    background-color: #F8FEFD;
}

.tealCard .theme__btn.large__btn {
    background: linear-gradient(to right, #14B8A6, #0891B2);
}

.greenCard {
    border-color: #D1FAE5;
    background-color: #F7FEFA;
}

.greenCard .theme__btn.large__btn {
    background: linear-gradient(to right, #10B981, #16A34A);
}

.navyCard {
    border-color: #E0E7FF;
    background-color: #F8FCFF;
}

.navyCard .theme__btn.large__btn {
    background: linear-gradient(to right, #6366F1, #2563EB);
}

.redCard {
    border-color: #FEE2E2;
    background-color: #FEF9F8;
}

.redCard .theme__btn.large__btn {
    background: linear-gradient(to right, #EF4444, #DC2626);
}

.yellowCard {
    border-color: #FEF3C7;
    background-color: #FFFEF6;
}

.yellowCard .theme__btn.large__btn {
    background: linear-gradient(to right, #F59E0B, #CA8A04);
}

/* card color */

/* service area end here */



/* niche area start here */

.niche__area {
    background-color: #FDFDFD;
    padding-block: 40px;
}

.niche__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.niche__item {
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    text-align: center;
    background-color: var(--white-color);
    transition: var(--transition);
}

.niche__icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    background-color: var(--accent-fill-orange);
    border-radius: 16px;
    font-size: 28px;
    color: var(--accent-orange);
    margin-bottom: 12px;
    transition: var(--transition);
}

.niche__item:hover .niche__icon {
    background-color: #FEE6D3;
}

.niche__text h6 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.niche__text p {
    font-size: 12px;
    line-height: 15px;
}

.niche__item:hover {
    border-color: #FBCFBC;
    box-shadow: var(--box-shadow-hover);
}

/* niche area end here */



/* faq area start here */

.faq__area {
    background: #F9FAFB;
}

.faq__accordion {
    max-width: 720px;
    margin-inline: auto;
}

.faq__accordion .accordion-button {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    border-radius: 16px !important;
    padding: 20px 24px;
}

.faq__accordion .accordion-item {
    border-radius: 16px !important;
    border: 1px solid #EDEEF1 !important;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background: var(--white-color);
}

.faq__accordion .accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__accordion .accordion-item:first-of-type {
    border-start-start-radius: 16px !important;
    border-start-end-radius: 16px !important;
}

.faq__accordion .accordion-button:not(.collapsed),
.mainAccordion__content .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: var(--white-color);
    box-shadow: none;
}

.faq__accordion .accordion-body {
    padding: 24px;
    padding-block: 0 20px;
}

.faq__accordion .accordion-button:focus,
.mainAccordion__content .accordion-button:focus {
    box-shadow: none;
}

.faq__accordion .accordion-body p {
    font-size: 14px;
    line-height: 22px;
}

.faq__accordion .accordion-item:hover {
    border-color: var(--accent-orange) !important;
    background-color: var(--accent-fill-orange);
}

.faq__accordion .accordion-item:hover .accordion-button {
    background-color: var(--accent-fill-color);
}

.faq__accordion .accordion-button::after,
.mainAccordion__content .accordion-button::after {
    background-image: none;
    content: '\e071';
    font-family: 'lucide';
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

/* faq area end here */



/* growth area start here */

.growth__area {
    background-color: #FBF5F2;
}

.growth__flex {
    gap: 16px;
    margin-bottom: 40px;
}

.growth__card {
    width: 28.2%;
}

.growth__card__content {
    padding: 24px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 16px;
    border: 1px solid #E7EAEF;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 100%;
}

.growth__card__content:hover {
    background-color: #FBF8F9;
    border-color: #D0D1FA;
    box-shadow: var(--box-shadow-hover);
}

.growth__label {
    padding: 6px 16px;
    border: 1px solid var(--icon-color);
    background-color: var(--icon-fill-color);
    border-radius: 100px;
    font-size: 14px;
    line-height: 20px;
    color: var(--icon-color);
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
    margin-bottom: 24px;
}

.growth__label i {
    font-weight: 400;
}

.growth__icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    background: var(--icon-fill-color);
    border-radius: 16px;
    color: var(--icon-color);
    margin-bottom: 12px;
    transition: var(--transition);
}

.growth__card__content:hover .growth__icon {
    background: #E5E2F9;
}

.growth__card__content h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.growth__btn__deco {
    margin-top: 20px;
    color: var(--icon-color);
    gap: 5px !important;
}

.growth__btn__deco p {
    color: var(--icon-color);
    font-weight: 700;
}

.growth__btn__deco i {
    font-size: 18px;
    transition: var(--transition);
}

.growth__card__content:hover i.icon-arrow-right {
    transform: translateX(6px);
}

.growth__service__more .theme__btn.large__btn {
    border-radius: 100px;
    padding: 14px 32px;
    transition: var(--transition);
    gap: 4px;
    box-shadow: 0 0 0;
}

.growth__service__more .theme__btn.large__btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 10px #C0C0FF;
}

.growth__service__more .theme__btn.large__btn:hover i {
    transform: translateX(5px) translateY(1px);
}

.growth__result p {
    padding-inline: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.growth__result p:nth-child(2) {
    border-inline: 1px solid var(--border-color);
}

.growth__result p i {
    color: var(--icon-color);
    font-size: 18px;
}

.growth__result {
    margin-top: 32px;
}

/* growth area end here */



/* footer area start here */

footer {
    background: #F9FAFB;
    padding-block: 64px;
    border-top: 1px solid var(--border-color);
}

.footer__navs {
    gap: 24px;
}

.footer__navigation {
    flex-grow: 1;
    width: 16%;
}

.footer__navigation h5 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
}

.footer__navigation ul li a {
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.footer__navigation ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__navigation ul li a:hover {
    color: var(--icon-color);
    transform: translateX(8px);
}

.payment__trust ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.payment__trust ul li {
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment__trust ul li i {
    font-weight: 400;
}

.footer__payment {
    padding-block: 32px 24px;
    border-block: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.payment__option ul li p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    margin-inline-end: 8px;
}

.payment__option ul li span {
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--white-color);
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.payment__option ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.footer__copyright .mini__text,
.footer__copyright .mini__text a {
    font-size: 10px;
    color: #ADB5BE;
    line-height: 1.625;
    margin-top: 16px;
}

.footer__copyright .mini__text a:hover {
    color: var(--accent-orange);
}

.footer__copyright article {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
}

.footer__copyright article p:first-child {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 4px;
}

.footer__copyright article p {
    font-size: 11px;
    line-height: 16px;
    color: #8F99A7;
}

.footer__copyright article p a {
    font-size: 11px;
    line-height: 16px;
    color: #8F99A7;
}

.footer__copyright article p a:hover {
    color: var(--accent-orange);
}

/* footer area end here */










/* hero sub start here */

.hero__sub {
    padding-block: 80px;
    background: linear-gradient(180deg, #f1f1fe 0%, #fff 100%);
}

.hero__subWrapper {
    padding-top: 80px;
    margin-top: 60px;
}

.article__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-inline: 32px;
}

.article__text__notice {
    font-size: 14px;
    line-height: 20px;
    color: var(--heading-color);
    font-weight: 500;
}

/* hero sub ---- faq page */

.faq__title {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E6E6FC;
    color: var(--icon-color);
    font-size: 28px;
    border-radius: 16px;
    margin-inline: auto;
    margin-bottom: 20px;
}

.mainAccordion__content {
    padding-inline: 32px;
}

.mainAccordion__title h2 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.mainAccordion__title p {
    font-size: 18px;
    line-height: 28px;
    max-width: 560px;
    margin-inline: auto;
}

.mainAccordion__wrapper .accordion-button {
    padding: 20px 24px;
    border: none;
    background: transparent;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-family: var(--plus-jakarta-sans-font);
    gap: 12px;
}

.mainAccordion__wrapper .accordion-button i {
    font-weight: normal;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--icon-fill-color);
    color: var(--icon-color);
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.mainAccordion__wrapper .accordion-item {
    border: 1px solid var(--border-color);
    margin-top: 16px;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.mainAccordion__wrapper .accordion-body {
    padding-top: 0;
    margin-inline-start: 56px;
    padding-bottom: 30px;
}

.accordion__text__wrapper p,
.accordion__text__wrapper ul li {
    font-size: 14px;
    line-height: 22px;
    color: var(--text-color);
}

.accordion__text__wrapper ul {
    margin-block: 20px;
    list-style: disc;
    padding-inline-start: 14px;
}

.about__accordion__heading h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}

.mainAccordion__wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* hero sub ---- faq page */



/* hero sub ---- terms&conditions page */

.card__article__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-inline-start: 12px;
}

.card__article__text ol {
    padding-inline-start: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
}

.card__article {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    padding: 32px;
    border-radius: 16px;
}

.card__article__title {
    margin-bottom: 16px;
}

.card__article__text a {
    color: var(--icon-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.card__article__text a:hover,
.contact__block a:hover {
    text-decoration: underline;
}

.card__article__title h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
}

.card__article__title i {
    width: 40px;
    height: 40px;
    background-color: var(--icon-fill-color);
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 12px;
    color: var(--icon-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-inline-end: 14px;
}

.card__article__text p {
    font-size: 16px;
    line-height: 26px;
}

/* hero sub ---- terms&conditions page */



/* hero sub ---- privacy-policy page */

.contact__block {
    background: #F7F7FE;
    border: 1px solid #DADBFC;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
}

.contact__block h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact__block p {
    font-size: 16px;
    line-height: 24px;
}

.contact__block a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--icon-color);
}

/* hero sub ---- privacy-policy page */

/* hero sub end here */








/* contact page start here */

.support__label {
    display: inline-flex;
    background-color: var(--white-color);
    border-radius: 100px;
    align-items: center;
    padding: 6px 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 2px 0 #0000000d;
    gap: 8px;
}

.support__label i {
    color: var(--accent-orange);
    font-size: 14px;
}

.support__label span {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact__page .hero__text p {
    margin-bottom: 12px;
    max-width: 600px;
    text-wrap: balance;
}

.contact__page .hero__text h1 {
    margin-bottom: 0px;
}

.contact__page .hero__text .brand__certified {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
}

.contact__card__wrapper {
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-radius: 16px;
    width: 100%;
}

.contact__card__wrapper:hover {
    box-shadow: var(--box-shadow-hover);
    border-color: var(--accent-orange);
}

.contact__support__icon {
    width: 48px;
    height: 48px;
    margin-inline: auto;
    background: var(--accent-fill-orange);
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 12px;
}

.contact__card__wrapper p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--heading-color);
}

.contact__card__wrapper a {
    font-size: 14px;
    line-height: 20px;
    color: var(--text-color);
}

.contact__card__wrapper a:hover {
    color: var(--accent-orange);
}

.contact__card__wrapper span {
    display: flex;
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
    justify-content: center;
}

.contact__support__card {
    width: 48.7%;
    display: flex;
}

.contact__content.mini-container {
    max-width: 672px;
    padding-bottom: 80px;
}

.contact__support__flex {
    padding-bottom: 56px;
}

.contact__form {
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 17px;
}

.contact__form__title h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.contact__form__title p {
    margin-bottom: 24px;
}

.input__container label {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.input__container input,
.input__container textarea,
.coupon__input__field input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
    outline: 2px solid transparent;
}

.input__field:focus-within {
    border-color: #6467F2;
}

.input__container input:focus,
.input__container textarea:focus,
.coupon__input__field input:focus {
    outline: 2px solid var(--icon-color);
}

.input__container textarea {
    resize: none;
    height: 100px;
}

.contact__form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single__input.half__width {
    width: 48.5%;
}

.button__start__group {
    display: flex;
    gap: 4px;
}

.button__start__group button {
    border: none;
    background-color: transparent;
    padding: 0;
}

.button__start__group button svg {
    stroke: var(--border-color);
    width: 30px;
    height: 30px;
    transition: var(--transition);
}

.security__check__block {
    background: #FBFCFC;
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 12px;
}

.security__check__block h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    font-family: var(--inter-font);
    margin-bottom: 6px;
}

.security__check__block .security__field p span {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    display: inline-block;
}

.security__field input {
    width: 200px;
}

.submit__button .theme__btn.large__btn {
    width: 100%;
    border: none;
}

/* contact page end here */



/* buy instagram followers */

/* tier wrapper start here */

.tier-card {
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--box-shadow-hover);
    transition: var(--transition);
    background-color: var(--white-color);
    position: relative;
    cursor: pointer;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card input+span::after {
    position: absolute;
    content: '\e070';
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 100%;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    font-family: 'Lucide';
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 12px;
    transition: var(--transition);
}

.tier-card.normal.active input+span::after {
    border-color: #38BDF8;
    background: linear-gradient(to right, #0EA5E9, #3B82F6);
}

.tier-card.recommended.active input+span::after {
    border-color: #4ADE80;
    background: linear-gradient(to right, #22C55E, #10B981);
}

.tier-card.exclusive.active input+span::after {
    border-color: #C084FC;
    background: linear-gradient(to right, #A855F7, #8B5CF6);
}

#tier-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tier-card.normal.active {
    border-color: #38BDF8;
    background-color: #F0F9FF;
}

.tier-card.normal.active span {
    color: #0284C7;
}

.tier-card.recommended.active {
    border-color: #4ADE80;
    background-color: #F0FDF4;
}

.tier-card.recommended.active span {
    color: #16A34A;
}

.tier-card.exclusive.active {
    border-color: #C084FC;
    background-color: #FAF5FF;
}

.tier-card.exclusive.active span {
    color: #9333EA;
}

.tier-card .badge {
    font-size: 10px;
    line-height: 15px;
    font-weight: 600;
    color: var(--white-color) !important;
    position: absolute;
    inset-inline-end: 10px;
    top: -12px;
    border-radius: 100px;
}

.tier-card input {
    display: none;
}

.tier-card input+span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
    margin-bottom: 12px;
    display: block;
    position: relative;
    padding-inline-start: 28px;
    color: var(--heading-color);
}

.tier-card ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tier-card ul li {
    padding-inline-start: 15px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 12px;
    line-height: 16px;
}

.tier-card ul li::before {
    content: '\e070';
    font-family: 'lucide';
    position: absolute;
    inset-inline-start: 0;
    color: var(--green-active-color);
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.tier-card.recommended .badge {
    background: linear-gradient(to right, #10B981, #16A34A);
}

.tier-card.exclusive .badge {
    background: linear-gradient(to right, #A855F7, #7C3AED);
}

#follower-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-block: 24px;
}

#buy-box {
    padding: 24px;
    background-color: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    max-width: 448px;
    margin-inline: auto;
    box-shadow: var(--box-shadow);
}

#current-price {
    font-size: 48px;
    line-height: 60px;
    font-weight: 800;
    font-family: var(--plus-jakarta-sans-font);
    color: var(--heading-color);
}

#original-price {
    font-size: 18px;
    line-height: 28px;
    text-decoration: line-through;
    margin-inline-start: 5px;
}

#savings-display {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--green-active-color);
    margin-top: 4px;
    margin-bottom: 20px;
}

#buy-box label {
    display: flex;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 6px;
}

#buy-box input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
    outline: 2px solid transparent;
}

.qty-btn {
    padding: 12px 8px;
    background-color: var(--white-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    font-size: 18px;
    line-height: 28px;
    font-weight: 800;
    font-family: var(--plus-jakarta-sans-font);
    position: relative;
}

.qty-btn:hover {
    border-color: #D1D5DB;
}

.qty-btn .badge.bulk-price {
    background: var(--purple-gradient);
}

.qty-btn.normal {
    border-color: #38BDF8;
    color: #0284CB;
    background: #F0F9FF;
}

.qty-btn.recommended {
    border-color: #4ADE80;
    color: #16A34A;
    background: #F0FDF4;
}

.qty-btn.exclusive {
    border-color: #C084FC;
    color: #9333EA;
    background: #FAF5FF;
}

.qty-btn span {
    font-size: 10px;
    line-height: 15px;
    color: var(--text-color);
    font-weight: normal;
    display: block;
}

.qty-btn .badge {
    padding: 4px 8px;
    font-size: 9px;
    line-height: 11px;
    font-weight: 800;
    background: var(--primary-gradient);
    display: inline-block;
    color: var(--white-color);
    position: absolute;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    top: -10px;
    border-radius: 100px;
}

#buy-box input:focus {
    outline: 2px solid var(--icon-color);
}

#add-to-cart-btn {
    width: 100%;
    border: none;
    margin-block: 20px 10px;
}

#buy-box .payment__security li {
    font-size: 14px;
    line-height: 20px;
}

#buy-box.normal {
    border-color: #38BDF8;
}

#buy-box.normal #add-to-cart-btn {
    background: linear-gradient(to right, #0EA5E9, #2563EB);
}

#buy-box.recommended {
    border-color: #4ADE80;
}

#buy-box.recommended #add-to-cart-btn {
    background: linear-gradient(to right, #10B981, #16A34A);
}

#buy-box.exclusive {
    border-color: #C084FC;
}

#buy-box.exclusive #add-to-cart-btn {
    background: linear-gradient(to right, #A855F7, #7C3AED);
}

/* tier wrapper css start here */



/* why matter start here */

.why__matter {
    padding-block: 64px;
}

.why__matter__content .why__usGrid p {
    line-height: 26px;
    text-align: justify;
}

.why__matter__wrapper {
    margin-bottom: 48px;
}

.why__matter__image {
    border-radius: 16px;
    box-shadow: var(--box-shadow-hover);
    overflow: hidden;
    width: 48.1%;
}

.why__matter__text {
    width: 48.1%;
}

.why__matter__text h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.why__matter__text p {
    font-size: 16px;
    line-height: 26px;
}

.why__matter__text p strong {
    color: var(--heading-color);
    font-weight: 600;
}

/* why matter end here */



/* compare area start here */

.stand__outTable {
    width: 100%;
}

.stand__outTable th {
    width: 33.33%;
}

.logo__cell a {
    border-radius: 12px;
    border: 1px solid #D2D2D5;
    display: flex;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    padding: 20px;
}

.heading__otherCell span {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 12px;
    border: 1px solid #D2D2D5;
    background: rgba(90, 161, 234, 0.12);
    display: block;
    padding: 20px;
}

.data__cellTable .data__crossIcon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FDECEC;
    border-radius: 100%;
    font-size: 14px;
    color: #EF4343;
}

.data__cellTable .data__checkIcon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #DBF4EC;
    border-radius: 100%;
    color: var(--green-active-color);
    font-size: 14px;
    flex-shrink: 0;
}

.data__cellTable .data__featureIcon {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-fill-orange);
    border-radius: 12px;
    color: var(--accent-orange);
}

.table__wrapper {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

.logo__cell img {
    width: 167px;
}

.logo__cell,
.heading__otherCell {
    padding: 20px;
}

.greenicon {
    filter: brightness(0) saturate(100%) invert(52%) sepia(65%) saturate(6239%) hue-rotate(111deg) brightness(103%) contrast(107%);
}

.data__cellTable img {
    width: 24px;
}

.data__cellTable {
    display: flex;
    align-items: center;
    gap: 10px;
}

.data__cellTable span {
    color: #11032D;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.stand__outTable tr td {
    padding: 16px 24px;
    border-block: 1px solid var(--border-color);
}

.stand__outTable tr {
    border-radius: 10px;
}

.stand__outTable::after {
    position: absolute;
    content: '';
    width: 33.334%;
    height: 100%;
    inset-inline-start: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 3px solid transparent;
    border-image: linear-gradient(101deg, #FFB220 0%, #FF5D00 100%);
    border-image-slice: 1;
    z-index: 1;
    padding: 0px;
    background: linear-gradient(101deg, #FFB220, #FF5D00);
    border-radius: 12px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    box-sizing: border-box;
}

/* compare area end here */



/* about area start here */

.about__area {
    padding-block: 64px;
}

.section__title h5 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.about__content .section__title p {
    font-size: 14px;
    line-height: 20px;
}

.video__container {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px -15px #6467f233;
    display: flex;
}

.video__container iframe {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}


/* about area end here */



/* benefit area start here */

.benefit__content .section__title {
    max-width: 800px;
}

.benefit__content .section__title p {
    max-width: 100%;
}

.benefit__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 24px;
}

.benefit__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit__image {
    border-radius: 16px;
    box-shadow: var(--box-shadow-hover);
    overflow: hidden;
}

.why__express__listing {
    width: 50%;
}

.why__express__image {
    width: 50%;
    box-shadow: var(--box-shadow-hover);
    border-radius: 16px;
    overflow: hidden;
}

/* benefit area end here */



/* why express follower  start here */

.why__expressFollower {
    padding-bottom: 80px;
}

.why__usGrid.grid__col4 {
    grid-template-columns: repeat(4, 1fr);
}

.why__express__flex {
    margin-bottom: 48px;
}

.why__express__listing ul li,
.why__express__listing ul li p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 24px;
    color: var(--heading-color);
}

.why__express__listing ul li i {
    color: var(--green-active-color);
    font-size: 20px;
}

.why__express__listing ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.key__points__list {
    margin-top: 48px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    padding: 32px;
    border-radius: 16px;
    background: var(--white-color);
}

.key__points__list h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.key__points__list h4 i {
    background: var(--primary-gradient);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    border-radius: 12px;
    font-weight: normal;
}

.key__points__list ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.key__points__list ul li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.key__points__list ul li p {
    font-size: 16px;
    line-height: 24px;
}

.key__points__list ul li i {
    color: var(--green-active-color);
    font-size: 20px;
}

/* why express follower area end here */

/* buy instagram followers */




/* buy instagram 500 page css start here */

.why__usGrid.grid__col-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* popular pack start here */

.popular__pack {
    padding-top: 56px;
}

.popular__pack>p {
    font-size: 12px;
    line-height: 16px;
    padding-bottom: 16px;
}

.popular__pack>p span {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading-color);
}

.pack__card {
    max-width: 450px;
    margin-inline: auto;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.pack__card__body {
    padding: 32px;
    background: var(--white-color);
    border: 2px solid #FCDFD3;
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.pack__card__heading h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--white-color);
}

.pack__card__heading {
    padding: 14px 24px;
    background: var(--primary-gradient);
    border-radius: 16px 16px 0 0;
}

.pack__card__body h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pack__price__wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.pack__price__wrapper h4 {
    font-size: 48px;
    line-height: 48px;
    font-weight: 800;
}

.pack__discount del,
.pack__discount span {
    display: flex;
}

.pack__discount del {
    font-size: 14px;
    line-height: 20px;
}

.pack__discount span {
    font-size: 10px;
    line-height: 12px;
    color: var(--green-active-color);
    background: #E7F7F2;
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
    padding: 2px 6px;
    border-radius: 100px;
    margin-top: 3px;
}

.pack__price p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 8px;
}

.pack__price p span {
    font-weight: 600;
    color: var(--heading-color);
}

.pack__feature ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pack__feature ul li {
    text-align: start;
    position: relative;
    padding-inline-start: 30px;
    font-size: 14px;
    line-height: 20px;
    color: var(--heading-color);
}

.pack__feature ul li::before {
    position: absolute;
    content: '\e070';
    font-family: 'lucide';
    inset-inline-start: 0;
    background: #E7F7F2;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--green-active-color);
    border-radius: 100px;
    font-size: 12px;
}

.pack__feature {
    border-block: 1px solid var(--border-color);
    padding-block: 20px;
    margin-block: 20px;
}

.pack__user__id {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.pack__user__id label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.pack__user__id input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 20px;
    border-radius: 12px;
    outline: 2px solid transparent;
}

.pack__user__id input:focus {
    outline: 2px solid var(--icon-color);
}

.pack__buy button {
    border: none;
    width: 100%;
    margin-block: 16px;
}

.payment__security {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.payment__security li {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    line-height: 16px;
}

.pack__buy p {
    font-size: 12px;
    line-height: 16px;
}

.pack__buy p strong {
    color: var(--heading-color);
}

/* popular pack end here */



/* service area start here */

.service__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.serviceGrid__card__text {
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    height: 100%;
    text-align: center;
    background-color: var(--white-color);
    transition: var(--transition);
}

.serviceGrid__card__text p {
    text-align: justify;
}

.serviceGrid__card__text:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--box-shadow-hover);
}

.serviceGrid__card__text i {
    margin-inline: auto;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-orange);
    background-color: var(--accent-fill-orange);
    border-radius: 16px;
    font-size: 26px;
    margin-bottom: 16px;
}

.serviceGrid__card__text h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

/* service area end here */



/* cta area start here */

.cta__box {
    padding: 48px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 24px;
    background-color: #FAFBFC;
}

.cta__box.mini-container h4 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta__box.mini-container h4 span {
    background: var(--primary-gradient);
}

.cta__box.mini-container p {
    font-size: 18px;
    line-height: 28px;
}

.cta__box article {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cta__box .theme__btn.large__btn {
    font-size: 14px;
    font-weight: 700;
}

/* cta area end here */



/* review area start here */

.review__area {
    padding-block: 64px;
}

.review__wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: start;
}

.review__form {
    padding: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    width: 31.8%;
}

.review__form__title h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.review__form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review__sumbit {
    width: 100%;
    padding: 0;
    border: none;
    background: linear-gradient(135deg, #10b77f, #12d393);
    color: var(--white-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
    padding: 8px 16px;
    border-radius: 10px;
    transition: var(--transition);
}

.review__sumbit:hover {
    filter: brightness(1.1) saturate(1.1);
    background-position: right center;
}

.review__title h4 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.review__title h4 span {
    background: var(--purple-gradient);
}

.review__title h4+p {
    margin-bottom: 10px;
}

.review__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.review__rating ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.review__rating ul li {
    color: #FBBF24;
    font-size: 14px;
}

.review__rating p span {
    color: var(--heading-color);
    font-weight: 500;
    margin-inline-end: 4px;
}

.review__field__card .review__rating {
    justify-content: start;
    margin-bottom: 12px;
}

.review__field__slider {
    width: 31.8%;
}

.review__field__card {
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    border-radius: 16px;
    background-color: var(--white-color);
}

.review__card__text p {
    line-height: 22px;
}

.review__card__profile {
    margin-top: 16px;
    gap: 8px;
}

.review__card__profile .profile__icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    flex-shrink: 0;
}

.review__card__profile .profile__icon span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--white-color);
    font-family: var(--plus-jakarta-sans-font);
}

.review__card__profile .profile__details h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.review__card__profile .profile__status {
    display: flex;
    align-items: center;
    color: var(--green-active-color);
    font-size: 12px;
    line-height: 16px;
    gap: 5px;
}

.review__wrapper .swiper {
    max-height: 600px;
}

.review__wrapper .swiper .swiper-slide {
    height: unset !important;
}

.review__wrapper .swiper-wrapper,
.fieldSlider1 .swiper-wrapper,
.fieldSlider2 .swiper-wrapper {
    transition-timing-function: linear !important;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.review__field__slider::before {
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, #fff, transparent);
    height: 64px;
    width: 100%;
    top: 0;
    inset-inline-start: 0;
    z-index: 2;
}

.review__field__slider::after {
    position: absolute;
    content: '';
    position: absolute;
    content: '';
    background: linear-gradient(to top, #fff, transparent);
    height: 64px;
    width: 100%;
    bottom: 0;
    inset-inline-end: 0;
    z-index: 2;
}

/* review area end here */

/* buy instagram 500 page css end here */





/* enter-username start here */

.payment__step {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* progress step css start here */

.progress__bar {
    padding-block: 16px;
}

.single__progress.current__step .single__progress p {
    font-weight: 600;
}

.single__progress.current__step .progress__step__number {
    background: var(--primary-gradient);
    border: none;
    color: var(--white-color);
}

.progress__track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical__divider {
    height: 1px;
    width: 80px;
    background-color: var(--border-color);
    margin-inline: 25px;
}

.progress__step__number {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    border: 2px solid var(--border-color);
    border-radius: 100%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--plus-jakarta-sans-font);
    flex-shrink: 0;
    transition: var(--transition);
}

.single__progress {
    gap: 8px;
    opacity: 0.36;
}

.single__progress p {
    font-size: 14px;
    line-height: 20px;
    font-family: var(--plus-jakarta-sans-font);
}

.single__progress.current__step {
    opacity: 1;
}

.single__progress.current__step p {
    font-weight: 700;
    color: var(--heading-color);
}

.progress__payment {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 56px;
    background-color: #F6F8FA;
}

.user__form__content {
    max-width: 448px;
    margin-inline: auto;
    background-color: var(--white-color);
    box-shadow: 0 8px 30px -6px #0000001f;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
}

.payment__method__input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    padding: 4px;
    background: #FAFBFC;
    border-radius: 12px;
}

.method__input__field:has(input:checked) {
    border: 1px solid #E8E8FD;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 #E8E8FD, 0 1px 2px -1px #E8E8FD;
}

.method__label__name input {
    appearance: none;
}

.method__label__name {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
}

.method__price__detail .discount {
    position: absolute;
    box-shadow: 0 1px 2px 0 #0000000d;
    font-size: 9px;
    line-height: 12px;
    background: var(--green-active-color);
    color: var(--white-color);
    padding: 3px 8px;
    border-radius: 100px;
    top: -7px;
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
    inset-inline-end: 0;
}

.method__input__field:has(input:checked) span {
    font-weight: 700;
}

.method__input__field {
    border: 1px solid transparent;
    transition: var(--transition);
    border-radius: 12px;
    font-family: var(--plus-jakarta-sans-font);
}

.method__input__field span {
    font-size: 14px;
    line-height: 20px;
    transition: var(--transition);
}

.user__form__title h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.method__input__field label {
    padding-block: 8px;
    cursor: pointer;
    z-index: 2;
    position: relative;
    font-weight: 500;
}

.user__form__title {
    text-align: center;
    padding-bottom: 8px;
}

.user__form__title .active__order p {
    font-size: 12px;
    line-height: 16px;
    color: var(--text-color);
}

.user__form__title .active__order p::before {
    width: 8px;
    height: 8px;
    inset-inline-start: -14px;
}

.input__field span {
    font-size: 11px;
    line-height: 16px;
    position: absolute;
    top: 8px;
    inset-inline-start: 44px;
}

.input__field {
    width: 100%;
    display: flex;
    padding: 24px 16px 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-top: 16px;
    transition: var(--transition);
}

.input__field input {
    width: 100%;
    padding: 0;
    border: none;
    font-weight: 400;
    color: #636A73;
    padding-inline-start: 28px;
    font-size: 14px;
    line-height: 20px;
}

.platform__icon .icon-mail {
    color: var(--heading-color);
}

.platform__icon {
    position: absolute;
    top: 50%;
    inset-inline-start: 12px;
    transform: translateY(-50%);
}

.user__form .platform__icon .icon-instagram {
    color: #D32978;
}

.user__form .platform__icon i {
    font-size: 20px;
}

.payAmount {
    gap: 10px;
    margin-block: 20px;
    padding-inline: 10px;
}

.next__step button,
.next__step a {
    width: 100%;
    height: 56px;
    margin-bottom: 20px;
}

.payAmount span {
    font-size: 16px;
    line-height: 24px;
    font-weight: 800;
    color: var(--heading-color);
    font-family: var(--plus-jakarta-sans-font);
}

.next__step .review__rating p {
    font-size: 12px;
    line-height: 16px;
}

.next__step .review__rating ul li {
    font-size: 12px;
}

.next__step .review__rating {
    gap: 6px;
}

.single__user__alert {
    display: flex;
    padding: 14px 16px;
    border: 1px solid #F9BFBF;
    gap: 12px;
    border-radius: 12px;
    background: #FEF5F5;
}

.user__alert__icon {
    flex-shrink: 0;
    font-size: 20px;
    color: #EF4343;
}

.user__alert__text h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #EF4343;
    margin-bottom: 4px;
}

.user__alert__text p {
    color: #EF4343;
    font-size: 12px;
    line-height: 16px;
}

.single__user__alert.alert__privateAccount {
    margin-block: 12px 20px;
    background: #FFFBEB;
    border-color: #FEE9AF;
}

.single__user__alert.alert__privateAccount h5,
.single__user__alert.alert__privateAccount p,
.single__user__alert.alert__privateAccount i {
    color: #D97706;
}

.valid__error {
    display: none;
    align-items: center;
    padding-top: 8px;
    gap: 6px;
    color: #EF4343;
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
}

.valid__error i {
    font-style: normal;
}

.valid__error i.icon-circle-alert {
    font-size: 18px;
}

.input__field__container.is-invalid .valid__error {
    display: flex;
}

.input__field__container.is-invalid .input__field {
    border-color: #EF4343;
    background-color: #FEF5F5;
}

.is-invalid span,
.is-invalid i,
.is-invalid .platform__icon i {
    color: #EF4343;
}

.is-invalid input {
    background: #FEF5F5;
}

/* progress step css end here */

/* enter username end here */



/* select media start here */

.select__media {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background-color: #F6F8FA;
}

.xtra__mini__container {
    max-width: 512px;
    margin-inline: auto;
}

.selected__profile__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.single__post__button.active .post__thumb__react {
    opacity: 1;
}

.selected__profileAvatar {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.selected__profileText h4 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.selected__profileText span {
    font-size: 12px;
    line-height: 16px;
}

.selected__profileText {
    display: flex;
    flex-direction: column;
}

.selected__profile {
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-color);
}

.selected__intro__left h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.post__selection__number {
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    background: var(--primary-gradient);
    display: block;
    color: var(--white-color);
    padding: 6px 12px;
    border-radius: 100px;
}

.selection__price {
    font-size: 12px;
    line-height: 16px;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 100px;
}

.selection__price i {
    color: var(--accent-orange);
}

.selected__intro__right {
    gap: 12px;
}

.selected__main {
    padding: 28px;
}

.selection__media__body {
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px -6px #0000001f;
    border-radius: 16px;
    background: var(--white-color);
}

.selected__profile__stats h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.selected__profile__stats span {
    font-size: 12px;
    line-height: 16px;
    display: flex;
    justify-content: end;
}

.single__progress.complete__step .progress__step__number {
    background: #10B77F;
    color: var(--white-color);
    border: none;
}

.single__progress.complete__step:hover .progress__step__number {
    background: #3FC598;
}

.single__progress.complete__step {
    opacity: 1;
}

.selected__mainGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-block: 20px;
}

.single__post__button {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 12px;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    border: 2px solid transparent;
}

.single__post__button::after {
    position: absolute;
    content: '';
    background: var(--black-color);
    opacity: 0;
    inset: 0px;
    transition: var(--transition);
    border-radius: 10px;
}

.single__post__button:hover::after {
    opacity: 0.1;
}

.single__post__button.active {
    border-color: var(--accent-orange);
}

.single__post__button.active::after {
    background: #f2602133;
    opacity: 1;
}

.single__post__button.active .selected__circle {
    background-color: var(--accent-orange);
    color: var(--white-color);
    border: none;
}

.selected__circle {
    border: 2px solid var(--white-color);
    width: 20px;
    height: 20px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: 12px;
    inset-inline-start: 8px;
    top: 8px;
    color: transparent;
    z-index: 2;
}

.post__thumb__react {
    padding: 5px 10px;
    background: var(--accent-orange);
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    font-size: 11px;
    line-height: 16px;
    color: var(--white-color);
    font-weight: 700;
    gap: 4px;
    z-index: 2;
    opacity: 0;
}

.post__thumb__react i {
    font-weight: normal;
}

.selected__post__more button {
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid #CACFD5;
    background-color: transparent;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    transition: var(--transition);
}

.selected__post__more button:hover {
    background: var(--accent-orange);
    color: var(--white-color);
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.selected__post__more p {
    font-size: 12px;
    line-height: 16px;
    margin-block: 16px 30px;
}

.selected__mainGrid {
    position: relative;
}

.grid__preloader__wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    gap: 16px;
    z-index: 10;
}

.preloader__grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0;
}

.single__preload__box {
    border-radius: 12px;
    aspect-ratio: 1 / 1;
}

.grid__preloader__box {
    position: relative;
    z-index: 2;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid #F7F8FA;
    box-shadow: 0 10px 15px -3px #0000001a, 0 4px 6px -4px #0000001a;
    border-radius: 16px;
    background: var(--white-color);
    text-align: center;
}

.grid__preloader__box .loader i {
    font-size: 30px;
    color: var(--accent-orange);
    display: flex;
    justify-content: center;
    line-height: 30px;
}

.grid__preloader__box h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}

.preloader__progress__track {
    width: 100%;
    height: 6px;
    background: #FDFDFD;
    border-radius: 100px;
    position: relative;
}

.preloader__bars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.preloader__bars .bar {
    width: 28px;
    height: 6px;
    background: var(--border-color);
    display: inline-flex;
    border-radius: 100px;
}

.preloader__bars .bar.bar-fill {
    background: var(--accent-orange);
}

/* select media end here */



/* checkout area start here */

.checkout__heading h4 {
    text-align: center;
    background: #F9FAFB;
    padding: 20px 28px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
}

.discount__added__box p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--green-active-color);
    font-family: var(--plus-jakarta-sans-font);
}

.discount__added__box p i {
    font-weight: normal;
}

.discount__added__box p a {
    text-decoration: underline;
    font-weight: 600;
    color: #F26969;
    font-size: 12px;
    line-height: 16px;
}

.payment__method__box {
    background-color: var(--white-color);
    padding: 32px;
}

.coupon__alert {
    color: var(--green-active-color);
    font-size: 12px;
    line-height: 16px;
    display: block;
    font-weight: 600;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.discount__added__box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block: 20px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #A6E4CF;
    background: #E7F7F2;
}

.coupon__alert a {
    font-size: 12px;
    line-height: 16px;
    color: #F26969;
    text-decoration: underline;
    font-weight: 500;
    margin-inline-start: 5px;
}

.past__selection__wrapper {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.selection__check {
    background: #F26021;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    border-radius: 4px;
    width: 14px;
    height: 14px;
    font-size: 10px;
    position: absolute;
    top: 5px;
    inset-inline-start: 5px;
}

.single__past__selection {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #F26021;
    width: 56px;
    height: 56px;
}

.past__selection .selected__intro__left h5 {
    font-size: 14px;
    line-height: 20px;
}

.past__selection .selection__price {
    font-size: 11px;
    line-height: 16px;
}

.past__selection .post__selection__number {
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    background: var(--primary-gradient);
    display: block;
    color: var(--white-color);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: var(--plus-jakarta-sans-font);
}

.past__selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.checkout__container {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px -6px #0000001f;
}

.checkout__profile .selected__profile {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #FDFDFD;
}

.coupon__wrapper {
    margin-block: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

.coupon__expanded {
    justify-content: center;
    gap: 6px;
    color: var(--accent-orange);
    font-weight: 500;
}

.coupon__expanded[aria-expanded='true'] .dropdown__arrow {
    transform: rotate(-180deg);
}

.coupon__expanded .dropdown__arrow {
    transition: var(--transition);
}

.coupon__input__field input {
    flex-grow: 1;
}

.coupon__input__field {
    gap: 8px;
    padding-top: 12px;
}

.coupon__input__field button {
    background: var(--white-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 16px;
    transition: var(--transition);
}

.coupon__input__field button:hover {
    background-color: #EC4699;
    color: var(--white-color);
    border-color: #EC4699;
}

.checkout__offer {
    background: #E7F7F2;
    border: 1px solid #A6E4CF;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.checkout__offer.text-center p strong {
    font-weight: 700;
    color: var(--heading-color);
}

.checkout__offer p {
    font-size: 14px;
    margin-bottom: 12px;
}

.checkout__offer p span {
    font-weight: 700;
}

.checkout__offer button.large__btn.theme__btn {
    background: var(--primary-gradient);
    color: var(--white-color);
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
}

.checkout__offer button del {
    opacity: 0.6;
}

.payment__method h5 {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: var(--text-color);
    text-transform: uppercase;
}

.payment__method {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-block: 24px;
}

.method__grand__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.method__grand__total p {
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
    color: var(--heading-color);
}

.method__grand__total span {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: var(--heading-color);
    font-family: var(--plus-jakarta-sans-font);
}

.payment__method__terms p,
.payment__method__terms a {
    font-size: 9px;
    text-align: center;
    line-height: 13px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.payment__method__terms a:hover {
    color: var(--accent-orange);
}

.payment__method__terms a {
    text-decoration: underline;
}

.payment__method__box .next__step .large__btn.theme__btn {
    box-shadow: var(--box-shadow-hover);
    margin-bottom: 12px;
}

.method__price__detail {
    gap: 10px;
}

.grand__total.large p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--heading-color);
}

.grand__total.large .price {
    font-size: 20px;
    line-height: 28px;
    font-weight: 800;
    color: var(--heading-color);
    font-family: var(--plus-jakarta-sans-font);
}

.grand__total.large {
    padding-inline: 15px;
    padding-bottom: 20px;
}

.captcha__wrapper {
    display: flex;
    justify-content: center;
    margin-block: 20px;
}

.captcha__logo i {
    display: flex;
    justify-content: center;
    align-items: center;
}

.captcha__field {
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #FDFDFD;
    box-shadow: 0 1px 2px 0 #0000000d;
    display: inline-flex;
    gap: 20px;
}

.captcha__input__container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha__input__container input {
    appearance: none;
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
}

.captcha__input__container span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--heading-color);
}

.captcha__logo span {
    font-size: 9px;
    line-height: 13px;
    display: block;
    margin-top: 4px;
}

.captcha__logo svg {
    height: 32px;
    width: 32px;
}

.captcha__logo {
    text-align: center;
}

.captcha__input__container input::after {
    position: absolute;
    content: "\e070";
    font-family: 'Lucide';
    display: flex;
    justify-content: center;
    align-items: center;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    font-size: 30px;
    color: var(--green-active-color);
    font-weight: 300;
    opacity: 0;
    visibility: hidden;
}

.captcha__input__container input:checked {
    border: none;
}

.captcha__input__container input:checked::after {
    opacity: 1;
    visibility: visible;
}

/* checkout area end here */



/* order success start here */

.order__success .xtra__mini__container {
    max-width: 576px;
}

.order__success__container {
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 30px -6px #0000001f;
    border-radius: 16px;
    background-color: var(--white-color);
}

.order__succes__heading.text-center {
    padding: 24px 28px;
}

.order__succes__heading .order__success__icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
    background: #E7F7F2;
    border-radius: 100%;
    color: var(--green-active-color);
    font-size: 30px;
    margin-bottom: 12px;
}

.order__succes__heading h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.order__success__body {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.order__block {
    flex-grow: 1;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 48%;
}

.order__detail__block {
    gap: 12px;
    margin-block: 20px;
    flex-wrap: wrap;
}

.order__block button {
    border: none;
    background: transparent;
    color: var(--text-color);
    transition: var(--transition);
}

.order__block span {
    font-size: 11px;
    line-height: 16.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.order__block div {
    gap: 6px;
}

.order__block p span,
.order__block p {
    font-size: 14px;
    line-height: 20px;
    color: var(--accent-orange);
    font-weight: 700;
    font-family: var(--plus-jakarta-sans-font);
}

.order__block .copy__text button {
    color: var(--text-color);
}

.order__block.customer__email div p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--heading-color);
}

.order__block.customer__email div i {
    margin-top: 1px;
    font-size: 14px;
}

.selected__post h6 {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
}

.selected__post__flex {
    gap: 8px;
}

.single__selected__post img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
}

.selected__post__react {
    position: absolute;
    inset: 0;
    align-items: end !important;
    color: var(--white-color);
    gap: 2px;
    font-size: 9px;
    line-height: 13px;
    justify-content: center;
    padding-bottom: 4px;
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.selected__post__react i {
    font-weight: normal;
}

.order__details {
    margin-block: 20px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.order__row {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
}

.order__row:last-child {
    border-bottom: none;
}

.order__row.discount__block {
    background: #F8F5FE;
}

.order__row span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--plus-jakarta-sans-font);
}

.order__row.grand__total__block p {
    font-weight: 600;
}

.order__row.grand__total__block .price__wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order__row.grand__total__block .price__wrapper .original__price {
    color: #EF4343;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--plus-jakarta-sans-font);
}

.order__row.grand__total__block .price__wrapper .discount__price {
    font-weight: 800;
    font-family: var(--plus-jakarta-sans-font);
}

.order__row.discount__block div,
.order__row.discount__block div p,
.order__row.discount__block span {
    gap: 8px;
    color: var(--green-active-color);
}

.track__order__box {
    padding: 16px;
    background: #E7F7F2;
    border: 1px solid #A6E4CF;
    border-radius: 12px;
    gap: 15px;
}

.track__order__left h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.track__order__left p {
    font-size: 12px;
    line-height: 16px;
}

.track__order__right a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    background-color: var(--white-color);
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--heading-color);
}

.track__order__right a:hover {
    color: var(--white-color);
    background: #EC4699;
    border-color: #EC4699;
}

.track__order__right a i {
    font-size: 20px;
}

.order__article p,
.order__article p a {
    color: var(--text-color);
    font-size: 12px;
    line-height: 20px;
}

.order__article .order__serial__number {
    font-weight: 600;
    color: var(--accent-orange);
}

.order__article {
    gap: 4px;
    margin-block: 20px;
    display: flex;
    flex-direction: column;
}

.special__offer__container {
    border: 2px dashed #FBCBB4;
    padding: 20px;
    background-color: #FFF8F4;
    border-radius: 12px;
    margin-bottom: 20px;
}

.special__offer__container .icon__deco {
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-orange);
    background-color: #FDE8DD;
    border-radius: 100px;
    font-size: 20px;
    margin-bottom: 8px;
}

.special__offer__coupon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.special__offer__coupon .coupon__code {
    border: 2px solid #FBCFBC;
    background: var(--white-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 800;
    font-family: var(--plus-jakarta-sans-font);
    color: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 12px;
}

.special__offer__coupon .copy__coupon__btn {
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--heading-color);
    transition: var(--transition);
}

.special__offer__coupon .copy__coupon__btn:hover {
    background: #EC4699;
    color: var(--white-color);
}

.special__offer__container h5 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.special__offer__container p {
    font-size: 12px;
    line-height: 16px;
    text-wrap: balance;
    margin-bottom: 12px;
}

.order__buttton__group a.theme__btn.large__btn {
    width: 50%;
    font-size: 14px;
    line-height: 20px;
    padding: 14px 20px;
}

.order__buttton__group {
    margin-bottom: 20px;
    gap: 12px;
}

.order__buttton__group a.theme__btn.large__btn.bg-transparent {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--heading-color);
    transition: var(--transition);
}

.order__buttton__group a.bg-transparent:hover {
    background: #EC4699 !important;
    color: var(--white-color) !important;
}

.get__touch__wrapper {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: #FDFDFD;
    margin-bottom: 20px;
}

.get__touch__wrapper a {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    line-height: 16px;
    color: var(--heading-color);
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white-color);
    margin-bottom: 8px;
}

.get__touch__wrapper a:hover {
    background: #FAFBFC;
}

.get__touch__wrapper h5 {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
    margin-bottom: 15px;
}

.get__touch__wrapper i {
    font-size: 16px;
}

.get__touch__wrapper .contact__page {
    font-weight: 500;
}

.get__touch__wrapper .contact__page:hover {
    background: #EC4699;
    color: var(--white-color);
    border-color: #EC4699;
}

.get__touch__wrapper a:last-child {
    margin: 0;
}

/* order success end here */



/* footer sub */

.footer__sub {
    margin-top: auto;
    padding-block: 32px;
    background: var(--white-color);
}

.footer__sub__copyright p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    color: var(--heading-color);
    margin-bottom: 8px;
    text-wrap: balance;
}

.footer__sub__address li,
.footer__sub__address li a {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-color);
    text-wrap: balance;
}

.footer__sub__address li a:hover {
    color: var(--accent-orange);
}

/* footer sub */








/* offcanva css start here */

.offcanvas__trigger {
    font-size: 26px;
    color: var(--heading-color);
}

.offcanva__container .offcanvas-body ul li a {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    padding-block: 8px;
    font-weight: 600;
}

.offcanva__container .offcanvas-body {
    margin-top: 30px;
}

.offcanva__container .header__button {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    margin-top: 24px;
}

.offcanva__container .offcanva__dropdown ul li a {
    font-size: 12px;
    padding: 5px;
}

.offcanva__container .offcanva__dropdown {
    margin-inline-start: 10px;
    padding-inline-start: 10px;
    border-inline-start: 2px solid var(--border-color);
}

.offcanva__container .offcanvas-body ul li a:hover {
    color: var(--accent-orange);
}

.offcanvas-body ul li a[aria-expanded="true"] i {
    transform: rotate(-180deg);
}

.offcanvas-body ul li a[aria-expanded="true"] {
    color: var(--accent-orange);
}

/* offcanva css end here */




/* animation */

@keyframes slideOut {
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-out {
    animation: slideOut 0.3s forwards;
}

.slide-in {
    animation: slideIn 0.3s forwards;
}

.fadeup {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.fadeup.visible {
    opacity: 1;
    transform: translateY(0);
}

.gt_float_switcher img {
    width: 25px;
}

/* animation */



/* confetti */

.confetti__container {
    position: absolute;
    z-index: 22;
    margin-inline: auto;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    max-width: 1440px;
}

#confetti-canvas {
    position: absolute;
    inset: 0;
    display: block;
}

/* confetti */








/* rtl css start here */

.translated-rtl {
    direction: rtl;
}

.translated-rtl .marquee__track::before {
    inset-inline-start: 0;
    transform: rotate(-180deg);
}

.translated-rtl .marquee__track::after {
    inset-inline-end: 0;
    transform: rotate(-180deg);
}

.translated-rtl .marquee__list {
    animation: marquee-right-rtl 40s linear infinite;
}

@keyframes marquee-right-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

.translated-rtl .accordion-button::after {
    margin-inline-start: auto;
    margin-left: unset;
}

.translated-rtl .captcha__input__container input::after {
    inset-inline-start: -50%;
}

.notranslate {
    direction: ltr;
}

.translated-rtl .post__thumb__react {
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(50%, -50%);
}

.translated-rtl .stand__outTable::after {
    transform: translateX(50%);
}

.translated-rtl .card__wrapper p {
    font-size: 14px;
    line-height: 20px;
}

.translated-rtl .card__wrapper h5 {
    font-size: 16px;
    line-height: 20px;
}

.gt_float_switcher.notranslate {
    font-family: var(--plus-jakarta-sans-font);
    font-size: 16px;
    color: var(--heading-color);
    border-radius: 12px;
    box-shadow: var(--accent-orange) 0 0px 1px;
}

.gt_float_switcher .gt_options a:hover {
    background: var(--accent-fill-orange) !important;
    color: var(--heading-color) !important;
}

/* rtl css end here */
/* new payment design */
.pkg__summary {
    border: 1px solid #E8E8F0;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #FAFBFC;
}
.pkg__summary__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
}
.pkg__summary__left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}
.pkg__summary__right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
    color: var(--heading-color);
}
.pkg__summary__right .icon-chevron-down {
    transition: transform 0.2s;
    font-size: 16px;
    color: #888;
}
.pkg__summary.open .icon-chevron-down { transform: rotate(180deg); }
.pkg__summary__detail {
    display: none;
    border-top: 1px solid #E8E8F0;
    padding: 12px 16px;
    background: #fff;
}
.pkg__summary.open .pkg__summary__detail { display: block; }
.pkg__detail__row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    color: #555;
}
.pkg__detail__row.total__row {
    border-top: 1px solid #E8E8F0;
    margin-top: 6px;
    padding-top: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--heading-color);
}

/*new payment style */

.pay__choice { margin-top: 20px; }
.pay__choice__label {
    font-size: 11px;
    color: #aaa;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.pay__choice__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.pay__option {
    position: relative;
    border: 2px solid #E8E8F0;
    border-radius: 12px;
    padding: 16px 10px 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    background: #FAFBFC;
    display: block;
}
.pay__option input[type="radio"] { display: none; }
.pay__option:has(input:checked) {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.pay__option__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}
.pay__option__icon {
    font-size: 24px;
    color: var(--primary-color);
}
.pay__option--crypto .pay__option__icon { color: #F7931A; }
.pay__option__name {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}
.pay__option__price {
    font-size: 18px;
    font-weight: 800;
    color: var(--heading-color);
}
.pay__crypto__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1CB481;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    white-space: nowrap;
}
.pay__orig__price {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.4;
    text-decoration: line-through;
}
.pay__crypto__hint {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}
.pay__crypto__hint strong { color: #1CB481; }
.pay__crypto__hint span {
    color: #F7931A;
    font-size: 14px;
}

.pkg__summary {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #E8E8F0 !important;
    background: #fff !important;
    margin-bottom: 20px !important;
}


.next__step {
    margin-top: 20px !important;
}



.pkg__summary {
    background: #fefaf8 !important;
    border-bottom: none !important;
}


.pay__choice__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}
.pay__option {
    padding: 14px 18px !important;
    display: flex !important;
    align-items: center !important;
}
.pay__option__body {
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100%;
    text-align: left !important;
}
.pay__option__icon {
    font-size: 20px !important;
    width: 38px;
    height: 38px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    border-radius: 8px;
    flex-shrink: 0;
}
.pay__option__name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--heading-color) !important;
    flex: 1;
}
.pay__option__price {
    font-size: 16px !important;
    margin-left: auto;
    text-align: right;
}
.pay__crypto__badge {
    position: static !important;
    transform: none !important;
    font-size: 10px !important;
    padding: 3px 9px !important;
    flex-shrink: 0;
    order: 3;
}
.pay__orig__price {
    display: inline !important;
    font-size: 11px;
    margin-right: 4px;
    opacity: 0.4;
}


.pkg__summary {
    border-radius: 12px !important;
}
.pkg__summary__detail {
    background: #FFF6F0 !important;
    border-top: 1px solid rgba(0,0,0,0.06) !important;
    border-radius: 0 0 12px 12px;
}


.pay__choice__grid {
    display: grid !important;
    flex-direction: unset !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
}
.pay__option {
    padding: 10px 8px !important;
}
.pay__option__body {
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    text-align: center !important;
}
.pay__option__icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 16px !important;
    background: rgba(0,0,0,0.04) !important;
    border-radius: 8px !important;
}
.pay__option--crypto .pay__option__icon {
    color: #F7931A !important;
    background: rgba(247,147,26,0.10) !important;
}
.pay__option__name {
    font-size: 11px !important;
    font-weight: 500 !important;
}
.pay__option__price {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-left: 0 !important;
    text-align: center !important;
}
.pay__crypto__badge {
    order: 0 !important;
    margin-bottom: 2px;
    font-size: 9px !important;
    padding: 2px 7px !important;
}
.pay__orig__price {
    display: block !important;
    font-size: 10px !important;
    text-align: center;
}

.pay__choice__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    padding: 4px !important;
    background: #FAFBFC !important;
    border-radius: 12px !important;
    border: 1px solid #E8E8F0 !important;
    gap: 0 !important;
}
.pay__option {
    padding: 10px 12px !important;
    border-radius: 10px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}
.pay__option:has(input:checked) {
    background: #fff !important;
    border-color: #E8E8F0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}
.pay__option__body {
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
    text-align: left !important;
    flex-wrap: wrap;
}
.pay__option__icon {
    width: auto !important;
    height: auto !important;
    font-size: 15px !important;
    background: none !important;
    border-radius: 0 !important;
}
.pay__option__name {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
}
.pay__option__price {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-left: 0 !important;
}
.pay__crypto__badge {
    position: absolute !important;
    top: -9px !important;
    right: 6px !important;
    left: auto !important;
    transform: none !important;
    order: 0 !important;
    font-size: 9px !important;
    padding: 2px 7px !important;
}
.pay__orig__price {
    display: none !important;
}

.pkg__summary__detail {
    display: block !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
        transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                padding 0.55s ease !important;
}
.pkg__summary.open .pkg__summary__detail {
    max-height: 200px !important;
    opacity: 1 !important;
    padding-top: 12px !important;
    padding-bottom: 14px !important;
}
.pkg__summary {
    transition: box-shadow 0.3s ease;
}
.pkg__summary.open {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09) !important;
}
.pkg__summary .icon-chevron-down {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.pkg__summary__toggle {
    transition: background 0.2s ease;
}
.pkg__summary.open .pkg__summary__toggle {
    background: rgba(0,0,0,0.015);
    border-radius: 12px 12px 0 0;
}