* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #080808;
    --black-soft: #111111;
    --white: #ffffff;
    --gray: #777777;
    --light: #f6f6f4;
    --gold: #c9a45b;
    --border: #e8e8e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.8;
}

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

.simple-container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

/* HEADER */

.simple-header {
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.96);
}

.header-content {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.simple-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.simple-logo-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: var(--gold);
    border-radius: 8px;
}

.simple-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: auto;
}

.simple-nav a,
.simple-login {
    font-size: 14px;
    color: #555;
}

.simple-nav a:hover,
.simple-login:hover {
    color: var(--black);
}

.simple-login {
    border: 1px solid var(--black);
    padding: 7px 18px;
    border-radius: 8px;
    color: var(--black);
}

/* HERO */

.simple-hero {
    background: var(--light);
    padding: 95px 0 100px;
}

.simple-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 20px;
}

.simple-hero h1 {
    max-width: 700px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.35;
    margin-bottom: 20px;
}

.simple-hero h1 span {
    color: var(--gold);
}

.simple-hero p {
    max-width: 620px;
    color: var(--gray);
    font-size: 17px;
}

.simple-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.simple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: bold;
    transition: .2s ease;
}

.simple-btn-primary {
    background: var(--black);
    color: var(--white);
}

.simple-btn-primary:hover {
    transform: translateY(-2px);
}

.simple-btn-secondary {
    border: 1px solid var(--border);
    background: var(--white);
}

.simple-btn-secondary:hover {
    border-color: var(--black);
}

/* SECTIONS */

.simple-section {
    padding: 80px 0;
}

.simple-section-title {
    margin-bottom: 34px;
}

.simple-section-title > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.simple-section-title h2 {
    font-size: 32px;
    margin: 7px 0;
}

.simple-section-title p {
    color: var(--gray);
}

/* PLAN */

