﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00ff88;
    --primary-dark: #00cc6a;
    --secondary: #ff6b35;
    --bg-dark: #0a0e27;
    --bg-darker: #050810;
    --text-light: #e0e0e0;
    --text-gray: #a0a0a0;
    --border-dark: #1a1f3a;
    --danger: #ff4444;
    --warning: #ffa500;
    --success: #00ff88;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top center, rgba(0, 255, 136, 0.08), transparent 20%), radial-gradient(circle at 80% 20%, rgba(0, 160, 255, 0.05), transparent 15%), linear-gradient(180deg, #02040d 0%, #081024 36%, #05070f 100%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}


/* Navbar */
.navbar {
    background: linear-gradient(135deg, rgba(3, 5, 14, 0.95) 0%, rgba(10, 14, 39, 0.98) 100%);
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
    padding: 0.85rem 0;
    position: sticky;
    top: 0;
    z-index: 2100;
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.12), 0 2px 12px rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    gap: 1rem;
}

.logo {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.25);
    letter-spacing: 0.05em;
}

.logo i {
    font-size: 1.45rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2101;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3.5px;
    background: var(--primary);
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 999px;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.6);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li {
    white-space: nowrap;
}

.nav-right {
    margin-left: auto;
}

.nav-dropdown.nav-right > a {
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
}

.nav-menu a,
.nav-menu button.nav-btn,
.nav-dropdown > a {
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    background: none;
    font: inherit;
}

