* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #2c2525;
    background: #fffaf9;
}

header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: white;
}

.logo {
    font-size: 25px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
}

nav a:hover {
    color: #c58b85;
}

.btn-programare,
.btn-principal {
    display: inline-block;
    text-decoration: none;
    background: #c58b85;
    color: white;
    padding: 14px 24px;
    border-radius: 6px;
}

.btn-programare:hover,
.btn-principal:hover {
    background: #a96f69;
}

.hero {
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(
        90deg,
        #f5e5e2,
        #fff8f6
    );
}

.hero-text {
    max-width: 600px;
}

.mic-titlu {
    color: #b77d77;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text > p:not(.mic-titlu) {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.servicii {
    padding: 90px 8%;
    text-align: center;
}

.servicii h2 {
    font-size: 38px;
    margin-bottom: 50px;
}

.servicii-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.serviciu-card {
    width: 320px;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.serviciu-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.serviciu-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.serviciu-card .pret {
    color: #b77d77;
    font-weight: bold;
}

.serviciu-card a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}

.despre {
    padding: 100px 15%;
    background: #f3e2df;
}

.despre div {
    max-width: 650px;
}

.despre h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.despre p {
    line-height: 1.8;
}

footer {
    padding: 50px 8%;
    text-align: center;
    background: #2c2525;
    color: white;
}

footer h3 {
    margin-bottom: 20px;
}

footer p {
    margin: 10px 0;
}

@media (max-width: 800px) {

    nav {
        display: none;
    }

    .btn-programare {
        display: none;
    }

    .hero h1 {
        font-size: 42px;
    }

    .servicii-container {
        flex-direction: column;
        align-items: center;
    }

    .serviciu-card {
        width: 100%;
        max-width: 400px;
    }
}
.programare-section {
    min-height: calc(100vh - 80px);
    padding: 70px 20px;
    background: #f7eae8;
}

.programare-box {
    max-width: 700px;
    margin: auto;
    padding: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.programare-box h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.programare-descriere {
    color: #777;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 7px;
    font-size: 16px;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #c58b85;
}

.programare-box hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 35px 0;
}

.programare-box h2 {
    margin-bottom: 25px;
}

.btn-submit {
    width: 100%;
    border: none;
    background: #c58b85;
    color: white;
    padding: 17px;
    font-size: 17px;
    border-radius: 7px;
    cursor: pointer;
}

.btn-submit:hover {
    background: #a96f69;
}

@media (max-width: 600px) {

    .programare-box {
        padding: 30px 20px;
    }

    .programare-box h1 {
        font-size: 34px;
    }
}
.confirmare-box {
    text-align: center;
}

.detalii-programare {
    margin: 35px 0;
    padding: 25px;
    background: #fff7f5;
    border-radius: 10px;
    text-align: left;
}

.detalii-programare p {
    margin: 12px 0;
    font-size: 17px;
}
.admin-section {
    min-height: calc(100vh - 80px);
    padding: 60px 5%;
    background: #f7eae8;
}

.admin-container {
    max-width: 1300px;
    margin: auto;
}

.admin-container h1 {
    font-size: 42px;
    margin-bottom: 35px;
}

.tabel-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.tabel-programari {
    width: 100%;
    border-collapse: collapse;
}

.tabel-programari th,
.tabel-programari td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.tabel-programari th {
    background: #c58b85;
    color: white;
}

.tabel-programari tr:hover {
    background: #fff7f5;
}
.btn-edit,
.btn-delete {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    margin: 2px;
}

.btn-edit {
    background: #c58b85;
    color: white;
}

.btn-delete {
    background: #333;
    color: white;
}

.btn-edit:hover {
    background: #a96f69;
}

.btn-delete:hover {
    background: #111;
}
.calendar-box {
    background: white;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

#calendar {
    max-width: 1200px;
    margin: auto;
}

.fc .fc-button-primary {
    background: #c58b85;
    border-color: #c58b85;
}

.fc .fc-button-primary:hover {
    background: #a96f69;
    border-color: #a96f69;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background: #a96f69;
    border-color: #a96f69;
}
.mesaj-succes {
    background: #e7f7ea;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.titlu-lista {
    margin-top: 45px;
    margin-bottom: 20px;
}
.mesaj-eroare {
    background: #ffe5e5;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #8a2020;
}

