.profile-page {
    padding: 24px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(124, 16, 41, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.salon-profile-page {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22%),
        linear-gradient(180deg, #f7f8fb 0%, #edf1f7 100%);
}

.profile-back-link--dark {
    margin-bottom: 18px;
    color: #475569;
}

.user-profile-page {
    background:
        radial-gradient(circle at top left, rgba(124, 16, 41, 0.08), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, #edf2f8 100%);
}

.user-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 20px;
    margin-bottom: 22px;
}

.user-showcase__identity,
.user-showcase__actions {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e2e8f0;
}

.user-showcase__identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user-showcase__avatar {
    width: 108px;
    height: 108px;
    border-radius: 28px;
    overflow: hidden;
    flex: 0 0 108px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 16, 41, 0.9), rgba(59, 130, 246, 0.9));
    color: #fff;
    font-size: 36px;
    font-weight: 500;
}

.user-showcase__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-showcase__chip {
    background: rgba(124, 16, 41, 0.08);
    color: #7c1029;
}

.user-showcase__copy h1 {
    margin: 10px 0 8px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.user-showcase__copy p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

.user-showcase__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.user-showcase__stats span {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.user-showcase__stats strong {
    color: #0f172a;
}

.user-showcase__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.user-showcase__action {
    min-height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.user-showcase__action--phone {
    background: #f0fdf4;
    border: 1px solid #22c55e;
    color: #166534;
}

.user-showcase__action--mail {
    background: #eff6ff;
    border: 1px solid #93c5fd;
    color: #1d4ed8;
}

.user-showcase__action--follow {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    cursor: pointer;
}

.user-showcase__action--follow.is-active {
    background: #dbeafe;
    border-color: #60a5fa;
    color: #1d4ed8;
}

.user-showcase__info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.user-showcase__info {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.user-showcase__info small,
.user-showcase__info strong {
    display: block;
}

.user-showcase__info small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.user-showcase__info strong {
    margin-top: 8px;
    color: #0f172a;
    font-size: 16px;
}

.user-profile-card {
    margin-bottom: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.user-profile-card__head {
    padding: 16px;
}

.user-profile-card__identity {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-profile-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    overflow: hidden;
    flex: 0 0 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 28px;
    font-weight: 500;
}

.user-profile-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-profile-card__copy {
    min-width: 0;
}

.user-profile-card__title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.user-profile-card__title-row h1 {
    margin: 0;
    color: #0f172a;
    font-size: 18px;
    font-weight: 500;
}

.user-profile-card__copy strong {
    display: block;
    margin-top: 10px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.user-profile-card__follow {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #16a34a;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.user-profile-card__follow.is-active {
    background: #dcfce7;
    border-color: #22c55e;
}

.user-profile-card__meta {
    padding: 14px 16px 16px;
    border-top: 1px solid #e8edf3;
}

.user-profile-card__meta span {
    color: #475569;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.user-profile-listing-card {
    border-radius: 24px;
}

.user-profile-listing-grid {
    align-items: start;
}

.profile-card__head--center {
    justify-content: center;
}

.profile-card__head--center h2 {
    text-align: center;
}

.salon-showcase {
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background: #fff;
    border: 1px solid #e7edf5;
}

.salon-showcase__cover {
    position: relative;
    min-height: 320px;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(15, 23, 42, 0.08)),
        var(--salon-cover, linear-gradient(135deg, #0f172a, #1f2937));
    background-size: cover;
    background-position: center;
}

.salon-showcase__cover-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)),
        radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 35%);
}

.salon-showcase__panel {
    margin-top: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.salon-showcase__card {
    background: transparent;
    border-radius: 0;
}

.salon-showcase__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 28px;
    padding: 0 22px 16px;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
}

.salon-showcase__identity {
    padding: 0;
}

.salon-showcase__brand {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 0;
}

.salon-showcase__logo {
    width: 138px;
    height: 138px;
    border-radius: 26px;
    overflow: hidden;
    flex: 0 0 138px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #ef2f36;
    font-size: 42px;
    font-weight: 500;
    border: 2px solid #fff;
    margin-top: -77px;
}

.salon-showcase__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-showcase__copy {
    min-width: 0;
    padding-top: 0px;
}

.salon-showcase__headline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salon-showcase__headline h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.salon-showcase__headline i {
    color: #3b82f6;
    font-size: 22px;
}

.salon-showcase__chips {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.salon-showcase__chip {
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #dbe4ef;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.salon-showcase__chip--soft {
    background: #f8fbff;
    color: #3b82f6;
}

.salon-showcase__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
}

.salon-showcase__stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.salon-showcase__stats span + span::before {
    content: "•";
    color: #cbd5e1;
    margin-right: 4px;
}

.salon-showcase__stats strong {
    color: #0f172a;
}

.salon-showcase__stats-grid {
    display: none;
    margin-top: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
}

.salon-showcase__stat-card {
    min-height: 74px;
    padding: 12px 10px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.salon-showcase__stat-card + .salon-showcase__stat-card {
    border-left: 1px solid #e2e8f0;
}

.salon-showcase__stat-card strong {
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
}

.salon-showcase__stat-card span {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.salon-showcase__actions {
    padding: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    align-self: center;
}

.salon-showcase__action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.salon-showcase__action,
.salon-showcase__phone-link {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.salon-showcase__action {
    border: 1px solid #dce4ee;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
}

.salon-showcase__action--phone {
    border-color: #22c55e;
    background: #fff;
    color: #15803d;
}

.salon-showcase__action--follow {
    background: #dbeafe;
    border-color: #bfd4fb;
    color: #2563eb;
}

.salon-showcase__action--follow.is-active {
    background: #bfdbfe;
    border-color: #60a5fa;
    color: #1d4ed8;
}

.salon-showcase__action--phone.is-revealed {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

.salon-showcase__body {
    padding: 18px 22px 24px;
}

.salon-showcase__intro {
    padding: 0 0 18px;
    border-bottom: 1px solid #edf2f7;
}

.salon-showcase__intro p {
    margin: 0;
    color: #334155;
    font-size: 17px;
    line-height: 1.6;
}

.salon-showcase__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
    color: #334155;
    font-size: 15px;
    font-weight: 500;
}

.salon-showcase__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.salon-showcase__meta i {
    color: #f97316;
}

.salon-showcase__owner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    text-decoration: none;
}

.salon-showcase__owner-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 16, 41, 0.14);
    color: var(--accent);
    font-weight: 500;
}

.salon-showcase__owner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salon-showcase__owner strong,
.salon-showcase__owner small {
    display: block;
}

.salon-showcase__owner small {
    margin-top: 4px;
    color: #64748b;
}

.salon-showcase__gallery-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 180px);
    gap: 12px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
}

.salon-showcase__gallery-item {
    min-height: 132px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    display: block;
    scroll-snap-align: start;
}

.salon-showcase__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.salon-showcase__listing-card {
    margin-top: 22px;
}

.salon-showcase__hours {
    border: 1px solid #dbe3ec;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.salon-showcase__hours-summary {
    list-style: none;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.salon-showcase__hours-summary::-webkit-details-marker {
    display: none;
}

.salon-showcase__hours-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #eff6ff;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.salon-showcase__hours-copy small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.salon-showcase__hours-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.salon-showcase__hours-copy strong {
    color: #16a34a;
    font-size: 16px;
    font-style: normal;
}

.salon-showcase__hours-copy strong.is-closed {
    color: #ef4444;
}

.salon-showcase__hours-copy em {
    color: #0f172a;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
}

.salon-showcase__hours-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #ef4444;
    flex: 0 0 8px;
}