.nav-menu a.nav-btn,
.nav-menu button.nav-btn,
.nav-dropdown > a.nav-btn {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.25);
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown > a .fas,
.nav-menu a.nav-btn .fas {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-dropdown > a:hover {
    color: var(--bg-darker);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(0, 255, 136, 0.25);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
    white-space: nowrap;
}

.nav-dropdown:hover > a .fas {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.8rem;
    background: rgba(7, 13, 31, 0.98);
    border: 1px solid rgba(0, 255, 136, 0.25);
    border-radius: 14px;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    z-index: 1001;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: var(--text-light);
    white-space: nowrap;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(0, 255, 136, 0.12);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1.35rem;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    display: block;
}

.nav-dropdown .dropdown-menu {
    min-width: 220px;
    left: auto;
    right: 0;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-dropdown-toggle .fas {
    margin-left: 0.15rem;
}

@media (max-width: 960px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 0.75rem;
        min-height: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        gap: 0.35rem;
        padding: 1rem 20px 1.25rem;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
        transition: max-height 0.35s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .nav-menu.active {
        max-height: 640px;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a,
    .nav-dropdown > a {
        width: 100%;
    }

    .nav-menu a,
    .nav-dropdown > a {
        border-radius: 14px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.25rem;
        border: 1px solid rgba(0, 255, 136, 0.15);
        box-shadow: none;
        padding: 0.5rem 0;
    }

    .dropdown-menu a {
        padding-left: 1rem;
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .nav-menu a,
    .nav-dropdown > a {
        padding: 0.75rem 0.85rem;
        font-size: 0.95rem;
    }

    .logo {
        font-size: 1.15rem;
    }
}

.admin-ping {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 6px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 6px rgba(0, 255, 136, 0.7), 0 0 12px rgba(0, 255, 136, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 6px rgba(0, 255, 136, 0.7), 0 0 12px rgba(0, 255, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.9), 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

.admin-notification {
    margin: 1rem 0;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.25);
    color: var(--text-light);
    font-weight: 600;
}

.admin-notification.hidden {
    display: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.nav-menu a:hover::after {
    width: 80%;
}

.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
.section {
    display: none;
    padding: 4rem 0;
    width: 100%;
    scroll-margin-top: 110px;
}

.section.active {
    display: block;
}

/* Login Overlay */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(10, 14, 39, 0.98) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
}

body.modal-open,
html.modal-open {
    overflow: hidden;
    height: 100%;
}

.remember-me-group {
    text-align: left;
    margin: 0.3rem 0;
}

.remember-me {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.remember-me:hover {
    background: rgba(0, 255, 136, 0.08);
    color: var(--text-light);
}

.remember-me input {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
    margin-top: 1px;
}
.login-helper {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}
.login-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.login-container {
    max-width: 320px;
    width: 90%;
    max-height: calc(100vh - 3rem);
    background: rgba(11, 16, 38, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 136, 0.1);
    text-align: center;
    position: relative;
    overflow: auto;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.login-header {
    margin-bottom: 0.8rem;
}

.login-logo {
    width: 55px;
    height: 55px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.login-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.2rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.login-slogan {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.login-form-container {
    margin-bottom: 0.8rem;
}

.login-tabs {
    display: flex;
    margin-bottom: 0.8rem;
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    padding: 3px;
}

.login-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.login-tab.active {
    background: var(--primary);
    color: var(--bg-darker);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.login-form.hidden {
    display: none;
}

.login-form .form-group {
    text-align: left;
}

.login-form input {
    width: 100%;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.login-btn {
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-darker);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.4rem;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.5);
}

.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.3);
}

.dashboard-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.tab-btn {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.3);
    color: #ffffff;
}

.tab-content {
    display: none;
    background: rgba(6, 12, 28, 0.95);
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.tab-content.active {
    display: block;
}

.account-form .form-group {
    margin-bottom: 1rem;
}

.account-form input {
    width: 100%;
    padding: 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.account-form label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--text-gray);
}

.success {
    color: #8feb9e;
    margin-top: 0.75rem;
}

.error {
    color: #ff6b6b;
    margin-top: 0.75rem;
}

.login-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.login-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Login Responsive */
@media (max-width: 480px) {
    .login-overlay {
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1rem 0.3rem 0.3rem;
    }

    .login-container {
        padding: 0.6rem;
        max-width: 95vw;
        margin: 0 auto;
    }

    .login-header {
        margin-bottom: 0.6rem;
    }

    .login-logo {
        width: 45px;
        height: 45px;
        margin-bottom: 0.3rem;
    }

    .login-title {
        font-size: 1.2rem;
        margin-bottom: 0;
        line-height: 1;
        font-weight: 700;
    }

    .login-slogan {
        font-size: 0.65rem;
    }

    .login-form-container {
        margin-bottom: 0.6rem;
    }

    .login-tabs {
        margin-bottom: 0.6rem;
        padding: 2px;
    }

    .login-tab {
        padding: 0.35rem;
        font-size: 0.7rem;
    }

    .login-form {
        gap: 0.4rem;
    }

    .login-form input {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .login-form .form-group {
        margin-bottom: 0.1rem;
    }

    .login-helper {
        font-size: 0.6rem;
        margin-top: 0.1rem;
        line-height: 1.1;
    }

    .remember-me {
        font-size: 0.7rem;
        padding: 0.3rem;
    }

    .remember-me input {
        width: 14px;
        height: 14px;
        min-width: 14px;
    }

    .login-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
        margin-top: 0.2rem;
    }

    .login-footer {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .login-footer p {
        font-size: 0.65rem;
    }

    #loginError,
    #registerError {
        font-size: 0.65rem;
        margin-top: 0.1rem;
        line-height: 1.1;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-darker);
    background-image: radial-gradient(circle at 20% 15%, rgba(0, 255, 136, 0.14), transparent 24%), linear-gradient(rgba(6, 9, 21, 0.94), rgba(6, 9, 21, 0.94)), url("../images/hero-bg.svg");
    background-blend-mode: overlay, normal;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 10%, rgba(0, 255, 136, 0.12) 0%, transparent 42%), radial-gradient(circle at 85% 90%, rgba(0, 120, 255, 0.08) 0%, transparent 34%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-darker);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
}

.donate-link {
    color: var(--secondary);
    font-weight: 700;
}

.donate-link:hover {
    color: #ff8b4d;
}

.donation-tab {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 107, 53, 0.95);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.donation-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
    background: #ff773e;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.7rem 1.5rem;
}

.btn-outline:hover {
    background: rgba(0, 255, 136, 0.1);
}

.full-width {
    width: 100%;
}

.button-flex {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.button-icon {
    margin-right: 0.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-heading {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.section-note {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0.5rem 0 1.5rem;
}

.quote-status-success {
    color: var(--success-color, #1f8a3f);
    font-weight: 600;
}

.quote-status-error {
    color: var(--danger-color, #d9534f);
    font-weight: 600;
}

.quote-payment {
    margin-top: 1rem;
}

.hidden {
    display: none;
}

.map-full {
    width: 100%;
    height: 500px;
}

.ticket-form {
    margin-top: 20px;
}

.pricing-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
}

.tax-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin: 1rem 0;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 6rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    transition: all 0.3s;
}

.stat-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filament-inventory-section {
    padding: 3rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.filament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.filament-card {
    padding: 1.8rem;
    border: 1px solid rgba(0, 255, 136, 0.12);
    border-radius: 20px;
    background: rgba(5, 10, 25, 0.94);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.filament-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 136, 0.22);
}

.filament-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.filament-name {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.filament-card.out-of-stock .filament-name {
    text-decoration: line-through;
    text-decoration-color: #ff5f5f;
}

.filament-badge {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filament-badge.in-stock {
    background: rgba(0, 255, 136, 0.12);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.25);
}

.filament-badge.out-of-stock {
    background: rgba(255, 92, 92, 0.14);
    color: #ff8b5c;
    border: 1px solid rgba(255, 92, 92, 0.25);
}

.filament-description {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.filament-inventory-note {
    margin-top: 1.5rem;
    padding: 1.5rem 1.7rem;
    background: rgba(0, 255, 136, 0.04);
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 136, 0.12);
    color: rgba(255, 255, 255, 0.82);
}

/* How It Works */
.how-it-works {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
    padding: 2rem;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    text-align: center;
    background: rgba(0, 255, 136, 0.03);
    position: relative;
    transition: all 0.3s;
}

.step:hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 15px;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Custom Design Banner */
.custom-design-banner {
    background: rgba(0, 255, 136, 0.08);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    margin: 4rem 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.custom-design-banner i {
    font-size: 3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.custom-design-banner div {
    flex: 1;
}

.custom-design-banner strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.custom-design-banner span {
    color: var(--text-gray);
    display: block;
}

/* File Formats */
.file-formats {
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.file-formats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.format-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.format-tag {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Ready Section */
.ready-section {
    text-align: center;
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ready-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ready-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.ready-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--bg-darker);
    border: 2px solid var(--border-dark);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 3rem;
}

.pricing-duration {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.pricing-features i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.promo-subscription-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}

.promo-subscription-card .promo-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.promo-subscription-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.promo-subscription-card p {
    margin: 10px 0;
    font-size: 16px;
}

.promo-subscription-card .promo-subscription-btn {
    margin-top: 15px;
    background: white;
    color: #667eea;
    border: none;
}

/* Quote Form */
.quote-form {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group select {
    color: var(--text-light);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--text-light) 50%),
                      linear-gradient(135deg, var(--text-light) 50%, transparent 50%);
    background-position: calc(100% - 1rem) center, calc(100% - 0.5rem) center;
    background-size: 0.45rem 0.45rem, 0.45rem 0.45rem;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-darker);
    color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.05);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.form-group small {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.urgency-section {
    margin-top: 2rem;
}

.urgency-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
}

.urgency-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.urgency-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-dark);
    color: var(--text-light);
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.urgency-btn:hover {
    border-color: var(--primary);
}

.urgency-btn.active {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
}

/* Order Form */
.order-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    margin: 3rem 0;
}

.order-left {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    padding: 2rem;
    border-radius: 12px;
}

.order-left h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tier-options {
    display: grid;
    gap: 1rem;
}

.tier-option {
    background: rgba(0, 255, 136, 0.03);
    border: 2px solid var(--border-dark);
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    gap: 1rem;
    position: relative;
}

.tier-option:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.08);
}

.tier-option.selected {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.15);
}

.tier-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.tier-option.selected .tier-check {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-darker);
}

.tier-info h4 {
    margin-bottom: 0.3rem;
}

.tier-price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.tier-info small {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.design-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
}

.design-hours label {
    display: block;
    margin-bottom: 1rem;
}

.hour-control {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hour-btn {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.hour-btn:hover {
    background: rgba(0, 255, 136, 0.2);
}

.hour-control input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    padding: 0.7rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Order Summary */
.order-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    background: rgba(0, 255, 136, 0.03);
    border: 2px solid var(--border-dark);
    padding: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.payment-option:hover {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.08);
}

.payment-option.selected {
    border-color: var(--primary);
    background: rgba(0, 255, 136, 0.15);
}

.payment-option i {
    font-size: 2rem;
    color: var(--primary);
}

.payment-option span {
    font-weight: 600;
    font-size: 1rem;
}

.payment-option small {
    color: var(--text-gray);
    font-size: 0.75rem;
    text-align: center;
}

.payment-section {
    padding: 1rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.02);
}

.cart-summary {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.cart-summary.hidden {
    display: none;
}

.cart-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    padding: 1rem;
    border-radius: 10px;
}

.cart-detail,
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    color: var(--text-gray);
}

.cart-total {
    font-weight: 700;
    color: var(--text-light);
}

.paypal-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.paypal-qr img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    background: white;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-gray);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary);
    font-weight: 900;
    color: var(--primary);
    font-size: 1.2rem;
}

