
:root {
    --green: #81d742;
    --dark: #0b2a4a;
    --gray: #777;
    --light: #f6f7f8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    font-family: Inter, Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px
}

.section {
    max-width: 1100px;
    margin: 0 auto;
    /*padding:60px 20px 40px;*/
}

.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.left {
    flex: 1;
}

.title {
    font-size: 22px;
    font-weight: 600;
    color: #444;
    margin-bottom: 18px;
    letter-spacing: 0.3px;

    font-size: 26px !important;
    line-height: 1.2em !important;
    letter-spacing: 2.6px !important;
    color: #3d4246 !important;
}

.features-list {
    list-style: none;
    margin-bottom: 25px;

    padding-top: 45px;
    padding-bottom: 30px;
}

.features-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 18px !important;
    line-height: 1.3em !important;
    letter-spacing: 0px !important;
    color: #3a3a3a !important;
    text-transform: none !important;
    font-weight: 400 !important;
}

.check {
    flex: 0 0 16px;
    height: 16px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.cta-tp {
    display: inline-block;
    background: linear-gradient(to bottom, #ffd86b, #f5a800);
    color: #000;
    font-weight: 700;
    font-size: 14px;
    padding: 20px 80px;
    border-radius: 30px;
    border: 2px solid #222;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);

    font-size: 19px !important;
    padding: 20px 80px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    background-color: #bb7400 !important;
    border-radius: 53px !important;
    border-color: #000 !important;
    color: #000 !important;
}

.guarantee {
    margin-top: 10px;
    font-size: 12px;
    color: #444;
}

.right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.right img {
    max-width: 100%;
    height: auto;
}

.bottom {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.column {
    flex: 0 0 35%;
}

.column h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    text-decoration: underline;
}

.list {
    list-style: none;
}

.list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
}

.icon-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.icon-warning {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .top, .bottom {
        flex-direction: column;
        text-align: left;
    }

    .right {
        order: -1;
    }
}

.heading {
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 18px;
    color: #333;
}

.bundle-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 18px;
}

.bundle-card {
    background: #fff;
    border-radius: 10px;
    border: 2px solid #e6e6e6;
    padding: 18px 16px 16px;
    text-align: center;
    position: relative;
    transition: all .25s ease;
}

.bundle-card.active {
    border: 2px solid #59b83a;
    box-shadow: 0 0 0 3px rgba(89, 184, 58, .12);
}

.bundle-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 3px;
}

.discount {
    font-size: 16px;
    color: #ff4d4d;
    margin-bottom: 5px;
}

.best-deal {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #ff5a5a;
    border: 2px solid #ff5a5a;
    padding: 2px 10px;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 600;
}

.bundle-img img {
    width: 85%;
    height: auto;
    margin: 0 auto;
}

.sale {
    font-size: 19px;
    color: #181616;
    margin-bottom: 3px;
}

.price {
    font-size: 19px;
    font-weight: 700;
    color: #18a849;
}

.each {
    font-size: 11px;
    color: #ff4d4d;
    margin-top: 2px;
    margin-bottom: 8px;
}

.features-new {
    text-align: left;
    font-size: 15px;
    color: #1d1a1a;
    margin: 10px 0;
    line-height: 1.6;
    width: 72%;
    margin: 26px auto;
}

.text-center {
    text-align: center;
}

.margin-30 {
    margin-bottom: 30px;
}

.features-new div::before {
    content: "✔";
    color: #59b83a;
    margin-right: 6px;
}

section.product-review {
    margin: 60px 0 80px;
}

.color-title {
    font-size: 18px;
    margin-bottom: 5px;
    color: #0f0d0d;
}

.colors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.color-btn {
    border: 1px solid #dcdcdc;
    padding: 4px 8px;
    font-size: 16px;
    border-radius: 17px;
    background: #fff;
    cursor: pointer;
}

.color-btn.active {
    border: 2px solid #65d317;
    background: #eef9ea;
}

.add-btn {
    background: #59b83a;
    color: #fff;
    border: none;
    width: 100%;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s;
}

.add-btn:hover {
    background: #4ca832;
}

.guarantee {
    font-size: 15px;
    color: #1d1c1c;
    margin-top: 6px;
}

.stars {
    color: #ffb400;
    font-size: 14px;
    margin-top: 4px;
}

