/* YuggCare modern theme — loads after style.css */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --yc-primary: #0f766e;
    --yc-primary-hover: #0d9488;
    --yc-primary-dark: #115e59;
    --yc-accent: #ccfbf1;
    --yc-accent-soft: #f0fdfa;
    --yc-surface: #ffffff;
    --yc-bg: #f8fafc;
    --yc-text: #0f172a;
    --yc-muted: #64748b;
    --yc-border: #e2e8f0;
    --yc-radius: 16px;
    --yc-radius-sm: 12px;
    --yc-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --yc-shadow-lg: 0 20px 50px rgba(15, 118, 110, 0.15);
}

body {
    font-family: "Plus Jakarta Sans", "Poppins", sans-serif !important;
    color: var(--yc-text);
    background: var(--yc-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", "Poppins", sans-serif !important;
    color: var(--yc-text);
    letter-spacing: -0.02em;
}

a {
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

/* Buttons */
.btn-primary,
.search-btn,
.login-btn,
.book-btn {
    background: linear-gradient(135deg, var(--yc-primary) 0%, var(--yc-primary-hover) 100%) !important;
    border: none !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover,
.search-btn:hover,
.login-btn:hover,
.book-btn:hover {
    background: linear-gradient(135deg, var(--yc-primary-dark) 0%, var(--yc-primary) 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.3);
}

.view-btn,
.btn-light-primary {
    border-radius: 999px !important;
    border: 1px solid var(--yc-border) !important;
    color: var(--yc-primary) !important;
    font-weight: 600 !important;
    background: #fff !important;
}

.view-btn:hover {
    background: var(--yc-accent-soft) !important;
    border-color: var(--yc-primary-hover) !important;
}

.btn-google {
    border-radius: 999px !important;
    border: 1px solid var(--yc-border) !important;
    font-weight: 600 !important;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--yc-border);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}

.header-nav {
    padding: 12px 0 !important;
}

.main-nav li a {
    font-weight: 600 !important;
    color: var(--yc-muted) !important;
}

.main-nav li.active > a,
.main-nav li a:hover {
    color: var(--yc-primary) !important;
}

.header-login,
.nav-link.header-login {
    background: var(--yc-accent-soft) !important;
    color: var(--yc-primary) !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(15, 118, 110, 0.15) !important;
}

.header-login:hover {
    background: var(--yc-primary) !important;
    color: #fff !important;
}

.navbar-brand.logo img {
    max-height: 44px;
    width: auto;
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--yc-radius-sm);
    font-weight: 500;
}

/* Hero */
.section-search {
    background: linear-gradient(135deg, #042f2e 0%, #0f766e 45%, #14b8a6 100%) !important;
    padding: 90px 0 110px !important;
    position: relative;
    overflow: hidden;
}

.section-search::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 35%),
        radial-gradient(circle at 80% 0%, rgba(204, 251, 241, 0.2), transparent 30%);
    pointer-events: none;
}

.banner-wrapper {
    position: relative;
    z-index: 1;
}

.banner-header h1 {
    color: #fff !important;
    font-size: clamp(2rem, 4vw, 3.25rem) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
}

.banner-header p {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1.125rem !important;
    max-width: 640px;
    margin: 0 auto 32px !important;
}

.search-box {
    background: var(--yc-surface) !important;
    border-radius: 24px !important;
    padding: 24px !important;
    box-shadow: var(--yc-shadow-lg) !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.search-box .form-control {
    border-radius: var(--yc-radius-sm) !important;
    border: 1px solid var(--yc-border) !important;
    min-height: 52px;
    font-size: 0.95rem;
}

.search-box .form-control:focus {
    border-color: var(--yc-primary-hover) !important;
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.15) !important;
}

.search-box .form-text {
    color: var(--yc-muted) !important;
    font-size: 0.8rem;
}

/* Sections */
.section {
    padding: 80px 0 !important;
}

.section-header h2,
.breadcrumb-title {
    font-weight: 800 !important;
    color: var(--yc-text) !important;
}

.section-header .sub-title,
.section-header p {
    color: var(--yc-muted) !important;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-specialities {
    background: #fff !important;
}

.speicality-item {
    background: var(--yc-bg);
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    padding: 24px 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speicality-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--yc-shadow);
}

.speicality-item p {
    font-weight: 700;
    color: var(--yc-text);
    margin-top: 12px;
}

.speicality-img span {
    background: var(--yc-primary) !important;
}

/* Doctor cards */
.section-doctor {
    background: var(--yc-bg) !important;
}

.profile-widget {
    border: 1px solid var(--yc-border) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: var(--yc-shadow) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff !important;
}

.profile-widget:hover {
    transform: translateY(-6px);
    box-shadow: var(--yc-shadow-lg) !important;
}

.profile-widget .doc-img img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.profile-widget .pro-content {
    padding: 20px !important;
}

.profile-widget .title a {
    color: var(--yc-text) !important;
    font-weight: 700 !important;
}

.profile-widget .verified {
    color: var(--yc-primary-hover) !important;
}

.profile-widget .speciality {
    color: var(--yc-muted) !important;
}

.profile-widget .available-info li {
    color: var(--yc-muted) !important;
    font-size: 0.9rem;
}

.about-content a {
    color: var(--yc-primary);
    font-weight: 700;
}