.salon-showcase__hours-dot.is-closed {
    background: #ef4444;
}

.salon-showcase__hours:not([open]) .salon-showcase__hours-dot:not(.is-closed) {
    background: #22c55e;
}

.salon-showcase__hours-arrow {
    color: #64748b;
    transition: transform 0.18s ease;
}

.salon-showcase__hours[open] .salon-showcase__hours-arrow {
    transform: rotate(180deg);
}

.salon-showcase__hours-list {
    padding: 0 14px 12px;
    border-top: 1px solid #edf2f7;
}

.salon-showcase__hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 14px;
}

.salon-showcase__hours-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.salon-showcase__hours-row.is-today strong {
    color: #2563eb;
}

.salon-showcase__hours-row strong {
    color: #0f172a;
}
.profile-hero,
.salon-index-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(124, 16, 41, 0.94), rgba(17, 24, 39, 0.92));
    background-size: cover;
    background-position: center;
}
.profile-hero.has-cover {
    background-image:
        linear-gradient(135deg, rgba(24, 16, 34, 0.38), rgba(17, 24, 39, 0.68)),
        var(--profile-cover);
}
.profile-hero.no-cover {
    background-image: linear-gradient(135deg, rgba(124, 16, 41, 0.94), rgba(17, 24, 39, 0.92));
}
.profile-hero {
    min-height: 280px;
    margin-bottom: 24px;
}
.profile-hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.05), transparent 35%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%);
}
.profile-hero__content,
.salon-index-hero {
    position: relative;
    z-index: 1;
}
.profile-hero__content {
    padding: 28px;
}
.profile-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgb(64, 33, 107);
    text-decoration: none;
    font-weight: 500;
}
.profile-hero__head {
    display: flex;
    align-items: flex-end;
    gap: 18px;
}
.profile-avatar {
    width: 110px;
    height: 110px;
    border-radius: 30px;
    overflow: hidden;
    flex: 0 0 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 38px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.24);
}
.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.profile-hero__copy h1,
.salon-index-hero h1 {
    margin: 10px 0 8px;
    color: #fff;
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}
.profile-hero__copy p,
.salon-index-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.6;
}
.profile-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.profile-meta-row span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}
.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 20px;
}
.profile-main,
.profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.profile-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #e2e8f0;
}
.profile-card h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 20px;
}
.profile-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}
.profile-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.profile-gallery__item {
    min-height: 150px;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.profile-gallery__item.is-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 312px;
}
.profile-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.profile-card__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}
.profile-card__head span {
    color: #64748b;
    font-weight: 500;
}
.profile-card .product-grid > .empty-state,
.salon-list-grid > .empty-state {
    grid-column: 1 / -1;
}
.profile-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-hours {
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    background: #fbfdff;
    overflow: hidden;
}
.profile-hours__summary {
    list-style: none;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}
