/* ── Global font: Urbanist ── */
*, *::before, *::after {
    font-family: 'Urbanist', system-ui, sans-serif;
}

/* public/assets/css/app.css */
/* Custom styles layered on top of Tailwind */

/* ── Slider ── */
.slider {
    position: relative;
    overflow: hidden;
}
.slide {
    display: none;
}
.slide.active {
    display: block;
    animation: fadeInSlide 0.7s ease;
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Slider dots ── */
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: #fff;
    width: 24px;
}

/* ── Nav links ── */
.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border-radius: 9999px;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
}
.nav-link:hover {
    background: #c4e6ce;
    color: #0f0f0f;
}
.nav-link.nav-active {
    background: #dcfce7;
    color: #15803d;
    font-weight: 600;
}
.mobile-nav-link {
    display: block;
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
    color: #374151;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.15s;
}
.mobile-nav-link:hover {
    background: #f0fdf4;
    color: #15803d;
}

/* ── Form controls ── */
.input {
    display: block;
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    margin-top: 0.25rem;
}
.input:focus {
    border-color: #0ac7db;
    box-shadow: 0 0 0 3px rgba(10,199,219,0.15);
}
.input.error {
    border-color: #ef4444;
}
.label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.badge-green   { background: #dcfce7; color: #15803d; }
.badge-yellow  { background: #fef9c3; color: #854d0e; }
.badge-blue    { background: #dbeafe; color: #1d4ed8; }
.badge-red     { background: #fee2e2; color: #b91c1c; }
.badge-gray    { background: #f3f4f6; color: #374151; }
.badge-purple  { background: #ede9fe; color: #5b21b6; }

/* ── Admin sidebar ── */
.admin-sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.6rem 0.875rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s;
}
.admin-sidebar-link:hover, .admin-sidebar-link.active {
    background: #dcfce7;
    color: #15803d;
}

/* ── Status pills (orders) ── */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: capitalize;
}

/* ── Smooth transitions ── */
* {
    transition-property: color, background-color, border-color, opacity, transform, box-shadow;
    transition-timing-function: ease;
    transition-duration: 0.15s;
}
a, button { transition-duration: 0.1s; }
img { transition-duration: 0.4s; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar        { width: 6px; height: 6px; }
::-webkit-scrollbar-track  { background: #f9fafb; }
::-webkit-scrollbar-thumb  { background: #d1d5db; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

 .bg-brand-600 {
    background-color: #16cee2;
  }