.subheading {
    margin: 26px 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .bundle-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .bundle-grid {
        grid-template-columns:1fr;
    }
}

/* TOP BAR */
.top-bar {
    background: #0b2a4a;
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: .2px;
    padding: 9px 10px;
}

.feature-text.call-our-text p {
    font-size: 23px;
    color: #3a3a3a;
    text-align: center;
}

section.container.features.our-story {
    margin-top: 70px;
}

.feature-text.call-our-text h2:after {
    content: "";
    width: 70px;
    height: 2px;
    background: red;
    display: block;
    margin: 0px auto 30px;
}

.feature-text.call-our-text {
    text-align: center;
    font-size: 28px;
}

.barsection.text-center {
    text-align: center;
    background: #2d2d2d;
    padding: 14px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-size: 20px;
    text-shadow: 3.5355339059327378px 3.5355339059327373px 5px #0a0a0a !important;
    font-weight: 700;
}

.feature-text.call-our-text p.small-text {
    font-size: 17px;
}

/* HEADER */
header {
    border-bottom: 1px solid #e5e5e5
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px
}

.nav {
    display: flex;
    gap: 24px
}

.nav a {
    font-size: 14px;
    color: #222;
    font-weight: 500
}

.nav a:hover {
    color: var(--green)
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px
}

.currency {
    cursor: pointer;
    color: #222
}

.icons {
    display: flex;
    gap: 14px
}

.icon {
    font-size: 18px;
    cursor: pointer
}

.rating img {
    width: 97px;
    margin-right: 10px;
}

.rating {
    display: flex;
    align-items: center;
}

.gallery {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
}

.thumbs {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

/* PRODUCT */
.product {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 40px;
    padding: 40px 0
}

@media (max-width: 900px) {
    .product {
        grid-template-columns:1fr
    }
}

.thumbs img {
    width: 60px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer
}

.thumbs img.active {
    border: 2px solid var(--green)
}

.main-img img {
    border-radius: 10px;
}

.p-info h1 {
    font-size: 28px;
    margin-bottom: 8px
}

.rating {
    color: #f5b50a;
    font-size: 16px;
    margin-bottom: 6px
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--green)
}

.price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0
}

.old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through
}

.save {
    font-size: 12px;
    background: #ffecec;
    color: #d93025;
    padding: 4px 8px;
    border-radius: 20px;
    font-weight: 600
}

.old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px
}

.desc {
    font-size: 14px;
    color: #555;
    margin: 16px 0
}

.opt {
    margin-bottom: 16px
}

.opt label {
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 6px
}

.btns button {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #fff;
    margin-right: 8px;
    cursor: pointer
}

.btns button.active {
    border-color: #3387d0;
    color: #000;
}

.text-center.text-headed {
    text-align: center;
}

.trust span {
    display: flex;
    align-items: center;
    gap: 17px;
}

.text-center.text-headed h3 {
    font-size: 46px;
}

.image-grid img, .compare img {
    box-shadow: 0 0 10px #334;
}

.trust span img {
    width: 32px;
}

.trust span b {
    display: block;
}

.add {
    background: var(--green);
    color: #fff;
    border: none;
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border-radius: 30px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 700;
}

section.container.faq h2 {
    font-size: 34px;
    font-weight: 300;
    text-transform: uppercase;
}

section.container.faq h2:after {
    content: "";
    width: 70px;
    height: 2px;
    background: red;
    display: block;
    margin: 20px auto;
}

.trust {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #555;
    margin-top: 14px
}

/* FEATURES */
.features {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 70px;
    padding: 50px 0
}

@media (max-width: 900px) {
    .features {
        grid-template-columns:1fr
    }
}

.exact-features {
    align-items: flex-start
}

.exact-features ul {
    list-style: none;
    padding-top: 6px
}

.exact-features li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #222
}

.exact-features .check {
    color: var(--green);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4
}

.exact-features strong {
    font-weight: 600;
    color: #000
}

.features li {
    font-size: 14px;
    color: #333;
    margin-bottom: 14px;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
}

