/* =========================================
   GOOGLE-LIKE FONT FALLBACK
========================================= */

@import url(
    'https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap'
);


/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", Arial, sans-serif;

    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(145, 47, 255, 0.13),
            transparent 30%
        ),
        #050507;

    color: #ffffff;

    line-height: 1.6;

    overflow-x: hidden;
}


body::before {
    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(153, 51, 255, 0.06);

    filter: blur(100px);

    top: -200px;
    right: -200px;

    pointer-events: none;

    z-index: -1;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


img {
    max-width: 100%;
}


.hidden {
    display: none !important;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --black: #050507;

    --black-light: #0b0b10;

    --card: #101016;

    --card-light: #16161f;

    --purple: #9b3cff;

    --purple-light: #c084fc;

    --purple-dark: #671bb3;

    --white: #ffffff;

    --muted: #a9a9b5;

    --border: rgba(168, 85, 247, 0.22);

    --green: #31e981;

}


/* =========================================
   NAVIGATION
========================================= */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(5, 5, 7, 0.82);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);

}


.nav-container {

    width: min(1180px, 92%);

    margin: auto;

    min-height: 80px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo span {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 30px;

    font-weight: 700;

    color: white;

}


.logo small {

    color: var(--purple-light);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-top: 5px;

}


nav {

    display: flex;

    align-items: center;

    gap: 24px;

}


.nav-link {

    position: relative;

    color: #bdbdc8;

    font-size: 13px;

    transition: 0.3s ease;

}


.nav-link:hover,
.nav-link.active {

    color: white;

}


.nav-link.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -9px;

    height: 2px;

    background: var(--purple);

    box-shadow:
        0 0 10px var(--purple);

}


.nav-login {

    border: 1px solid var(--border);

    padding: 9px 17px;

    border-radius: 30px;

    transition: 0.3s ease;

}


.nav-login:hover {

    border-color: var(--purple);

    box-shadow:
        0 0 20px rgba(155, 60, 255, 0.25);

}


.cart-button {

    background: rgba(155, 60, 255, 0.12);

    border: 1px solid var(--border);

    color: white;

    border-radius: 30px;

    padding: 9px 14px;

}


.cart-button span {

    background: var(--purple);

    border-radius: 50%;

    padding: 2px 6px;

    margin-left: 4px;

    font-size: 11px;

}


.menu-toggle {

    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 27px;

}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    width: min(1180px, 92%);

    margin: auto;

    padding-top: 150px;

    padding-bottom: 100px;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 70px;

}


.eyebrow {

    color: var(--purple-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 18px;

}


.hero h1 {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.95;

    font-weight: 600;

    max-width: 700px;

}


.hero h1 span {

    color: var(--purple-light);

    font-style: italic;

    text-shadow:
        0 0 30px rgba(192, 132, 252, 0.25);

}


.hero-description {

    color: var(--muted);

    max-width: 650px;

    margin-top: 28px;

    font-size: 16px;

}


.hero-buttons {

    display: flex;

    gap: 14px;

    margin-top: 34px;

}


.btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    border-radius: 12px;

    padding: 13px 22px;

    font-size: 13px;

    font-weight: 600;

    border: 1px solid transparent;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-primary {

    color: white;

    background:
        linear-gradient(
            135deg,
            #8b2cf5,
            #b65cff
        );

    box-shadow:
        0 10px 30px rgba(139, 44, 245, 0.2);

}


.btn-primary:hover {

    box-shadow:
        0 15px 40px rgba(139, 44, 245, 0.35);

}


.btn-secondary {

    color: white;

    border-color: var(--border);

    background: rgba(255,255,255,0.03);

}


.btn-secondary:hover {

    border-color: var(--purple);

    background: rgba(155,60,255,0.08);

}


.hero-stats {

    display: flex;

    gap: 40px;

    margin-top: 50px;

}


.hero-stats div {

    display: flex;

    flex-direction: column;

}


.hero-stats strong {

    font-size: 20px;

}


.hero-stats span {

    color: var(--muted);

    font-size: 11px;

}


.hero-visual {

    display: flex;

    justify-content: center;

}


.dashboard-preview {

    width: 100%;

    max-width: 470px;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.02)
        );

    box-shadow:
        0 30px 100px rgba(0,0,0,0.5),
        0 0 50px rgba(155,60,255,0.12);

    transform: rotate(2deg);

    transition: 0.5s ease;

}


