.sidebar-box {
    background-color: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.sidebar-box h2 {
    color: #111;
    font-weight: 800;
    margin-bottom: 18px;
}

.sidebar-box ul {
    padding-left: 0;
    list-style: none;
}

.sidebar-box ul li {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.sidebar-box ul li a {
    color: #333;
    font-weight: 600;
}

.sidebar-box ul li a:hover {
    color: var(--theme-color);
}

.theme-sidebar {
    background-color: var(--theme-color);
    color: #fff;
}

.theme-sidebar h2 {
    color: #fff;
}

.service-detail-content {
    font-size: 17px;
}

/* WhatsApp booking button on service detail page */
.service-whatsapp-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50rem;
    border: 1px solid #25D366;
    background: #25D366;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-whatsapp-book-btn:hover,
.service-whatsapp-book-btn:focus {
    background: #128C7E;
    border-color: #128C7E;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
