/* ===== Fortune Teller Detail Page ===== */

/* Star Rating Component */
.star-rating {
  color: var(--gold);
  letter-spacing: 1px;
}

.star-rating--small {
  font-size: 0.9rem;
}

.star-rating--large {
  font-size: 1.3rem;
}

.star-rating .half-star {
  display: inline-block;
  position: relative;
  color: transparent;
}

.star-rating .half-star::before {
  content: '★';
  position: absolute;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}

.star-rating .half-star::after {
  content: '☆';
  color: var(--gold);
}

.star-rating-score {
  margin-left: 0.3rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* Fixed Tab Navigation */
.fixed-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--bg-greige);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.fixed-tabs.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: 0 2px 10px var(--shadow);
}

.fixed-tabs-placeholder {
  display: none;
}

.fixed-tabs-placeholder.is-active {
  display: block;
}

.fixed-tabs.is-sticky {
  box-shadow: 0 2px 10px var(--shadow);
}

.fixed-tabs .tab-link {
  flex: 1;
  padding: 1rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-medium);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.fixed-tabs .tab-link:hover {
  color: var(--lavender);
  background: var(--lavender-pale);
}

.fixed-tabs .tab-link.active {
  color: var(--lavender);
  border-bottom-color: var(--lavender);
  background: var(--lavender-pale);
}

/* Breadcrumb */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* PR Notice */
.pr-notice {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--lavender);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
}

/* ===== Profile Section ===== */
.profile-section {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bg-greige);
}

.profile-header {
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  padding: 2rem;
  position: relative;
}

.profile-header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.profile-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239B8BC4' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.profile-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 8px 30px var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.profile-service-logos {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.8rem;
}

.profile-service-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
}


.online-status {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.online-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.profile-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.profile-kana {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-medium);
}

.profile-sensei {
  font-size: inherit;
  font-weight: 700;
}

.profile-page-title {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-medium);
}

/* 総合評価（profile-header内） */
.profile-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  margin-top: 0.8rem;
  margin-left: auto;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
}

.profile-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.profile-rating-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.profile-rating-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-rating .star-rating {
  font-size: 1.1rem;
}

.profile-rating-score {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-rating-count {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.profile-title {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 1rem 0 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-badges {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
}

.badge {
  background: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 10px var(--shadow);
}

.badge.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
}

.badge.rank {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
}

/* Section Title */
.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: linear-gradient(180deg, var(--lavender) 0%, var(--rose) 100%);
  border-radius: 2px;
}

/* Profile Body */
.profile-body {
  padding: 2rem;
}

/* ===== Intro Section ===== */
.intro-section {
  margin-bottom: 2rem;
}

.intro-text {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== Feature Tags Section ===== */
.feature-tags-section {
  margin-bottom: 2rem;
}

.feature-tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-tag-group {
  background: var(--bg-beige);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.feature-tag-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.feature-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.feature-tag--fit {
  background: var(--lavender-pale);
  color: var(--lavender);
  border: 1px solid var(--lavender-light);
}

.feature-tag--outcome {
  background: var(--rose-pale);
  color: var(--rose-deep);
  border: 1px solid var(--rose);
}

.style-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.style-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.35rem 0.8rem;
  background: var(--white);
  border: 1px solid var(--bg-greige);
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--text-medium);
}

.style-tag::before {
  content: '✦';
  font-size: 0.6rem;
  color: var(--gold);
}

/* ===== Style Section (鑑定スタイル) ===== */
.style-section {
  margin-bottom: 2rem;
}

.style-text {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ===== First Time Section (はじめての方へ) ===== */
.first-time-section {
  margin-bottom: 2rem;
}

.first-time-text {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  border-radius: 12px;
}

.profile-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg-greige);
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--bg-beige);
  border-radius: 12px;
}

.stat-box .label {
  font-size: 0.85rem;
  color: var(--text-light);
  white-space: nowrap;
}

.stat-box .number {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* ===== Rating Breakdown (項目別評価) ===== */
.rating-breakdown {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--bg-greige);
}

.rating-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--bg-greige);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.rating-row .rating-label {
  min-width: 70px;
  font-weight: 500;
  color: var(--text-medium);
}

.rating-row .star-rating {
  font-size: 0.9rem;
}

.rating-row .rating-value {
  font-weight: 700;
  color: var(--lavender);
  margin-left: auto;
}

/* Specialties & Skills */
.specialties,
.skills-section,
.providers-section {
  margin-bottom: 2rem;
}

.specialty-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.specialty-category {
  background: var(--bg-beige);
  border-radius: 12px;
  padding: 1rem 1.2rem;
}

.specialty-category-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.specialty-category-title::before {
  content: '●';
  font-size: 0.5rem;
  color: var(--lavender);
}

.specialty-list,
.skill-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.specialty-item {
  background: var(--white);
  color: var(--lavender);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--lavender-pale);
  text-decoration: none;
  transition: all 0.2s ease;
}

.specialty-item:hover {
  background: var(--lavender-pale);
  border-color: var(--lavender);
}

.skill-item {
  background: var(--rose-pale);
  color: var(--rose-deep);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.skill-item:hover {
  background: var(--rose);
  color: var(--white);
}

/* Providers */
.provider-list {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.provider-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-beige);
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

.provider-item .price {
  color: var(--lavender);
  font-weight: 700;
}

/* About */
.about-section {
  margin-bottom: 2rem;
}

.about-text {
  color: var(--text-medium);
  line-height: 1.9;
  font-size: 0.95rem;
}

/* ===== Reviews Section ===== */
.reviews-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bg-greige);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviews-score {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.reviews-score .score {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--lavender);
}