.dashboard-preview:hover {

    transform: rotate(0deg) translateY(-8px);

}


.preview-header {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

}


.preview-header span {

    font-size: 9px;

    letter-spacing: 2px;

    color: var(--purple-light);

}


.preview-header h3 {

    margin-top: 5px;

}


.online-indicator {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 12px var(--green);

}


.balance-box {

    margin-top: 30px;

    padding: 20px;

    border-radius: 18px;

    background: rgba(155,60,255,0.08);

    border: 1px solid var(--border);

}


.balance-box small {

    color: var(--muted);

}


.balance-box strong {

    display: block;

    font-size: 28px;

    margin-top: 5px;

}


.chart {

    height: 150px;

    display: flex;

    align-items: flex-end;

    gap: 12px;

    padding: 25px 10px;

}


.chart-bar {

    flex: 1;

    border-radius: 7px 7px 0 0;

    background:
        linear-gradient(
            to top,
            #671bb3,
            #c084fc
        );

    box-shadow:
        0 0 15px rgba(155,60,255,0.25);

}


.b1 { height: 35%; }
.b2 { height: 55%; }
.b3 { height: 45%; }
.b4 { height: 75%; }
.b5 { height: 60%; }
.b6 { height: 85%; }
.b7 { height: 70%; }


.preview-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

}


.preview-stats div {

    padding: 15px;

    border-radius: 13px;

    background: rgba(255,255,255,0.03);

}


.preview-stats span {

    display: block;

    color: var(--muted);

    font-size: 10px;

}


.preview-stats strong {

    font-size: 17px;

}


/* =========================================
   SECTIONS
========================================= */

.section {

    width: min(1180px, 92%);

    margin: auto;

    padding: 110px 0;

}


.dark-section {

    width: 100%;

    padding-left: max(4%, calc((100% - 1180px) / 2));

    padding-right: max(4%, calc((100% - 1180px) / 2));

    background:
        linear-gradient(
            180deg,
            rgba(155,60,255,0.035),
            transparent
        );

    border-top: 1px solid rgba(155,60,255,0.08);

    border-bottom: 1px solid rgba(155,60,255,0.08);

}


.section-heading {

    max-width: 650px;

    margin-bottom: 55px;

}


.section-heading h2 {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

}


.section-heading > p:last-child {

    color: var(--muted);

    margin-top: 18px;

}


/* =========================================
   FEATURES
========================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.feature-card {

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border: 1px solid var(--border);

    border-radius: 20px;

    transition: 0.35s ease;

}


.feature-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(192,132,252,0.6);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.3),
        0 0 25px rgba(155,60,255,0.08);

}


.feature-icon {

    width: 50px;
    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 14px;

    background:
        rgba(155,60,255,0.12);

    border: 1px solid var(--border);

    font-size: 22px;

    margin-bottom: 25px;

}


.feature-card h3 {

    margin-bottom: 10px;

}


.feature-card p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================
   STEPS
========================================= */

.steps {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.step {

    position: relative;

    padding: 30px;

    border-left: 1px solid var(--border);

}


.step-number {

    color: var(--purple-light);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 45px;

    font-weight: 700;

    margin-bottom: 15px;

}


.step h3 {

    margin-bottom: 10px;

}


.step p {

    color: var(--muted);

}


/* =========================================
   PRICING
========================================= */

.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}


.pricing-card {

    position: relative;

    padding: 35px;

    border-radius: 22px;

    background: var(--card);

    border: 1px solid var(--border);

}


.pricing-card.popular {

    border-color: var(--purple);

    box-shadow:
        0 0 35px rgba(155,60,255,0.12);

}


.popular-label {

    position: absolute;

    top: -12px;

    right: 25px;

    padding: 5px 12px;

    border-radius: 30px;

    background: var(--purple);

    font-size: 9px;

    letter-spacing: 1px;

}


.price {

    font-size: 34px;

    font-weight: 700;

    margin: 20px 0 8px;

}


.price span {

    color: var(--muted);

    font-size: 12px;

    font-weight: 400;

}


.pricing-card > p {

    color: var(--muted);

    font-size: 14px;

}


.pricing-card ul {

    list-style: none;

    margin: 25px 0;

}