.highlight-price {
    color: var(--primary);
    font-weight: 600;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    padding: 2rem;
    border-radius: 12px;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.map-container {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
}

/* Admin Dashboard */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.admin-stat-card {
    background: var(--bg-darker);
    border: 2px solid var(--border-dark);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.admin-stat-card:hover {
    border-color: var(--primary);
}

.admin-stat-card .stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.admin-stat-card .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    border-bottom: 2px solid var(--border-dark);
}

.admin-tab-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    font-weight: 600;
}

.admin-tab-btn:hover {
    color: var(--primary);
}

.admin-tab-btn.active {
    color: var(--primary);
}

.admin-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.badge {
    background: var(--danger);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-section-title {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.admin-section-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.admin-search {
    position: relative;
    margin-bottom: 2rem;
}

.admin-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.admin-search input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    padding: 0.9rem 0.9rem 0.9rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
}

.admin-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.admin-stock-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.stock-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 255, 136, 0.12);
    background: rgba(6, 12, 30, 0.96);
}

.stock-toggle-row div {
    min-width: 0;
}

.stock-toggle-row strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.stock-toggle-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background: #253047;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.slider::before {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .slider {
    background: linear-gradient(135deg, #00ff88 0%, #00c3ff 100%);
    border-color: rgba(0, 255, 136, 0.45);
}