.reviews-score .max {
  font-size: 1rem;
  color: var(--text-light);
}

.reviews-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.reviews-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Review Cards */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-beige);
  border-radius: 16px;
  padding: 1.5rem;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--bg-greige);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
  min-width: 0;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-name-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.reviewer-name {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.reviewer-age-gender {
  font-size: 0.8rem;
  color: var(--text-light);
}

.review-total-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}

.review-total-rating .review-rating-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
}

.review-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-total-rating .star-rating {
  font-size: 1rem;
}

.review-total-rating .review-rating-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lavender);
}

.reviewer-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.reviewer-details-row .review-date {
  color: var(--text-light);
}

.reviewer-demographics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.reviewer-age-gender,
.reviewer-frequency {
  white-space: nowrap;
}

.review-meta {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.review-rating-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.review-rating-label {
  font-size: 0.85rem;
  color: var(--text-medium);
  font-weight: 500;
}

.review-rating-line .star-rating {
  font-size: 0.9rem;
}

.review-rating-score {
  font-weight: 700;
  color: var(--lavender);
  font-size: 1.2rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Review Rating Breakdown (レビュー内の項目別評価) */
.review-rating-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
}

.review-rating-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.review-rating-row span:first-child {
  min-width: 70px;
  color: var(--text-medium);
}

.review-rating-row .stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.review-rating-row span:last-child {
  font-weight: 600;
  color: var(--lavender);
  margin-left: auto;
}

/* Review Usage Info */
.review-usage-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Good/Bad Points */
.review-good-points,
.review-bad-points {
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.review-good-points {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
  border-left: 4px solid var(--green);
}

.review-bad-points {
  background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
  border-left: 4px solid #f44336;
}

.review-good-points h5,
.review-bad-points h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-good-points h5 {
  color: var(--green);
}

.review-bad-points h5 {
  color: #f44336;
}

.review-good-points p,
.review-bad-points p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.review-content {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}

.review-tags {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.review-tag {
  background: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Pagination */
.reviews-section .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.reviews-section .page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bg-greige);
  background: var(--white);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-medium);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.reviews-section .page-btn:hover {
  border-color: var(--lavender-light);
  color: var(--lavender);
}

.reviews-section .page-btn.active {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
  border: none;
}

.reviews-section .page-btn.arrow {
  font-size: 1.1rem;
}

.reviews-section .page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.reviews-section .page-dots {
  color: var(--text-light);
  padding: 0 0.3rem;
}

/* ===== Sidebar ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* CTA Card */
.cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--bg-greige);
  position: sticky;
  top: 100px;
}

.cta-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(76, 175, 80, 0.1);
  color: var(--green);
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cta-status::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.cta-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed var(--bg-greige);
}

.cta-price .label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.cta-price .amount {
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cta-price .unit {
  font-size: 1rem;
  color: var(--text-medium);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.btn-call {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 15px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(232, 180, 168, 0.4);
  text-decoration: none;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 180, 168, 0.5);
}

.btn-chat {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--rose) 100%);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 15px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(155, 139, 196, 0.3);
  text-decoration: none;
}

.btn-chat:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 139, 196, 0.4);
}

.btn-favorite {
  background: var(--bg-beige);
  color: var(--text-medium);
  border: none;
  padding: 0.8rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-favorite:hover {
  background: var(--rose-pale);
  color: var(--rose-deep);
}

.cta-note {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-beige);
  border-radius: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

.cta-note strong {
  color: var(--coral);
}

/* Similar Fortune Tellers */
.similar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid var(--bg-greige);
}

.similar-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.similar-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.similar-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-beige);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.similar-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px var(--shadow);
}

.similar-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender-pale) 0%, var(--rose-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}

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

.similar-info {
  flex: 1;
}

.similar-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.similar-specialty {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.similar-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
}

.similar-rating .stars {
  color: var(--gold);
  font-size: 0.75rem;
}

.similar-rating .score {
  font-weight: 700;
  color: var(--lavender);
}

/* ===== Mobile Fixed Footer CTA ===== */
.mobile-fixed-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 20px var(--shadow);
  z-index: 150;
}

.mobile-cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 180, 168, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .sidebar {
    display: none;
  }

  .mobile-fixed-footer {
    display: block;
  }
}

@media (max-width: 768px) {
  .profile-header-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .profile-avatar {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .profile-service-logos {
    gap: 0.3rem;
  }

  .profile-service-logo {
    width: 70px;
  }

  .profile-name {
    font-size: 1.1rem;
  }

  .profile-kana {
    font-size: 0.85rem;
  }

  .profile-page-title {
    font-size: 0.85rem;
  }

  .profile-rating {
    padding: 0.4rem 0.8rem;
    gap: 0.4rem;
  }

  .profile-rating-label {
    font-size: 0.7rem;
  }

  .profile-rating-stars {
    font-size: 0.9rem;
  }

  .profile-rating-score {
    font-size: 1.2rem;
  }

  .profile-rating-count {
    font-size: 0.7rem;
  }

  .profile-stats {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .stat-box {
    padding: 0.6rem 1rem;
  }

  .stat-box .number {
    font-size: 1rem;
  }

  .rating-items {
    grid-template-columns: 1fr;
  }

  .review-rating-breakdown {
    grid-template-columns: 1fr;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .main-content {
    padding: 0 1rem 6rem;
  }

  .breadcrumb {
    padding: 1rem;
  }

  .review-usage-info {
    flex-direction: column;
    gap: 0.5rem;
  }

  .feature-tags-grid {
    grid-template-columns: 1fr;
  }
}