.pricing-card li {

    color: #cfcfd7;

    margin-bottom: 10px;

    font-size: 13px;

}


/* =========================================
   LOGIN
========================================= */

.login-section {

    min-height: 700px;

}


.login-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

}


.login-information h2 {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(45px, 5vw, 65px);

    line-height: 1;

}


.login-information > p:not(.eyebrow) {

    color: var(--muted);

    margin-top: 20px;

    max-width: 500px;

}


.login-benefits {

    margin-top: 30px;

}


.login-benefits div {

    margin-bottom: 13px;

    color: #d8d8df;

    font-size: 14px;

}


.login-benefits span {

    color: var(--green);

    margin-right: 8px;

}


.login-card {

    padding: 35px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );

    border: 1px solid var(--border);

    border-radius: 25px;

    box-shadow:
        0 30px 80px rgba(0,0,0,0.3);

}


.login-card-heading {

    display: flex;

    gap: 15px;

    align-items: center;

    margin-bottom: 30px;

}


.lock-icon {

    width: 50px;
    height: 50px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(155,60,255,0.1);

    border: 1px solid var(--border);

    border-radius: 14px;

}


.login-card-heading p {

    color: var(--muted);

    font-size: 12px;

}


.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 7px;

}


.required {

    color: #ff6b9a;

}


.optional {

    color: var(--purple-light);

    font-size: 10px;

    margin-left: 5px;

    font-weight: 400;

}


.form-group input,
.form-group select {

    width: 100%;

    padding: 13px 14px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.1);

    background: #09090d;

    color: white;

    outline: none;

    transition: 0.3s ease;

}


.form-group input:focus,
.form-group select:focus {

    border-color: var(--purple);

    box-shadow:
        0 0 0 3px rgba(155,60,255,0.08);

}


.form-group small {

    display: block;

    margin-top: 5px;

    color: #777783;

    font-size: 10px;

}


.checkbox-group {

    display: flex;

    gap: 9px;

    align-items: center;

    margin: 20px 0;

    color: var(--muted);

    font-size: 11px;

}


.full-width {

    width: 100%;

}


/* =========================================
   MODAL
========================================= */

.modal {

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.78);

    backdrop-filter: blur(10px);

    z-index: 3000;

    display: none;

    justify-content: center;

    align-items: center;

    padding: 20px;

}


.modal.show {

    display: flex;

}


.modal-content {

    width: min(500px, 100%);

    background: #111116;

    border: 1px solid var(--border);

    border-radius: 25px;

    padding: 35px;

    position: relative;

    box-shadow:
        0 30px 100px rgba(0,0,0,0.6);

    animation:
        modalIn 0.3s ease;

}


@keyframes modalIn {

    from {

        opacity: 0;

        transform: translateY(20px) scale(0.97);

    }

    to {

        opacity: 1;

        transform: translateY(0) scale(1);

    }

}


.modal-close {

    position: absolute;

    top: 15px;

    right: 18px;

    background: transparent;

    color: white;

    border: none;

    font-size: 28px;

}


.modal-icon {

    width: 60px;
    height: 60px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 50%;

    background: rgba(155,60,255,0.12);

    border: 1px solid var(--border);

    color: var(--purple-light);

    font-size: 25px;

    margin-bottom: 20px;

}


.modal-content h2 {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 42px;

}


.modal-content > p {

    color: var(--muted);

    margin: 8px 0 20px;

}


.confirmation-details {

    padding: 15px;

    background: rgba(255,255,255,0.03);

    border-radius: 12px;

    margin-bottom: 25px;

    font-size: 12px;

    color: #d2d2d9;

}


.confirmation-details div {

    margin-bottom: 5px;

}


.modal-buttons {

    display: flex;

    gap: 10px;

}


.modal-buttons .btn {

    flex: 1;

}


/* =========================================
   DASHBOARD
========================================= */

.dashboard-section {

    width: min(1180px, 92%);

    margin: auto;

    border-top: 1px solid var(--border);

}


.dashboard-heading {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}


.dashboard-heading h2 {

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: 55px;

    line-height: 1;

}


.dashboard-heading h2 span {

    color: var(--purple-light);

}


.dashboard-heading p:not(.eyebrow) {

    color: var(--muted);

}