.profile-hours__summary::-webkit-details-marker {
    display: none;
}
.profile-hours__summary-copy small {
    display: block;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.profile-hours__summary-copy strong {
    display: block;
    margin-top: 6px;
    color: #16a34a;
    font-size: 16px;
}
.profile-hours:not([open]) .profile-hours__summary-copy strong {
    color: #0f172a;
}
.profile-hours__summary i {
    color: #64748b;
    transition: transform 0.18s ease;
}
.profile-hours[open] .profile-hours__summary i {
    transform: rotate(180deg);
}
.profile-hours__list {
    padding: 0 16px 14px;
    border-top: 1px solid #e2e8f0;
}
.profile-hours__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 14px;
    color: #475569;
}
.profile-hours__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.profile-hours__row strong {
    color: #0f172a;
}
.profile-contact-item,
.profile-owner-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    text-decoration: none;
}
.profile-owner-link__avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 16, 41, 0.14);
    color: var(--accent);
    font-weight: 500;
}
.profile-owner-link__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-owner-link strong {
    display: block;
    font-size: 15px;
}
.profile-owner-link small {
    color: #64748b;
    font-size: 12px;
}
.salon-index-hero {
    margin-bottom: 24px;
    padding: 30px;
}

.storefront-page {
    padding: 58px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 20%),
        linear-gradient(180deg, #f7f7f8 0%, #eef2f7 100%);
}