.toggle-switch input:checked + .slider::before {
    transform: translateX(26px);
}

.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 255, 136, 0.1);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table thead {
    background: rgba(0, 255, 136, 0.1);
    border-bottom: 2px solid var(--border-dark);
}

.admin-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.admin-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.03);
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.paid {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success);
}

.status-badge.accepted {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success);
}

.status-badge.pending {
    background: rgba(255, 165, 0, 0.2);
    color: var(--warning);
}

.status-badge.cancelled {
    background: rgba(255, 68, 68, 0.2);
    color: var(--danger);
}

.status-badge.failed {
    background: rgba(255, 68, 68, 0.2);
    color: var(--danger);
}

.status-badge.shipping-paid {
    background: rgba(0, 123, 255, 0.15);
    color: #0066cc;
}

.admin-action-cell {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.admin-action-btn {
    border: none;
    border-radius: 6px;
    padding: 0.45rem 0.8rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--bg-darker);
}

.admin-action-btn.accept {
    background: #00ff88;
}

.admin-action-btn.pending {
    background: #ffa500;
}

.admin-action-btn.cancel {
    background: #ff4444;
    color: white;
}

.admin-action-btn:hover {
    filter: brightness(0.95);
}

/* Auth Section */
#auth .auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 40px);
    padding: 0;
}

#auth .auth-form {
    position: relative;
    background: rgba(12, 18, 50, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

#auth .auth-form h2 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 2rem;
}

#auth .auth-subtitle {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

#auth .auth-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    font-size: 1rem;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.18);
}