/* Features */
.section-features {
    background: #fff !important;
    padding-bottom: 48px;
}

.yc-features-slider {
    position: relative;
    margin: 0 -8px;
}

.yc-features-slider .slick-slide {
    padding: 8px 12px;
    height: auto;
    margin-right: 0 !important;
}

.yc-features-slider .slick-list {
    padding: 8px 0 16px !important;
}

.yc-features-slider .slick-center {
    opacity: 1;
    transform: none;
}

.yc-features-slider .slick-dots {
    margin-top: 8px;
    position: relative;
    bottom: 0;
}

.yc-features-slider .slick-dots li button:before {
    color: var(--yc-primary);
    opacity: 0.35;
}

.yc-features-slider .slick-dots li.slick-active button:before {
    color: var(--yc-primary);
    opacity: 1;
}

.yc-features-slider .slick-prev,
.yc-features-slider .slick-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--yc-border);
    box-shadow: var(--yc-shadow);
    z-index: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--yc-primary);
    font-size: 0.875rem;
}

.yc-features-slider .slick-prev:before,
.yc-features-slider .slick-next:before {
    content: none;
}

.yc-features-slider .slick-prev {
    left: -18px;
}

.yc-features-slider .slick-next {
    right: -18px;
}

.yc-features-slider .slick-prev:hover,
.yc-features-slider .slick-next:hover {
    background: var(--yc-primary);
    color: #fff;
    border-color: var(--yc-primary);
}

.yc-feature-card {
    background: var(--yc-bg);
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    padding: 24px 16px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    min-height: 190px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yc-features-slider .slick-center .yc-feature-card {
    border-color: var(--yc-primary-hover);
    box-shadow: var(--yc-shadow);
    transform: translateY(-2px);
}

.yc-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--yc-shadow);
}

.yc-feature-card img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 0;
    margin-bottom: 14px;
}

.yc-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.yc-hero-content .banner-header {
    text-align: left;
}

.yc-hero-content .banner-header h1,
.yc-hero-content .banner-header p {
    text-align: left;
    margin-left: 0 !important;
}

.yc-hero-art img {
    border-radius: 24px;
    box-shadow: var(--yc-shadow-lg);
}