.storefront-shell {
    max-width: 1440px;
}

.storefront-head {
    margin-bottom: 8px;
}

.storefront-head h1 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.storefront-head p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 13px;
}

.dealer-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}

.dealer-type-tab {
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #edf1f5;
    color: #334155;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.dealer-type-tab.is-active {
    background: linear-gradient(135deg, #7c1029, #b91c3c);
    border-color: transparent;
    color: #fff;
}

.dealer-filter-card {
    margin-bottom: 18px;
    padding: 14px;
    position: relative;
    z-index: 20;
    overflow: visible;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
    border: 1px solid rgba(226, 232, 240, 0.96);
    backdrop-filter: blur(12px);
}

.dealer-filter-card__head,
.dealer-filter-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.dealer-filter-card__copy span,
.dealer-filter-card__copy strong {
    display: block;
}

.dealer-filter-card__copy span {
    color: #7c1029;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dealer-filter-card__copy strong {
    margin-top: 4px;
    color: #0f172a;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.dealer-filter-reset {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dbe5ef;
    color: #475569;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dealer-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(180px, 220px) 132px;
    gap: 10px;
    align-items: end;
    margin: 12px 0 10px;
}

.dealer-field-label,
.dealer-filter-card__footer-label {
    color: #64748b;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dealer-search {
    display: grid;
    gap: 6px;
}

.dealer-select,
.dealer-toolbar__actions {
    min-width: 0;
}

.dealer-select {
    position: relative;
    z-index: 25;
}

.dealer-search__box,
.dealer-select__box {
    min-height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(203, 213, 225, 0.72);
    transition: border-color .18s ease;
}

.dealer-search__box {
    padding: 0 14px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.dealer-search:focus-within .dealer-search__box,
.dealer-select:focus-within .dealer-select__box,
.dealer-search__box:hover,
.dealer-select__box:hover {
    border-color: rgba(96, 165, 250, 0.65);
}

.dealer-search i {
    color: #6b7280;
    font-size: 16px;
}

.dealer-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.dealer-search input::placeholder {
    color: #94a3b8;
}

.dealer-select {
    display: grid;
    gap: 6px;
}

.dealer-select__box {
    position: relative;
    padding: 0 38px 0 14px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dealer-multiselect {
    position: relative;
    display: block;
}

.dealer-multiselect[open] {
    z-index: 60;
}

.dealer-multiselect summary {
    list-style: none;
}

.dealer-multiselect summary::-webkit-details-marker {
    display: none;
}

.dealer-multiselect__value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.dealer-multiselect__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 70;
    max-height: 240px;
    overflow-y: auto;
    padding: 8px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(203, 213, 225, 0.9);
}

.dealer-multiselect__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 12px;
    cursor: pointer;
}

.dealer-multiselect__option:hover {
    background: #f8fafc;
}

.dealer-multiselect__option input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #7c1029;
}

.dealer-multiselect__option span {
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
}

.dealer-select select {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    appearance: none;
}

.dealer-select i {
    position: absolute;
    right: 14px;
    top: 50%;
    color: #64748b;
    font-size: 14px;
    transform: translateY(-50%);
    pointer-events: none;
}

.dealer-toolbar__actions {
    display: flex;
    align-items: flex-end;
    align-self: end;
}