.logged-in-badge {

    color: var(--green);

    border: 1px solid rgba(49,233,129,0.2);

    background: rgba(49,233,129,0.06);

    border-radius: 30px;

    padding: 10px 16px;

    font-size: 12px;

}


.dashboard-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.dashboard-action-card {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: var(--card);

    transition: 0.3s ease;

}


.dashboard-action-card:hover {

    transform: translateY(-5px);

    border-color: var(--purple);

}


.dashboard-action-icon {

    font-size: 30px;

    margin-bottom: 20px;

}


.dashboard-action-card h3 {

    margin-bottom: 10px;

}


.dashboard-action-card p {

    color: var(--muted);

    font-size: 13px;

    margin-bottom: 25px;

}


/* =========================================
   REQUEST BOX
========================================= */

.request-box {

    margin-top: 30px;

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background:
        rgba(155,60,255,0.05);

}


.request-box p {

    color: var(--muted);

    font-size: 13px;

    margin: 5px 0 20px;

}


.request-form {

    display: grid;

    grid-template-columns:
        1fr 150px auto;

    gap: 10px;

}


.request-form input {

    border: 1px solid rgba(255,255,255,0.1);

    background: #08080c;

    color: white;

    border-radius: 10px;

    padding: 13px;

    outline: none;

}


.request-form input:focus {

    border-color: var(--purple);

}


/* =========================================
   ACTIVITY
========================================= */

.activity-card {

    margin-top: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    padding: 25px;

}


.activity-heading {

    display: flex;

    justify-content: space-between;

    margin-bottom: 20px;

}


.activity-heading span {

    color: var(--green);

    font-size: 11px;

}


.empty-activity {

    color: var(--muted);

    font-size: 13px;

}


.activity-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px;

    border-radius: 12px;

    background: rgba(255,255,255,0.03);

    margin-bottom: 10px;

}


.activity-item strong {

    display: block;

    font-size: 13px;

}


.activity-item span {

    color: var(--muted);

    font-size: 10px;

}


/* =========================================
   MARKETPLACE
========================================= */

.marketplace-section {

    border-top: 1px solid rgba(155,60,255,0.08);

}


.category-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 35px;

}


.category-button {

    padding: 9px 18px;

    border-radius: 30px;

    background: transparent;

    color: var(--muted);

    border: 1px solid var(--border);

}


.category-button.active,
.category-button:hover {

    background: var(--purple);

    color: white;

    border-color: var(--purple);

}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.product-card {

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s ease;

}


.product-card:hover {

    transform: translateY(-5px);

    border-color: rgba(192,132,252,0.55);

}


.product-image {

    height: 170px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 65px;

    background:
        radial-gradient(
            circle,
            rgba(155,60,255,0.17),
            transparent 65%
        );

    border-bottom: 1px solid var(--border);

}


.product-information {

    padding: 20px;

}


.product-category {

    color: var(--purple-light);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.product-information h3 {

    margin: 7px 0;

    font-size: 16px;

}


.product-information p {

    color: var(--muted);

    font-size: 11px;

    min-height: 55px;

}


.product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 8px;

    margin-top: 18px;

}


.product-bottom strong {

    font-size: 14px;

}


.add-cart {

    border: 1px solid var(--purple);

    color: white;

    background: rgba(155,60,255,0.1);

    padding: 8px 10px;

    border-radius: 8px;

    font-size: 10px;

    transition: 0.3s ease;

}


.add-cart:hover {

    background: var(--purple);

}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.testimonial {

    padding: 30px;

    border: 1px solid var(--border);

    border-radius: 20px;

    background: rgba(255,255,255,0.025);

}


.stars {

    color: #c084fc;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.testimonial p {

    color: #d2d2da;

    font-size: 14px;

    margin-bottom: 20px;

}


.testimonial strong {

    font-size: 12px;

}


/* =========================================
   FAQ
========================================= */

.faq-container {

    max-width: 800px;

}


.faq-item {

    border-bottom: 1px solid var(--border);

}


.faq-question {

    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 0;

    background: transparent;

    border: none;

    color: white;

    text-align: left;

    font-size: 14px;

}


.faq-question span {

    color: var(--purple-light);

    font-size: 22px;

    transition: 0.3s ease;

}


.faq-item.open
.faq-question span {

    transform: rotate(45deg);

}


.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

}


