:root,
:host {
    --font-sans:
        ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
        "Liberation Mono", "Courier New", monospace;

    --color-primary: #a78bfa;
    --color-primary-rgb: 167, 139, 250;
    --bs-primary: var(--color-primary);
    --bs-primary-rgb: var(--color-primary-rgb);
    --color-white: #fff;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
    --bs-link-hover-color: var(--color-primary);
}

body {
    min-height: 100vh;
    background: #ffffff;
    color: #292929;
    font-family: var(--default-font-family);
}

img {
    max-width: 100%;
    height: auto;
}

/* BUTTONS */
.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-heading-color-style2);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-heading-color-style2);
    z-index: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: none;
}

.btn-primary::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200%;
    content: "";
    background: #000;
    border-radius: 50%;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.3, 1, 0.8, 1);
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translateY(0) scale(2);
}

.btn-primary:active:focus {
    box-shadow: none;
}

.text-violet-custom {
    color: #8b5cf6;
}

/* Feature Box */
a {
    text-decoration: none;
    color: currentColor;
}

.gap-24 {
    gap: 24px;
}

/* header start */
.header-area {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header-area .navbar {
    padding: 0;
}

.header-area .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 30px;
    padding: 10px 30px;
}

.header-area .menu-toggler {
    width: 22px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    z-index: 1000;
}

.header-area .menu-toggler:focus {
    box-shadow: none !important;
}

.header-area .menu-toggler span {
    position: relative;
    display: block;
    width: 22px;
    height: 2px;
    background: #000;
    border-radius: 10px;
    transition:
        transform 200ms 0ms,
        top 200ms 160ms;
}

.header-area .menu-toggler span:nth-child(1) {
    top: -4px;
}

.header-area .menu-toggler span:nth-child(3) {
    top: 4px;
}

.header-area .menu-toggler.active span:nth-child(1) {
    top: 0;
    transform: rotateZ(45deg);
    transition:
        top 200ms 0ms,
        transform 200ms 160ms;
}

.header-area .menu-toggler.active span:nth-child(2) {
    transform: scale(0);
}

.header-area .menu-toggler.active span:nth-child(3) {
    top: -4px;
    transform: rotateZ(-45deg);
    transition:
        top 200ms 0ms,
        transform 200ms 160ms;
}

.header-area .navbar-collapse {
    display: flex;
    align-items: center;
}

.header-area .navbar-nav {
    gap: 24px;
}

.header-area .nav-link {
    font-size: 18px;
    color: #000;
}

@media (min-width: 1200px) {
    .header-area .menu-toggler {
        display: none;
    }

    .header-area .navbar-collapse {
        display: flex !important;
        position: static;
        width: auto;
        background: transparent;
        padding: 0;
    }

    .header-area .navbar-nav {
        flex-direction: row;
        align-items: center;
    }

    .header-area .nav-link {
        color: #000;
    }
}

/* is-sticky css */
.header-area.is-sticky {
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-area.is-sticky .container {
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 30px;
    padding: 10px 30px;
}

.header-area.is-sticky .container .navbar-nav .nav-link {
    color: #000;
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav {
        flex-direction: row;
    }
}

/* Navbar nav link styles */
.header-area .navbar-nav .nav-link {
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Menu toggler responsive */
@media (min-width: 1200px) {
    .header-area .menu-toggler {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-area .menu-toggler {
        display: block;
    }

    .header-area .container {
        position: relative;
        padding: 10px 30px;
        border-radius: 0;
        background: #fff;
    }

    .header-area .navbar-collapse {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        background: #ffffff;
        padding: 0 1.5rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        z-index: 998;
        transform: translateY(-10px);
        transition:
            max-height 0.35s ease,
            opacity 0.35s ease,
            transform 0.35s ease,
            visibility 0.35s ease;
    }

    .header-area .navbar-collapse.show {
        max-height: 320px;
        opacity: 1;
        visibility: visible;
        padding: 1rem 1.5rem 1.5rem;
        transform: translateY(0);
    }

    .header-area .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .header-area .navbar-nav .nav-item {
        width: 100%;
    }

    .header-area .navbar-nav .nav-link {
        color: #000;
        width: 100%;
        display: block;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

    .header-area .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .header-area .menu-toggler {
        display: block;
    }

    .header-area.is-sticky .container {
        border-radius: 0;
        box-shadow: none;
    }

    .header-area .logo {
        max-width: 130px;
    }
}

/* header End */

.hero-area .container-fluid {
    padding: 0;
}

.hero-banner {
    width: 100%;
}

.hero-banner img {
    width: 100%;
}

/* product-section */
.product-section .subtitle {
    text-transform: capitalize;
}

.product-section .desc {
    font-size: 18px;
}

.product-section .desc i {
    color: var(--color-primary);
    font-size: 18px;
}

.product-card {
    display: flex;
    gap: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px 15px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.product-card .icon {
    min-width: 80px;
}

.product-card .content {
    width: 100%;
}

.product-card .title {
    margin-bottom: 15px;
}

.product-card .title a {
    color: var(--color-primary);
}

.product-card .title a:hover {
    color: var(--color-primary);
}

.product-card .title .offer-badge {
    background: var(--bs-primary);
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    padding: 6px 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-inline-start: 10px;
}

.product-card .desc {
    margin-bottom: 0;
}

.product-card .buttons {
    min-width: 125px;
    text-align: center;
}

.product-card .buttons .price {
    display: flex;
    text-align: right;
    margin-bottom: 10px;
    justify-content: center;
    gap: 10px;
}

.product-card .buttons .price .old-price {
    /* text-decoration: line-through; */ 
    font-size: 18px;
    font-weight: 700;
    color: #000000c9;
}

.product-card .buttons .price .new-price {
    text-decoration: line-through;
    font-size: 16px;
    font-weight: 700;
    color: var(--bs-gray);
}

@media (max-width: 480px) {
    .product-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
}

/* product css end */

/* Section Header */
.section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.section-title {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.text-fuchsia-custom {
    color: #d946ef;
}

/* trust-conversion-section */
/* Section background & borders */
.trust-conversion-section {
    background-color: #f8f9fb;
}

.border-top-bottom {
    border-top: 1px solid rgba(41, 41, 41, 0.08);
    border-bottom: 1px solid rgba(41, 41, 41, 0.08);
}

/* Text styling */
.section-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.section-title {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-amber-custom {
    color: #f59e0b;
}

.text-violet-custom {
    color: #a78bfa;
}

/* Stat Card */
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 28px;
    backdrop-filter: blur(12px);
    padding: 2rem;
}

/* Stat Number */
.stat-number {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

/* Stat Text */
.stat-text {
    font-size: 1rem;
}

/* trust-conversion-section */

/* Footer background / border */
.landing-footer {
    background-color: #ffffff;
}

.border-top-custom {
    border-top: 1px solid rgba(41, 41, 41, 0.08);
}

/* Text colors */

/* Spacing and typography */
.landing-footer .small {
    font-size: 0.875rem;
}