.dealer-filter-submit {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #22c55e, #0ea5a4);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.dealer-sort-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.dealer-sort-pill {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #475569;
    font: inherit;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.dealer-sort-pill.is-active {
    background: linear-gradient(135deg, #0f172a, #334155);
    border-color: transparent;
    color: #fff;
}

.storefront-hero {
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e6edf5;
}

.storefront-hero__copy h2 {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.storefront-hero__copy p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 16px;
}

.storefront-search {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 12px 0 14px;
    border-radius: 18px;
    border: 1px solid #dbe5ef;
    background: #fbfdff;
}

.storefront-search i {
    color: #7c95b5;
    font-size: 22px;
}

.storefront-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #0f172a;
    font-size: 17px;
}

.storefront-search input::placeholder {
    color: #8ca0b8;
}

.storefront-search button {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #22c55e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.storefront-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 20px;
}

.storefront-filter {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.storefront-filter.is-active {
    background: linear-gradient(135deg, #27c383, #18b978);
    border-color: transparent;
    color: #fff;
}

.storefront-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dealer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #dfe7f0;
}

.store-card__cover {
    position: relative;
    display: block;
    min-height: 148px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.84), rgba(17, 24, 39, 0.72)),
        linear-gradient(120deg, #5b7fff, #38bdf8);
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.store-card__cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.28));
}

.store-card__cover-badge {
    position: absolute;
    top: 12px;
    z-index: 1;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.store-card__cover-badge {
    left: 12px;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #166534;
}

.store-card__cover-badge.is-closed {
    color: #b91c1c;
}

.store-card__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    flex: 0 0 8px;
}

.store-card__status-dot.is-closed {
    background: #ef4444;
}

.store-card__body {
    padding: 0 14px 14px;
}