@media (min-width: 992px) {
    .yc-hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.yc-feature-card p {
    margin: 0;
    font-weight: 700;
    color: var(--yc-text);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .yc-features-slider .slick-prev {
        left: 0;
    }

    .yc-features-slider .slick-next {
        right: 0;
    }
}

.yc-section-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.yc-section-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.yc-section-intro h2 span {
    color: var(--yc-primary);
}

.yc-section-intro p {
    color: var(--yc-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.yc-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.yc-stats-row.justify-content-center {
    justify-content: center;
}

.yc-stat-pill {
    background: var(--yc-accent-soft);
    border: 1px solid rgba(15, 118, 110, 0.15);
    color: var(--yc-primary-dark);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Auth pages */
.account-content {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 24px;
    box-shadow: var(--yc-shadow);
    overflow: hidden;
    margin: 40px 0 60px;
}

.account-content > .row {
    min-height: 520px;
}

.yc-auth-visual {
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    background: linear-gradient(155deg, #0f766e 0%, #115e59 42%, #134e4a 100%);
    overflow: hidden;
}

.yc-auth-visual--login {
    background: linear-gradient(155deg, #0d9488 0%, #0f766e 45%, #115e59 100%);
}

.yc-auth-visual--patient {
    background: linear-gradient(155deg, #0f766e 0%, #0e7490 50%, #115e59 100%);
}

.yc-auth-visual--dietician {
    background: linear-gradient(155deg, #115e59 0%, #0f766e 40%, #155e75 100%);
}

.yc-auth-visual--reset {
    background: linear-gradient(155deg, #115e59 0%, #0f766e 45%, #2dd4bf 100%);
}

/* Auth success / status card (password reset done, etc.) */
.yc-auth-status {
    text-align: center;
    padding: 8px 0 4px;
}

.yc-auth-status-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #d1fae5, #ccfbf1);
    color: var(--yc-primary);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
}

.yc-auth-status h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yc-text, #1e293b);
    margin-bottom: 12px;
    line-height: 1.35;
}

.yc-auth-status h3 span {
    color: var(--yc-primary);
}

.yc-auth-status-lead {
    color: var(--yc-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.yc-auth-status-steps {
    text-align: left;
    background: var(--yc-accent-soft, #f0fdfa);
    border: 1px solid #ccfbf1;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 28px;
    list-style: none;
}

.yc-auth-status-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.5;
}

.yc-auth-status-steps li:last-child {
    margin-bottom: 0;
}

.yc-auth-status-steps li i {
    color: var(--yc-primary);
    margin-top: 2px;
    width: 18px;
    flex-shrink: 0;
}

.yc-auth-status-note {
    font-size: 0.8125rem;
    color: var(--yc-muted);
    margin-top: 16px;
}

.yc-auth-status-note a {
    color: var(--yc-primary);
    font-weight: 600;
}

.yc-auth-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.yc-auth-blob-1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -50px;
    background: rgba(255, 255, 255, 0.08);
}

.yc-auth-blob-2 {
    width: 160px;
    height: 160px;
    bottom: -40px;
    left: -30px;
    background: rgba(94, 234, 212, 0.15);
}

.yc-auth-blob-3 {
    width: 80px;
    height: 80px;
    top: 45%;
    left: 12%;
    background: rgba(255, 255, 255, 0.06);
}

.yc-auth-visual-inner {
    position: relative;
    z-index: 1;
    color: #fff;
}

.yc-auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.yc-auth-visual h4 {
    color: #fff !important;
    font-size: 1.625rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.25;
}

.yc-auth-visual p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 340px;
}

.yc-auth-illustration {
    display: block;
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.2));
}

.yc-auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yc-auth-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.yc-auth-features li i {
    width: 20px;
    text-align: center;
    color: #5eead4;
    font-size: 0.9375rem;
}

.login-header h3 {
    font-weight: 800 !important;
}

.login-header h3 span {
    color: var(--yc-primary) !important;
}

.text-muted {
    color: var(--yc-muted) !important;
}

.login-right {
    padding: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none !important;
}

.form-control.floating,
.account-content .form-control {
    border-radius: var(--yc-radius-sm) !important;
    border: 1px solid var(--yc-border) !important;
    min-height: 48px;
}

/* Footer — light teal theme so brand logo stays fully visible */
.footer {
    background: linear-gradient(180deg, #f0fdfa 0%, #ecfeff 55%, #e6fffa 100%) !important;
    color: #334155;
    border-top: 1px solid #ccfbf1;
}

.footer-top {
    padding-top: 56px !important;
    padding-bottom: 24px !important;
}

.footer-about .footer-logo {
    display: inline-block;
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.1);
    border: 1px solid #ccfbf1;
}

.footer-about .footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-about-content p {
    color: #475569 !important;
    line-height: 1.65;
}

.footer-title {
    color: #0f766e !important;
    font-weight: 800 !important;
    margin-bottom: 18px !important;
    font-size: 1.05rem;
}

.footer-widget.footer-menu ul li a,
.footer-contact-info p,
.footer-address p {
    color: #64748b !important;
}

.footer-widget.footer-menu ul li a:hover {
    color: #0f766e !important;
}

.footer-contact-info .footer-address span i,
.footer-contact-info p i {
    color: #14b8a6 !important;
}

.social-icon ul li a {
    background: #fff !important;
    color: #0f766e !important;
    border: 1px solid #99f6e4 !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon ul li a:hover {
    background: var(--yc-primary) !important;
    color: #fff !important;
    border-color: var(--yc-primary) !important;
    transform: translateY(-2px);
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.65) !important;
    border-top: 1px solid #ccfbf1 !important;
    padding: 18px 0 !important;
}

.copyright-text p,
.policy-menu li a {
    color: #64748b !important;
}

.policy-menu li a:hover {
    color: #0f766e !important;
}

/* List / cards / breadcrumb */
.breadcrumb-bar {
    background: linear-gradient(135deg, var(--yc-accent-soft), #fff) !important;
    border-bottom: 1px solid var(--yc-border);
    padding: 28px 0 !important;
}

.card {
    border: 1px solid var(--yc-border) !important;
    border-radius: var(--yc-radius) !important;
    box-shadow: var(--yc-shadow) !important;
}

.card-header {
    background: #fff !important;
    border-bottom: 1px solid var(--yc-border) !important;
    border-radius: var(--yc-radius) var(--yc-radius) 0 0 !important;
}

.content {
    padding: 40px 0 60px;
}

/* Dietician list & profile */
.yc-page-intro h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 8px;
}

.yc-page-intro p {
    color: var(--yc-muted);
    margin: 0;
}

.yc-filter-card {
    position: sticky;
    top: 88px;
}

.yc-filter-card .card-title {
    font-weight: 800 !important;
    color: var(--yc-text);
}

.yc-filter-card .filter-widget h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--yc-muted);
    font-weight: 700;
    margin-bottom: 12px;
}

.yc-filter-card .btn-block {
    border-radius: 999px !important;
    font-weight: 700;
    background: var(--yc-primary) !important;
    border: none !important;
}

.yc-doctor-card {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 24px;
    align-items: center;
}

.yc-doctor-card .doctor-img img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
}

.yc-doctor-card .doc-name a {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--yc-text) !important;
}

.yc-doctor-card .doc-speciality {
    color: var(--yc-primary) !important;
    font-weight: 600;
    margin-bottom: 8px;
}

.yc-doctor-card .rating .fas.fa-star.filled {
    color: #f59e0b;
}

.yc-doctor-card .clinic-services span {
    display: inline-block;
    background: var(--yc-accent-soft);
    color: var(--yc-primary-dark);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.yc-doctor-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.yc-doctor-meta li {
    color: var(--yc-muted);
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.yc-doctor-meta i {
    color: var(--yc-primary);
    width: 18px;
}

.yc-doctor-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 180px;
}

.yc-doctor-actions .view-pro-btn,
.yc-doctor-actions .apt-btn {
    border-radius: 999px !important;
    font-weight: 700 !important;
    text-align: center;
    padding: 10px 18px !important;
}

.yc-doctor-actions .view-pro-btn {
    background: #fff !important;
    border: 1px solid var(--yc-border) !important;
    color: var(--yc-primary) !important;
}

.yc-doctor-actions .apt-btn {
    background: linear-gradient(135deg, var(--yc-primary), var(--yc-primary-hover)) !important;
    color: #fff !important;
    border: none !important;
}

.yc-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border: 1px dashed var(--yc-border);
    border-radius: 20px;
}

