/* ── Breadcrumb ─────────────────────────────────────────────────────── */
.category-breadcrumb {
    padding: 14px 0;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.category-breadcrumb a {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
}

.category-breadcrumb a:hover {
    color: #111;
}

.category-breadcrumb .sep {
    margin: 0 8px;
    font-size: .78rem;
    color: #aaa;
}

.category-breadcrumb .current {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #aaa;
}

/* ── Category Hero ──────────────────────────────────────────────────── */
.category-hero {
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.category-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 48px 0;
}

.category-hero-text {
    flex: 1;
    padding-right: 40px;
}

.category-hero-text .cat-label {
    font-size: .82rem;
    font-weight: 500;
    color: #b5a08a;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.category-hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -.01em;
}

.category-hero-text p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
}

.category-hero-image {
    flex-shrink: 0;
    width: 340px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.category-hero-image img {
    width: 100%;
    max-width: 320px;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(20%) brightness(.92);
}

@media (max-width: 767px) {
    .category-hero-image {
        display: none;
    }

    .category-hero-text {
        padding-right: 0;
    }
}

/* ── Sections ───────────────────────────────────────────────────────── */
.service-section {
    background: transparent !important;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.slider-nav {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #F4F3EF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
}

/* ── Business Card ──────────────────────────────────────────────────── */
.service-widget {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
    transition: transform .2s;
}

.service-widget:hover {
    transform: translateY(-4px);
}

.serv-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.business-address {
    font-size: .82rem;
    color: #666;
    margin: 4px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Default location notice ────────────────────────────────────────── */
.default-location-notice {
    background: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: #666;
    margin-bottom: 24px;
}

.default-location-notice i {
    color: #facc15;
    font-size: 1rem;
}