.dealer-card__title-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dealer-card__type {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

.store-card__head {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    min-height: 78px;
    margin-top: -21px;
}

.store-card__logo {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    overflow: hidden;
    flex: 0 0 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 4px solid #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 26px;
    font-weight: 500;
    z-index: 1;
}

.store-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-card__title {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

.store-card__title i {
    color: #38bdf8;
    font-size: 18px;
}

.store-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.store-card__meta span {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #dde6f0;
    background: #f8fbff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4f6b8c;
    font-size: 13px;
    font-weight: 500;
}

.store-card__meta i {
    font-size: 14px;
}

.store-card p {
    min-height: 42px;
    margin: 14px 0 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.store-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 112px) 48px;
    gap: 10px;
    margin-top: 16px;
}

.store-card__primary,
.store-card__follow,
.store-card__call {
    min-height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.store-card__primary {
    background: linear-gradient(135deg, #29c97d, #18b6b4);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.store-card__follow {
    border: 1px solid #dbe4ef;
    background: #fff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.store-card__follow.is-active {
    border-color: #bfdbfe;
    background: #eff6ff;
    color: #1d4ed8;
}

.store-card__call {
    background: #f8fbff;
    border: 1px solid #dfe7f0;
    color: #86efac;
    font-size: 21px;
}

.store-card__call.is-disabled {
    color: #cbd5e1;
}

.storefront-empty-state {
    grid-column: 1 / -1;
}

@media (max-width: 1200px) {
    .dealer-toolbar {
        grid-template-columns: minmax(0, 1fr);
    }

    .dealer-filter-card__head,
    .dealer-filter-card__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .dealer-toolbar__actions {
        align-items: stretch;
    }

    .dealer-sort-pills {
        justify-content: flex-start;
    }

    .dealer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .dealer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dealer-type-tab {
        min-height: 34px;
        padding: 0 12px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .dealer-filter-card {
        padding: 12px;
        border-radius: 18px;
    }

    .dealer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .dealer-search__box,
    .dealer-select__box,
    .dealer-filter-submit {
        min-height: 44px;
    }

    .dealer-search input {
        font-size: 13px;
    }

    .dealer-sort-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}
.salon-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.salon-list-card {
    overflow: hidden;
    border-radius: 26px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.salon-list-card__cover {
    display: block;
    height: 110px;
    background:
        linear-gradient(135deg, rgba(124, 16, 41, 0.94), rgba(17, 24, 39, 0.92));
    background-size: cover;
    background-position: center;
}
.salon-list-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
}
.salon-list-card__avatar {
    width: 62px;
    height: 62px;
    margin-top: -48px;
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--accent);
    font-size: 24px;
    font-weight: 500;
    border: 4px solid #fff;
}
.salon-list-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.salon-list-card__body strong {
    font-size: 18px;
    color: #111827;
}
.salon-list-card__body > span {
    color: #64748b;
}
.salon-list-card__meta {
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155 !important;
    font-size: 12px;
    font-weight: 500;
}
@media (max-width: 1100px) {
    .profile-layout,
    .salon-list-grid {
        grid-template-columns: 1fr;
    }

    .storefront-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .user-showcase {
        grid-template-columns: 1fr;
    }

    .salon-showcase__panel {
        margin-top: 0;
    }

    .salon-showcase__top {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
@media (max-width: 720px) {
    .profile-page {
        padding: 12px 0 40px;
    }

    .user-profile-card {
        border-radius: 20px;
        margin-bottom: 16px;
        margin-top: 54px;
    }

    .user-profile-card__head {
        padding: 16px 14px;
    }

    .user-profile-card__meta {
        padding: 14px;
    }

    .user-profile-card__avatar {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        border-radius: 16px;
    }

    .user-profile-card__title-row h1 {
        font-size: 17px;
    }

    .user-profile-listing-card {
        border-radius: 20px;
    }

    .profile-hero__head {
        flex-direction: column;
        align-items: center;
    }
    .profile-hero__copy h1,
    .salon-index-hero h1 {
        font-size: 28px;
    }
    .profile-hero__content,
    .salon-index-hero,
    .profile-card {
        padding: 18px;
        border-radius: 22px;
    }
    .profile-gallery {
        grid-template-columns: 1fr 1fr;
    }
    .profile-gallery__item.is-large {
        grid-column: span 2;
        min-height: 240px;
    }

    .storefront-page {
        padding: 12px 0 40px;
    }

    .storefront-head h1 {
        font-size: 24px;
    }

    .storefront-hero {
        padding: 14px;
        border-radius: 22px;
    }

    .storefront-hero__copy h2 {
        font-size: 22px;
    }

    .storefront-hero__copy p {
        font-size: 14px;
    }

    .storefront-search {
        grid-template-columns: 22px minmax(0, 1fr) 38px;
        gap: 10px;
        min-height: 50px;
    }

    .storefront-search input {
        font-size: 15px;
    }

    .storefront-grid {
        grid-template-columns: 1fr;
    }

    .store-card__cover {
        min-height: 132px;
    }

    .store-card__head {
        min-height: 72px;
        gap: 10px;
    }

    .store-card__logo {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .store-card p {
        min-height: 0;
    }

    .salon-showcase {
        border-radius: 0 0 24px 24px;
    }

    .salon-showcase__cover {
        min-height: 210px;
    }

    .salon-showcase__identity {
        padding: 0 0 4px;
    }

    .salon-showcase__chips {
        justify-content: center;
    }
    .salon-showcase__brand {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .salon-showcase__top {
        padding: 0 14px 16px;
        gap: 14px;
    }

    .salon-showcase__logo {
        width: 112px;
        height: 112px;
        flex-basis: 112px;
        border-radius: 24px;
        margin-top: -28px;
    }

    .salon-showcase__copy {
        padding-top: 0;
    }

    .salon-showcase__body {
        padding-left: 14px;
        padding-right: 14px;
    }

    .salon-showcase__actions {
        padding-top: 0;
    }

    .salon-showcase__stats--desktop {
        justify-content: center;
        text-align: center;
    }

    .salon-showcase__stats-grid {
        display: none;
    }

    .salon-showcase__action-row {
        grid-template-columns: 1fr 1fr;
    }

    .user-showcase__identity {
        flex-direction: column;
        align-items: flex-start;
    }

    .user-showcase__info-grid {
        grid-template-columns: 1fr;
    }

    .salon-showcase__meta {
        flex-direction: column;
        gap: 10px;
    }

    .store-card__actions {
        grid-template-columns: minmax(0, 1fr) 48px;
    }

    .store-card__follow {
        grid-column: 1 / 2;
    }

    .store-card__call {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }
}
