:root {
    --primary: #A67B5B;
    --secondary: #4A7043;
    --background: #F8F4ED;
    --surface: #FFFFFF;
    --text-primary: #3C2F2F;
    --text-secondary: #6B5E5E;
    --border: #E6D9C8;
}

body {
    background-color: var(--background);
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
}

h1, h2, h3, h4, .header-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* FlutterFlow-like Cards */
.card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: var(--surface);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Buttons */
.btn-wood {
    background-color: var(--secondary);
    color: white;
    border-radius: 16px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1.05rem;
}

.btn-wood:hover {
    background-color: #3d5a36;
    transform: translateY(-2px);
}

/* Forms */
.form-control, .form-select {
    border-radius: 16px;
    padding: 14px 18px;
    border: 2px solid var(--border);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(166, 123, 91, 0.15);
}

/* Progress */
.progress {
    height: 10px;
    border-radius: 9999px;
    background: #e6d9c8;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary), #c9a37f);
}

/* Filter Chips */
.filter-chip {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 9999px;
    white-space: nowrap;
    font-weight: 500;
    cursor: pointer;
}

.filter-chip.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}
/* Role Selector - Maker / Browser */
.role-option {
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
}

.role-option:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(166, 123, 91, 0.15);
}

.role-option.active {
    border-color: var(--primary);
    background: #F8F4ED;
    box-shadow: 0 8px 20px rgba(166, 123, 91, 0.25);
}

.role-option i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.role-option.active i {
    color: var(--primary);
    transform: scale(1.1);
}

.role-option h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.role-option small {
    font-size: 0.85rem;
}
/* Highlight active role more prominently */
.role-option.active::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
/* Mobile Bottom Navigation */
.navbar-light .nav-link {
    color: #3C2F2F !important;
}

.fixed-bottom {
    z-index: 1050;
}