.center-set.text-center {
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.center-set.text-center img {
    margin: auto;
    display: block;
}

.center-set {
    margin-top: 23px;
}

.feature-media {
    margin-bottom: 20px;
}

.feature-media img {
    box-shadow: 0 0 10px #333 !important;
}

.features li {
    margin-bottom: 10px;
    position: relative
}

.gf_button {
    font-size: 16px !important;
    text-transform: none !important;
    background-color: #65d317 !important;
    box-shadow: 0 0 10px #333 !important;
    font-weight: 700 !important;
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    margin-top: 27px;
}

.faq-item h4 span {
    margin-right: 10px;
    font-size: 22px;
}

.faq-item h4 {
    display: flex;
    align-items: center;
}

.asset-center {
    max-width: 700px;
    margin: 0 auto;
    width: 80%;
}

.inner-text-bg {
    display: flex;
    gap: 20px;
}

.services {
    flex: 0 0 33.3%;
    margin: 30px 0;
}

.services img {
    width: 60px;
    margin-bottom: 10px;
}

.services h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* IMAGE GRID */
.image-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 70px;
    padding: 40px 0
}

@media (max-width: 900px) {
    .image-grid {
        grid-template-columns:1fr
    }
}

/* COMPARE */
.compare {
    text-align: center;
    padding: 40px 0
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-top: 30px;
}

@media (max-width: 800px) {
    .compare-grid {
        grid-template-columns:1fr
    }
}

/* FAQ */
.faq {
    padding: 40px 0
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
    cursor: pointer
}

.faq-item h4 {
    display: flex;
    font-size: 15px
}

.faq-item p {
    display: none;
    font-size: 14px;
    color: #555;
    margin-top: 8px
}

/* CTA */
.cta {
    text-align: center;
    padding: 20px 80px;
    margin: 10px 0 28px;
}

.cta button {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 30px
}


.footer {
    background: #f4f4f4;
    padding: 60px 5% 30px;
    color: #333;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #000;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Bottom Section */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.payments i {
    font-size: 28px;
    margin-right: 12px;
    color: #555;
}

.copyright {
    font-size: 14px;
    color: #555;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0b2c3d;
    text-decoration: none;
}

.logo span {
    font-size: 14px;
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
}

.header-right {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.logo img {
    width: 200px;
}

.nav-slick {
    position: absolute;
    top: 50%;
    color: #ccc;
    z-index: 999;
}

span.right-btn.nav-slick.slick-arrow {
    right: 0;
}

.img-sec {
    width: 80%;
    margin: 0 auto;
}

h2.text-center {
    text-align: center;
    font-size: 35px;
    font-weight: 400;
}

h2.text-center i {
    color: rgb(4, 97, 179);
    font-size: 48px;
}

.section-title {
    margin-bottom: 30px;
}

section.section {
    margin-bottom: 70px;
}

@media (min-width: 991px) {
    .cta-tp {
        width: 70%;
        text-align: center;
    }

    .guarantee {
        width: 70%;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .services img {
        width: 60px;
        margin: 0 auto 10px;
    }

    button#menuToggle {
        position: absolute;
        top: 21px;
        left: 10px;
    }

    .feature-text.call-our-text.text-center {
        padding: 0 20px;
    }

    .logo {
        margin-left: 50px;
    }

    .container.header {
        position: relative;
    }

    .top-bar {
        font-size: 16px;
    }

    section.container.features.exact-features {
        margin-top: 30px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px 20px;
        gap: 16px;
        display: none;
        border-bottom: 1px solid #eee;
    }

    .logo img {
        width: 150px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .inner-text-bg {
        flex-wrap: wrap;
    }

    .services {
        flex: 0 0 100%;
        margin: 30px 0;
    }

    .faq {
        padding: 40px 20px;
    }

    .image-grid {
        padding: 40px 20px;
    }

    section.container.features.exact-features {
        padding: 0 20px;
    }

    section.container.product {
        padding: 0 20px;
    }

    .section {
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 20px 40px;
    }

    .cta-tp {
        width: 100%;
        text-align: center;
    }

    .guarantee {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section {
        max-width: 1100px;
        margin: 0 auto;
        padding: 60px 20px 40px;
    }

    .cta-tp {
        width: 100%;
    }

    .guarantee {
        text-align: center;
    }
}

@media (max-width: 390px) {
    .cta-tp {
        font-size: 16px !important;
        text-align: center;
    }
}