/* ═══════════════════════════════════════════════════════════
   chef_details.css — CHEF DETAILS PAGE-ONLY styles
   Requires: global.css (loaded via layout)
   ═══════════════════════════════════════════════════════════ */

/* Body background override */
body { background: var(--gray-lightest); }

/* ═══ BREADCRUMB ═══ */
.breadcrumb-bar { background: var(--dark); padding: 94px 0 24px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* ═══ PROFILE HEADER ═══ */
.profile-header { background: var(--dark); padding: 0 0 56px; position: relative; overflow: hidden; }
.profile-header::before { content: ''; position: absolute; top: -30%; right: -10%; width: 60%; height: 120%; background: radial-gradient(ellipse, rgba(0,174,255,0.07) 0%, transparent 60%); pointer-events: none; }
.profile-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; position: relative; z-index: 2; }
.profile-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 16px 48px rgba(0,0,0,0.4); background: linear-gradient(135deg, #0d1b2e, #1a3448); display: flex; align-items: center; justify-content: center; font-size: 80px; }

/* Profile Image - matching listing card style */
.profile-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.profile-img-wrap .chef-card-img { position: relative; aspect-ratio: 3/4; min-height: unset; overflow: hidden; border-radius: 24px; }
.profile-img-wrap .chef-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-img-wrap .chef-card-rating { position: absolute; top: 14px; right: 14px; background: rgba(13,13,18,0.8); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); color: var(--white); font-size: 14px; font-weight: 700; padding: 6px 14px; border-radius: 100px; display: flex; align-items: center; gap: 5px; }
.profile-img-wrap .chef-card-rating .star { color: #FFB800; }
.profile-img-wrap .chef-card-badge { position: absolute; top: 14px; left: 14px; background: var(--gradient-cta); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: 100px; }

.profile-info { padding-top: 12px; }
.profile-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; padding: 6px 16px; font-size: 12px; font-weight: 700; color: var(--splidu-teal); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.profile-info h1 { font-size: 44px; font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -.5px; margin-bottom: 6px; }
.profile-brand { font-size: 18px; font-weight: 600; background: var(--gradient-horizontal); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 20px; }
.profile-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.profile-rating .stars { color: #FFB800; font-size: 18px; letter-spacing: 2px; }
.profile-rating .rating-text { font-size: 15px; color: var(--text-muted); }
.profile-cuisines { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.profile-cuisine-tag { padding: 8px 18px; border-radius: 100px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); }
.profile-bio { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 560px; }

/* ═══ CONTENT ═══ */
.content-area { padding: 48px 0 80px; }
.content-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.details-card { background: var(--white); border-radius: 20px; padding: 40px; border: 1px solid var(--gray-light); }
.details-card h2 { font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.details-card p { font-size: 15px; color: var(--text-gray); line-height: 1.7; margin-bottom: 16px; }
.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; margin-bottom: 32px; }
.highlight-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--gray-lightest); border-radius: 12px; }
.highlight-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gradient-subtle); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.highlight-text { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.highlight-sub { font-size: 12px; color: var(--text-gray); font-weight: 400; }
.menu-section { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--gray-light); }
.menu-section h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.menu-course { margin-bottom: 16px; }
.menu-course-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--splidu-purple); margin-bottom: 4px; }
.menu-course-item { font-size: 15px; color: var(--text-gray); line-height: 1.6; }
.reviews-section { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--gray-light); }
.reviews-section h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.review-card { padding: 20px; background: var(--gray-lightest); border-radius: 14px; margin-bottom: 14px; }
.review-stars { color: #FFB800; font-size: 14px; margin-bottom: 8px; }
.review-text { font-size: 14px; color: var(--text-gray); line-height: 1.65; font-style: italic; margin-bottom: 10px; }
.review-author { font-size: 13px; font-weight: 700; color: var(--text-dark); }

/* ═══ BOOKING SIDEBAR ═══ */
.booking-sidebar { position: sticky; top: 80px; }
.booking-card { background: var(--white); border-radius: 20px; padding: 36px; border: 1px solid var(--gray-light); box-shadow: var(--shadow-card); margin-bottom: 20px; }
.booking-card h3 { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.booking-price { font-size: 14px; color: var(--text-gray); margin-bottom: 24px; }
.booking-price strong { font-size: 28px; font-weight: 800; color: var(--text-dark); }
.booking-notice { background: linear-gradient(135deg, rgba(174,0,255,0.04), rgba(0,174,255,0.04)); border: 1.5px solid rgba(174,0,255,0.15); border-radius: 16px; padding: 28px; text-align: center; margin-bottom: 24px; }
.booking-notice-icon { font-size: 36px; margin-bottom: 12px; }
.booking-notice h4 { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.booking-notice p { font-size: 14px; color: var(--text-gray); line-height: 1.6; margin-bottom: 0; }
.booking-actions { display: flex; flex-direction: column; gap: 12px; }
.btn-app { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px 24px; background: var(--gradient-cta); color: var(--white); border: none; border-radius: 14px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .2s; }
.btn-app:hover { transform: translateY(-2px); }
.btn-app .btn-icon { font-size: 22px; }
.btn-app .btn-text { text-align: left; line-height: 1.3; }
.btn-app .btn-label { font-size: 11px; font-weight: 600; opacity: .8; display: block; }
.btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 24px; background: #25D366; color: var(--white); border: none; border-radius: 14px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; transition: transform .2s; }
.btn-whatsapp:hover { transform: translateY(-2px); }
.btn-email, .btn-call { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 24px; background: var(--white); color: var(--text-dark); border: 1.5px solid var(--gray-light); border-radius: 14px; font-family: 'Nunito', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .3s; }
.or-divider { display: flex; align-items: center; gap: 14px; font-size: 12px; font-weight: 700; color: var(--text-gray); text-transform: uppercase; letter-spacing: .1em; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-light); }
.coming-soon-card { background: var(--gray-lightest); border: 1px dashed var(--gray-light); border-radius: 16px; padding: 24px; text-align: center; }
.coming-soon-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }
.coming-soon-card .badge { display: inline-block; background: var(--gradient-subtle); color: var(--splidu-purple); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 4px 14px; border-radius: 100px; margin-bottom: 10px; }


/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .profile-grid { grid-template-columns: 260px 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .booking-sidebar { position: static; }
}

@media (max-width: 768px) {
    .breadcrumb-bar { padding: 80px 0 16px; }
    .profile-header { padding: 0 0 40px; }
    .profile-grid { grid-template-columns: 1fr; gap: 24px; }
    .profile-img { max-width: 100%; aspect-ratio: 16/9; }
    .profile-info { padding-top: 0; }
    .profile-info h1 { font-size: 28px; }
    .profile-brand { font-size: 16px; }
    .profile-bio { font-size: 14px; }
    .profile-cuisines { gap: 6px; }
    .profile-cuisine-tag { padding: 6px 14px; font-size: 12px; }
    .content-area { padding: 28px 0 48px; }
    .content-grid { grid-template-columns: 1fr; gap: 24px; }
    .details-card { padding: 24px; }
    .highlights-grid { grid-template-columns: 1fr; }
    .booking-card { padding: 24px; }
    .booking-actions .btn-app, .booking-actions .btn-whatsapp, .booking-actions .btn-email, .booking-actions .btn-call { padding: 14px 20px; font-size: 14px; }
}

@media (max-width: 480px) {
    .profile-img { aspect-ratio: 4/3; }
}