#auth .auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#auth .auth-form input:focus {
    outline: 2px solid rgba(0, 255, 136, 0.6);
    border-color: rgba(0, 255, 136, 0.9);
    background: rgba(255, 255, 255, 0.14);
}

#auth .auth-form button {
    width: 100%;
    padding: 1rem 1.1rem;
    font-size: 1rem;
    border-radius: 14px;
}

#auth .auth-form p {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.close-auth {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    border-radius: 999px;
    cursor: pointer;
}

.close-auth:hover {
    background: rgba(255, 255, 255, 0.16);
}

.auth-form a {
    color: var(--primary);
    cursor: pointer;
    text-decoration: none;
}

.donate-panel {
    background: rgba(6, 12, 28, 0.92);
    color: rgba(255, 255, 255, 0.94);
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 255, 136, 0.18);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.donate-panel-copy {
    font-size: 1rem;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.85);
}

.donate-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00ffa0 0%, #00c3ff 100%);
    border-color: transparent;
    color: #06131c;
    box-shadow: 0 14px 30px rgba(0, 215, 117, 0.25);
}

.donate-panel-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
}

.donate-panel .btn {
    max-width: 260px;
    margin: 1rem auto 0;
}

.subscription-card {
    background: linear-gradient(135deg, rgba(5, 12, 35, 0.96) 0%, rgba(9, 23, 62, 0.96) 100%);
    color: var(--text-light);
    padding: 26px;
    border-radius: 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(0, 255, 136, 0.18);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.21);
}

.subscription-card h4 {
    margin-top: 0;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.subscription-card p {
    font-size: 17px;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.78);
}

.subscription-panel {
    background: rgba(10, 16, 38, 0.88);
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.12);
}

.subscription-toggle-row {
    margin: 18px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.subscription-warning {
    background: rgba(255, 207, 74, 0.12);
    border-left: 4px solid rgba(255, 193, 7, 0.9);
    padding: 16px;
    margin: 18px 0;
    border-radius: 14px;
}

.subscription-warning strong {
    color: #ffdd7a;
}

.subscription-warning p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.subscription-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.error {
    color: var(--danger);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-dark);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-logo {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

    @media (max-width: 900px) {
        .nav-container {
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 10px;
        }

        .nav-menu {
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            padding: 0.75rem 0;
        }

        .nav-menu li {
            flex: 1 1 auto;
            min-width: 130px;
        }

        .nav-menu a {
            font-size: 0.95rem;
            text-align: center;
        }

        .hero {
            min-height: 80vh;
            padding: 3rem 1rem 4rem;
        }

        .hero p,
        .hero-buttons,
        .section-subtitle,
        .ready-section p,
        .file-formats p,
        .pricing-duration,
        .pricing-note,
        .section-note {
            max-width: 100%;
        }

        .hero-buttons,
        .ready-buttons {
            flex-direction: column;
            align-items: center;
        }

        .stats-section,
        .how-it-works,
        .custom-design-banner,
        .file-formats,
        .ready-section,
        .pricing-grid,
        .quote-form,
        .order-form-wrapper,
        .contact-wrapper {
            padding-left: 10px;
            padding-right: 10px;
        }

        .stats-section,
        .how-it-works,
        .custom-design-banner,
        .file-formats,
        .ready-section,
        .quote-form {
            margin-left: auto;
            margin-right: auto;
        }

        .custom-design-banner {
            margin: 2rem 10px;
            gap: 1rem;
        }

        .pricing-card {
            padding: 1.8rem;
        }

        .quote-form {
            padding: 2rem 1rem;
        }

        .form-row,
        .payment-options,
        .urgency-buttons {
            grid-template-columns: 1fr;
        }

        .order-form-wrapper {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .order-left,
        .order-right {
            padding: 1.5rem;
        }

        .order-right {
            position: static;
            top: auto;
        }

        .paypal-qr img {
            width: 100%;
            max-width: 260px;
            height: auto;
        }

        .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .admin-tabs {
            flex-direction: column;
            align-items: stretch;
        }

        .admin-action-cell {
            flex-direction: column;
        }

        .donation-tab {
            right: 0.75rem;
            left: 0.75rem;
            width: auto;
            justify-content: center;
            padding: 0.75rem 1rem;
        }

        .footer-container {
            padding: 0 10px;
        }
    }

    @media (max-width: 600px) {
        .nav-menu {
            gap: 0.35rem;
            justify-content: space-between;
        }

        .nav-menu li {
            flex: 1 1 auto;
            min-width: 95px;
        }

        #accountNav {
            flex: 1 1 100%;
            display: flex;
            justify-content: flex-end;
            padding-right: 0;
        }

        .nav-dropdown.nav-right > a {
            padding: 0.55rem 0.8rem;
            min-width: auto;
        }

        .nav-menu a,
        .nav-menu button.nav-btn,
        .nav-dropdown > a {
            font-size: 0.92rem;
            padding: 0.55rem 0.9rem;
        }

        .hero h1 {
            font-size: clamp(2rem, 10vw, 2.8rem);
        }

        .hero p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .hero-buttons,
        .ready-buttons {
            gap: 0.75rem;
        }

        .custom-design-banner,
        .quote-form,
        .pricing-card,
        .order-left,
        .order-right,
        .contact-item,
        .auth-form {
            padding: 1.3rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            font-size: 0.95rem;
            padding: 0.8rem;
        }

        .summary-item,
        .summary-total {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.4rem;
        }

        .admin-search input {
            font-size: 0.95rem;
        }

        .admin-filters {
            gap: 0.5rem;
        }

        .admin-table th,
        .admin-table td {
            padding: 0.75rem;
            font-size: 0.82rem;
        }

        .footer-container {
            gap: 1rem;
        }
    }

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    color: var(--text-gray);
}

/* Toggle Switch Styles (Right-to-Left) */
.toggle-switch-container {
    display: inline-flex;
    align-items: center;
}

.rtl-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 60px;
    height: 30px;
    background: #ccc;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    outline: none;
}