.yc-empty-state img {
    width: 160px;
    margin-bottom: 16px;
}

.yc-sort-select {
    border-radius: 999px !important;
    border: 1px solid var(--yc-border) !important;
    padding: 8px 16px !important;
    font-weight: 600;
    color: var(--yc-text);
}

.yc-profile-hero {
    background: linear-gradient(135deg, #042f2e 0%, #0f766e 60%, #14b8a6 100%);
    border-radius: 24px;
    padding: 32px;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: var(--yc-shadow-lg);
}

.yc-profile-hero-grid {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: center;
}

.yc-profile-hero img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.35);
}

.yc-profile-hero h2 {
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 6px;
}

.yc-profile-hero .doc-speciality {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.yc-profile-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.yc-profile-pills span {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 600;
}

.yc-profile-hero .apt-btn {
    border-radius: 999px !important;
    font-weight: 700 !important;
    background: #fff !important;
    color: var(--yc-primary-dark) !important;
    border: none !important;
    padding: 12px 24px !important;
    white-space: nowrap;
}

.yc-profile-hero .rating .fas.fa-star.filled {
    color: #fcd34d;
}

.yc-profile-hero .average-rating {
    color: rgba(255, 255, 255, 0.92);
}

.yc-profile-tabs .nav-link {
    font-weight: 700;
    color: var(--yc-muted) !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
    border-radius: 0 !important;
}

.yc-profile-tabs .nav-link.active {
    color: var(--yc-primary) !important;
    border-bottom-color: var(--yc-primary) !important;
    background: transparent !important;
}

.yc-profile-widget {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--yc-shadow);
}

.yc-profile-widget .widget-title {
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--yc-text);
}

.yc-hours-grid .listing-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--yc-border);
}

.yc-hours-grid .listing-day.current .day {
    color: var(--yc-primary);
    font-weight: 800;
}

.yc-review-card {
    border: 1px solid var(--yc-border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    background: var(--yc-bg);
}

.yc-review-card .reviewer-img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

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

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

.yc-reviewer-info h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .yc-doctor-card,
    .yc-profile-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .yc-doctor-card .doctor-img img,
    .yc-profile-hero img {
        margin: 0 auto;
    }

    .yc-doctor-actions {
        flex-direction: row;
        justify-content: center;
        min-width: auto;
    }

    .yc-profile-pills {
        justify-content: center;
    }
}

/* Booking flow */
.yc-booking-steps {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.yc-booking-step {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yc-muted);
}

.yc-booking-step.active {
    background: var(--yc-accent-soft);
    color: var(--yc-primary-dark);
    border-color: rgba(15, 118, 110, 0.2);
}

.yc-booking-doctor {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 20px;
    align-items: center;
}

.yc-booking-doctor .booking-doc-img img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.15);
}

.yc-booking-doctor h4 a {
    font-weight: 800;
    color: var(--yc-text) !important;
}

.yc-booking-schedule {
    overflow: visible;
    position: relative;
    z-index: 2;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
}

.yc-booking-schedule .yc-day-picker {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
}