.simple-plan-preview {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.simple-plan-preview strong {
    font-size: 20px;
}

.simple-plan-preview p {
    color: var(--gray);
    margin-top: 5px;
}

.simple-link {
    color: var(--gold);
    font-weight: bold;
    white-space: nowrap;
}

/* FEATURES */

.simple-light {
    background: var(--light);
}

.simple-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.simple-feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.simple-feature b {
    color: var(--gold);
    font-size: 13px;
}

.simple-feature h3 {
    font-size: 21px;
    margin: 10px 0;
}

.simple-feature p {
    color: var(--gray);
    font-size: 14px;
}

/* CTA */

.simple-cta {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.simple-cta h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.simple-cta p {
    color: #aaa;
    margin-bottom: 25px;
}

.simple-cta .simple-btn {
    background: var(--gold);
    color: var(--black);
}

/* FOOTER */

.simple-footer {
    background: var(--black-soft);
    color: var(--white);
    padding: 35px 0;
}

.simple-footer .simple-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.simple-footer strong {
    display: block;
    font-size: 18px;
}

.simple-footer span,
.simple-footer small {
    color: #888;
    font-size: 12px;
}

.simple-footer-links {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #aaa;
}

.simple-footer-links a:hover {
    color: var(--white);
}

/* MOBILE */

@media (max-width: 700px) {

    .simple-container {
        width: min(100% - 24px, 1100px);
    }

    .header-content {
        min-height: 64px;
        gap: 12px;
    }

    .simple-logo {
        font-size: 17px;
    }

    .simple-logo-mark {
        width: 30px;
        height: 30px;
    }

    .simple-nav {
        display: none;
    }

    .simple-login {
        margin-right: auto;
        padding: 6px 14px;
    }

    .simple-hero {
        padding: 65px 0 70px;
    }

    .simple-hero h1 {
        font-size: 34px;
    }

    .simple-hero p {
        font-size: 15px;
    }

    .simple-actions {
        flex-direction: column;
    }

    .simple-btn {
        width: 100%;
    }

    .simple-section {
        padding: 60px 0;
    }

    .simple-section-title h2 {
        font-size: 27px;
    }

    .simple-plan-preview {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-link {
        white-space: normal;
    }

    .simple-features {
        grid-template-columns: 1fr;
    }

    .simple-footer .simple-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .simple-footer-links {
        flex-wrap: wrap;
    }
}

/* =========================================
   PLAPP MOBILE APP
========================================= */

.app-body {
    background: #e9e9e6;
    min-height: 100vh;
}

.app-shell {
    width: 100%;
    max-width: 520px;
    min-height: 100vh;
    margin: 0 auto;
    background: #f8f8f6;
    position: relative;
    padding-bottom: 82px;
    box-shadow: 0 0 40px rgba(0,0,0,.08);
}

.app-header {
    height: 68px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #e5e5e2;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 9px;
}

.app-logo span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: #080808;
    color: #c9a45b;
    border-radius: 8px;
    font-weight: 900;
}

.app-logo strong {
    font-size: 18px;
    letter-spacing: .5px;
}

.app-header-link {
    font-size: 13px;
    color: #666;
}

.app-content {
    padding: 25px 16px;
}

.app-title {
    margin-bottom: 24px;
}

.app-title > span {
    color: #b18a43;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.app-title h1 {
    font-size: 25px;
    line-height: 1.5;
    margin: 5px 0 7px;
}

.app-title p {
    color: #777;
    font-size: 13px;
    line-height: 1.9;
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.plan-card {
    background: #fff;
    border: 1px solid #e2e2df;
    border-radius: 15px;
    padding: 17px;
}

.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.plan-label {
    color: #999;
    font-size: 10px;
}

.plan-card h2 {
    font-size: 21px;
    margin-top: 2px;
}

.plan-users {
    background: #f3eee4;
    color: #9b7535;
    padding: 5px 9px;
    border-radius: 7px;
    font-size: 10px;
    white-space: nowrap;
}

.plan-price {
    margin: 15px 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price strong {
    font-size: 27px;
    letter-spacing: -.5px;
}

.plan-price span {
    color: #777;
    font-size: 11px;
}

.plan-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 14px;
}

.plan-details div {
    padding: 10px 5px;
    text-align: center;
}

.plan-details div + div {
    border-right: 1px solid #eee;
}

.plan-details span {
    display: block;
    color: #999;
    font-size: 10px;
    margin-bottom: 2px;
}

.plan-details strong {
    font-size: 12px;
}

.plan-buy {
    width: 100%;
    min-height: 45px;
    border-radius: 9px;
    background: #080808;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: bold;
}

.plan-buy span {
    color: #c9a45b;
    font-size: 18px;
}

.app-empty {
    background: #fff;
    border: 1px solid #e2e2df;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
}

.app-empty strong {
    font-size: 15px;
}

.app-empty p {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

.contact-box {
    margin-top: 28px;
    background: #080808;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
}

.contact-box > span {
    color: #c9a45b;
    font-size: 10px;
    font-weight: bold;
}

.contact-box h2 {
    font-size: 21px;
    margin: 3px 0;
}

.contact-box > p {
    color: #aaa;
    font-size: 12px;
    margin-bottom: 15px;
}

.contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-links a {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 9px;
    padding: 11px;
}

.contact-links strong {
    display: block;
    font-size: 12px;
}

.contact-links small {
    color: #888;
    font-size: 9px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 100%);
    height: 70px;
    background: rgba(255,255,255,.97);
    border-top: 1px solid #dededb;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 50;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #999;
    font-size: 9px;
}

.bottom-nav a span {
    font-size: 17px;
    line-height: 1;
}

.bottom-nav a.active {
    color: #080808;
    font-weight: bold;
}

.bottom-nav a.active span {
    color: #b18a43;
}

@media (min-width: 700px) {
    .app-shell {
        margin-top: 20px;
        margin-bottom: 20px;
        min-height: calc(100vh - 40px);
        border-radius: 20px;
        overflow: hidden;
    }

    .bottom-nav {
        bottom: 20px;
    }
}

/* =========================================
   HOME APP
========================================= */

.home-welcome {
    background: #080808;
    color: #fff;
    border-radius: 16px;
    padding: 25px 20px 22px;
}

.home-label {
    color: #c9a45b;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-welcome h1 {
    font-size: 27px;
    line-height: 1.55;
    margin: 9px 0 10px;
}

.home-welcome h1 strong {
    color: #c9a45b;
    display: inline;
}

.home-welcome p {
    color: #aaa;
    font-size: 12px;
    line-height: 2;
}

.home-main-button {
    margin-top: 20px;
    min-height: 46px;
    background: #c9a45b;
    color: #080808;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 800;
}

.home-main-button span {
    font-size: 18px;
}

.home-quick {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.home-quick-card {
    background: #fff;
    border: 1px solid #e2e2df;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f2ede4;
    color: #a67d3b;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.home-quick-card div {
    flex: 1;
}

.home-quick-card strong {
    display: block;
    font-size: 13px;
}

.home-quick-card small {
    color: #888;
    font-size: 10px;
}

.home-quick-card b {
    color: #aaa;
    font-size: 18px;
}

.home-section {
    margin-top: 30px;
}

.home-section-title {
    margin-bottom: 15px;
}

.home-section-title span {
    color: #b18a43;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-section-title h2 {
    font-size: 23px;
    margin-top: 3px;
}

.home-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-feature {
    background: #fff;
    border: 1px solid #e2e2df;
    border-radius: 13px;
    padding: 15px;
}

.home-feature > span {
    color: #c9a45b;
    font-size: 10px;
    font-weight: bold;
}

.home-feature strong {
    display: block;
    font-size: 16px;
    margin: 2px 0;
}

.home-feature p {
    color: #777;
    font-size: 11px;
    line-height: 1.8;
}

.home-contact {
    margin-top: 28px;
    padding: 20px;
    border-radius: 15px;
    background: #080808;
    color: #fff;
}

.home-contact > span {
    color: #c9a45b;
    font-size: 10px;
    font-weight: bold;
}

.home-contact h2 {
    font-size: 21px;
    margin: 3px 0;
}

.home-contact > p {
    color: #999;
    font-size: 11px;
    margin-bottom: 14px;
}

.home-contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.home-contact-links a {
    background: #151515;
    border: 1px solid #292929;
    border-radius: 9px;
    padding: 11px;
}

.home-contact-links strong {
    display: block;
    font-size: 11px;
}

.home-contact-links small {
    color: #777;
    font-size: 9px;
}

/* PLAPP AUTH */
.auth-page {
    padding-bottom: 110px;
}

.auth-intro {
    text-align: center;
    padding: 18px 4px 24px;
}

.auth-badge {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 1px solid #222;
}

.auth-intro h1 {
    margin: 0 0 10px;
    font-size: 25px;
    font-weight: 800;
}

.auth-intro p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.9;
}

.auth-error {
    background: #fff1f1;
    border: 1px solid #f0cccc;
    color: #a33;
    border-radius: 14px;
    padding: 13px 14px;
    margin-bottom: 18px;
    font-size: 13px;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    font-size: 13px;
    font-weight: 700;
}

.auth-field input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background: #fafafa;
    color: #111;
    border-radius: 14px;
    padding: 15px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: .2s;
}

.auth-field input:focus {
    border-color: #c7a33a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(199,163,58,.10);
}

.auth-submit {
    width: 100%;
    border: 0;
    border-radius: 15px;
    padding: 16px;
    margin-top: 4px;
    background: #111;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.auth-submit:hover {
    background: #222;
}

.auth-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
    font-size: 13px;
    color: #777;
}

.auth-footer a {
    color: #a78319;
    font-weight: 800;
    text-decoration: none;
}

.auth-back {
    text-align: center;
    margin-top: 22px;
}

.auth-back a {
    color: #555;
    font-size: 13px;
    text-decoration: none;
}

@media (min-width: 700px) {
    .auth-page {
        max-width: 430px;
        margin: 0 auto;
    }
}


/* =========================
   PLAPP DASHBOARD
========================= */

.dashboard-page {
    padding-bottom: 110px;
}

.dashboard-welcome {
    padding: 8px 2px 22px;
}

.dashboard-eyebrow {
    display: block;
    color: #a78319;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 7px;
}

.dashboard-welcome h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
}