.rtl-toggle::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rtl-toggle:checked {
    background: var(--primary);
}

.rtl-toggle:checked::before {
    right: 32px;
}

.rtl-toggle:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.toggle-switch-label {
    margin-left: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.subscription-promo {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subscription Status */
.subscription-status-active {
    border-left-color: #00ff88 !important;
    color: #00ff88 !important;
}

.subscription-status-inactive {
    border-left-color: #ff8b5c !important;
    color: #ff8b5c !important;
}

.hidden {
    display: none !important;
}

/* Image Preview */
.image-preview {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.02);
}

.image-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Button Styles */
.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.data-table thead {
    background: rgba(0, 255, 136, 0.1);
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.data-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.03);
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    border-bottom: 2px solid var(--border-dark);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

/* Order cart tab */
.order-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-dark);
}

.order-tab-btn {
    background: none;
    border: none;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.order-tab-btn:hover {
    color: var(--primary);
}

.order-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.order-tab-content {
    display: none;
}

.order-tab-content.active {
    display: block;
}

.tab-content.active {
    display: block;
}

.dashboard-support-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-support-header h3 {
    margin: 0;
}

.support-content-grid {
    display: grid;
    gap: 1.5rem;
}

.ticket-form {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
}

.ticket-form h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.ticket-form input,
.ticket-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    margin-bottom: 1rem;
    outline: none;
}

.ticket-form textarea {
    resize: vertical;
    min-height: 140px;
}

.ticket-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.ticket-form .btn-secondary {
    min-width: 120px;
}

