/* ============================================
   Outcast Auto Parts - Industrial Automotive Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --primary: #ff6b00;
    --primary-dark: #cc5500;
    --accent: #ffb700;
    --accent-glow: rgba(255, 183, 0, 0.3);
    --danger: #dc2626;
    --success: #16a34a;
    --text: #f0e6d2;
    --text-dim: #8a8a8a;
    --border: #2a2a2a;
    --border-orange: #5a3a1a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 20px rgba(255, 107, 0, 0.2);
    --font-display: 'Oswald', 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Courier New', monospace;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    background-image: 
        radial-gradient(ellipse at top, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 183, 0, 0.04) 0%, transparent 50%);
}

.dashboard-body {
    background-image: 
        radial-gradient(ellipse at top, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 183, 0, 0.06) 0%, transparent 50%);
}

/* Navigation */
.nav {
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.95) 100%);
    border-bottom: 2px solid var(--border-orange);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 10px var(--accent-glow), 0 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-logo span {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
}

.nav-logo span {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 183, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
    box-shadow: 0 0 8px var(--primary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.user-info {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.user-info strong {
    color: var(--primary);
}

/* Hero */
.hero {
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.03">🔧</text></svg>');
    background-size: cover;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--border-orange);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    text-shadow: 
        0 0 20px var(--accent-glow),
        0 4px 8px rgba(0,0,0,0.8),
        0 0 40px rgba(255, 107, 0, 0.2);
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.hero-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.95) 100%);
    border-bottom: 2px solid var(--border-orange);
    padding: 2rem 0;
}

.dashboard-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.dashboard-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.dashboard-header p {
    color: var(--text-dim);
    margin-top: 0.25rem;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

/* Dashboard Stats */
.dashboard-stats {
    padding: 2rem 0;
}

.dashboard-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.dashboard-stats .stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.dashboard-stats .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-info h3 {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Sections */
.dashboard-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    color: var(--text-dim);
    margin-top: 0.25rem;
}

.section-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: 1px solid var(--primary-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #994000 100%);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.5);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

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

/* Search Box */
.search-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-orange);
}

.search-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.search-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dim);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.search-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.5);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group select,
.form-group input {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    background: var(--bg-dark);
    color: var(--text);
    transition: all 0.2s;
    font-family: var(--font-body);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Parts Grid */
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.part-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.part-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.part-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.part-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.part-card-vehicle {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.part-card-condition {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.part-card-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
    text-shadow: 0 0 8px var(--accent-glow);
}

.part-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.part-card-shipping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Info Section */
.info-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.95) 100%);
    border-top: 1px solid var(--border);
}

.info-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Section Titles */
.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.98) 100%);
    border-top: 2px solid var(--border-orange);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: var(--text-dim);
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* Search Section */
.search-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.95) 100%);
    border-bottom: 1px solid var(--border);
}

.search-section .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Categories Section */
.categories-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

/* Featured Section */
.featured-section {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

/* Filter Select */
.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-dark);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font-body);
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

/* Search Input */
.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-dark);
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font-body);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

.search-input::placeholder {
    color: var(--text-dim);
}

.search-form-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* eBay Results */
.ebay-results {
    margin-top: 2rem;
}

.ebay-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.ebay-summary p {
    color: var(--text-dim);
    text-align: center;
}

.ebay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.ebay-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.ebay-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.ebay-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.ebay-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.ebay-card-vehicle {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.ebay-card-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success);
    text-shadow: 0 0 8px rgba(22, 163, 74, 0.3);
}

.ebay-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-dim);
}

.ebay-profit {
    font-weight: 700;
    color: var(--success);
}

.ebay-profit.low {
    color: var(--danger);
}

/* Arrivals Grid */
.arrivals-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1024px) {
    .arrivals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .arrivals-grid {
        grid-template-columns: 1fr;
    }
}

.arrival-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.arrival-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.arrival-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.arrival-yard {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.arrival-vehicle {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.arrival-date {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.arrival-parts {
    list-style: none;
    margin-bottom: 1rem;
}

.arrival-parts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.arrival-parts li:last-child {
    border-bottom: none;
}

/* Yard Quick Links */
.yard-quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.yard-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.yard-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.yard-preview-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-orange);
}

.yard-link-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    padding: 1rem 1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.yard-link-card p {
    font-size: 0.85rem;
    color: var(--text-dim);
    padding: 0 1rem 1rem;
    margin: 0;
}

.yard-link-card .local-badge {
    display: block;
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid var(--border);
}

.yard-preview-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-orange);
    background: var(--bg-dark);
}

.yard-link-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Large Arrival Cards */
.arrivals-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .arrivals-grid-large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .arrivals-grid-large {
        grid-template-columns: 1fr;
    }
}

.arrival-card-large {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.arrival-card-large:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.arrival-yard-header {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    align-items: flex-start;
}

.arrival-yard-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--border-orange);
    flex-shrink: 0;
}

.arrival-yard-info {
    flex: 1;
}

.arrival-yard-fee {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.25rem;
}

.arrival-part-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--success);
    font-size: 0.8rem;
}

.arrival-profit-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin: 0.75rem 0;
}

.arrival-profit-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.arrival-profit-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--success);
    text-shadow: 0 0 8px rgba(22, 163, 74, 0.3);
}