.dashboard-welcome p {
    margin: 7px 0 0;
    color: #777;
    font-size: 13px;
    direction: ltr;
    text-align: right;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.dashboard-stat {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    padding: 18px 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 5px 18px rgba(0,0,0,.035);
}

.dashboard-stat-icon {
    font-size: 17px;
    color: #b18d24;
}

.dashboard-stat strong {
    font-size: 25px;
    line-height: 1;
}

.dashboard-stat small {
    color: #888;
    font-size: 12px;
}

.dashboard-section {
    margin-top: 27px;
}

.dashboard-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 13px;
}

.dashboard-section-head h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 850;
}

.dashboard-section-head a {
    color: #a78319;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.subscription-list,
.orders-mini-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscription-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 19px;
    padding: 17px;
    box-shadow: 0 5px 18px rgba(0,0,0,.035);
}

.subscription-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.subscription-label {
    color: #999;
    font-size: 10px;
    font-weight: 800;
}

.subscription-top h3 {
    margin: 4px 0 0;
    font-size: 16px;
}

.status-active {
    background: #edf8f0;
    color: #37834d;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
}

.subscription-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.subscription-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.subscription-info span,
.subscription-link-box > span {
    color: #999;
    font-size: 10px;
}

.subscription-info strong {
    font-size: 13px;
}