.yc-booking-schedule .yc-day-pick {
    flex: 0 0 auto;
    min-width: 88px;
    text-align: center;
    border: 1px solid var(--yc-border);
    border-radius: 14px;
    padding: 12px 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    appearance: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.yc-booking-schedule .yc-day-pick:hover {
    border-color: var(--yc-primary-hover);
    background: var(--yc-accent-soft);
}

.yc-booking-schedule .yc-day-pick.active {
    background: var(--yc-primary);
    border-color: var(--yc-primary);
    color: #fff;
}

.yc-booking-schedule .yc-day-name {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.yc-booking-schedule .yc-day-num {
    font-size: 0.9375rem;
    font-weight: 700;
}

.yc-booking-schedule .yc-day-slots-count {
    font-size: 0.6875rem;
    opacity: 0.85;
}

.yc-booking-schedule .yc-day-pick.active .yc-day-slots-count {
    color: rgba(255, 255, 255, 0.9);
}

.yc-booking-schedule .yc-slot-panel {
    min-height: 80px;
}

.yc-booking-schedule .yc-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.yc-booking-schedule .timing {
    display: block;
    width: 100%;
    border: 1px solid var(--yc-border);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: center;
    font-weight: 600;
    color: var(--yc-text);
    background: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.yc-booking-schedule .timing:hover {
    border-color: var(--yc-primary-hover);
    background: var(--yc-accent-soft);
    color: var(--yc-primary-dark);
}

.yc-booking-schedule .timing.selected {
    background: var(--yc-primary) !important;
    border-color: var(--yc-primary) !important;
    color: #fff !important;
}

/* Override legacy schedule-widget floats inside booking page */
.yc-booking-schedule .day-slot,
.yc-booking-schedule .day-slot ul,
.yc-booking-schedule .time-slot,
.yc-booking-schedule .time-slot ul,
.yc-booking-schedule .time-slot li {
    float: none !important;
    width: auto !important;
}

.yc-booking-footer {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 18px;
    padding: 20px 24px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    box-shadow: var(--yc-shadow);
    flex-wrap: wrap;
}

.yc-booking-summary {
    color: var(--yc-muted);
    font-size: 0.95rem;
}

.yc-booking-summary strong {
    color: var(--yc-text);
}

.yc-booking-footer .submit-btn {
    min-width: 200px;
    border-radius: 999px !important;
    font-weight: 700 !important;
}

.yc-booking-footer .submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.yc-success-wrap {
    padding: 60px 0;
}

.yc-success-card {
    text-align: center;
    border-radius: 24px !important;
    padding: 20px 10px 30px;
    border: 1px solid var(--yc-border) !important;
    box-shadow: var(--yc-shadow-lg) !important;
}

.yc-success-card .success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #14b8a6, #0f766e);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.25);
}

.yc-success-card h3 {
    font-weight: 800;
    margin-bottom: 12px;
}

.yc-success-card .success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.yc-success-icon-pending {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.25) !important;
}

.yc-success-icon-cancelled {
    background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
    box-shadow: 0 12px 30px rgba(185, 28, 28, 0.25) !important;
}

.yc-success-icon-confirmed {
    background: linear-gradient(135deg, #14b8a6, #0f766e) !important;
}

.yc-success-actions-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.yc-payment-card {
    border-radius: 24px !important;
    border: 1px solid var(--yc-border) !important;
    box-shadow: var(--yc-shadow) !important;
}

.yc-payment-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: start;
}

.yc-payment-qr-wrap {
    text-align: center;
}

.yc-payment-qr {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border: 1px solid var(--yc-border);
    border-radius: 16px;
    padding: 10px;
    background: #fff;
}

.yc-payment-form-wrap .form-control {
    border-radius: 12px;
}

@media (max-width: 767px) {
    .yc-payment-layout {
        grid-template-columns: 1fr;
    }

    .yc-payment-qr-wrap {
        margin-bottom: 8px;
    }
}

.yc-admin-verify-card {
    border-radius: 24px !important;
    border: 2px solid rgba(15, 118, 110, 0.2) !important;
    box-shadow: var(--yc-shadow) !important;
    background: linear-gradient(180deg, #f0fdfa 0%, #fff 100%);
}

.yc-appt-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.yc-appt-actions form.d-inline {
    display: inline-block !important;
}

.yc-appt-actions .btn {
    margin-left: 4px;
}

.yc-pending-badge {
    font-size: 0.875rem;
    padding: 8px 14px;
    border-radius: 999px;
}

.yc-pagination-wrap {
    padding: 16px 20px;
    border-top: 1px solid var(--yc-border);
}

/* Contact page */
.yc-contact-page {
    padding: 40px 0 70px;
}

.yc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.yc-contact-info-card,
.yc-contact-form-card {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--yc-shadow);
}

.yc-contact-info-card h2 {
    font-weight: 800;
    margin-bottom: 10px;
}

.yc-contact-info-card p {
    color: var(--yc-muted);
    line-height: 1.7;
}

.yc-contact-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 20px;
}

.yc-contact-detail i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--yc-accent-soft);
    color: var(--yc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yc-contact-form-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
}

.yc-contact-form-card .form-control {
    border-radius: 12px !important;
    border: 1px solid var(--yc-border) !important;
    min-height: 48px;
}

.yc-contact-form-card textarea.form-control {
    min-height: 120px;
}

.yc-contact-form-card label {
    font-weight: 600;
    color: var(--yc-text);
    margin-bottom: 6px;
}

@media (max-width: 991px) {
    .yc-contact-grid {
        grid-template-columns: 1fr;
    }

    .yc-booking-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .yc-booking-footer .submit-btn {
        width: 100%;
    }
}

/* Contact CTA + BMI */
.yc-contact-cta-section {
    background: #fff !important;
    padding-top: 20px !important;
    padding-bottom: 60px !important;
}

.yc-contact-cta-card {
    background: linear-gradient(135deg, #042f2e 0%, #0f766e 55%, #14b8a6 100%);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    box-shadow: var(--yc-shadow-lg);
}

.yc-contact-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.yc-contact-cta-content h2 {
    color: #fff !important;
    font-weight: 800;
    margin-bottom: 12px;
}

.yc-contact-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
}

.yc-contact-cta-content .btn-primary {
    background: #fff !important;
    color: var(--yc-primary-dark) !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.yc-contact-cta-meta div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.yc-contact-cta-meta i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.yc-bmi-section {
    background: var(--yc-bg) !important;
}

.yc-bmi-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.yc-bmi-intro h2 {
    font-weight: 800;
    margin: 16px 0 12px;
}

.yc-bmi-intro h2 span {
    color: var(--yc-primary);
}

.yc-bmi-intro p {
    color: var(--yc-muted);
    line-height: 1.7;
}

.yc-bmi-illustration {
    border-radius: 20px;
    box-shadow: var(--yc-shadow);
}

.yc-bmi-tips {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.yc-bmi-tips li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--yc-text);
    font-weight: 600;
}

.yc-bmi-tips i {
    color: var(--yc-primary);
}

.yc-bmi-card {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--yc-shadow-lg);
}

.yc-bmi-card-header h3 {
    font-weight: 800;
    margin-bottom: 6px;
}

.yc-bmi-card-header p {
    color: var(--yc-muted);
    margin-bottom: 20px;
}

.yc-bmi-form .form-control {
    border-radius: 12px !important;
    border: 1px solid var(--yc-border) !important;
    min-height: 48px;
}

.yc-bmi-form label {
    font-weight: 600;
    color: var(--yc-text);
}

