:root {
    --charcoal: #2f3a3d;
    --charcoal-deep: #1f292b;
    --mint: #7fe1b0;
    --mint-600: #63c999;
    --off: #fafaf7;
    --white: #ffffff;
    --ink: #0d1620;
    --muted: #a9b5bf;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --radius: 14px;
    --radius-sm: 10px;
    --glass: rgba(255, 255, 255, 0.06);
    --glassBorder: rgba(255, 255, 255, 0.12);
    --border: #e6eeee;
}

body {
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    background: var(--charcoal);
    color: var(--off);
}

a {
    text-decoration: none;
    color: inherit;
}

.mint-text {
    color: var(--mint);
}

.mint-text-dark {
    color: var(--mint-600);
}

.navbar-toggler {
    filter: invert();
}

.font12 {
    font-size: 12px !important;
}

.font14 {
    font-size: 14px !important;
}

.font16 {
    font-size: 16px !important;
}

.font18 {
    font-size: 18px !important;
}

.font20 {
    font-size: 20px !important;
}

.font600 {
    font-weight: 600 !important;
}

.btn-browse {
    font-size: larger;
    font-weight: 600;
    padding: 10px 20px;
    line-height: normal;
    border: 1px solid white;
    border-radius: 50rem;
    background: transparent;
    color: var(--off);
}

.btn-mint {
    background: var(--mint);
    color: var(--ink);
    font-weight: 600;
    padding: 0.85rem 1.2rem;
    border-radius: 50rem;
    transition: 0.2s ease-in-out;
}
.btn-mint:hover {
    background: var(--mint-600);
    transform: translateY(-2px);
}

.btn-ghost {
    font-weight: 600;
    padding: 10px 20px;
    line-height: normal;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50rem;
    background: transparent;
    color: var(--off);
}
.btn-ghost:hover,
.btn-browse:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Home page CSS */

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(10px);
    background: rgba(33, 50, 62, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mint);
    position: absolute;
    left: 5px;
    top: -2px;
    box-shadow: 0 0 0 2px rgba(127, 225, 176, 0.2);
}
.brand-word img {
    height: 50px;
    filter: invert(1);
}

/* Hero */
.hero {
    background: linear-gradient(90deg, #2f3a3d 0%, #63c999 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.badge-custom {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50rem;
    font-size: 0.83rem;
    color: #e3ecf0;
}

.headline {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    margin-top: 18px;
}

.sub {
    max-width: 700px;
    color: #d0dce4;
    margin-top: 12px;
}

/* Hero Rings */
.hero-art .ring {
    position: absolute;
    border: 1px solid rgba(127, 225, 176, 0.45);
    border-radius: 50%;
    pointer-events: none;
}
.r1 {
    width: 680px;
    height: 680px;
    right: 5%;
    top: -140px;
}
.r2 {
    width: 440px;
    height: 440px;
    left: -60px;
    top: 40px;
}
.r3 {
    width: 1040px;
    height: 1040px;
    right: -300px;
    bottom: -540px;
    opacity: 0.9;
}

/* Treatment's Page CSS */

/* Treatment Card */
.treat-card {
    background: linear-gradient(
        180deg,
        var(--charcoal) 0%,
        var(--charcoal-deep) 100%
    );
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    transition: 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}
.treat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(127, 225, 176, 0.25);
    border-color: rgba(127, 225, 176, 0.4);
}

.treat-img {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: brightness(0.95);
    transition: 0.25s ease;
}
.treat-card:hover .treat-img {
    filter: brightness(1);
}

