.barbershop-alert {
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 12px;
}

.barbershop-success {
    background: #e8f5ee;
    color: #145c37;
}

.barbershop-error {
    background: #fdecec;
    color: #8a1f11;
}
.barbershop-list {
    max-width: 1180px;
    margin: 30px auto;
    background: var(--barbershop-bg) !important;
    color: var(--barbershop-text) !important;
    font-family: var(--barbershop-font) !important;
    font-size: var(--barbershop-font-size) !important;
}

.barbershop-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    max-width: 1180px;
    margin: 30px auto;
    background: var(--barbershop-bg) !important;
    color: var(--barbershop-text) !important;
    font-family: var(--barbershop-font) !important;
    font-size: var(--barbershop-font-size) !important;
}

.barbershop-list h1,
.barbershop-list h2,
.barbershop-list h3,
.barbershop-list h4 {
    color: var(--barbershop-text) !important;
    font-family: var(--barbershop-heading-font) !important;
}

.barbershop-list-item,
.barbershop-service,
.barbershop-public-services .barbershop-service-card,
.barbershop-service-card {
    overflow: hidden;
    border-color: var(--barbershop-border) !important;
    border-style: solid;
    border-width: 1px;
    border-radius: 18px;
    background: var(--barbershop-panel) !important;
    color: var(--barbershop-text) !important;
    box-shadow: 0 14px 34px rgba(17, 24, 39, .06);
}

.barbershop-list-item:hover,
.barbershop-service:hover,
.barbershop-public-services .barbershop-service-card:hover,
.barbershop-service-card:hover {
    border-color: var(--barbershop-accent) !important;
    background: var(--barbershop-panel-hover) !important;
    color: var(--barbershop-text) !important;
}

.barbershop-list-item strong {
    color: var(--barbershop-text) !important;
}

.barbershop-service img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.barbershop-service-content,
.barbershop-list-item {
    padding: 16px;
}

.barbershop-list-item img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
}

.barbershop-service-content h3 {
    margin: 4px 0 8px;
    color: var(--barbershop-text) !important;
}

.barbershop-service-content strong,
.barbershop-service-content span {
    display: inline-flex;
    margin-right: 8px;
    color: var(--barbershop-accent) !important;
    font-weight: 900;
}

.barbershop-list-item span,
.barbershop-service-content p,
.barbershop-service-content small,
.barbershop-service-card p,
.barbershop-service-card small {
    color: var(--barbershop-muted) !important;
}

.barbershop-list a,
.barbershop-public-services a {
    color: var(--barbershop-link) !important;
}

.barbershop-list a:hover,
.barbershop-public-services a:hover {
    color: var(--barbershop-link-hover) !important;
}

.barbershop-list button,
.barbershop-public-services button,
.barbershop-service-card button {
    background: var(--barbershop-button) !important;
    color: var(--barbershop-button-text) !important;
    border-color: var(--barbershop-button) !important;
}

.barbershop-list button:hover,
.barbershop-public-services button:hover,
.barbershop-service-card button:hover {
    background: var(--barbershop-button-hover) !important;
    color: var(--barbershop-button-hover-text) !important;
    border-color: var(--barbershop-button-hover) !important;
}

@media (max-width: 640px) {
    .barbershop-list,
    .barbershop-services {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .barbershop-services {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .barbershop-list-item,
    .barbershop-service,
    .barbershop-public-services .barbershop-service-card,
    .barbershop-service-card {
        border-radius: 12px;
    }

    .barbershop-list-item {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
    }

    .barbershop-list-item img {
        width: 72px;
        height: 72px;
    }

    .barbershop-service img {
        height: 150px;
    }
}


