/* ========================================
   BIZNES APP
   ======================================== */

.add-biznes-btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: #1e293b;
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.15);
    transition: all 0.3s;
}

.add-biznes-btn:active {
    transform: scale(0.98);
}

.empty-state-biznes {
    background: white;
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.biz-illustration {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state-biznes h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.empty-state-biznes p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.biz-form {
    text-align: left;
}

/* Dashboard UI */
.biz-profile-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 24px 20px;
    border-radius: 0 0 24px 24px;
    margin-bottom: 20px;
}

.biz-profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.biz-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
}

.biz-info {
    flex: 1;
}

.biz-info h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.biz-info p {
    font-size: 0.85rem;
    color: #94a3b8;
}

.biz-edit-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bz-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bz-stat span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.bz-stat h4 {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Tabs */
.biz-tabs {
    display: flex;
    background: white;
    padding: 5px;
    border-radius: 16px;
    margin: 0 20px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.bz-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 0;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    position: relative;
    cursor: pointer;
    transition: all 0.2s;
}

.bz-tab.active {
    background: #f1f5f9;
    color: #1e293b;
}

.badge {
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px;
}

.bz-content-area {
    padding: 0 20px;
}

.bz-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.bz-card h4 {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 700;
}

/* Toggle switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #10b981;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.empty-orders {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    color: #94a3b8;
}

.empty-orders span {
    font-size: 3rem;
    display: block;
    margin-bottom: 10px;
    opacity: 0.5;
}