/* General resets & Variables */
:root {
    --bg-base: #06080E;
    --bg-card: rgba(13, 19, 33, 0.7);
    --bg-input: rgba(10, 15, 28, 0.9);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(243, 205, 5, 0.35);
    
    --primary: #F3CD05;
    --primary-hover: #FCE205;
    --primary-glow: rgba(243, 205, 5, 0.2);
    
    --text-main: #F3F4F6;
    --text-muted: #8E9BAE;
    --text-inverse: #080A0F;
    
    --success: #10B981;
    --success-bg: rgba(16, 185, 129, 0.08);
    --error: #EF4444;
    --warning: #F59E0B;
    
    --font-title: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 25px rgba(243, 205, 5, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -120px;
    left: -120px;
}

.glow-2 {
    width: 700px;
    height: 700px;
    background: #FF8A00;
    bottom: -150px;
    right: -100px;
    opacity: 0.08;
}

.glow-3 {
    width: 500px;
    height: 500px;
    background: #00F0FF;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
}

/* App Layout */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.logo-area {
    cursor: pointer;
}

.lemon-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lemon-icon {
    font-size: 26px;
    filter: drop-shadow(0 2px 10px rgba(243, 205, 5, 0.45));
    animation: pulse-logo 3s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--primary);
    font-weight: 500;
}

