.user-profile-container {
    max-width: 1320px;
    margin: 60px auto;
    padding: 0 20px;
}

.user-profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.user-profile-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #F5F5F5;
}

.user-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-profile-image-placeholder {
    width: 100%;
    height: 100%;
    background: #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

.user-profile-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.user-profile-name {
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2E3E25;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #4A90E2;
    text-underline-offset: 8px;
}

.user-profile-contact {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #000;
    margin: 0;
}

.user-profile-contact-label {
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.user-profile-description {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.user-profile-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.user-profile-btn {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Arial', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.user-profile-btn-follow {
    background: #434A34;
    color: #FFFFFF;
}

.user-profile-btn-follow:hover {
    background: #5A6B4A;
}

.user-profile-btn-follow.active {
    background: #E74C3C;
}

.user-profile-btn-follow.active:hover {
    background: #C0392B;
}

.user-profile-btn-book {
    background: #434a34;
    color: #FFFFFF;
}

.user-profile-btn-book:hover {
    background: #5A6B4A;
    color: #FFFFFF;
}

.user-profile-btn-add-employee {
    background: #878b7d;
    color: #FFFFFF;
}

.user-profile-btn-add-employee:hover {
    background: #6B6F5F;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .user-profile-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .user-profile-name {
        font-size: 24px;
    }
    
    .user-profile-buttons {
        flex-direction: column;
    }
    
    .user-profile-btn {
        width: 100%;
    }
}

/* Services / works grid */
.user-profile-services {
    margin-top: 60px;
    padding: 30px 24px 40px;
    border-radius: 16px;
    background: radial-gradient(circle at top right, #F0F4EA 0, #FFFFFF 55%);
}

.user-profile-services-header {
    width: 100%;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 10px;
    background: #F1F1F1;
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.user-profile-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.user-profile-service-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #9B9B9B;
    aspect-ratio: 1;
}

.user-profile-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.user-profile-service-placeholder {
    width: 100%;
    height: 100%;
    background: #9B9B9B;
}

.user-profile-service-item.is-hidden {
    display: none;
}

.user-profile-services-more-btn {
    display: block;
    margin: 0 auto;
    padding: 12px 40px;
    border-radius: 10px;
    border: none;
    background: #3F4A33;
    color: #FFFFFF;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s;
}

.user-profile-services-more-btn:hover {
    background: #566445;
}

@media (max-width: 1200px) {
    .user-profile-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .user-profile-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .user-profile-services {
        padding: 24px 16px 32px;
    }

    .user-profile-services-header {
        font-size: 18px;
    }

    .user-profile-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .user-profile-services-more-btn {
        width: 100%;
    }
}

/* Work hours accordion */
.user-profile-hours {
    margin-top: 50px;
    padding: 30px 24px 36px;
    border-radius: 16px;
    background: radial-gradient(circle at top right, #F0F4EA 0, #FFFFFF 60%);
}

.user-profile-hours-header {
    width: fit-content;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 10px;
    background: #E3E3E3;
    font-family: 'Arial', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.user-profile-hours-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.user-profile-hours-item {
    border-radius: 16px;
    background: #F5F5F5;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.user-profile-hours-toggle {
    width: 100%;
    border: none;
    background: #9B9B9B;
    color: #000;
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}

.user-profile-hours-toggle.is-open {
    background: #DDE4D0;
    border-bottom: 1px solid #C6CEBA;
}

.user-profile-hours-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.user-profile-hours-icon::before,
.user-profile-hours-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #000;
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.user-profile-hours-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.user-profile-hours-toggle.is-open .user-profile-hours-icon::after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.user-profile-hours-panel {
    max-height: 0;
    overflow: hidden;
    background: #F5F5F5;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.user-profile-hours-panel.is-open {
    padding: 16px 24px 24px;
}

.user-profile-hours-row {
    padding: 12px 0;
    border-bottom: 1px solid #E0E0E0;
}

.user-profile-hours-row:last-child {
    border-bottom: none;
}

.user-profile-hours-range {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2E3E25;
}

.user-profile-hours-breaks {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-profile-hours-break-label {
    font-size: 14px;
    color: #4A4A4A;
}

@media (max-width: 640px) {
    .user-profile-hours {
        padding: 24px 16px 30px;
    }

    .user-profile-hours-toggle {
        font-size: 16px;
        padding: 16px 18px;
    }
}
