.subscription-link-box {
    margin-top: 15px;
}

.subscription-link {
    margin-top: 7px;
    padding: 11px 12px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.subscription-link span {
    color: #777;
    font-size: 11px;
}

.subscription-link button {
    border: 0;
    background: #111;
    color: #fff;
    border-radius: 9px;
    padding: 7px 11px;
    font-family: inherit;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.empty-card {
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 19px;
    padding: 28px 18px;
    text-align: center;
}

.empty-card.compact {
    padding: 22px 18px;
}

.empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f3e7;
    color: #a78319;
    font-size: 25px;
}

.empty-card h3 {
    margin: 0;
    font-size: 16px;
}

.empty-card p {
    margin: 7px 0 17px;
    color: #888;
    font-size: 12px;
}

.empty-button {
    display: inline-block;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    padding: 11px 17px;
    font-size: 12px;
    font-weight: 800;
}

.order-mini {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.order-mini > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-mini > div:first-child strong {
    font-size: 13px;
}

.order-mini > div:first-child span {
    color: #999;
    font-size: 10px;
}

.order-mini-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.order-mini-right strong {
    font-size: 12px;
}

.order-status {
    font-size: 9px;
    color: #888;
}

.order-status.success {
    color: #37834d;
}

.order-status.pending {
    color: #a78319;
}

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.account-action {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 17px;
    padding: 15px;
    text-decoration: none;
    color: #111;
}

.account-action > span {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.account-action div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.account-action strong {
    font-size: 13px;
}

.account-action small {
    color: #999;
    font-size: 10px;
}

.account-action.primary > span {
    background: #111;
    color: #d4af37;
}

@media (min-width: 700px) {
    .dashboard-page {
        max-width: 520px;
        margin: 0 auto;
    }
}


/* =========================
   PLAPP BUY
========================= */

.buy-page {
    padding-bottom: 110px;
}

.buy-intro {
    padding: 8px 2px 20px;
}

.buy-intro h1 {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
}

.buy-intro p {
    margin: 7px 0 0;
    color: #777;
    font-size: 13px;
}

.buy-plan-card {
    background: #111;
    color: #fff;
    border-radius: 21px;
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.buy-plan-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.buy-plan-top .plan-label {
    color: #aaa;
}

.buy-plan-top h2 {
    margin: 5px 0 0;
    font-size: 21px;
}

.buy-price {
    text-align: left;
    direction: rtl;
    white-space: nowrap;
}

.buy-price strong {
    display: block;
    color: #d4af37;
    font-size: 19px;
}

.buy-price span {
    color: #aaa;
    font-size: 9px;
}

.buy-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #292929;
}

.buy-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.buy-details span {
    color: #999;
    font-size: 9px;
}

.buy-details strong {
    font-size: 12px;
}

.buy-account-card {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 14px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 17px;
}

.buy-account-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 13px;
    background: #f7f3e7;
    color: #a78319;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-account-card h3 {
    margin: 0 0 5px;
    font-size: 13px;
}

.buy-account-card p {
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.8;
}

.buy-account-card strong {
    color: #222;
}

.buy-form {
    margin-top: 16px;
}

.auth-hint {
    color: #999;
    font-size: 10px;
}

.buy-login-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 17px;
}

.buy-main-action,
.buy-secondary-action {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    padding: 15px;
    font-size: 13px;
    font-weight: 800;
}

.buy-main-action {
    background: #111;
    color: #fff;
}

.buy-secondary-action {
    background: #fff;
    color: #111;
    border: 1px solid #ddd;
}

.buy-back {
    text-align: center;
    margin-top: 20px;
}

.buy-back a {
    color: #777;
    text-decoration: none;
    font-size: 12px;
}

@media (min-width: 700px) {
    .buy-page {
        max-width: 520px;
        margin: 0 auto;
    }
}


/* =========================
   ORDER DETAIL
========================= */

.order-detail-page {
    padding-bottom: 100px;
}

.order-detail-header {
    margin-bottom: 18px;
}

.order-detail-eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    opacity: .45;
    margin-bottom: 7px;
    direction: ltr;
    text-align: right;
}