/* Tab Navigation Header Links */
.header-nav {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.nav-link {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.nav-link i {
    width: 16px;
    height: 16px;
}

.nav-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

.nav-link.active {
    color: var(--text-inverse);
    background: linear-gradient(135deg, var(--primary) 0%, #FFA800 100%);
    box-shadow: 0 4px 12px rgba(243, 205, 5, 0.2);
}

.header-actions {
    display: flex;
    align-items: center;
}

/* View Sections */
.view-section {
    display: none;
}

.view-section.active {
    display: block;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 99px;
    background: rgba(243, 205, 5, 0.08);
    border: 1px solid rgba(243, 205, 5, 0.18);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section h1 {
    font-family: var(--font-title);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Cards (Glassmorphism) */
.card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Creator Form Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 60px;
}

.form-card {
    padding: 32px;
}

.card-title {
    font-family: var(--font-title);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.icon-yellow {
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(243, 205, 5, 0.4));
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: var(--error);
}

input[type="text"],
input[type="number"],
textarea,
select {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(243, 205, 5, 0.12);
}

textarea {
    resize: none;
}

/* Suffix & Action Inputs */
.input-with-suffix,
.input-with-action {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-suffix input {
    padding-right: 70px;
}

.input-suffix {
    position: absolute;
    right: 16px;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
    pointer-events: none;
}

.input-with-action input {
    padding-right: 50px;
}

.input-with-action button {
    position: absolute;
    right: 8px;
    height: 36px;
    width: 36px;
    border-radius: 8px;
}

.input-tip {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #FFA800 100%);
    color: var(--text-inverse);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    filter: brightness(1.05);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-icon-only {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.btn-icon-only:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-sm {
    padding: 9px 16px;
    font-size: 13px;
    border-radius: 10px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    max-width: 520px;
    width: 100%;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.btn-close:hover {
    color: var(--text-main);
}

.modal-body p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.link-output-box {
    display: flex;
    gap: 8px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    padding: 8px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.link-output-box input {
    background: none;
    border: none;
    flex-grow: 1;
    font-family: monospace;
    font-size: 13px;
    color: var(--text-main);
    padding-left: 10px;
    outline: none;
}

.link-output-box button {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 13px;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.info-val {
    font-size: 13px;
    font-weight: 700;
}

.icon-success {
    color: var(--success);
}

/* -------------------------------------------------------------
   DEVELOPER DASHBOARD STATS
   ------------------------------------------------------------- */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrapper i {
    width: 26px;
    height: 26px;
}

.stat-icon-wrapper.yellow {
    background: rgba(243, 205, 5, 0.08);
    border: 1px solid rgba(243, 205, 5, 0.2);
    color: var(--primary);
}

.stat-icon-wrapper.orange {
    background: rgba(255, 138, 0, 0.08);
    border: 1px solid rgba(255, 138, 0, 0.2);
    color: #FF8A00;
}

.stat-icon-wrapper.blue {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #00F0FF;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-value {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-unit {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.stat-sub {
    font-size: 11px;
    color: var(--text-muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 200px;
}

/* Dashboard Manager (Tables & Logs) */
.dashboard-manager-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 60px;
}

.table-card, .log-card {
    padding: 24px;
    min-height: 400px;
}

.table-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.table-header-area h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-count {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text-muted);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.premium-table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.premium-table td {
    padding: 16px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
}

.premium-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.table-empty {
    text-align: center;
    padding: 60px 0 !important;
    color: var(--text-muted);
}

.icon-empty {
    width: 48px;
    height: 48px;
    stroke-width: 1;
    margin-bottom: 12px;
    opacity: 0.5;
}

.table-empty p {
    font-size: 14px;
    max-width: 300px;
    margin: 0 auto;
}

.action-cell-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.action-cell-buttons button,
.action-cell-buttons a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-cell-buttons i {
    width: 14px;
    height: 14px;
}

/* Timeline/Log Card */
.log-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.log-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
}

.log-badge-chain {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.log-icon-check {
    width: 24px;
    height: 24px;
    background: var(--success-bg);
    border: 1px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    flex-shrink: 0;
}

.log-icon-check i {
    width: 12px;
    height: 12px;
}

.log-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.log-product {
    font-size: 13px;
    font-weight: 700;
}

.log-amt {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main);
}

.log-tx-hash {
    font-size: 11px;
    font-family: monospace;
    color: var(--text-muted);
}

.log-empty {
    text-align: center;
    padding: 80px 0;
    color: var(--text-muted);
}

.log-empty p {
    font-size: 13px;
}

/* -------------------------------------------------------------
   BUYER CHECKOUT INTERFACE (PREMIUM UPGRADE)
   ------------------------------------------------------------- */
.checkout-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.checkout-card-premium {
    width: 100%;
    max-width: 480px;
    background: rgba(10, 14, 25, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 4px solid var(--primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(243, 205, 5, 0.05);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.checkout-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lemon-avatar {
    font-size: 26px;
    filter: drop-shadow(0 2px 10px rgba(243, 205, 5, 0.4));
}

.lemon-badge-premium {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.merchant-info-premium {
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.icon-muted-xs {
    width: 11px;
    height: 11px;
}

.network-badge-premium {
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-body-premium {
    padding: 32px 28px;
}

.product-title-premium {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
    word-break: break-all;
}

.product-desc-premium {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 28px;
    min-height: 42px;
    word-break: break-all;
}

/* Price Container Card */
.price-container-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    overflow: hidden;
}

.price-glow-background {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(243, 205, 5, 0.05) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-lbl {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-val-premium {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-main);
}

.price-val-premium .currency {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-left: 2px;
}

/* Steps Premium */
.payment-steps-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.step-card-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.25s ease;
}

.step-card-premium.active {
    border-color: rgba(243, 205, 5, 0.25);
    background: rgba(243, 205, 5, 0.04);
    box-shadow: 0 4px 15px rgba(243, 205, 5, 0.03);
}

.step-card-premium.completed {
    border-color: rgba(16, 185, 129, 0.25);
    background: rgba(16, 185, 129, 0.04);
}

.step-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num-premium {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.step-card-premium.active .step-num-premium {
    background: var(--primary);
    color: var(--text-inverse);
    box-shadow: 0 0 10px rgba(243, 205, 5, 0.6);
}

.step-card-premium.completed .step-num-premium {
    background: var(--success);
    color: var(--text-main);
}

.step-text-group {
    display: flex;
    flex-direction: column;
}

.step-title-premium {
    font-size: 14px;
    font-weight: 700;
}

.step-desc-premium {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 1px;
}

.step-status-premium {
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.step-status-premium .icon-success {
    color: var(--success);
}

.step-status-premium .icon-loading {
    animation: rotate 1.5s linear infinite;
    color: var(--primary);
}

/* Premium Buttons & Glow effects */
.premium-btn {
    border-radius: 14px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.glow-hover:hover {
    box-shadow: 0 0 20px 4px rgba(243, 205, 5, 0.35);
}

.checkout-footer-notes-premium {
    margin-top: 20px;
    text-align: center;
}

.security-lock {
    font-size: 11px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.8;
}

/* -------------------------------------------------------------
   SUCCESS RECEIPT (PREMIUM)
   ------------------------------------------------------------- */
.receipt-card-premium {
    padding: 28px;
    background: rgba(13, 19, 33, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 36px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.receipt-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.receipt-title-premium {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    text-align: center;
}

.receipt-grid-premium {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.receipt-row-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.receipt-label-premium {
    color: var(--text-muted);
}

.receipt-val-premium {
    color: var(--text-main);
    text-align: right;
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.receipt-val-premium.font-mono {
    font-family: monospace;
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 60px;
}

.main-footer p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Animations */
@keyframes pulse-logo {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 2px 10px rgba(243, 205, 5, 0.45)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 4px 18px rgba(243, 205, 5, 0.65)); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-pulse-glow {
    animation: pulse-glow 5s infinite ease-in-out;
}

.animate-bounce-slow {
    animation: bounce-slow 4s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(243, 205, 5, 0.03); }
    50% { box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 50px rgba(243, 205, 5, 0.1); }
}

@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 960px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .dashboard-manager-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sticky-preview {
        position: static;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .app-container {
        padding: 16px 12px;
    }
    
    .main-header {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .header-nav {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section {
        margin-bottom: 32px;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .form-card {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .checkout-card-premium {
        border-radius: 16px;
    }
    
    .checkout-header-premium {
        padding: 16px;
    }
    
    .checkout-body-premium {
        padding: 20px;
    }
}

/* Lemono Brand Logo & Avatar Styling */
.lemon-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(243, 205, 5, 0.4));
    animation: pulse-logo-img 3s ease-in-out infinite;
}

@keyframes pulse-logo-img {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 2px 8px rgba(243, 205, 5, 0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 4px 15px rgba(243, 205, 5, 0.6)); }
}

.lemon-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    filter: drop-shadow(0 2px 8px rgba(243, 205, 5, 0.4));
}



