/* === ZF PRO PREMIUM UI === */

:root {
    --zf-primary: #ff2e88;
    --zf-secondary: #7c3aed;
    --zf-bg: #0f172a;
    --zf-card: #ffffff;
    --zf-text: #0f172a;
    --zf-muted: #6b7280;
}

/* Cards */
.zf-card {
    background: var(--zf-card);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all .2s ease;
}

.zf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Buttons */
.zf-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--zf-primary), var(--zf-secondary));
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}

.zf-btn:hover {
    opacity: 0.9;
}

/* Badges */
.zf-badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.zf-paid {
    background: #dcfce7;
    color: #166534;
}

.zf-unpaid {
    background: #fee2e2;
    color: #991b1b;
}

/* Status */
.zf-status {
    font-weight: 600;
    color: var(--zf-primary);
}

/* Grid */
.zf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 16px;
}

/* Title */
.zf-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* === APPLE LEVEL UI === */

body {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* Glass cards */
.zf-card {
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.75);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all .25s ease;
}

.zf-card:hover {
    transform: translateY(-6px) scale(1.01);
}

/* Gradient glow */
.zf-btn {
    position: relative;
    background: linear-gradient(135deg, #ff2e88, #7c3aed);
    box-shadow: 0 10px 25px rgba(124,58,237,0.4);
}

.zf-btn::after {
    content:'';
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:linear-gradient(135deg,#ff2e88,#7c3aed);
    filter:blur(20px);
    opacity:.5;
    z-index:-1;
}

/* Smooth fade */
.zf-fade {
    animation: fadeIn .4s ease forwards;
}

@keyframes fadeIn {
    from { opacity:0; transform: translateY(10px); }
    to { opacity:1; transform: translateY(0); }
}

/* Status colors */
.zf-status-klaar { color:#16a34a; }
.zf-status-onderzoek { color:#3b82f6; }
.zf-status-reparatie { color:#f59e0b; }

/* Skeleton loader */
.zf-skeleton {
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(90deg,#eee,#ddd,#eee);
    animation: loading 1.2s infinite;
}

@keyframes loading {
    0% { background-position:-200px; }
    100% { background-position:200px; }
}

.zf-intake {max-width:900px;margin:auto;}

.zf-card {
background:#fff;
padding:24px;
border-radius:16px;
margin-bottom:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.zf-card-title {
font-size:18px;
font-weight:700;
margin-bottom:15px;
}

.zf-grid {
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

.zf-input {
width:100%;
padding:12px;
border-radius:10px;
border:1px solid #ddd;
}

.zf-btn {
background:linear-gradient(135deg,#ff00cc,#3333ff);
color:#fff;
padding:14px 20px;
border-radius:30px;
border:none;
cursor:pointer;
font-weight:600;
}

#zf-price-box {
margin-top:15px;
padding:12px;
background:#f8fafc;
border-radius:10px;
}

.zf-track-form input {
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #ddd;
}

.zf-status-box{
  margin-top:15px;
  padding:15px;
  background:#f1f5f9;
  border-radius:10px;
  font-weight:600;
  font-size:16px;
}

.zf-track-wrapper{
  max-width:800px;
  margin:auto;
}

.zf-progress {
    height:8px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden;
    margin:20px 0;
}

.zf-progress-bar {
    height:100%;
    background:linear-gradient(90deg,#06b6d4,#6366f1);
    transition:0.4s;
}

.zf-timeline {
    display:flex;
    justify-content:space-between;
    margin-top:20px;
    flex-wrap:wrap;
}

.zf-step {
    text-align:center;
    flex:1;
    position:relative;
}

.zf-dot {
    width:14px;
    height:14px;
    border-radius:50%;
    background:#cbd5f5;
    margin:0 auto 6px;
}

.zf-step.done .zf-dot {
    background:#22c55e;
}

.zf-step.active .zf-dot {
    background:#6366f1;
    transform:scale(1.3);
}

.zf-step span {
    font-size:12px;
    display:block;
}

.zf-muted {
    color:#6b7280;
}