/**
 * Single Practitioner Page Styles
 * 
 * @package Pachamama
 * @version 1.1.0
 */

/* ========================================
   HERO SECTION
   ======================================== */

.practitioner-hero {
	background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
	padding: 140px 20px 60px;
	max-width: 1200px;
	margin: 0 auto;
}

.practitioner-hero .breadcrumbs {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--mid-text);
	margin-bottom: 32px;
}

.practitioner-hero .breadcrumbs a {
	color: var(--mid-text);
	text-decoration: none;
	transition: color 0.2s;
}

.practitioner-hero .breadcrumbs a:hover {
	color: var(--deep-forest);
}

.practitioner-hero .breadcrumbs span {
	color: var(--mid-text);
}

.practitioner-hero .breadcrumbs .separator {
	color: var(--light-text);
}

.hero-content {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 48px;
	align-items: start;
}

.hero-image {
	position: relative;
}

.profile-image {
	position: relative;
	width: 100%;
	aspect-ratio: 3/4;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.verified-badge {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: white;
	color: #2d6a5f;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.verified-badge svg {
	width: 14px;
	height: 14px;
}

.hero-info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.hero-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.practitioner-name {
	font-size: 36px;
	font-weight: 700;
	color: #1a3a33;
	margin: 0;
	line-height: 1.2;
}

.practitioner-title {
	font-size: 18px;
	color: #6b7280;
	margin: 0;
}

.rating-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.stars {
	display: flex;
	gap: 4px;
}

.star {
	width: 18px;
	height: 18px;
	color: #b87a4b;
}

.rating-text {
	font-size: 15px;
	color: #4b5563;
}

.tags-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.method-tag {
	background: #e8f4f2;
	color: #2d6a5f;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 20px;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.info-icon {
	width: 20px;
	height: 20px;
	color: #2d6a5f;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-content {
	flex: 1;
}

.info-label {
	font-size: 12px;
	color: #9ca3af;
	margin-bottom: 4px;
}

.info-value {
	font-size: 15px;
	font-weight: 500;
	color: #1a3a33;
}

.cta-buttons {
	display: flex;
	gap: 12px;
}

.btn-cta-primary,
.btn-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	border: none;
}

.btn-cta-primary {
	background: #2d6a5f;
	color: white;
}

.btn-cta-primary:hover {
	background: #245549;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(45, 106, 95, 0.3);
}

.btn-cta-secondary {
	background: white;
	color: #2d6a5f;
	border: 2px solid #2d6a5f;
}

.btn-cta-secondary:hover {
	background: #f8faf9;
	transform: translateY(-1px);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 48px;
	align-items: start;
}

.content-column {
	min-width: 0;
}

.content-section {
	margin-bottom: 48px;
}

.section-title {
	font-size: 28px;
	font-weight: 700;
	color: #1a3a33;
	margin: 0 0 24px;
}

.section-text {
	font-size: 16px;
	line-height: 1.7;
	color: #4b5563;
}

.section-text p {
	margin-bottom: 16px;
}

.methods-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.method-item {
	background: #f8faf9;
	border-radius: 12px;
	padding: 24px;
	border: 1px solid #e5e7eb;
}

.method-name {
	font-size: 18px;
	font-weight: 600;
	color: #1a3a33;
	margin: 0 0 8px;
}

.method-desc {
	font-size: 15px;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   REVIEWS
   ======================================== */

.reviews-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.review-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 16px;
}

.reviewer-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.reviewer-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #2d6a5f;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 600;
}

.reviewer-details {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.reviewer-name {
	font-size: 16px;
	font-weight: 600;
	color: #1a3a33;
}

.review-date {
	font-size: 13px;
	color: #9ca3af;
}

.review-stars {
	display: flex;
	gap: 4px;
}

.review-stars .star {
	width: 16px;
	height: 16px;
	color: #b87a4b;
}

.review-text {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}

/* ========================================
   SIDEBAR
   ======================================== */

.sidebar {
	display: flex;
	flex-direction: column;
	gap: 24px;
	position: sticky;
	top: 100px;
}

.sidebar-card {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
}

.sidebar-title {
	font-size: 18px;
	font-weight: 600;
	color: #1a3a33;
	margin: 0 0 20px;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid #f3f4f6;
}

.contact-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.contact-icon {
	width: 18px;
	height: 18px;
	color: #2d6a5f;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-content {
	flex: 1;
}

.contact-label {
	font-size: 12px;
	color: #9ca3af;
	margin-bottom: 4px;
}

.contact-value {
	font-size: 14px;
	color: #1a3a33;
	font-weight: 500;
}

.contact-value a {
	color: #1a3a33;
	text-decoration: none;
	transition: color 0.2s;
}

.contact-value a:hover {
	color: #2d6a5f;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #f3f4f6;
}

.hours-item:last-child {
	border-bottom: none;
}

.hours-day {
	font-size: 14px;
	font-weight: 500;
	color: #1a3a33;
}

.hours-time {
	font-size: 14px;
	color: #6b7280;
}

.hours-closed {
	font-size: 14px;
	color: #9ca3af;
	font-style: italic;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
	.main-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.sidebar {
		position: static;
		max-width: 600px;
	}
}

@media (max-width: 768px) {
	.practitioner-hero {
		padding: 120px 16px 40px;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.profile-image {
		max-width: 280px;
		margin: 0 auto;
	}
	
	.practitioner-name {
		font-size: 28px;
	}
	
	.info-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.cta-buttons {
		flex-direction: column;
	}
	
	.btn-cta-primary,
	.btn-cta-secondary {
		width: 100%;
		justify-content: center;
	}
	
	.main-content {
		padding: 40px 16px;
	}
	
	.section-title {
		font-size: 24px;
	}
}