.treat-title {
    color: var(--mint);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.treat-desc {
    color: #d6e2e9;
    font-size: 0.92rem;
    margin-bottom: 16px;
    max-width: 620px;
}

/* Category Details page */

/* Feature Badge Row */
.feature-pill {
    background: var(--charcoal);
    color: var(--off);
    padding: 10px 20px;
    border-radius: 50rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Product Cards */
.product-card {
    background: #fff;
    min-height: 400px;    
    border-radius: var(--radius);
    border: 1px solid #e7ebee;
    padding: 22px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--mint);
    box-shadow: 0 12px 30px rgba(127, 225, 176, 0.25);
}

/* Product Image */
.product-card img {
    height: 155px;
    object-fit: contain;
}

/* FAQ styles */
.faq-question {
    color: var(--charcoal-deep);
    font-weight: 600;
    margin-bottom: 6px;
}

.article-card {
    background: linear-gradient(
        180deg,
        var(--charcoal) 0%,
        var(--charcoal-deep) 100%
    );
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px;
    transition: 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(127, 225, 176, 0.25);
    border-color: rgba(127, 225, 176, 0.4);
}

.consultation-cta {
    position: relative;
    /* background: linear-gradient(90deg, #2f3a3d 0%, #63c999 100%); */
    background: linear-gradient(135deg, #1f292b 0%, #2f3a3d 100%);
    overflow: hidden;
}

.cta-art {
    position: absolute;
    inset: -20% -20% -20% -20%;
    pointer-events: none;
    filter: blur(0px);
    z-index: 0;
}
.consultation-cta .ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(127, 225, 176, 0.18);
    animation: floatRing 22s infinite linear;
    opacity: 0.3;
}

.consultation-cta .r1 {
    width: 420px;
    height: 420px;
    top: -140px;
    right: -120px;
    animation-duration: 26s;
}
.consultation-cta .r2 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    left: -40px;
    animation-duration: 20s;
}
.consultation-cta .r3 {
    width: 540px;
    height: 540px;
    bottom: -160px;
    right: 80px;
    animation-duration: 32s;
}

@keyframes floatRing {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.28;
    }
    50% {
        transform: rotate(180deg) scale(1.08);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.28;
    }
}

/* Product Details page */

.carousel-card img {
    max-width: 100%;
    height: auto;
}
.sheet {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    margin-top: 36px;
    margin-bottom: 36px;
}

.carousel-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8eef2;
}

.carousel-card {
    display: flex;
    justify-content: center;
}
.product-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
}

.accordion-button:not(.collapsed) {
    color: var(--mint);
}

@media (max-width: 768px) {
    .carousel-card img {
        height: 240px;
        object-fit: cover;
    }
    .sheet {
        padding: 16px;
    }
}

/* Start Consultation page  */

.sheet {
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
    margin: 28px 0;
}

/* .stepper { display:flex; gap:22px; align-items:center; margin-bottom:18px; }
    .step {
      display:flex; flex-direction:column; align-items:center; gap:6px; width:86px;
    }
    .step .circle {
      width:34px; height:34px; border-radius:50%;
      background: rgba(255,255,255,0.06);
      border:2px solid rgba(255,255,255,0.06);
      display:grid; place-items:center; color:#fff; font-weight:700;
    }
    .step .circle.active {
      background: var(--mint);
      color: var(--ink);
      box-shadow: 0 8px 30px rgba(127,225,176,0.18);
      border-color: rgba(127,225,176,0.28);
    }
    .step small { color: rgba(255,255,255,0.85); font-size:0.78rem; text-align:center; } */

.top-heading h5 {
    color: #0d1620;
}
.top-heading p {
    color: #30484e;
}

.question-card {
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #ffffff;
    margin-bottom: 12px;
}

.question-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.question-text {
    font-weight: 600;
    color: #13363a;
}

.btn-yn {
    border-radius: 10px;
    min-width: 70px;
}

.btn-yn:hover {
    background: var(--mint);
    border-color: var(--mint) !important;
    color: var(--ink) !important;
}

.btn-outline-secondary.btn-yn.active,
.btn-outline-secondary.btn-yn:active {
    background: var(--mint) !important;
    border-color: var(--mint) !important;
    color: var(--ink) !important;
}

.btn-yn.active {
    background: var(--mint);
    border-color: var(--mint) !important;
    color: var(--ink) !important;
}

.answer-display {
    display: none;
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
}
.answer-display.success {
    background: #e8fbf0;
    color: #0b3b2b;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.answer-display.warning {
    background: #fff8e6;
    color: #6a4a00;
}
.answer-display.danger {
    background: #ffecec;
    color: #5b1b1b;
}

.children {
    margin-left: 18px;
    margin-top: 10px;
    display: none;
}

.side-card {
    border-radius: 12px;
    overflow: hidden;
}
.side-card .card-body {
    padding: 18px;
}

.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 18px;
    border-radius: 12px;
}

