body {
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f7fb;
}

.navbar {
    backdrop-filter: blur(8px);
}

.navbar-brand .logo-icon {
    width: 34px;
    height: 34px;
    background: #0d6efd15;
    color: #0d6efd;
    font-weight: 700;
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    color: #fff;
}

.hero-search input.form-control {
    border-radius: 999px;
    border: none;
    box-shadow: 0 0 0 2px #ffffff40;
}

.hero-search .btn {
    border-radius: 999px;
    padding-inline: 1.8rem;
}

.category-card, .ad-card {
    border-radius: 1.2rem;
    border: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform .15s ease, box-shadow .15s ease;
    background-color: #fff;
}

.category-card:hover,
.ad-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.ad-card img {
    border-radius: 1.2rem 1.2rem 0 0;
    object-fit: cover;
    height: 180px;
}

.badge-soft-primary {
    background-color: #0d6efd15;
    color: #0d6efd;
}