.faq-answer p {

    color: var(--muted);

    font-size: 13px;

    padding-bottom: 20px;

}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {

    width: min(1100px, 92%);

    margin: 80px auto;

    padding: 80px 30px;

    text-align: center;

    border-radius: 30px;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at center,
            rgba(155,60,255,0.18),
            transparent 60%
        );

}


.final-cta h2 {

    max-width: 700px;

    margin: auto;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

}


.final-cta p:not(.eyebrow) {

    color: var(--muted);

    max-width: 600px;

    margin: 20px auto 30px;

}


/* =========================================
   FOOTER
========================================= */

.footer {

    border-top: 1px solid var(--border);

    padding: 70px 0 25px;

    background: #030304;

}


.footer-container {

    width: min(1180px, 92%);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1.5fr;

    gap: 80px;

}


.footer-brand p {

    color: var(--muted);

    font-size: 13px;

    margin-top: 15px;

}


.footer-links {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}


.footer-links h4 {

    margin-bottom: 15px;

}


.footer-links a,
.footer-links span {

    display: block;

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 9px;

}


.footer-links a:hover {

    color: var(--purple-light);

}


.footer-bottom {

    width: min(1180px, 92%);

    margin: 50px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.07);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: #777783;

    font-size: 10px;

}


.creator {

    color: var(--purple-light);

}


.creator span {

    color: #777783;

    margin: 0 5px;

}


/* =========================================
   CART
========================================= */

.cart-modal-content {

    max-width: 600px;

}


.cart-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 14px 0;

    border-bottom: 1px solid rgba(255,255,255,0.07);

}


.cart-item-name {

    font-size: 13px;

}


.cart-item-price {

    color: var(--purple-light);

    font-size: 12px;

}


.remove-cart {

    border: none;

    background: transparent;

    color: #ff709d;

}


.empty-cart {

    color: var(--muted);

    padding: 20px 0;

}


.cart-total {

    display: flex;

    justify-content: space-between;

    margin: 25px 0;

    font-size: 16px;

}


.cart-total strong {

    color: var(--purple-light);

}


/* =========================================
   NOTIFICATION
========================================= */

.notification {

    position: fixed;

    top: 95px;

    right: 25px;

    z-index: 5000;

    max-width: 350px;

    padding: 15px 20px;

    border-radius: 12px;

    background: #17171e;

    border: 1px solid var(--purple);

    box-shadow:
        0 15px 50px rgba(0,0,0,0.4);

    transform: translateX(130%);

    transition: 0.4s ease;

    font-size: 12px;

}


.notification.show {

    transform: translateX(0);

}


/* =========================================
   BACK TO TOP
========================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: 1px solid var(--border);

    background: #111116;

    color: white;

    display: none;

    z-index: 900;

    font-size: 20px;

}


.back-to-top.show {

    display: block;

}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 1000px) {

    nav {

        gap: 13px;

    }


    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .feature-grid,
    .pricing-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 780px) {

    .menu-toggle {

        display: block;

    }


    nav {

        position: absolute;

        top: 80px;

        left: 4%;

        right: 4%;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

        background: #0d0d12;

        border: 1px solid var(--border);

        border-radius: 18px;

    }


    nav.open {

        display: flex;

    }


    .nav-link.active::after {

        display: none;

    }


    .hero {

        grid-template-columns: 1fr;

        padding-top: 130px;

        gap: 50px;

    }


    .hero h1 {

        font-size: 60px;

    }


    .dashboard-preview {

        transform: none;

    }


    .feature-grid,
    .steps,
    .pricing-grid,
    .testimonial-grid,
    .login-wrapper,
    .dashboard-grid {

        grid-template-columns: 1fr;

    }


    .login-wrapper {

        gap: 40px;

    }


    .dashboard-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .request-form {

        grid-template-columns: 1fr;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }


    .footer-bottom {

        flex-direction: column;

    }


    .hero-stats {

        gap: 20px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 500px) {

    .section {

        padding: 80px 0;

    }


    .hero h1 {

        font-size: 50px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .hero-stats {

        justify-content: space-between;

    }


    .feature-grid,
    .pricing-grid,
    .product-grid {

        grid-template-columns: 1fr;

    }


    .login-card {

        padding: 22px;

    }


    .modal-buttons {

        flex-direction: column;

    }


    .footer-links {

        grid-template-columns: 1fr;

    }

}