.arrival-actions {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.arrival-actions .btn {
    flex: 1 1 100%;
    padding: 0.5rem;
    font-size: 0.8rem;
    text-align: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .arrival-actions .btn {
        flex: 1 1 auto;
    }
}

/* Listings Table */
.listings-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

.listings-table {
    width: 100%;
    border-collapse: collapse;
}

.listings-table th,
.listings-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.listings-table th {
    background: rgba(255, 107, 0, 0.05);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.listings-table td {
    font-size: 0.9rem;
    color: var(--text);
}

.listings-table tr:hover td {
    background: rgba(255, 107, 0, 0.02);
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-active {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.status-sold {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.status-pending {
    background: rgba(255, 183, 0, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 183, 0, 0.3);
}

/* Freight Placeholder */
.freight-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-orange);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.freight-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.freight-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.freight-placeholder p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.freight-features {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin-bottom: 2rem;
}

.freight-features li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.95rem;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}

.badge-coming-soon {
    background: rgba(255, 183, 0, 0.1);
    color: var(--accent);
    border: 1px solid rgba(255, 183, 0, 0.3);
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--border-orange);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-orange);
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body .form-group {
    margin-bottom: 1.5rem;
}

.modal-body label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body input,
.modal-body select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-dark);
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font-body);
}

.modal-body input:focus,
.modal-body select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* Login Screen */
.login-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at top, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 183, 0, 0.05) 0%, transparent 50%),
        var(--bg-dark);
    padding: 2rem;
}

.login-card {
    background: var(--bg-card);
    border: 2px solid var(--border-orange);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 
        0 0 40px rgba(255, 107, 0, 0.2),
        var(--shadow);
    text-align: center;
}

.login-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.login-card h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.login-card .form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.login-card label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-card input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-dark);
    color: var(--text);
    font-size: 1rem;
    font-family: var(--font-body);
}

.login-card input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 107, 0, 0.3);
}

.login-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.login-error {
    color: var(--danger);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #994000 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .dashboard-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-form-row {
        flex-direction: column;
    }
    
    .search-form-row .filter-select,
    .search-form-row .btn {
        width: 100%;
    }
}

/* Analytics Section */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.analytics-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.analytics-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chart-container {
    position: relative;
    height: 250px;
}

/* Compatibility Section */
.compat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.compat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.compat-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.compat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.compat-part-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.compat-models {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.compat-fit-count {
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.compat-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.compat-price-block {
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem;
    text-align: center;
}

.compat-price-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.compat-price-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.compat-price-value.profit {
    color: var(--success);
}

.compat-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.compat-actions .btn {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.85rem;
}

/* Enhanced arrivals */
.arrival-parts li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.arrival-parts li:last-child {
    border-bottom: none;
}

.arrival-part-name {
    flex: 1;
}

.arrival-part-badge {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.3);
}

.arrival-part-badge.freight {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

/* Checkout */
.checkout-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checkout-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.checkout-subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkout-card {
    background: var(--bg-card);
    border: 1px solid var(--border-orange);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.checkout-card h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.checkout-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.empty-cart {
    color: var(--text-dim);
    text-align: center;
    padding: 2rem;
}

.empty-cart a {
    color: var(--primary);
    text-decoration: none;
}

.empty-cart a:hover {
    text-decoration: underline;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.cart-item-vehicle {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.25rem;
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.qty-value {
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.remove-btn:hover {
    text-decoration: underline;
}

.cart-item-total {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    min-width: 80px;
    text-align: right;
}

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

#card-element {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-dark);
    margin-bottom: 1rem;
}

#payment-errors {
    color: var(--danger);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 0.5rem;
}

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

.secure-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-top: 1rem;
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.summary-card {
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.summary-row.savings {
    color: var(--success);
    font-weight: 600;
}

.summary-row.total {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    border-bottom: none;
    padding-top: 1rem;
}

.savings-badge {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--success);
}

.trust-card {
    background: rgba(22, 163, 74, 0.05);
    border-color: rgba(22, 163, 74, 0.3);
}

.trust-card ul {
    list-style: none;
    padding: 0;
}

.trust-card li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-dim);
    margin-bottom: 0.5rem;
}

.success-message .btn {
    margin-top: 1.5rem;
}

/* Cart Badge */
.cart-badge {
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    margin-left: 0.5rem;
    display: none;
}

.cart-link {
    position: relative;
}

/* Part Card - Order Direct */
.part-card-retail {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: line-through;
    margin-top: 0.25rem;
}

.part-card-savings {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 700;
    margin-top: 0.25rem;
}

.order-direct-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Notification Subscribe */
.notification-subscribe {
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.notification-subscribe input {
    flex: 1;
}

/* Local Delivery Option */
.local-delivery-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.local-delivery-option:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.08);
}

.local-delivery-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.local-delivery-info {
    flex: 1;
}

.local-delivery-info strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.local-delivery-info span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.local-delivery-details {
    display: none;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-top: 1rem;
}

.local-delivery-details.active {
    display: block;
}

/* Checkout Shipping Selection */
.shipping-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--border-orange);
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.shipping-option:hover {
    border-color: var(--primary);
}

.shipping-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.shipping-option-info {
    flex: 1;
}

.shipping-option-info strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.shipping-option-info span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.shipping-option-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent);
}

/* Part Card Local Delivery Badge */
.part-card-local-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--success);
    border: 1px solid rgba(22, 163, 74, 0.3);
    margin-top: 0.5rem;
}

/* Landing Page */
.landing-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at top, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(255, 183, 0, 0.05) 0%, transparent 50%),
        var(--bg-dark);
    padding: 2rem;
}

.landing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-orange);
    border-radius: 16px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 520px;
    width: 100%;
    box-shadow: 
        0 0 40px rgba(255, 107, 0, 0.15),
        var(--shadow);
}

.landing-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 16px var(--accent-glow));
}

.landing-card h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--accent-glow);
}

.landing-subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.landing-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.landing-note {
    color: var(--text-dim);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Auth Toggle */
.auth-toggle {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.auth-toggle a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-toggle a:hover {
    text-decoration: underline;
}