.order-detail-header h1 {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
}

.order-detail-header p {
    margin: 8px 0 0;
    color: #777;
    font-size: 13px;
    line-height: 1.8;
}

.order-detail-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.order-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.order-detail-label {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.order-detail-top h2 {
    margin: 0;
    font-size: 19px;
    font-weight: 900;
}

.order-detail-status {
    background: #f5f5f5;
    color: #555;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.order-detail-price {
    margin: 22px 0;
    font-size: 28px;
    font-weight: 950;
    direction: rtl;
}

.order-detail-price small {
    font-size: 12px;
    font-weight: 700;
    color: #888;
}

.order-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.order-detail-item {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 13px;
}

.order-detail-item span {
    display: block;
    font-size: 11px;
    color: #999;
    margin-bottom: 5px;
}

.order-detail-item strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    word-break: break-word;
}

.order-detail-date {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 11px;
}

.order-payment-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding: 14px;
    border-radius: 16px;
    background: #fafafa;
    border: 1px solid #eee;
}

.order-payment-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #111;
    color: #fff;
    font-weight: 900;
}

.order-payment-box strong {
    font-size: 13px;
}

.order-payment-box p {
    margin: 4px 0 0;
    color: #888;
    font-size: 11px;
    line-height: 1.7;
}

.order-payment-button {
    width: 100%;
    margin-top: 12px;
    padding: 14px;
    border: 0;
    border-radius: 15px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: not-allowed;
    opacity: .45;
}

.order-detail-back {
    display: block;
    margin-top: 16px;
    text-align: center;
    color: #555;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 480px) {
    .order-detail-card {
        padding: 17px;
        border-radius: 19px;
    }

    .order-detail-top h2 {
        font-size: 17px;
    }

    .order-detail-price {
        font-size: 25px;
    }
}