.ticket-form.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .order-form-wrapper {
        grid-template-columns: 1fr;
    }

    .order-right {
        position: static;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .urgency-buttons {
        grid-template-columns: 1fr;
    }

    .tier-options {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-wrap: wrap;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .format-tags {
        gap: 0.5rem;
    }

    .format-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Account Navigation Styles */
.nav-user {
    color: var(--text-light);
    display: inline-block;
    margin-right: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-user:hover {
    color: var(--primary);
}

.link-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.link-btn:hover {
    color: var(--primary);
}

.link-btn:active {
    opacity: 0.8;
}

.qr-fallback {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.qr-fallback.hidden {
    display: none;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    .nav-container {
        position: relative !important;
        height: auto;
        padding: 0.5rem 20px;
    }

    .nav-menu {
        position: absolute !important;
        left: -100% !important;
        top: 100% !important;
        flex-direction: column !important;
        background: rgba(10, 14, 39, 0.99) !important;
        width: 100% !important;
        text-align: center !important;
        transition: left 0.3s !important;
        gap: 0 !important;
        padding: 1.5rem 0 !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5) !important;
        border-bottom: 2px solid var(--primary) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        backdrop-filter: blur(10px) !important;
        z-index: 2099 !important;
        font-size: 0.95rem !important;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-menu li {
        width: 100% !important;
        padding: 0 !important;
    }

    .nav-menu a,
    .nav-dropdown > a {
        display: block !important;
        width: 100% !important;
        padding: 1rem !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1) !important;
    }

    .nav-dropdown {
        width: 100% !important;
    }

    .dropdown-menu {
        position: static !important;
        display: none !important;
        width: 100% !important;
        background: rgba(0, 255, 136, 0.05) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        padding: 0 !important;
        min-width: auto !important;
        animation: none !important;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem !important;
        border-left: none !important;
        border-top: 1px solid rgba(0, 255, 136, 0.1) !important;
        margin-left: 2rem !important;
    }

    .dropdown-menu a:hover {
        padding-left: 1.75rem !important;
    }

    .logo {
        font-size: 1.15rem !important;
    }
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-socials a:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    color: var(--text-gray);
}

/* Toggle Switch Styles (Right-to-Left) */
.toggle-switch-container {
    display: inline-flex;
    align-items: center;
}

.rtl-toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 60px;
    height: 30px;
    background: #ccc;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
    outline: none;
}

.rtl-toggle::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    top: 2px;
    right: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.rtl-toggle:checked {
    background: var(--primary);
}

.rtl-toggle:checked::before {
    right: 32px;
}

.rtl-toggle:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.toggle-switch-label {
    margin-left: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.subscription-promo {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subscription Status */
.subscription-status-active {
    border-left-color: #00ff88 !important;
    color: #00ff88 !important;
}

.subscription-status-inactive {
    border-left-color: #ff8b5c !important;
    color: #ff8b5c !important;
}

.hidden {
    display: none !important;
}

/* Image Preview */
.image-preview {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background: rgba(0, 255, 136, 0.02);
}

.image-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Button Styles */
.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 2rem;
}

.data-table thead {
    background: rgba(0, 255, 136, 0.1);
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.data-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.03);
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    border-bottom: 2px solid var(--border-dark);
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

/* Order cart tab */
.order-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-dark);
}

.order-tab-btn {
    background: none;
    border: none;
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-gray);
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.order-tab-btn:hover {
    color: var(--primary);
}

.order-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.order-tab-content {
    display: none;
}

.order-tab-content.active {
    display: block;
}

.tab-content.active {
    display: block;
}

.dashboard-support-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-support-header h3 {
    margin: 0;
}

.support-content-grid {
    display: grid;
    gap: 1.5rem;
}

.ticket-form {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.18);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background 0.3s ease;
}

.ticket-form h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.ticket-form input,
.ticket-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    margin-bottom: 1rem;
    outline: none;
}

.ticket-form textarea {
    resize: vertical;
    min-height: 140px;
}

.ticket-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.ticket-form .btn-secondary {
    min-width: 120px;
}

.ticket-form.hidden {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .order-form-wrapper {
        grid-template-columns: 1fr;
    }

    .order-right {
        position: static;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats-section {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .urgency-buttons {
        grid-template-columns: 1fr;
    }

    .tier-options {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-wrap: wrap;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .format-tags {
        gap: 0.5rem;
    }

    .format-tag {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Account Navigation Styles */
.nav-user {
    color: var(--text-light);
    display: inline-block;
    margin-right: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-user:hover {
    color: var(--primary);
}

.link-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.link-btn:hover {
    color: var(--primary);
}

.link-btn:active {
    opacity: 0.8;
}

.qr-fallback {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1rem;
}

.qr-fallback.hidden {
    display: none;
}