.mesaj-succes {
    background: #e7f7ea;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #246b35;
}
.specialist-statistici {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-card p {
    color: #777;
    margin-bottom: 10px;
}

.stat-card strong {
    font-size: 32px;
    color: #c58b85;
}

.specialist-info {
    margin: 30px 0 40px;
}

.specialist-info p {
    margin-top: 15px;
    color: #666;
}

@media (max-width: 700px) {

    .specialist-statistici {
        flex-direction: column;
    }
}
.specialist-statistici {
    display: flex;
    gap: 20px;
    margin: 30px 0 35px;
}

.stat-card {
    flex: 1;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-card p {
    margin: 0 0 10px 0;
    color: #777;
    font-size: 15px;
}

.stat-card strong {
    display: block;
    font-size: 34px;
    color: #c58b85;
}

.specialist-info {
    margin: 0 0 40px 0;
}

.specialist-info p {
    margin-top: 15px;
    color: #666;
}

@media (max-width: 700px) {
    .specialist-statistici {
        flex-direction: column;
    }
}
.program-lucru-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.program-zi {
    display: grid;
    grid-template-columns: 150px 1fr 120px;
    align-items: center;
    gap: 20px;

    background: white;
    padding: 20px 25px;

    border-radius: 10px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.06);
}

.program-nume-zi {
    font-size: 17px;
}

.program-ore {
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-ore input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.program-liber {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 700px) {

    .program-zi {
        grid-template-columns: 1fr;
    }

}
.booking-page {
    min-height: calc(100vh - 80px);
    padding: 70px 20px;
    background: #f7eae8;
}

.booking-container {
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.booking-top {
    text-align: center;
    margin-bottom: 35px;
}

.booking-top h1 {
    font-size: 46px;
    margin-bottom: 10px;
}

.booking-top > p:last-child {
    color: #777;
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #aaa;
}

.progress-step span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid #ddd;
    font-weight: bold;
}

.progress-step.active {
    color: #2c2525;
}

.progress-step.active span {
    background: #c58b85;
    border-color: #c58b85;
    color: white;
}

.progress-step small {
    font-size: 12px;
}

.progress-line {
    width: 70px;
    height: 2px;
    background: #ddd;
    margin: 0 10px 25px;
}

.booking-step {
    display: none;
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.booking-step.active {
    display: block;
}

.booking-step h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.step-description {
    color: #777;
    margin-bottom: 30px;
}

.specialist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.specialist-card {
    border: 2px solid #eee;
    background: white;
    border-radius: 12px;
    padding: 22px;
    cursor: pointer;
    text-align: left;
    transition: 0.2s;
}

.specialist-card:hover,
.specialist-card.selected {
    border-color: #c58b85;
    background: #fff8f7;
}

.specialist-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f3deda;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}

.specialist-card strong {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
}

.specialist-card span {
    color: #999;
    font-size: 13px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card {
    width: 100%;
    border: 2px solid #eee;
    background: white;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    text-align: left;
}

.service-card:hover,
.service-card.selected {
    border-color: #c58b85;
    background: #fff8f7;
}

.service-card strong {
    display: block;
}

.service-card span {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    color: #999;
}

.booking-date-box {
    margin-bottom: 30px;
}

.booking-date-box label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.booking-date-box input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.booking-hours-title {
    font-weight: bold;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hour-button {
    border: 1px solid #ddd;
    background: white;
    padding: 13px;
    border-radius: 8px;
    cursor: pointer;
}

.hour-button:hover,
.hour-button.selected {
    background: #c58b85;
    color: white;
    border-color: #c58b85;
}

.booking-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    gap: 15px;
}

.booking-actions-right {
    justify-content: flex-end;
}

.booking-next,
.booking-confirm,
.booking-back {
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
}

.booking-next,
.booking-confirm {
    background: #c58b85;
    color: white;
}

.booking-next:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.booking-back {
    background: #eee;
    color: #333;
}

.booking-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #fff7f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.booking-summary div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.booking-summary span {
    font-size: 12px;
    color: #999;
}

.empty-message {
    color: #999;
    text-align: center;
    padding: 25px 10px;
}

@media (max-width: 700px) {

    .booking-step {
        padding: 30px 20px;
    }

    .booking-top h1 {
        font-size: 36px;
    }

    .specialist-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .booking-summary {
        grid-template-columns: 1fr;
    }

    .progress-step small {
        display: none;
    }

    .progress-line {
        width: 35px;
        margin-bottom: 0;
    }
}
.booking-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin: 25px 0 35px;
}

.booking-day {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 5px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.booking-day:hover {
    border-color: #c58b85;
    transform: translateY(-2px);
}

.booking-day.selected {
    background: #c58b85;
    border-color: #c58b85;
    color: white;
}

.booking-day span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.booking-day strong {
    display: block;
    font-size: 24px;
}

.booking-day small {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.booking-day.selected span,
.booking-day.selected small {
    color: white;
}

.booking-hours-title {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 15px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hour-button {
    padding: 14px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 9px;
    cursor: pointer;
    font-size: 15px;
}

.hour-button:hover {
    border-color: #c58b85;
}

.hour-button.selected {
    background: #c58b85;
    border-color: #c58b85;
    color: white;
}

@media (max-width: 700px) {

    .booking-days {
        grid-template-columns: repeat(4, 1fr);
    }

    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.week-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.week-nav-button {
    border: none;
    background: #eee;
    color: #333;
    padding: 11px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.week-nav-button:hover {
    background: #e2d6d4;
}

.week-nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 35px;
}

.booking-day {
    background: white;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 15px 5px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.booking-day:hover {
    border-color: #c58b85;
    transform: translateY(-2px);
}

.booking-day.selected {
    background: #c58b85;
    border-color: #c58b85;
    color: white;
}

.booking-day span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.booking-day strong {
    display: block;
    font-size: 24px;
}

.booking-day small {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

.booking-day.selected span,
.booking-day.selected small {
    color: white;
}

@media (max-width: 700px) {

    .booking-days {
        grid-template-columns: repeat(4, 1fr);
    }

    .week-navigation {
        flex-direction: column;
    }
}
/* =====================================
   HEADER NOU
===================================== */

.main-header {
    position: relative;

    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background: white;

    z-index: 100;
}

.main-header .logo {
    color: #2c2525;
    text-decoration: none;

    font-size: 24px;
    font-weight: bold;

    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 24px;
}

.main-nav a {
    color: #333;
    text-decoration: none;

    font-size: 15px;

    transition: 0.2s;
}

.main-nav a:hover {
    color: #b77d77;
}

.main-nav .nav-account {
    font-weight: bold;
    color: #b77d77;
}

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    font-size: 28px;

    cursor: pointer;
}

.header-booking {
    white-space: nowrap;
}


/* =====================================
   LOGIN
===================================== */

.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    background: #f7eae8;
}

.auth-box {
    width: 100%;
    max-width: 500px;

    padding: 45px;

    background: white;

    border-radius: 16px;

    box-shadow:
        0 10px 35px
        rgba(0, 0, 0, 0.08);
}

.auth-logo {
    display: inline-block;

    margin-bottom: 35px;

    color: #2c2525;

    font-size: 22px;
    font-weight: bold;

    text-decoration: none;
}

.auth-box h1 {
    font-size: 38px;

    margin-bottom: 10px;
}

.auth-description {
    color: #777;

    margin-bottom: 30px;
}

.login-options {
    margin-top: 30px;

    border-top: 1px solid #eee;

    padding-top: 25px;
}

.login-option {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    padding: 12px 0;
}

.login-option span {
    color: #777;
}

.login-option a {
    color: #b77d77;

    font-weight: bold;

    text-decoration: none;
}

.login-option a:hover {
    text-decoration: underline;
}

.back-home {
    display: block;

    margin-top: 30px;

    text-align: center;

    color: #777;

    text-decoration: none;
}

.back-home:hover {
    color: #b77d77;
}


/* =====================================
   TELEFON
===================================== */

@media (max-width: 900px) {

    .main-header {
        padding: 0 20px;
    }

    .menu-toggle {
        display: block;

        order: 3;
    }

    .header-booking {
        margin-left: auto;
        margin-right: 15px;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: 80px;
        left: 0;
        right: 0;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px 20px 25px;

        background: white;

        box-shadow:
            0 15px 30px
            rgba(0, 0, 0, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 5px;

        border-bottom:
            1px solid #f0f0f0;
    }

}


@media (max-width: 600px) {

    .header-booking {
        display: none;
    }

    .auth-box {
        padding: 30px 22px;
    }

    .auth-box h1 {
        font-size: 32px;
    }

    .login-option {
        flex-direction: column;
        align-items: flex-start;
    }

}
.home-booking-cta {
    padding: 90px 20px;
    background: white;
    text-align: center;
}

.home-booking-content {
    max-width: 700px;
    margin: auto;
}

.home-booking-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.home-booking-content > p:not(.mic-titlu) {
    color: #777;
    line-height: 1.7;
    margin-bottom: 30px;
}


.account-section {
    padding: 80px 6%;
    background: #f7eae8;
}

.account-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.account-card {
    background: white;
    padding: 30px;
    border-radius: 14px;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.07);
}

.account-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.account-card p {
    color: #777;
    line-height: 1.6;
    margin-bottom: 22px;
}

.account-button {
    display: inline-block;

    background: #c58b85;
    color: white;

    padding: 12px 18px;

    border-radius: 7px;

    text-decoration: none;
}

.account-button:hover {
    background: #a96f69;
}

.logged-card {
    grid-column: 1 / -1;

    max-width: 600px;
    width: 100%;

    margin: auto;

    text-align: center;
}


@media (max-width: 900px) {

    .account-container {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .home-booking-cta {
        padding: 65px 20px;
    }

    .home-booking-content h2 {
        font-size: 30px;
    }

    .account-section {
        padding: 60px 20px;
    }

}
/* =====================================
   CLIENT DASHBOARD
===================================== */

.client-dashboard {
    min-height: 100vh;
    padding: 70px 6%;
    background: #faf7f6;
}

.client-container {
    max-width: 1200px;
    margin: auto;
}

.client-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.client-top h1 {
    font-size: 40px;
    margin-bottom: 8px;
}

.client-email {
    color: #888;
}

.client-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.client-stat-card {
    background: white;
    border-radius: 16px;
    padding: 25px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.05);
}

.client-stat-card span {
    color: #777;
}

.client-stat-card strong {
    font-size: 34px;
    color: #b77d77;
}

.client-section-box {
    background: white;

    border-radius: 18px;

    padding: 30px;

    margin-bottom: 30px;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.05);
}

.client-section-title {
    margin-bottom: 25px;
}

.client-section-title h2 {
    font-size: 28px;
}

.client-appointments {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.client-appointment-card {
    display: grid;

    grid-template-columns:
        100px
        1fr
        auto;

    gap: 25px;

    align-items: center;

    padding: 20px;

    border: 1px solid #eee;

    border-radius: 14px;
}

.appointment-date {
    min-height: 80px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    background: #f7eae8;

    border-radius: 12px;
}

.appointment-date strong {
    font-size: 30px;
    color: #a96f69;
}

.appointment-date span {
    font-size: 13px;
    color: #777;
}

.appointment-info h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.appointment-info p {
    margin: 5px 0;
    color: #777;
}

.appointment-actions {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 12px;
}

.status-badge {
    display: inline-block;

    padding: 7px 12px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: bold;
}

.status-confirmata {
    background: #e9f7ef;
    color: #27864b;
}

.status-finalizata {
    background: #eeeeee;
    color: #555;
}

.status-anulata {
    background: #fdeaea;
    color: #b64646;
}

.client-cancel-button {
    color: #b64646;

    font-weight: bold;

    text-decoration: none;

    font-size: 14px;
}

.client-cancel-button:hover {
    text-decoration: underline;
}

.client-empty {
    text-align: center;

    padding: 50px 20px;

    border: 1px dashed #ddd;

    border-radius: 14px;
}

.client-empty h3 {
    margin-bottom: 10px;
}

.client-empty p {
    color: #777;
    margin-bottom: 25px;
}


/* =====================================
   CLIENT DASHBOARD - TELEFON
===================================== */

@media (max-width: 800px) {

    .client-dashboard {
        padding: 45px 20px;
    }

    .client-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-top h1 {
        font-size: 32px;
    }

    .client-stats {
        grid-template-columns: 1fr;
    }

    .client-appointment-card {
        grid-template-columns: 75px 1fr;
    }

    .appointment-actions {
        grid-column: 1 / -1;

        flex-direction: row;

        align-items: center;
        justify-content: space-between;
    }

}


@media (max-width: 520px) {

    .client-section-box {
        padding: 20px;
    }

    .client-appointment-card {
        grid-template-columns: 1fr;
    }

    .appointment-date {
        width: 85px;
    }

    .appointment-actions {
        grid-column: auto;
    }

}
/* =====================================
   PROGRAMARE FĂRĂ CONT
===================================== */

.guest-booking-info {
    margin: 20px 0 30px;
    padding: 18px 20px;

    background: #fff7f5;
    border: 1px solid #f0d8d4;
    border-radius: 12px;

    color: #555;
}

.guest-booking-info strong {
    display: block;
    margin-bottom: 7px;

    color: #333;
}

.guest-booking-info p {
    margin: 0;
    line-height: 1.6;
}

.guest-booking-actions {
    margin-top: 12px;

    display: flex;
    align-items: center;
    gap: 8px;

    flex-wrap: wrap;
}

.guest-booking-actions a {
    color: #b77d77;
    font-weight: bold;
    text-decoration: none;
}

.guest-booking-actions a:hover {
    text-decoration: underline;
}
/* =====================================
   REPARARE PAȘI PROGRAMARE
===================================== */

.booking-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;

    margin: 35px 0 45px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    gap: 10px;

    color: #aaa;

    font-size: 14px;
    line-height: 1.3;
}

.progress-step span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;
    border: 2px solid #ddd;

    color: #999;

    font-weight: bold;
    font-size: 16px;
}

.progress-step.active {
    color: #222;
}

.progress-step.active span {
    background: #c98680;
    border-color: #c98680;
    color: white;
}

.progress-step.completed {
    color: #777;
}

.progress-step.completed span {
    background: #e8c3bf;
    border-color: #e8c3bf;
    color: white;
}


/* TELEFON */

@media (max-width: 600px) {

    .booking-progress {
        gap: 5px;
        margin-bottom: 35px;
    }

    .progress-step {
        font-size: 11px;
    }

    .progress-step span {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

}
/* =====================================
   SPECIALIST - ACCES RAPID
===================================== */

.specialist-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    margin-bottom: 30px;
}

.specialist-quick-card {
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 25px;

    background: white;

    border-radius: 16px;

    text-decoration: none;
    color: #333;

    box-shadow:
        0 8px 30px
        rgba(0, 0, 0, 0.05);

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.specialist-quick-card:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.08);
}

.specialist-quick-card strong {
    font-size: 19px;
    color: #b77d77;
}

.specialist-quick-card span {
    color: #777;
    line-height: 1.6;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}


@media (max-width: 850px) {

    .specialist-quick-actions {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   FULLCALENDAR - DESIGN BEAUTY SALON
===================================== */

.calendar-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

#calendarSpecialist {
    width: 100%;
}


/* HEADER CALENDAR */

.fc .fc-toolbar {
    margin-bottom: 24px;
    gap: 12px;
}

.fc .fc-toolbar-title {
    font-size: 28px;
    font-weight: 700;
    color: #2f2929;
}


/* BUTOANE */

.fc .fc-button {
    border: none !important;
    border-radius: 9px !important;

    padding: 9px 14px !important;

    font-size: 14px !important;
    font-weight: 600 !important;

    box-shadow: none !important;

    transition: 0.2s;
}

.fc .fc-button-primary {
    background: #c98b84 !important;
    color: white !important;
}

.fc .fc-button-primary:hover {
    background: #b87973 !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background: #a96f69 !important;
}

.fc .fc-button-primary:disabled {
    background: #999 !important;
    opacity: 0.65;
}


/* TABEL CALENDAR */

.fc-theme-standard td,
.fc-theme-standard th {
    border-color: #eee !important;
}

.fc-theme-standard .fc-scrollgrid {
    border: 1px solid #eee !important;
    border-radius: 12px;
    overflow: hidden;
}


/* ZILELE SĂPTĂMÂNII */

.fc .fc-col-header-cell {
    background: #faf6f5;
}

.fc .fc-col-header-cell-cushion {
    padding: 10px 5px;

    color: #444;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}


/* NUMERELE ZILELOR */

.fc .fc-daygrid-day-number {
    padding: 8px;

    color: #333;
    font-weight: 500;

    text-decoration: none;
}


/* ZIUA DE AZI */

.fc .fc-day-today {
    background: #fff7df !important;
}


/* EVENIMENTE */

.fc .fc-event {
    border: none !important;

    border-radius: 7px !important;

    padding: 4px 7px !important;

    font-size: 13px !important;

    cursor: pointer;

    box-shadow:
        0 2px 7px rgba(0, 0, 0, 0.08);

    margin: 2px 3px !important;
}

.fc .fc-daygrid-event {
    white-space: normal !important;
}

.fc .fc-event-title {
    font-weight: 600;
}

.fc .fc-event-time {
    font-weight: 700;
}


/* MAI MULT SPAȚIU ÎN CELULE */

.fc .fc-daygrid-day-frame {
    min-height: 105px;
}


/* WEEK / DAY VIEW */

.fc .fc-timegrid-slot {
    height: 42px;
}

.fc .fc-timegrid-axis-cushion,
.fc .fc-timegrid-slot-label-cushion {
    font-size: 13px;
    color: #777;
}


/* =====================================
   CALENDAR - TABLETĂ
===================================== */

@media (max-width: 900px) {

    .calendar-box {
        padding: 16px;
    }

    .fc .fc-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .fc .fc-toolbar-chunk {
        display: flex;
        justify-content: center;
    }

    .fc .fc-toolbar-title {
        font-size: 24px;
        text-align: center;
    }

}


/* =====================================
   CALENDAR - TELEFON
===================================== */

@media (max-width: 600px) {

    .calendar-box {
        padding: 10px;
        border-radius: 12px;
    }

    .fc .fc-toolbar-title {
        font-size: 20px;
    }

    .fc .fc-button {
        padding: 7px 9px !important;
        font-size: 12px !important;
    }

    .fc .fc-col-header-cell-cushion {
        font-size: 11px;
        padding: 7px 2px;
    }

    .fc .fc-daygrid-day-number {
        font-size: 12px;
        padding: 5px;
    }

    .fc .fc-daygrid-day-frame {
        min-height: 75px;
    }

    .fc .fc-event {
        font-size: 11px !important;
        padding: 2px 4px !important;
    }

}
.fc .fc-event-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc .fc-daygrid-event {
    overflow: hidden;
}
.fc .fc-event-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fc .fc-daygrid-event {
    overflow: hidden;
}
/* =====================================
   POPUP PROGRAMARE SPECIALIST
===================================== */

.appointment-modal {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(30, 24, 24, 0.48);

    z-index: 9999;
}

.appointment-modal.open {
    display: flex;
}

.appointment-modal-box {
    position: relative;

    width: 100%;
    max-width: 520px;

    background: white;

    border-radius: 20px;

    padding: 36px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.20);
}

.appointment-modal-box h2 {
    margin-top: 4px;
    margin-bottom: 25px;

    font-size: 28px;
}


/* X */

.appointment-modal-close {
    position: absolute;

    top: 14px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: #f7eeee;

    color: #555;

    font-size: 25px;
    line-height: 1;

    cursor: pointer;
}

.appointment-modal-close:hover {
    background: #efdada;
}


/* DETALII */

.appointment-modal-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-bottom: 28px;
}

.appointment-modal-details div {
    padding: 16px;

    background: #faf7f6;

    border-radius: 12px;
}

.appointment-modal-details span {
    display: block;

    margin-bottom: 6px;

    color: #888;

    font-size: 13px;
}

.appointment-modal-details strong {
    color: #333;

    font-size: 15px;
}


/* BUTOANE */

.appointment-modal-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


/* TELEFON */

@media (max-width: 600px) {

    .appointment-modal {
        padding: 12px;
    }

    .appointment-modal-box {
        padding: 30px 20px 22px;
        border-radius: 16px;
    }

    .appointment-modal-box h2 {
        font-size: 24px;
    }

    .appointment-modal-details {
        grid-template-columns: 1fr;
    }

    .appointment-modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .appointment-modal-actions a,
    .appointment-modal-actions button {
        width: 100%;
        text-align: center;
    }

}
/* =====================================
   ADMIN
===================================== */

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.admin-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}


/* TABLETĂ */

@media (max-width: 900px) {

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-quick-actions {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   SPECIALIȘTI ADMIN
===================================== */

.status-asteptare {
    background: #fff3d6;
    color: #9a6b17;
}

.btn-approve {
    display: inline-block;

    padding: 7px 11px;

    border-radius: 7px;

    background: #e9f7ef;
    color: #27864b;

    font-size: 13px;
    font-weight: bold;

    text-decoration: none;
}

.btn-approve:hover {
    background: #d9f0e2;
}
/* =====================================
   SERVICII SPECIALIST
===================================== */

.service-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group small {
    display: block;
    margin-top: 6px;

    color: #999;
    font-size: 12px;
}


/* TELEFON */

@media (max-width: 650px) {

    .service-form-grid {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   PROGRAM SPECIALIST
===================================== */

.schedule-description {
    margin-top: 8px;
    color: #777;
    line-height: 1.6;
}

.work-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.work-day-card {
    display: grid;

    grid-template-columns:
        150px
        1fr
        auto;

    align-items: center;

    gap: 25px;

    padding: 18px 20px;

    background: #faf7f6;

    border: 1px solid #eee;
    border-radius: 14px;
}

.work-day-name strong {
    font-size: 17px;
}

.work-day-hours {
    display: flex;
    align-items: flex-end;

    gap: 12px;
}

.work-time-field {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.work-time-field label {
    color: #888;
    font-size: 12px;
}

.work-time-field input {
    min-width: 135px;

    padding: 10px 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    background: white;
}

.work-time-field input:disabled {
    background: #eee;
    color: #aaa;
}

.work-time-separator {
    padding-bottom: 10px;
    color: #aaa;
}

.work-free-toggle {
    display: flex;
    align-items: center;

    gap: 8px;

    cursor: pointer;

    font-weight: 600;

    color: #666;
}

.work-free-toggle input {
    width: 18px;
    height: 18px;
}

.work-schedule-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 28px;
}

.work-days-off-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}


/* TABLETĂ */

@media (max-width: 850px) {

    .work-day-card {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


/* TELEFON */

@media (max-width: 550px) {

    .work-day-hours {
        align-items: stretch;
        flex-direction: column;
    }

    .work-time-field input {
        width: 100%;
        min-width: 0;
    }

    .work-time-separator {
        display: none;
    }

    .work-schedule-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .work-schedule-actions button,
    .work-schedule-actions a {
        width: 100%;
        text-align: center;
    }

}
/* =====================================
   ZILE LIBERE SPECIALIST
===================================== */

.days-off-stats {
    display: grid;
    grid-template-columns: minmax(250px, 380px);

    margin-bottom: 30px;
}

.days-off-warning {
    margin-bottom: 25px;

    padding: 16px 18px;

    background: #fff7df;

    border: 1px solid #f1dfab;
    border-radius: 12px;
}

.days-off-warning strong {
    display: block;

    margin-bottom: 5px;

    color: #8b661e;
}

.days-off-warning p {
    margin: 0;

    color: #7a6a49;
    line-height: 1.5;
}

.days-off-form-grid {
    display: grid;

    grid-template-columns:
        minmax(200px, 300px)
        1fr;

    gap: 20px;

    margin-bottom: 20px;
}

.days-off-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.day-off-card {
    display: grid;

    grid-template-columns:
        90px
        1fr
        auto;

    gap: 20px;

    align-items: center;

    padding: 18px;

    border: 1px solid #eee;
    border-radius: 14px;

    background: #fff;
}

.day-off-date {
    min-height: 75px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #f7eae8;

    border-radius: 12px;
}

.day-off-date strong {
    font-size: 28px;

    color: #a96f69;
}

.day-off-date span {
    font-size: 12px;

    color: #777;
}

.day-off-info {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.day-off-info strong {
    font-size: 17px;

    color: #333;
}

.day-off-info span {
    color: #777;
}

.day-off-actions {
    display: flex;
    justify-content: flex-end;
}


/* TELEFON */

@media (max-width: 700px) {

    .days-off-form-grid {
        grid-template-columns: 1fr;
    }

    .day-off-card {
        grid-template-columns: 75px 1fr;
    }

    .day-off-actions {
        grid-column: 1 / -1;

        justify-content: flex-end;
    }

}


@media (max-width: 480px) {

    .day-off-card {
        grid-template-columns: 1fr;
    }

    .day-off-date {
        width: 85px;
    }

    .day-off-actions {
        grid-column: auto;

        justify-content: flex-start;
    }

}
/* =====================================
   VERIFICARE FINALĂ MOBILE
===================================== */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}


/* HEADER */

@media (max-width: 900px) {

    .main-header {
        min-height: 70px;
        padding: 0 16px;
    }

    .main-header .logo {
        font-size: 20px;
    }

    .main-nav {
        top: 70px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

}


/* CONTAINERE */

@media (max-width: 700px) {

    .admin-section,
    .client-dashboard,
    .booking-page {
        padding-left: 14px;
        padding-right: 14px;
    }

    .admin-container,
    .client-container,
    .booking-container {
        width: 100%;
        max-width: 100%;
    }

    .client-section-box {
        padding: 18px;
        border-radius: 14px;
    }

}


/* TITLURI */

@media (max-width: 600px) {

    h1,
    .client-top h1 {
        font-size: 28px !important;
        line-height: 1.2;
    }

    h2,
    .client-section-title h2 {
        font-size: 23px;
        line-height: 1.25;
    }

}


/* BUTOANE */

@media (max-width: 600px) {

    .btn-principal,
    .booking-secondary,
    .account-button {
        max-width: 100%;
    }

    .client-top {
        align-items: stretch;
    }

    .client-top > .btn-principal {
        width: 100%;
        text-align: center;
    }

}


/* TABELE */

.tabel-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tabel-programari {
    min-width: 700px;
}

@media (max-width: 600px) {

    .tabel-wrapper {
        border-radius: 10px;
    }

    .tabel-programari th,
    .tabel-programari td {
        padding: 10px 9px;
        white-space: nowrap;
        font-size: 13px;
    }

}


/* FORMULARE */

@media (max-width: 600px) {

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
    }

}


/* PROGRAMARE - PAȘI */

@media (max-width: 520px) {

    .booking-progress {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 3px;
    }

    .progress-step {
        font-size: 10px;
        overflow-wrap: anywhere;
    }

    .progress-step span {
        width: 32px;
        height: 32px;
    }

}


/* ZILE PROGRAMARE */

@media (max-width: 520px) {

    .booking-days {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .booking-day {
        min-width: 0;
        padding: 10px 5px;
    }

}


/* ORE */

@media (max-width: 520px) {

    .hours-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hour-button {
        padding: 10px 4px;
        font-size: 13px;
    }

}


/* CALENDAR */

@media (max-width: 600px) {

    .calendar-box {
        overflow-x: auto;
    }

    #calendarSpecialist,
    #calendarAdmin {
        min-width: 650px;
    }

}


/* POPUP */

@media (max-width: 480px) {

    .appointment-modal {
        align-items: flex-end;
        padding: 0;
    }

    .appointment-modal-box {
        max-width: none;
        border-radius: 18px 18px 0 0;
        max-height: 90vh;
        overflow-y: auto;
    }

}


/* CARDURI */

@media (max-width: 600px) {

    .client-stat-card,
    .specialist-quick-card,
    .account-card {
        padding: 20px;
    }

    .client-stat-card strong {
        font-size: 28px;
    }

}
/* =====================================
   PROGRAMĂRI SPECIALIST - MOBILE CARDS
===================================== */

.mobile-appointments {
    display: none;
}

.mobile-appointment-card {
    background: white;

    border: 1px solid #eee;
    border-radius: 14px;

    padding: 18px;

    margin-bottom: 14px;
}

.mobile-appointment-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.mobile-appointment-label {
    display: block;

    margin-bottom: 4px;

    color: #999;

    font-size: 12px;
}

.mobile-appointment-top h3 {
    margin: 0;

    font-size: 19px;
}

.mobile-appointment-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 18px;
}

.mobile-appointment-details div {
    padding: 12px;

    background: #faf7f6;

    border-radius: 10px;
}

.mobile-appointment-details span {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 12px;
}

.mobile-appointment-details strong {
    font-size: 14px;

    color: #333;

    overflow-wrap: anywhere;
}

.mobile-appointment-actions {
    display: flex;

    gap: 10px;
}

.mobile-appointment-actions a {
    flex: 1;

    text-align: center;
}


/* TELEFON */

@media (max-width: 700px) {

    .desktop-appointments {
        display: none;
    }

    .mobile-appointments {
        display: block;
    }

}


@media (max-width: 420px) {

    .mobile-appointment-top {
        flex-direction: column;
    }

    .mobile-appointment-details {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   SERVICII SPECIALIST - MOBILE CARDS
===================================== */

.services-mobile {
    display: none;
}

.mobile-service-card {
    padding: 18px;

    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #eee;
    border-radius: 14px;
}

.mobile-service-name {
    margin-bottom: 16px;
}

.mobile-service-name span {
    display: block;

    margin-bottom: 4px;

    color: #999;

    font-size: 12px;
}

.mobile-service-name h3 {
    margin: 0;

    font-size: 19px;

    color: #333;
}

.mobile-service-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;
}

.mobile-service-details div {
    padding: 12px;

    background: #faf7f6;

    border-radius: 10px;
}

.mobile-service-details span {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 12px;
}

.mobile-service-details strong {
    font-size: 15px;

    color: #333;
}


/* TELEFON */

@media (max-width: 700px) {

    .services-desktop {
        display: none;
    }

    .services-mobile {
        display: block;
    }

}


/* TELEFON FOARTE MIC */

@media (max-width: 400px) {

    .mobile-service-details {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   ADMIN PROGRAMĂRI - MOBILE
===================================== */

.admin-appointments-mobile {
    display: none;
}

.admin-mobile-appointment-card {
    padding: 18px;

    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #eee;
    border-radius: 14px;
}

.admin-mobile-appointment-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.admin-mobile-appointment-top h3 {
    margin: 0;

    font-size: 19px;

    color: #333;
}

.admin-mobile-appointment-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 18px;
}

.admin-mobile-appointment-details div {
    padding: 12px;

    background: #faf7f6;

    border-radius: 10px;
}

.admin-mobile-appointment-details span {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 12px;
}

.admin-mobile-appointment-details strong {
    display: block;

    color: #333;

    font-size: 14px;

    overflow-wrap: anywhere;
}

.admin-mobile-appointment-actions {
    display: flex;

    gap: 10px;
}

.admin-mobile-appointment-actions a {
    flex: 1;

    text-align: center;
}


/* TELEFON */

@media (max-width: 700px) {

    .admin-appointments-desktop {
        display: none;
    }

    .admin-appointments-mobile {
        display: block;
    }

}


/* TELEFON FOARTE MIC */

@media (max-width: 420px) {

    .admin-mobile-appointment-top {
        flex-direction: column;
    }

    .admin-mobile-appointment-details {
        grid-template-columns: 1fr;
    }

}
/* =====================================
   SPECIALIȘTI ADMIN - MOBILE
===================================== */

.specialists-mobile {
    display: none;
}

.mobile-specialist-card {
    padding: 18px;

    margin-bottom: 14px;

    background: #ffffff;

    border: 1px solid #eee;
    border-radius: 14px;
}

.mobile-specialist-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.mobile-specialist-top h3 {
    margin: 0;

    font-size: 19px;

    color: #333;
}

.mobile-specialist-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 18px;
}

.mobile-specialist-details div {
    padding: 12px;

    background: #faf7f6;

    border-radius: 10px;
}

.mobile-specialist-details span {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 12px;
}

.mobile-specialist-details strong {
    display: block;

    font-size: 14px;

    color: #333;

    overflow-wrap: anywhere;
}

.mobile-specialist-actions {
    display: flex;

    gap: 10px;
}

.mobile-specialist-actions a {
    flex: 1;

    text-align: center;
}

.mobile-specialist-active {
    padding: 11px 14px;

    background: #f5f5f5;

    border-radius: 9px;

    color: #888;

    text-align: center;

    font-size: 14px;
}


/* TELEFON */

@media (max-width: 700px) {

    .specialists-desktop {
        display: none;
    }

    .specialists-mobile {
        display: block;
    }

}


/* TELEFON FOARTE MIC */

@media (max-width: 420px) {

    .mobile-specialist-top {
        flex-direction: column;
    }

    .mobile-specialist-details {
        grid-template-columns: 1fr;
    }

    .mobile-specialist-actions {
        flex-direction: column;
    }

}
/* =====================================
   SETĂRI SITE - LOGO
===================================== */

.site-logo-settings {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;

    align-items: center;

    margin-bottom: 30px;

    padding-bottom: 30px;

    border-bottom: 1px solid #eee;
}

.site-settings-label {
    margin-bottom: 10px;

    color: #777;

    font-size: 14px;
    font-weight: 600;
}

.site-logo-preview {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    background: #faf7f6;

    border: 1px solid #eee;
    border-radius: 14px;
}

.site-logo-preview img {
    display: block;

    max-width: 220px;
    max-height: 90px;

    width: auto;
    height: auto;

    object-fit: contain;
}

.site-logo-placeholder {
    color: #444;

    font-size: 21px;
    font-weight: bold;

    text-align: center;
}


/* TELEFON */

@media (max-width: 700px) {

    .site-logo-settings {
        grid-template-columns: 1fr;
    }

    .site-logo-preview {
        justify-content: flex-start;
    }

}
/* =====================================
   HEADER - LOGO
===================================== */

.main-header .logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.logo-img {
    display: block;

    width: auto;
    height: 52px;

    max-width: 220px;

    object-fit: contain;
}

.logo-text {
    color: #2c2525;

    font-size: 24px;
    font-weight: 700;

    white-space: nowrap;
}


/* TABLETĂ */

@media (max-width: 900px) {

    .logo-img {
        height: 44px;
        max-width: 180px;
    }

    .logo-text {
        font-size: 20px;
    }

}


/* TELEFON MIC */

@media (max-width: 420px) {

    .logo-img {
        height: 38px;
        max-width: 145px;
    }

    .logo-text {
        font-size: 18px;
    }

}
/* =====================================
   SETĂRI SITE - IMAGINE PRINCIPALĂ
===================================== */

.site-hero-settings {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 30px;

    align-items: center;

    margin-bottom: 30px;
    padding-bottom: 30px;

    border-bottom: 1px solid #eee;
}

.site-hero-preview {
    width: 100%;
    min-height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #faf7f6;

    border: 1px solid #eee;
    border-radius: 14px;
}

.site-hero-preview img {
    display: block;

    width: 100%;
    height: 190px;

    object-fit: cover;
}

.site-hero-placeholder {
    padding: 30px;

    color: #888;

    text-align: center;
}


/* TELEFON */

@media (max-width: 700px) {

    .site-hero-settings {
        grid-template-columns: 1fr;
    }

    .site-hero-preview img {
        height: 210px;
    }

}
/* =====================================
   HOMEPAGE - HERO CU IMAGINE
===================================== */

.hero-home {
    min-height: 620px;

    display: flex;
    align-items: center;

    padding: 80px 8%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-home .hero-text {
    max-width: 650px;
}

.hero-home .hero-text h1 {
    margin-top: 10px;
    margin-bottom: 20px;

    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.02;
}

.hero-home .hero-description {
    max-width: 560px;

    margin-bottom: 28px;

    font-size: 18px;
    line-height: 1.7;
}


/* DACĂ EXISTĂ IMAGINE,
   TEXTUL DEVINE ALB */

.hero-home[style] .hero-text h1,
.hero-home[style] .hero-description {
    color: #ffffff;
}

.hero-home[style] .mic-titlu {
    color: #f1c66d;
}

.hero-home[style] .btn-principal {
    display: inline-block;
}


/* TABLETĂ */

@media (max-width: 900px) {

    .hero-home {
        min-height: 560px;

        padding:
            70px
            28px;
    }

}


/* TELEFON */

@media (max-width: 600px) {

    .hero-home {
        min-height: 520px;

        padding:
            60px
            20px;

        background-position: center;
    }

    .hero-home .hero-text h1 {
        font-size: 42px;
    }

    .hero-home .hero-description {
        font-size: 16px;
    }

}