.yc-bmi-submit {
    border-radius: 999px !important;
    font-weight: 700 !important;
    margin-top: 8px;
}

.yc-bmi-result {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--yc-border);
}

.yc-bmi-score-wrap {
    text-align: center;
    margin-bottom: 20px;
}

.yc-bmi-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--yc-text);
    line-height: 1;
}

.yc-bmi-label {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.yc-bmi-label.under { background: #dbeafe; color: #1d4ed8; }
.yc-bmi-label.normal { background: #dcfce7; color: #166534; }
.yc-bmi-label.over { background: #fef3c7; color: #92400e; }
.yc-bmi-label.obese { background: #fee2e2; color: #991b1b; }

.yc-bmi-meter-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 8px;
}

.yc-bmi-meter-track .seg.under { background: #60a5fa; }
.yc-bmi-meter-track .seg.normal { background: #34d399; }
.yc-bmi-meter-track .seg.over { background: #fbbf24; }
.yc-bmi-meter-track .seg.obese { background: #f87171; }

.yc-bmi-pointer {
    position: absolute;
    top: 50%;
    left: 0;
    width: 16px;
    height: 16px;
    background: #0f172a;
    border: 3px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
}

.yc-bmi-meter-labels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: var(--yc-muted);
    font-weight: 600;
    margin-bottom: 16px;
}

.yc-bmi-advice {
    background: var(--yc-accent-soft);
    border: 1px solid rgba(15, 118, 110, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    color: var(--yc-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 991px) {
    .yc-contact-cta-card,
    .yc-bmi-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .section-search {
        padding: 60px 0 70px !important;
    }

    .search-box form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .search-btn {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .yc-auth-visual,
    .login-left.yc-auth-visual {
        display: none !important;
    }

    .account-content > .row {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .login-left {
        display: none !important;
    }

    .login-right {
        padding: 28px 20px !important;
    }
}

/* Admin notifications — main website navbar */
.yc-admin-dash-link {
    background: var(--yc-accent-soft) !important;
    color: var(--yc-primary) !important;
    border-radius: 999px !important;
    padding: 10px 18px !important;
    font-weight: 600 !important;
    border: 1px solid rgba(15, 118, 110, 0.15) !important;
}

.yc-admin-dash-link:hover {
    background: var(--yc-primary) !important;
    color: #fff !important;
}

.yc-noti-dropdown {
    position: relative;
}

.yc-noti-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: var(--yc-accent-soft);
    color: var(--yc-primary) !important;
    border: 1px solid rgba(15, 118, 110, 0.15);
    padding: 0 !important;
}

.yc-noti-toggle:hover {
    background: var(--yc-primary) !important;
    color: #fff !important;
}

.yc-noti-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

.yc-noti-menu {
    width: 360px;
    max-width: calc(100vw - 24px);
    padding: 0;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow-lg);
    overflow: hidden;
}

.yc-noti-menu-header,
.yc-noti-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--yc-border);
    font-size: 0.875rem;
    font-weight: 600;
}

.yc-noti-menu-footer {
    border-bottom: none;
    border-top: 1px solid var(--yc-border);
    justify-content: center;
}

.yc-noti-menu-footer a {
    color: var(--yc-primary);
    font-weight: 600;
}

.yc-noti-clear-btn {
    border: none;
    background: none;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
}

.yc-noti-menu-body {
    max-height: 320px;
    overflow-y: auto;
}

.yc-noti-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--yc-border);
    color: var(--yc-text);
    text-decoration: none;
}

.yc-noti-item:hover {
    background: #f8fafc;
    text-decoration: none;
    color: var(--yc-text);
}

.yc-noti-item.unread {
    background: #f0fdfa;
}

.yc-noti-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--yc-accent);
    color: var(--yc-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yc-noti-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.yc-noti-title {
    font-weight: 700;
    font-size: 0.875rem;
}

.yc-noti-new {
    display: inline-block;
    margin-left: 6px;
    padding: 1px 6px;
    border-radius: 999px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 0.65rem;
    font-weight: 700;
    vertical-align: middle;
}

.yc-noti-preview,
.yc-noti-time {
    font-size: 0.8125rem;
    color: var(--yc-muted);
}

.yc-noti-empty,
.yc-noti-empty-state {
    padding: 28px 16px;
    text-align: center;
    color: var(--yc-muted);
}

.yc-noti-empty-state i {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.yc-mobile-noti-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    margin-left: 8px;
    padding: 0 6px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Admin notification pages on main website */
.yc-admin-notifications-card,
.yc-admin-message-card {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    padding: 24px;
    margin-bottom: 60px;
}

.yc-admin-table thead th {
    border-top: none;
    color: var(--yc-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.yc-noti-row-unread {
    background: #f0fdfa;
}

.yc-status-pill {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.yc-status-pill.new {
    background: #fee2e2;
    color: #991b1b;
}

.yc-status-pill.read {
    background: #dcfce7;
    color: #166534;
}

.yc-admin-message-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.yc-admin-message-header h2 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.yc-admin-message-field {
    margin-bottom: 18px;
}

.yc-admin-message-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--yc-muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.yc-admin-message-body {
    background: #f8fafc;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius-sm);
    padding: 16px;
    line-height: 1.7;
}

.yc-admin-message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.yc-pagination-wrap {
    padding-top: 20px;
    border-top: 1px solid var(--yc-border);
    margin-top: 20px;
}

/* Diet plans — blog-style listing */
.yc-plans-page {
    padding-bottom: 60px;
}

.yc-plans-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.yc-plan-filter {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--yc-border);
    background: #fff;
    color: var(--yc-muted);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.yc-plan-filter:hover,
.yc-plan-filter.active {
    background: var(--yc-primary);
    border-color: var(--yc-primary);
    color: #fff;
    text-decoration: none;
}

.yc-plan-card {
    width: 100%;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yc-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--yc-shadow-lg);
}

.yc-plan-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--yc-accent-soft);
}

.yc-plan-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-plan-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.yc-plan-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: var(--yc-muted);
}

.yc-plan-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--yc-accent);
    color: var(--yc-primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
}

.yc-plan-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.yc-plan-card h3 a {
    color: var(--yc-text);
}

.yc-plan-card h3 a:hover {
    color: var(--yc-primary);
    text-decoration: none;
}

.yc-plan-card p {
    color: var(--yc-muted);
    flex: 1;
}

.yc-plan-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--yc-border);
}

.yc-plan-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--yc-primary);
}

