body {
    background-color: #ffffff;
}

/* общий список салонов */
/* общий список салонов */
/* общий список салонов */
.l-salon {
    position: relative;
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.l-salon:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.l-salon__status {
    position: absolute;
    top: 20px;
    right: 20px;
}

.l-salon__name {
    color: var(--body-color);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding-right: 120px;
    transition: color 0.2s ease;
}

.l-salon__name:hover {
    color: #d2054f;
}

.l-salon__contact {
    margin-top: 16px;
}

.s-contact {
    padding-left: 36px;
    position: relative;
}

.s-contact__title {
    color: #9e9e9e;
    font-size: 14px;
    text-transform: uppercase;
}

.s-contact__value {
    margin-top: 4px;
}

.s-contact svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 4px;
    stroke: #9e9e9e;
    opacity: 0.8;
}

.schedule {
    font-size: 14px;
    color: #444;
}

.schedule-title {
    font-weight: 600;
    color: #777;
    margin-bottom: 6px;
}

.l-salon .schedule .day {
    display: inline-block;
    width: 40px;
    text-transform: uppercase;
}

.l-salon .schedule .day-success {
    color: #2e7d32;
    font-weight: 500;
}

.l-salon .schedule .day-danger {
    color: #b62525;
    font-weight: 500;
}

/* детальная страница салона */
/* детальная страница салона */
/* детальная страница салона */
.salon-header {
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;
}

.salon-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.salon-title h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge.open {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-badge.closed {
    background-color: #ffebee;
    color: #c62828;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}

.main-info {
    padding: 40px 0;
}

.info-section {
    margin-bottom: 32px;
}

.comment {
    font-size: 12px;
    color: #666;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-content {
    flex: 1;
}

.phone-link {
    color: #d2054f;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.phone-link:hover {
    text-decoration: underline;
    color: #a8043f;
}

.schedule-table {
    background: transparent;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.schedule-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row.today {
    background-color: #f8f8f8;
}

.schedule-day {
    font-weight: 500;
    color: #666;
}

.schedule-time {
    color: #333;
}

.schedule-time.day-success {
    color: #2e7d32;
}

.schedule-time.day-danger {
    color: #b62525;
}

.schedule-row .schedule-time.holiday {
    opacity: 0.3;
}

.map-container {
    background: #f0f0f0;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    border: 1px solid #e8e8e8;
    width: 100%;
    overflow: hidden;
}

.action-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary-custom {
    background-color: #d2054f;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #a8043f;
    color: white;
}

.btn-secondary-custom {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary-custom:hover {
    background-color: #e0e0e0;
    color: #333;
}

.content-section {
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}

.advantage-card {
    padding: 20px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.advantage-card:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.advantage-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.advantage-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.advantage-link {
    color: #d2054f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.advantage-link:hover {
    text-decoration: underline;
    color: #a8043f;
}

.gallery-item {
    display: block !important;
    position: relative;
    padding-bottom: 75%;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.team-card {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f0f0f0;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 40px;
    object-fit: cover;
    object-position: center;
}

.team-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.team-position {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.team-description {
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .btn-custom {
        width: 100%;
        justify-content: center;
    }
}