/**
 * ToBid Design B: Modern Aurora
 * Clean, Airy Light Theme
 */

:root {
    --bg-aurora: #f8fafc;
    --card-bg: #ffffff;
    --accent-aurora: #0ea5e9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
}

body {
    background-color: var(--bg-aurora);
    color: var(--text-primary);
    background-image: 
        radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.05) 0, transparent 40%), 
        radial-gradient(at 0% 100%, rgba(99, 102, 241, 0.05) 0, transparent 40%);
}

/* Navbar */
nav#tobid-navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0 !important;
}

.nav-brand-text {
    color: #0284c7 !important;
    font-weight: 700;
}

/* Hero */
h1 {
    color: #1e293b !important;
    letter-spacing: -0.05em;
}

/* Search & Categories */
#search {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

#category-nav button {
    background: #fff !important;
    color: var(--text-secondary) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px;
}

#category-nav button:hover {
    border-color: var(--accent-aurora) !important;
    color: var(--accent-aurora) !important;
    background: #f0f9ff !important;
}

#category-nav button.text-white {
    background: var(--accent-aurora) !important;
    color: #fff !important;
    border-color: var(--accent-aurora) !important;
}

/* Catalog Cards */
.miniweb-card {
    background: var(--card-bg) !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
}

.miniweb-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--accent-aurora) !important;
}

.card-title {
    color: #0f172a !important;
}

.card-tag {
    background: #f1f5f9 !important;
    color: #64748b !important;
}

.card-action-btn {
    background: #0ea5e9 !important;
    border-radius: 9999px !important;
}

/* Footer */
footer {
    background: #f1f5f9 !important;
    border-top: 1px solid #e2e8f0 !important;
}

footer a {
    color: #64748b !important;
}

footer a:hover {
    color: #0ea5e9 !important;
}