.yc-plans-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
}

.yc-plans-cta {
    margin-top: 40px;
    padding: 32px;
    border-radius: var(--yc-radius);
    background: linear-gradient(135deg, #042f2e 0%, #0f766e 55%, #14b8a6 100%);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.yc-plans-cta h2 {
    color: #fff !important;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.yc-plans-cta p {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

/* Plan detail page */
.yc-plan-detail-page {
    padding-bottom: 60px;
}

.yc-plan-article {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    overflow: hidden;
    margin-bottom: 24px;
}

.yc-plan-article-hero {
    aspect-ratio: 16 / 8;
    background: var(--yc-accent-soft);
}

.yc-plan-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-plan-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 28px 0;
    font-size: 0.875rem;
    color: var(--yc-muted);
}

.yc-plan-article h1 {
    padding: 16px 28px 0;
    font-size: 2rem;
}

.yc-plan-lead {
    padding: 0 28px;
    font-size: 1.0625rem;
    color: var(--yc-muted);
}

.yc-plan-content {
    padding: 24px 28px 32px;
    line-height: 1.8;
}

.yc-plan-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    padding: 24px;
}

.yc-plan-sidebar h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.yc-plan-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.yc-plan-summary-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--yc-border);
    font-size: 0.9375rem;
}

.yc-plan-summary-list li span {
    color: var(--yc-muted);
}

.yc-plan-form-card,
.yc-plan-delete-card {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    padding: 28px;
    margin-bottom: 60px;
}

.yc-plan-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--yc-border);
}

.yc-plan-delete-card {
    text-align: center;
    padding: 40px 28px;
}

.yc-plan-delete-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #fef3c7;
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.yc-plan-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.yc-plan-card-inactive {
    opacity: 0.85;
    border-style: dashed;
}

.yc-plan-inactive-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 0.75rem;
    font-weight: 700;
}

.yc-plan-card {
    position: relative;
}

.yc-plan-inactive-banner {
    padding: 10px 28px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 600;
}

.yc-plan-admin-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--yc-border);
}

/* Health Hub */
.yc-health-hub-home {
    background: #fff !important;
    padding: 70px 0 !important;
}

.yc-section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: var(--yc-accent-soft);
    color: var(--yc-primary);
    font-size: 0.8125rem;
    font-weight: 700;
}

.yc-health-hub-page,
.yc-hub-detail-page {
    padding-bottom: 60px;
}

.yc-hub-card {
    width: 100%;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yc-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--yc-shadow-lg);
}

.yc-hub-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--yc-accent-soft);
}

.yc-hub-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-hub-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.yc-hub-card-meta {
    display: flex;
    gap: 14px;
    font-size: 0.8125rem;
    color: var(--yc-muted);
    margin-bottom: 10px;
}

.yc-hub-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.yc-hub-card h3 a {
    color: var(--yc-text);
    text-decoration: none;
}

.yc-hub-card h3 a:hover {
    color: var(--yc-primary);
}

.yc-hub-card p {
    color: var(--yc-muted);
    flex: 1;
}

.yc-hub-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--yc-border);
}

.yc-hub-author {
    font-size: 0.8125rem;
    color: var(--yc-muted);
    font-weight: 600;
}

.yc-hub-draft-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fef3c7;
    color: #92400e;
    font-size: 0.75rem;
    font-weight: 700;
}

.yc-hub-card-draft {
    border-style: dashed;
}

.yc-hub-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
}

.yc-hub-article {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    overflow: hidden;
    margin-bottom: 28px;
}

.yc-hub-article-hero {
    aspect-ratio: 16 / 8;
    background: var(--yc-accent-soft);
}

.yc-hub-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yc-hub-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 28px 0;
    font-size: 0.875rem;
    color: var(--yc-muted);
}

.yc-hub-article h1 {
    padding: 16px 28px 0;
    font-size: 2rem;
}

.yc-hub-lead {
    padding: 0 28px;
    font-size: 1.0625rem;
    color: var(--yc-muted);
}

.yc-hub-content {
    padding: 24px 28px 32px;
    line-height: 1.8;
}

.yc-hub-discussion {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    padding: 28px;
    margin-bottom: 24px;
}

