/* ============================================
   技师页面样式 - 多图展示版
   保持960px固定宽度，兼容现有设计
   主色调：玫瑰粉色系 (#FFB6C1, #FFC0CB)
   ============================================ */

/* 技师列表容器 */
.therapist-list {
    width: 960px;
    margin: 0 auto;
    padding: 20px 0;
}

/* 技师卡片 */
.therapist-card {
    width: 900px;
    margin: 0 auto 30px auto;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    border: 1px solid #FFB6C1;
}

/* 照片画廊区域 */
.photo-gallery {
    width: 320px;
    flex-shrink: 0;
    padding: 15px;
    background: linear-gradient(180deg, #fff0f3 0%, #ffd9e4 100%);
}

/* 主图容器 */
.main-photo {
    width: 290px;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
    margin-bottom: 10px;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-photo:hover img {
    transform: scale(1.02);
}

/* 缩略图容器 */
.photo-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.photo-thumbnails .thumb {
    width: 55px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.photo-thumbnails .thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.photo-thumbnails .thumb.active {
    border-color: #FF69B4;
    opacity: 1;
    box-shadow: 0 2px 6px rgba(255, 105, 180, 0.4);
}

/* 技师信息区域 */
.therapist-info {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
}

.therapist-name {
    font-size: 28px;
    color: #d63384;
    margin: 0 0 10px 0;
    font-weight: bold;
    border-bottom: 2px solid #FF69B4;
    padding-bottom: 10px;
}

.therapist-age {
    font-size: 18px;
    color: #e685a5;
    margin: 0 0 15px 0;
}

.therapist-stats {
    font-size: 16px;
    color: #5a4a50;
    margin: 0 0 20px 0;
    padding: 10px 15px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: 6px;
    border-left: 3px solid #FF69B4;
}

.therapist-description {
    font-size: 15px;
    color: #4a3a40;
    line-height: 1.8;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.therapist-description::-webkit-scrollbar {
    width: 4px;
}

.therapist-description::-webkit-scrollbar-thumb {
    background: #FFB6C1;
    border-radius: 2px;
}

/* 分隔线 */
.card-divider {
    width: 840px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB6C1, transparent);
    margin: 0 auto 30px auto;
}

/* 无照片时的占位样式 */
.no-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff0f3;
    color: #FF69B4;
    font-size: 14px;
}

/* 单图模式（没有缩略图） */
.photo-gallery.single-photo .photo-thumbnails {
    display: none;
}

/* 加载中状态 */
.loading-spinner {
    width: 100%;
    text-align: center;
    padding: 60px 0;
    color: #FF69B4;
    font-size: 16px;
}

/* 电话图标 */
.phone-icon {
    color: #fff;
    margin-right: 5px;
    font-size: 18px;
}

/* 电话按钮 - 玫瑰粉色系 */
.call-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f13170 0%, #ff6d9a 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(214, 51, 132, 0.3);
}

.call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
    background: linear-gradient(135deg, #d63384 0%, #c21e6c 100%);
}