.muted {
    color: var(--muted);
}
.pill-mint {
    background: linear-gradient(180deg, #e9fff3, #dffaf0);
    color: var(--ink);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 991px) {
    .children {
        margin-left: 0;
    }
    .question-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Preferred Treatments Page */

.stepper {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.step {
    text-align: center;
    color: #c8d6d3;
}
.step .circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--glass);
    border: 2px solid var(--glassBorder);
    margin: auto;
}
.step .active {
    background: var(--mint);
    border-color: var(--mint);
    box-shadow: 0 6px 20px rgba(127, 225, 176, 0.32);
}
.step small {
    display: block;
    margin-top: 8px;
}

.sheet {
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.treatment-card {
    position: relative;
    padding: 36px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.recommended {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint-600);
    color: #fff;
    padding: 7px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.strength-btn {
    border-radius: 10px !important;
    min-width: 80px;
    border: 1px solid #b7c8c2 !important;
    color: #1c3c36 !important;
}
.strength-btn.active {
    background: var(--mint-600) !important;
    color: var(--ink) !important;
    border-color: var(--mint-600) !important;
    font-weight: 600;
}

.price-list {
    border-radius: var(--radius);
    border: 1px solid #e7ebef;
    overflow: hidden;
    margin-top: 15px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}
.price-row:last-child {
    border-bottom: none;
}
.price-row:hover {
    background: #f8faf9;
}

.btn-buy {
    background: var(--mint);
    color: #000;
    padding: 10px 32px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.25s;
}
.btn-buy:hover {
    background: #63c999;
}

.badge-mint {
    background: var(--mint-600);
    padding: 6px 11px;
    border-radius: 8px;
}

/* Cart Page */

.glass-box {
    background: var(--glass);
    border: 1px solid var(--glassBorder);
    border-radius: var(--radius);
    padding: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cart-item-card {
    background: #fff;
    border-radius: var(--radius);
    color: var(--ink);
    padding: 18px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.cart-item-card img {
    width: 80px;
    height: auto;
    border-radius: 10px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #cdd7d3;
    border-radius: 10px;
    overflow: hidden;
}

.qty-control button {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f7f6;
    font-weight: bold;
}

.qty-control input {
    width: 55px;
    border: none;
    text-align: center;
}

.btn-remove {
    color: #d9534f;
    font-size: 1.2rem;
}

.summary-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    color: var(--ink);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.pay-option {
    padding: 14px;
    border-radius: var(--radius);
    background: #f5f8f7;
    cursor: pointer;
}

.pay-option:hover {
    background: #e7f2ee;
}

.btn-checkout {
    background: var(--mint-600);
    color: var(--ink);
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-checkout:hover {
    background: var(--mint);
}

.video-box video {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    color: var(--ink);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

/* Checkout Page */

.glass-panel {
    background: var(--glass);
    border: 1px solid var(--glassBorder);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35);
}

input.form-control,
select.form-select {
    background: #ffffff;
    border-radius: 10px;
    color: var(--ink);
}

label {
    color: #cfe7e0;
    font-weight: 500;
}

.tabs-custom .nav-link {
    background: #ffffff;
    color: var(--ink);
    /* border-radius: 10px 10px 0 0; */
}

.tabs-custom .nav-link.active {
    background: var(--mint-600);
    color: var(--ink);
    font-weight: 600;
}

.tabs-custom-content {
    background: #ffffff;
    color: var(--ink);
    padding: 20px;
    border-radius: 0 0 12px 12px;
}

.side-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    color: var(--ink);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

/* About page  */
.about-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--charcoal-deep), var(--charcoal));
    color: white;
}

.about-hero-img {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.section-title {
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.value-card {
    background: #ffffff;
    color: var(--ink);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
    transition: 0.35s;
    max-height: 200px;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.28);
}

.team-card {
    background: #111a1d;
    border-radius: var(--radius);
    padding: 25px;
    color: white;
    transition: 0.35s;
}

.team-card:hover {
    background: linear-gradient(180deg, var(--mint), var(--charcoal-deep));
    color: var(--ink);
}

.team-card:hover img {
    transform: scale(1.2);
}

.team-card h5,
.team-card p {
    transition: 0.35s;
}

.team-card:hover h5,
.team-card:hover p {
    background-color: white;
    border-radius: 10px;
    padding: 5px 10px;
    transform: translateY(-10px);
}

.img-team {
    max-height: 280px;
    width: auto;
}

.timeline {
    border-left: 3px solid var(--mint);
    margin-left: 20px;
    padding-left: 25px;
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: "";
    width: 14px;
    height: 14px;
    background: var(--mint);
    border-radius: 50%;
    position: absolute;
    left: -33px;
    top: 5px;
}

.cta-banner {
    background: linear-gradient(135deg, var(--mint-600), var(--mint));
    padding: 50px;
    border-radius: var(--radius);
    color: var(--ink);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.stats-box {
    background: #fff;
    color: var(--ink);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.stats-box span {
    font-size: 2.4rem;
    color: var(--mint-600);
}

/* Contact Page */

.contact-hero {
    background: #0f1f23;
    color: white;
    padding: 6rem 0;
    border-bottom-left-radius: 80px;
}

.contact-hero .btn {
    background: var(--mint-600);
    border: none;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    border-radius: 8px;
}

.contact-hero .btn:hover {
    background: var(--mint);
}

.section-accent {
    background: #f6fffd;
    border-radius: 24px;
}

.icon-bubble {
    background: var(--mint-600);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    font-size: 20px;
}

.card-policy {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.card-policy:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.09);
}

.card-policy img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.contact-form input,
.contact-form textarea {
    border-radius: 8px;
    border: 1px solid #dce4e7;
    padding: 0.9rem;
}

.footer-cta {
    background: #0f1f23;
    color: white;
    border-radius: 24px;
}

/* Blog Page */

.blog-hero {
    background: #0f1f23;
    color: white;
    border-bottom-left-radius: 70px;
    padding: 6rem 0 5rem 0;
}

.blog-hero-sub {
    opacity: 0.7;
    font-size: 1.2rem;
}

.blog-hero .btn {
    background: var(--mint);
    border: none;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
}

.blog-hero .btn:hover {
    background: var(--mint-600);
}

.search-box input {
    border-radius: 10px;
    border: 1px solid #e1e6ea;
    padding: 0.8rem 1.2rem;
}

.search-box input:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 2px var(--mint) 33;
}

.filter-pill {
    background: #f0fffc;
    color: #0a6059;
    border: 1px solid #b9e6df;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
}

.filter-pill:hover {
    background: var(--mint);
    border-color: var(--mint);
    color: white;
}

.blog-card {
    border: none;
    overflow: hidden;
    border-radius: 18px;
    transition: 0.3s;
    background: white;
    color: var(--ink);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.blog-card .btn {
    background: var(--mint);
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    font-weight: 600;
}

.blog-card .btn:hover {
    background: var(--mint-600);
}

.sidebar-box {
    border: none;
    border-radius: 18px;
    padding: 1.8rem;
    background: #f6fffd;
}

.mint-box {
    padding: 2.2rem;
    background: var(--mint-600);
    border-radius: 18px;
    color: var(--ink);
}

.mint-box h1 {
    font-size: 3rem;
    font-weight: 700;
}

.trusted-card {
    padding: 2rem;
    background: #0f1f23;
    color: white;
    border-radius: 24px;
}

/* Single Blog Page */

.single-blog-hero {
    background: #1b1b1b;
    color: white;
    padding: 5rem 0;
}

.single-blog-hero h1 {
    font-weight: 700;
}

.article-image {
    border-radius: 16px;
    margin-bottom: 2.5rem;
    width: 100%;
    object-fit: cover;
    max-height: 380px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.treatment-card-blog {
    border: 1px solid #e2e7e7;
    border-radius: 12px;
    padding: 1.5rem;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    transition: 0.2s;
}
.treatment-card-blog:hover {
    border-color: var(--mint);
    box-shadow: 0 0 12px rgba(48, 191, 172, 0.25);
}

.compare-price {
    font-size: 2.6rem;
    font-weight: 300;
}

.author-card {
    border-radius: 12px;
    background: white;
    color: #000;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item button {
    background: #e8f9f7;
    border: none;
    border-radius: 8px;
    padding: 1.2rem;
    width: 100%;
    text-align: left;
    font-weight: 500;
}

/* Dashboard Page */

.sidebar {
    background: var(--charcoal-deep);
    min-height: -webkit-fill-available;
    padding: 30px 15px;
    color: white;
}

.sidebar-nav a {
    color: #a2a2a2;
    text-decoration: none;
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: var(--mint);
    color: white;
}

.profile {
    text-align: center;
    margin-bottom: 35px;
}

.profile img {
    border-radius: 50%;
    width: 85px;
    height: 85px;
    object-fit: cover;
    border: 3px solid var(--mint);
}

.profile h5 {
    margin-top: 12px;
    font-weight: 600;
}

.main-panel {
    background-color: white !important;
    color: #000 !important;
}

.welcome-banner {
    background: linear-gradient(135deg, var(--mint), #24a298);
    border-radius: 15px;
    color: white;
    padding: 30px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    color: var(--ink);
    border: 1px solid #e7eeee;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    font-size: 45px;
    padding: 15px;
    background: var(--light);
    color: var(--mint);
    border-radius: 50%;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal-deep);
}

.section-title {
    color: var(--charcoal-deep);
    font-size: 19px;
    font-weight: 600;
}

.promo-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e7eeee;
}

.promo-badge {
    background: var(--mint-600);
    color: black;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.article-card-dashboard img {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

.article-card-dashboard h6 {
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

.article-card-dashboard p {
    font-size: 14px;
    color: var(--grey);
}

.cta-footer-dashboard {
    background: var(--mint-600);
    color: black;
    text-align: center;
    padding: 35px 20px;
    border-radius: 15px;
}

.btn-dark-pill {
    background-color: var(--charcoal-deep);
    color: white;
    padding: 9px 22px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
}

.btn-dark-pill:hover {
    background: #191919;
}

.sidebar-container {
    display: block;
}

.mobile-dashboard-menu {
    display: none;
}

@media (max-width: 768px) {
    .sidebar-container {
        display: none !important;
    }

    .mobile-dashboard-menu {
        display: block !important;
        background-color: var(--mint);
        padding: 12px 0;
        overflow-x: auto;
        white-space: nowrap;
    }

    .mobile-dashboard-menu::-webkit-scrollbar {
        display: none;
    }

    .mobile-dashboard-menu a {
        color: white !important;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 18px;
        font-size: 16px;
        border-radius: 8px;
        flex: 0 0 auto;
        text-decoration: none;
    }
}

@media (max-width: 992px) {
    .sidebar {
        min-height: auto;
        padding: 20px;
    }
}

/* Account Details Page */

/* Account Details */

.content-wrapper {
    padding: 30px 40px;
}

.page-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #e6eeee;
    margin-bottom: 2.5rem;
}

.section-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--charcoal-deep);
}

.form-label {
    font-weight: 500;
    color: var(--charcoal-deep);
}

.table th {
    background: var(--light);
    font-weight: 600;
    color: var(--charcoal-deep);
    text-align: center;
    border-bottom: 2px solid #e6eeee;
}

.table td {
    vertical-align: middle;
    font-size: 14px;
}

.badge-mint {
    background: var(--mint);
    color: white;
    border-radius: 25px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 13px;
}

@media (max-width: 992px) {
    .content-wrapper {
        padding: 25px;
    }
}



/* Order Details */

.orders-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 25px 30px;
}

.table {
  font-size: 14px;
  background: white;
}

.table thead th {
  background: var(--light);
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid var(--border) !important;
}

.table td {
  vertical-align: middle;
  text-align: center;
}

.badge-status {
  padding: 7px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.btn-view {
  background: var(--mint);
  color: white;
  border-radius: 10px;
  padding: 7px 14px;
  font-weight: 600;
  border: none;
  font-size: 13px;
}

.btn-view:hover {
  background: var(--mint-600);
}

@media (max-width: 992px) {
  .content-wrapper {
    padding: 30px 20px;
  }

  .page-title {
    font-size: 1.4rem;
  }

  .orders-card {
    padding: 20px;
  }

  .table-responsive {
    font-size: 12px;
  }
}


/* Refferal Friend */


/* Refer friend */
.content-wrapper {
  padding: 40px 45px;
  color: var(--charcoal-deep);
}

.section-title-referral {
  font-size: 1.7rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.card-theme {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 40px 50px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 25px 0;
}

.lead-text {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.6;
}

.btn-disabled {
  background: var(--grey);
  border: none;
  color: #ececec;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  opacity: 0.6;
}

.reward-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  border: 1px dashed var(--mint-600);
  text-align: center;
}

.reward-card.disabled {
  opacity: 0.65;
}

.reward-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--mint-600);
}

.step-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}

.step-link {
  font-weight: 600;
  color: var(--mint-600);
  text-decoration: none;
  font-size: 0.95rem;
}

.step-link:hover {
  color: #25a594;
}

/* Responsive */
@media (max-width: 992px) {
  .content-wrapper {
    padding: 30px 20px;
  }

  .card-theme {
    padding: 25px;
  }

  .section-title-referral {
    font-size: 1.4rem;
  }
}



/* Login Security */

.card-theme-security {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 35px;
}

.text-muted {
  color: var(--grey) !important;
}

.divider {
  height: 1px;
  width: 100%;
  background: var(--border);
  margin: 25px 0;
}

/* Form UI */
.form-control {
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  padding: 10px 14px;
}

.form-control:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 2px rgba(48, 191, 172, 0.25);
}

.btn-danger {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  background: var(--danger);
}

.btn-danger:hover {
  background: #d33526;
}

/* 2FA Box */
.twofa-box {
  text-align: center;
}

.twofa-box img {
  height: 140px;
  margin-bottom: 12px;
}

.code-input {
  max-width: 220px;
}

@media (max-width: 992px) {
  .card-theme-security {
    padding: 26px;
  }

  .page-title {
    font-size: 1.5rem;
  }
}