.yc-hub-discussion h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.yc-hub-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: var(--yc-radius);
    box-shadow: var(--yc-shadow);
    padding: 24px;
}

.yc-reaction-bar,
.yc-reaction-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.yc-reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1px solid var(--yc-border);
    border-radius: 999px;
    background: #fff;
    color: var(--yc-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yc-reaction-btn.sm {
    padding: 4px 10px;
    font-size: 0.75rem;
}

.yc-reaction-btn:hover,
.yc-reaction-btn.active {
    background: var(--yc-accent-soft);
    border-color: var(--yc-primary);
    color: var(--yc-primary);
}

.yc-reaction-count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--yc-primary);
    color: #fff;
    font-size: 0.7rem;
    line-height: 18px;
    text-align: center;
}

.yc-comment-compose textarea {
    width: 100%;
}

.yc-hub-login-cta {
    padding: 16px;
    border-radius: var(--yc-radius-sm);
    background: var(--yc-accent-soft);
    margin-bottom: 20px;
}

.yc-comment-list {
    margin-top: 24px;
}

.yc-comment {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid var(--yc-border);
}

.yc-comment-avatar img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.yc-comment-body {
    flex: 1;
    min-width: 0;
}

.yc-comment-header {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 6px;
}

.yc-comment-text {
    margin-bottom: 8px;
    line-height: 1.6;
}

.yc-comment-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.yc-comment-replies {
    margin-top: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--yc-accent);
}

.yc-reply-form {
    margin-top: 12px;
}

/* Patient profile settings */
.yc-patient-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.yc-settings-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.yc-settings-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--yc-text);
}

.yc-settings-alert {
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 0.9375rem;
}

.yc-settings-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.yc-settings-card {
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 20px;
    box-shadow: var(--yc-shadow);
    overflow: hidden;
}

.yc-settings-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    padding: 28px;
    background: linear-gradient(135deg, #f0fdfa 0%, #fff 55%);
    border-color: #99f6e4;
}

.yc-settings-avatar-wrap {
    text-align: center;
    flex-shrink: 0;
}

.yc-settings-avatar-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 10px;
}

.yc-settings-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.2);
}

.yc-settings-avatar-edit {
    position: absolute;
    right: 4px;
    bottom: 4px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--yc-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: var(--yc-shadow);
    margin: 0;
    transition: background 0.2s ease;
}

.yc-settings-avatar-edit:hover {
    background: var(--yc-primary-dark);
}

.yc-avatar-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.yc-settings-avatar-hint {
    font-size: 0.75rem;
    color: var(--yc-muted);
    margin: 0;
}

.yc-settings-hero-meta h4 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.yc-settings-hero-meta p {
    margin: 0 0 6px;
    color: var(--yc-muted);
    font-size: 0.9375rem;
}

.yc-settings-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--yc-accent-soft);
    color: var(--yc-primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
}

.yc-settings-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--yc-border);
    background: #fafbfc;
}

.yc-settings-card-head h4 {
    margin: 0 0 4px;
    font-size: 1.0625rem;
    font-weight: 800;
}

.yc-settings-card-head p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--yc-muted);
}

.yc-settings-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--yc-accent-soft);
    color: var(--yc-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.yc-settings-icon-medical {
    background: #fef2f2;
    color: #dc2626;
}

.yc-settings-icon-address {
    background: #eff6ff;
    color: #2563eb;
}

.yc-settings-card-body {
    padding: 24px;
}

.yc-form-group {
    margin-bottom: 20px;
}

.yc-form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--yc-text);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.yc-settings-input {
    border: 1px solid var(--yc-border) !important;
    border-radius: 12px !important;
    min-height: 46px;
    padding: 10px 14px !important;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yc-settings-input:focus {
    border-color: var(--yc-primary) !important;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12) !important;
}

textarea.yc-settings-input {
    min-height: 100px;
    resize: vertical;
}

.yc-field-error {
    margin-top: 6px;
    font-size: 0.8125rem;
    color: #dc2626;
    font-weight: 500;
}

.yc-settings-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--yc-border);
    border-radius: 18px;
    box-shadow: var(--yc-shadow);
    position: sticky;
    bottom: 16px;
    z-index: 5;
}

.yc-settings-save-btn {
    border-radius: 999px !important;
    padding: 10px 28px !important;
    font-weight: 700 !important;
}

@media (max-width: 767px) {
    .yc-settings-hero {
        flex-direction: column;
        text-align: center;
    }

    .yc-settings-actions {
        flex-direction: column-reverse;
    }

    .yc-settings-actions .btn {
        width: 100%;
    }
}

/* Patient prescriptions tab */
.yc-prescription-card {
    border: 1px solid #eef1f6;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.yc-prescription-card .card-header {
    background: #f8fafc;
    border-bottom: 1px solid #eef1f6;
    padding: 14px 18px;
}

.yc-prescription-card .card-header h6 {
    font-weight: 600;
    color: #1e293b;
}

.yc-prescription-block {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #e2e8f0;
}

.yc-prescription-block:last-of-type {
    border-bottom: none;
    margin-bottom: 8px;
}

.yc-prescription-block h6 {
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.yc-prescription-block h6 i {
    margin-right: 6px;
}

.yc-prescription-block p {
    color: #64748b;
    margin-bottom: 0;
}

