/* ==================================================
   REINA BEAUTY SALON
   TEMA GLOBALĂ
================================================== */


/* =========================
   VARIABLES
========================= */

:root {

    --reina-black: #171313;
    --reina-dark: #282222;

    --reina-pink: #d7a09b;
    --reina-pink-soft: #f6e9e7;
    --reina-pink-light: #fcf7f6;

    --reina-gold: #bf9955;
    --reina-gold-light: #dfc079;

    --reina-white: #ffffff;
    --reina-cream: #fcfaf8;

    --reina-grey: #7d7474;

    --reina-line:
        rgba(23, 19, 19, 0.12);

    --reina-radius:
        18px;

    --reina-shadow:
        0 20px 50px
        rgba(30, 20, 20, 0.07);

}


/* =========================
   GENERAL
========================= */

html {

    scroll-behavior:
        smooth;

}


body {

    background:
        var(--reina-cream);

    color:
        var(--reina-black);

    font-family:
        "DM Sans",
        sans-serif;

}


h1,
h2,
h3 {

    font-family:
        "Playfair Display",
        serif;

    font-weight:
        500;

}


p {

    line-height:
        1.7;

}


a {

    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease;

}


/* =========================
   HEADER GLOBAL
========================= */

.main-header {

    min-height:
        84px;

    padding:
        0 6%;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid rgba(20, 15, 15, 0.06);

}


.main-header .logo {

    display:
        flex;

    align-items:
        center;

}


.logo-img {

    height:
        62px;

    width:
        auto;

    max-width:
        240px;

    object-fit:
        contain;

}


.logo-text {

    color:
        var(--reina-black);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        25px;

    font-weight:
        500;

}


.main-nav {

    gap:
        30px;

}


.main-nav a {

    position:
        relative;

    padding:
        8px 0;

    color:
        var(--reina-black);

    font-size:
        13px;

    font-weight:
        500;

    text-decoration:
        none;

}


.main-nav a::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        2px;

    width:
        0;

    height:
        1px;

    background:
        var(--reina-gold);

    transition:
        width 0.3s ease;

}


.main-nav a:hover::after {

    width:
        100%;

}


.nav-account {

    color:
        var(--reina-pink) !important;

}


/* =========================
   TITLURI MICI
========================= */

.mic-titlu {

    color:
        var(--reina-gold);

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        0.2em;

    text-transform:
        uppercase;

}


/* =========================
   BUTON PRINCIPAL
========================= */

.btn-principal {

    position:
        relative;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        46px;

    padding:
        13px 24px;

    overflow:
        hidden;

    background:
        var(--reina-black);

    border:
        1px solid var(--reina-black);

    border-radius:
        100px;

    color:
        white;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        13px;

    font-weight:
        600;

    text-decoration:
        none;

    cursor:
        pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


.btn-principal:hover {

    transform:
        translateY(-3px);

    background:
        var(--reina-pink);

    border-color:
        var(--reina-pink);

    box-shadow:
        0 15px 35px
        rgba(30, 20, 20, 0.14);

}


/* =========================
   BUTOANE EDIT / DELETE
========================= */

.btn-edit {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        9px 15px;

    border:
        1px solid var(--reina-line);

    border-radius:
        100px;

    background:
        white;

    color:
        var(--reina-black);

    font-size:
        12px;

    text-decoration:
        none;

}


.btn-edit:hover {

    transform:
        translateY(-2px);

    border-color:
        var(--reina-gold);

}


.btn-delete {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        9px 15px;

    border:
        1px solid rgba(160, 70, 70, 0.18);

    border-radius:
        100px;

    background:
        #fffafa;

    color:
        #9b5050;

    font-size:
        12px;

    text-decoration:
        none;

}


.btn-delete:hover {

    transform:
        translateY(-2px);

    background:
        #9b5050;

    color:
        white;

}


/* =========================
   FORMULARE
========================= */

.form-group {

    margin-bottom:
        24px;

}


.form-group label {

    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--reina-grey);

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;

}


.form-group input,
.form-group select,
.form-group textarea {

    width:
        100%;

    box-sizing:
        border-box;

    padding:
        14px 16px;

    background:
        white;

    border:
        1px solid var(--reina-line);

    border-radius:
        12px;

    color:
        var(--reina-black);

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        14px;

    outline:
        none;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        var(--reina-gold);

    box-shadow:
        0 0 0 3px
        rgba(191, 153, 85, 0.10);

}


/* =========================
   CARDURI GENERALE
========================= */

.client-section-box,
.client-stat-card,
.account-card,
.specialist-quick-card,
.admin-mobile-appointment-card {

    border:
        1px solid var(--reina-line);

    border-radius:
        var(--reina-radius);

    box-shadow:
        none;

}


.client-section-box {

    background:
        white;

}


.client-stat-card,
.account-card,
.specialist-quick-card {

    background:
        white;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

}


.client-stat-card:hover,
.account-card:hover,
.specialist-quick-card:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(191, 153, 85, 0.35);

    box-shadow:
        var(--reina-shadow);

}


/* =========================
   QUICK CARDS
========================= */

.specialist-quick-card {

    color:
        var(--reina-black);

    text-decoration:
        none;

}


.specialist-quick-card strong {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        22px;

    font-weight:
        500;

}


.specialist-quick-card span {

    color:
        var(--reina-grey);

    line-height:
        1.6;

}


/* =========================
   STATUS
========================= */

.status-badge {

    display:
        inline-flex;

    align-items:
        center;

    padding:
        6px 11px;

    border-radius:
        100px;

    font-size:
        10px;

    font-weight:
        600;

}


.status-confirmata {

    background:
        #edf6ef;

    color:
        #4e7757;

}


.status-finalizata {

    background:
        #f4efe3;

    color:
        #8d723c;

}


.status-anulata {

    background:
        #f8eaea;

    color:
        #965b5b;

}


/* =========================
   TABLES
========================= */

.tabel-programari {

    border-collapse:
        separate;

    border-spacing:
        0;

    background:
        white;

}


.tabel-programari th {

    padding:
        16px;

    background:
        var(--reina-pink-light);

    color:
        var(--reina-grey);

    font-size:
        10px;

    font-weight:
        600;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

}


.tabel-programari td {

    padding:
        16px;

    border-bottom:
        1px solid var(--reina-line);

    color:
        var(--reina-black);

    font-size:
        13px;

}


/* =========================
   MESAJ SUCCES
========================= */

.mesaj-succes {

    padding:
        15px 18px;

    margin-bottom:
        20px;

    background:
        #edf6ef;

    border:
        1px solid rgba(70, 120, 80, 0.15);

    border-radius:
        12px;

    color:
        #4e7757;

}


/* =========================
   MESAJ EROARE
========================= */

.mesaj-eroare {

    padding:
        15px 18px;

    margin-bottom:
        20px;

    background:
        #f8eaea;

    border:
        1px solid rgba(150, 80, 80, 0.14);

    border-radius:
        12px;

    color:
        #965b5b;

}


/* =========================
   ADMIN / DASHBOARDS
========================= */

.admin-section,
.client-dashboard {

    background:
        var(--reina-cream);

}


.admin-container,
.client-container {

    max-width:
        1180px;

}


.client-top h1,
.admin-section h1 {

    font-size:
        clamp(36px, 4vw, 54px);

    line-height:
        1.05;

}


.client-email {

    color:
        var(--reina-grey);

}


/* =========================
   CALENDAR
========================= */

.calendar-box {

    background:
        white;

    border:
        1px solid var(--reina-line);

    border-radius:
        var(--reina-radius);

    box-shadow:
        none;

}


.fc .fc-button {

    background:
        var(--reina-black) !important;

    border:
        0 !important;

    border-radius:
        100px !important;

    font-family:
        "DM Sans",
        sans-serif !important;

    font-size:
        12px !important;

}


.fc .fc-button:hover {

    background:
        var(--reina-pink) !important;

}


.fc .fc-button-primary:not(:disabled).fc-button-active {

    background:
        var(--reina-gold) !important;

}


.fc .fc-toolbar-title {

    font-family:
        "Playfair Display",
        serif;

    font-weight:
        500;

}


/* =========================
   FOOTER
========================= */

footer {

    background:
        var(--reina-black);

    color:
        white;

}


footer h3 {

    font-family:
        "Playfair Display",
        serif;

}


/* =========================
   FILE INPUT
========================= */

input[type="file"] {

    font-family:
        "DM Sans",
        sans-serif;

}


/* ==================================================
   TABLET / MOBILE
================================================== */

@media (
    max-width: 900px
) {

    .main-header {

        min-height:
            72px;

        padding:
            0 20px;

    }


    .logo-img {

        height:
            50px;

        max-width:
            190px;

    }

}


@media (
    max-width: 600px
) {

    .logo-img {

        height:
            43px;

        max-width:
            165px;

    }


    .client-section-box {

        border-radius:
            15px;

    }


    .btn-principal {

        min-height:
            44px;

        padding:
            12px 20px;

    }

}


/* =========================
   REDUCED MOTION
========================= */

@media (
    prefers-reduced-motion: reduce
) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

    }

}
/* ==================================================
   REINA - LOGIN / AUTH
================================================== */

.reina-login-page {
    margin: 0;
    background: var(--reina-cream);
}


/* =========================
   LAYOUT
========================= */

.reina-login {
    min-height: calc(100vh - 84px);

    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* =========================
   BRAND SIDE
========================= */

.reina-login-brand {
    position: relative;

    min-height: 720px;

    padding: 80px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(215, 160, 155, 0.26),
            transparent 34%
        ),
        radial-gradient(
            circle at 15% 90%,
            rgba(191, 153, 85, 0.15),
            transparent 30%
        ),
        var(--reina-dark);

    color: white;
}


.reina-login-brand::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -240px;
    bottom: -230px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.reina-login-brand-content {
    position: relative;
    z-index: 2;

    max-width: 650px;
}


.reina-login-eyebrow {
    display: block;

    margin-bottom: 35px;

    color: var(--reina-gold-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.24em;
}


.reina-login-brand h1 {
    margin: 0;

    font-size: clamp(55px, 6vw, 88px);

    line-height: 0.98;

    letter-spacing: -0.045em;
}


.reina-login-brand h1 em {
    display: block;

    margin-top: 10px;

    color: #efc9c4;

    font-weight: 500;
}


.reina-login-brand-content > p {
    max-width: 500px;

    margin: 35px 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.8;
}


.reina-login-brand blockquote {
    margin: 55px 0 0;

    color: #efc9c4;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    font-style: italic;

    line-height: 1.45;
}


.reina-login-brand-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 9px;

    letter-spacing: 0.17em;
}


/* =========================
   FORM SIDE
========================= */

.reina-login-form-side {
    min-height: 720px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px;
}


.reina-login-form-container {
    width: min(470px, 100%);
}


.reina-login-heading {
    margin-bottom: 45px;
}


.reina-login-heading h2 {
    margin: 10px 0 12px;

    font-size: clamp(42px, 5vw, 58px);

    line-height: 1.05;
}


.reina-login-heading > p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 14px;
}


/* =========================
   INPUT
========================= */

.reina-login-field {
    margin-bottom: 28px;
}


.reina-login-field label {
    display: block;

    margin-bottom: 9px;

    color: var(--reina-grey);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.reina-login-field input {
    width: 100%;

    box-sizing: border-box;

    padding: 16px 0;

    background: transparent;

    border: 0;

    border-bottom:
        1px solid var(--reina-line);

    border-radius: 0;

    outline: none;

    color: var(--reina-black);

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 16px;

    transition:
        border-color 0.25s ease;
}


.reina-login-field input:focus {
    border-bottom-color:
        var(--reina-gold);
}


/* =========================
   LOGIN BUTTON
========================= */

.reina-login-button {
    position: relative;

    width: 100%;

    margin-top: 15px;

    padding:
        9px 10px 9px 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    overflow: hidden;

    background: var(--reina-black);

    border: 0;

    border-radius: 100px;

    color: white;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.reina-login-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        var(--reina-pink);

    transform:
        translateX(-101%);

    transition:
        transform 0.4s ease;
}


.reina-login-button > span {
    position: relative;

    z-index: 2;
}


.reina-login-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(20, 15, 15, 0.15);
}


.reina-login-button:hover::before {
    transform:
        translateX(0);
}


.reina-login-arrow {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    border-radius: 50%;

    color: var(--reina-black);

    transition:
        transform 0.3s ease;
}


.reina-login-button:hover
.reina-login-arrow {
    transform:
        rotate(-35deg);
}


/* =========================
   DIVIDER
========================= */

.reina-login-divider {
    margin: 35px 0;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    gap: 15px;

    align-items: center;
}


.reina-login-divider span {
    height: 1px;

    background:
        var(--reina-line);
}


.reina-login-divider p {
    margin: 0;

    color: #aaa;

    font-size: 11px;
}


/* =========================
   REGISTER
========================= */

.reina-login-register {
    text-align: center;
}


.reina-login-register p {
    margin: 0 0 7px;

    color: var(--reina-grey);

    font-size: 13px;
}


.reina-login-register a,
.reina-login-specialist a {
    color: var(--reina-black);

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    border-bottom:
        1px solid var(--reina-gold);
}


/* =========================
   SPECIALIST
========================= */

.reina-login-specialist {
    margin-top: 45px;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid var(--reina-line);
}


.reina-login-specialist span {
    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.18em;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .reina-login {
        grid-template-columns: 1fr;
    }


    .reina-login-brand {
        min-height: auto;

        padding:
            75px 35px;
    }


    .reina-login-brand h1 {
        max-width: 650px;
    }


    .reina-login-brand-bottom {
        margin-top: 80px;
    }


    .reina-login-form-side {
        min-height: auto;

        padding:
            80px 30px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .reina-login-brand {
        padding:
            65px 20px;
    }


    .reina-login-brand h1 {
        font-size: 53px;
    }


    .reina-login-brand blockquote {
        font-size: 21px;
    }


    .reina-login-brand-bottom {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-login-form-side {
        padding:
            65px 20px;
    }


    .reina-login-heading h2 {
        font-size: 45px;
    }


    .reina-login-specialist {
        align-items: flex-start;

        flex-direction: column;
    }

}
/* ==================================================
   REINA CLIENT DASHBOARD
================================================== */

.reina-dashboard-page {
    margin: 0;
    background: var(--reina-cream);
}


/* =========================
   CONTAINER
========================= */

.reina-dashboard-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   HERO
========================= */

.reina-dashboard-hero {
    padding: 100px 0 90px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(215, 160, 155, 0.20),
            transparent 32%
        ),
        var(--reina-dark);

    color: white;
}


.reina-dashboard-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, 0.6fr);

    gap: 90px;

    align-items: end;
}


.reina-dashboard-eyebrow {
    display: block;

    margin-bottom: 25px;

    color: var(--reina-gold-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;
}


.reina-dashboard-hero h1 {
    max-width: 800px;

    margin: 0;

    font-size:
        clamp(52px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -0.04em;
}


.reina-dashboard-hero h1 em {
    display: block;

    color: #efc9c4;

    font-weight: 500;
}


.reina-dashboard-hero > div p,
.reina-dashboard-hero-grid > div:first-child > p {
    max-width: 580px;

    margin: 30px 0 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;

    line-height: 1.8;
}


.reina-dashboard-quote {
    padding-left: 35px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.14);
}


.reina-dashboard-quote > span {
    color: var(--reina-gold-light);

    font-family:
        "Playfair Display",
        serif;

    font-size: 70px;

    line-height: 0.6;
}


.reina-dashboard-quote p {
    margin: 20px 0 0 !important;

    color: #efc9c4 !important;

    font-family:
        "Playfair Display",
        serif;

    font-size: 25px !important;

    font-style: italic;

    line-height: 1.4 !important;
}


/* =========================
   CONTENT
========================= */

.reina-dashboard-content {
    padding: 100px 0 130px;
}


/* =========================
   TOP
========================= */

.reina-dashboard-top {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}


.reina-dashboard-top h2 {
    margin: 9px 0;

    font-size:
        clamp(40px, 5vw, 58px);

    line-height: 1.05;
}


.reina-dashboard-top p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   MAIN BUTTON
========================= */

.reina-dashboard-main-button {
    position: relative;

    min-width: 230px;

    padding:
        9px 10px 9px 23px;

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    overflow: hidden;

    background: var(--reina-black);

    border-radius: 100px;

    color: white;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.reina-dashboard-main-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--reina-pink);

    transform:
        translateX(-101%);

    transition:
        transform 0.4s ease;
}


.reina-dashboard-main-button > span {
    position: relative;
    z-index: 2;
}


.reina-dashboard-main-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(20, 15, 15, 0.15);

    color: white;
}


.reina-dashboard-main-button:hover::before {
    transform:
        translateX(0);
}


.reina-dashboard-button-arrow {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 50%;

    color: var(--reina-black);

    transition:
        transform 0.3s ease;
}


.reina-dashboard-main-button:hover
.reina-dashboard-button-arrow {
    transform:
        rotate(-35deg);
}


/* =========================
   STATS
========================= */

.reina-client-stats {
    display: grid;

    grid-template-columns:
        1fr 1fr 1.4fr;

    margin-bottom: 100px;

    border-top:
        1px solid var(--reina-line);

    border-left:
        1px solid var(--reina-line);
}


.reina-stat-card {
    min-height: 220px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: white;

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-stat-label {
    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.18em;
}


.reina-stat-card strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 66px;

    font-weight: 500;
}


.reina-stat-card > p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;
}


.reina-stat-quote {
    background:
        var(--reina-pink-light);
}


.reina-stat-quote p {
    max-width: 300px;

    color: var(--reina-black);

    font-family:
        "Playfair Display",
        serif;

    font-size: 27px;

    font-style: italic;

    line-height: 1.3;
}


/* =========================
   SECTIONS
========================= */

.reina-dashboard-section {
    margin-top: 100px;
}


.reina-section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 40px;

    margin-bottom: 45px;
}


.reina-section-heading h2 {
    margin: 8px 0 0;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;
}


.reina-section-count {
    color:
        rgba(23, 19, 19, 0.20);

    font-family:
        "Playfair Display",
        serif;

    font-size: 55px;
}


/* =========================
   UPCOMING
========================= */

.reina-upcoming-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


.reina-upcoming-card {
    position: relative;

    min-height: 410px;

    padding: 28px;

    display: flex;
    flex-direction: column;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 18px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.reina-upcoming-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(191, 153, 85, 0.35);

    box-shadow:
        var(--reina-shadow);
}


.reina-upcoming-card-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 50px;
}


.reina-appointment-date {
    display: flex;

    flex-direction: column;
}


.reina-appointment-date strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 51px;

    font-weight: 500;

    line-height: 0.9;
}


.reina-appointment-date span {
    margin-top: 7px;

    color: var(--reina-gold);

    font-size: 9px;

    letter-spacing: 0.13em;
}


.reina-upcoming-content {
    flex: 1;
}


.reina-upcoming-small {
    color: var(--reina-grey);

    font-size: 10px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.reina-upcoming-content h3 {
    margin: 10px 0 35px;

    font-size: 32px;

    line-height: 1.1;
}


.reina-upcoming-time {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 12px 0;

    border-top:
        1px solid var(--reina-line);
}


.reina-upcoming-time span {
    color: var(--reina-grey);

    font-size: 9px;

    letter-spacing: 0.15em;
}


.reina-upcoming-time strong {
    font-size: 13px;
}


.reina-upcoming-actions {
    margin-top: 30px;
}


.reina-upcoming-actions a {
    color: #9b5050;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(155, 80, 80, 0.4);
}


/* =========================
   EMPTY
========================= */

.reina-dashboard-empty {
    padding: 75px 30px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 18px;

    text-align: center;
}


.reina-dashboard-empty > span {
    color: var(--reina-gold);

    font-size: 24px;
}


.reina-dashboard-empty h3 {
    margin: 20px 0 8px;

    font-size: 30px;
}


.reina-dashboard-empty p {
    max-width: 460px;

    margin: 0 auto 30px;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   HISTORY
========================= */

.reina-history-list {
    border-top:
        1px solid var(--reina-line);
}


.reina-history-row {
    display: grid;

    grid-template-columns:
        150px
        minmax(200px, 1.2fr)
        minmax(300px, 1fr)
        auto;

    gap: 35px;

    align-items: center;

    padding: 28px 0;

    border-bottom:
        1px solid var(--reina-line);

    transition:
        padding 0.25s ease,
        background 0.25s ease;
}


.reina-history-row:hover {
    padding-left: 15px;
    padding-right: 15px;

    background:
        var(--reina-pink-light);
}


.reina-history-date strong {
    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size: 34px;

    font-weight: 500;
}


.reina-history-date span {
    color: var(--reina-grey);

    font-size: 11px;
}


.reina-history-service > span,
.reina-history-meta span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: 0.16em;
}


.reina-history-service h3 {
    margin: 0;

    font-size: 23px;
}


.reina-history-meta {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 30px;
}


.reina-history-meta strong {
    font-size: 12px;
}


.reina-history-empty {
    padding: 35px 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   BOTTOM
========================= */

.reina-dashboard-bottom {
    padding: 80px 24px;

    background: var(--reina-dark);

    color: white;

    text-align: center;
}


.reina-dashboard-bottom span {
    color: var(--reina-gold-light);

    font-size: 9px;

    letter-spacing: 0.22em;
}


.reina-dashboard-bottom p {
    margin: 15px 0 0;

    color: #efc9c4;

    font-family:
        "Playfair Display",
        serif;

    font-size: 28px;

    font-style: italic;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .reina-dashboard-hero-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    .reina-dashboard-quote {
        max-width: 500px;
    }


    .reina-client-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .reina-stat-quote {
        grid-column: 1 / -1;
    }


    .reina-upcoming-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .reina-history-row {
        grid-template-columns:
            110px 1fr auto;
    }


    .reina-history-meta {
        grid-column:
            2 / 3;

        grid-row:
            2;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {

    .reina-dashboard-container {
        width:
            calc(100% - 36px);
    }


    .reina-dashboard-hero {
        padding:
            75px 0;
    }


    .reina-dashboard-hero h1 {
        font-size: 52px;
    }


    .reina-dashboard-quote {
        padding-left: 20px;
    }


    .reina-dashboard-content {
        padding:
            75px 0 95px;
    }


    .reina-dashboard-top {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-dashboard-main-button {
        width: 100%;

        box-sizing: border-box;
    }


    .reina-client-stats {
        grid-template-columns: 1fr;
    }


    .reina-stat-quote {
        grid-column: auto;
    }


    .reina-dashboard-section {
        margin-top: 75px;
    }


    .reina-section-heading {
        align-items: flex-start;
    }


    .reina-section-count {
        font-size: 40px;
    }


    .reina-upcoming-grid {
        grid-template-columns: 1fr;
    }


    .reina-upcoming-card {
        min-height: 370px;
    }


    .reina-history-row {
        grid-template-columns: 1fr;

        gap: 20px;

        padding:
            25px 0;
    }


    .reina-history-row:hover {
        padding:
            25px 12px;
    }


    .reina-history-meta {
        grid-column: auto;
        grid-row: auto;

        grid-template-columns:
            1fr 1fr;
    }


    .reina-dashboard-bottom p {
        font-size: 24px;
    }

}
/* ==================================================
   REINA SPECIALIST DASHBOARD
================================================== */

.reina-specialist-page {
    margin: 0;
    background: var(--reina-cream);
}


.reina-specialist-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   HERO
========================= */

.reina-specialist-hero {
    padding: 100px 0 90px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(215, 160, 155, 0.21),
            transparent 30%
        ),
        var(--reina-dark);

    color: white;
}


.reina-specialist-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(200px, 0.5fr);

    gap: 90px;

    align-items: end;
}


.reina-specialist-hero h1 {
    max-width: 800px;

    margin: 0;

    font-size:
        clamp(52px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -0.04em;
}


.reina-specialist-hero h1 em {
    display: block;

    color: #efc9c4;

    font-weight: 500;
}


.reina-specialist-hero-grid > div:first-child > p {
    max-width: 550px;

    margin: 30px 0 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;
}


.reina-specialist-hero-note {
    padding-left: 35px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.13);
}


.reina-specialist-hero-note > span {
    color: var(--reina-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.2em;
}


.reina-specialist-hero-note strong {
    display: block;

    margin: 12px 0 5px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 74px;

    font-weight: 500;

    line-height: 1;
}


.reina-specialist-hero-note p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 12px;
}


/* =========================
   CONTENT
========================= */

.reina-specialist-content {
    padding: 100px 0 130px;
}


.reina-specialist-top {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}


.reina-specialist-top h2 {
    margin: 8px 0;

    font-size:
        clamp(40px, 5vw, 58px);
}


.reina-specialist-top p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   STATS
========================= */

.reina-specialist-stats {
    display: grid;

    grid-template-columns:
        1fr 1fr 1fr 1.35fr;

    margin-bottom: 100px;

    border-top:
        1px solid var(--reina-line);

    border-left:
        1px solid var(--reina-line);
}


.reina-specialist-stat {
    min-height: 220px;

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: white;

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-specialist-stat > span {
    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.18em;
}


.reina-specialist-stat > strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 62px;

    font-weight: 500;
}


.reina-specialist-stat > p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;
}


.reina-specialist-stat-note {
    background: var(--reina-pink-light);
}


.reina-specialist-stat-note p {
    color: var(--reina-black);

    font-family:
        "Playfair Display",
        serif;

    font-size: 23px;

    font-style: italic;

    line-height: 1.35;
}


/* =========================
   SECTIONS
========================= */

.reina-specialist-section {
    margin-top: 100px;
}


.reina-specialist-section-heading {
    display: flex;

    justify-content: space-between;
    align-items: end;

    gap: 50px;

    margin-bottom: 45px;
}


.reina-specialist-section-heading h2 {
    margin: 8px 0 0;

    font-size:
        clamp(38px, 4vw, 54px);
}


.reina-specialist-section-heading > p {
    max-width: 350px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   QUICK ACTIONS
========================= */

.reina-specialist-actions {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}


.reina-specialist-action-card {
    position: relative;

    min-height: 290px;

    padding: 30px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    background: white;

    border-top:
        1px solid var(--reina-line);

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);

    color: var(--reina-black);

    text-decoration: none;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}


.reina-specialist-action-card:first-child {
    border-left:
        1px solid var(--reina-line);
}


.reina-specialist-action-card:hover {
    z-index: 2;

    transform:
        translateY(-7px);

    background:
        var(--reina-pink-light);

    box-shadow:
        var(--reina-shadow);
}


.reina-action-index {
    color: var(--reina-gold);

    font-size: 10px;
}


.reina-specialist-action-card h3 {
    margin: 0 0 12px;

    font-size: 30px;
}


.reina-specialist-action-card p {
    max-width: 270px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


.reina-action-arrow {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--reina-line);

    border-radius: 50%;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.reina-specialist-action-card:hover
.reina-action-arrow {
    transform: rotate(-35deg);

    background: var(--reina-black);

    color: white;
}


/* =========================
   CALENDAR
========================= */

.reina-specialist-calendar {
    padding: 25px;

    border-radius: 18px;
}


/* =========================
   MOBILE LIST
========================= */

.reina-specialist-mobile-list {
    display: none;
}


.reina-specialist-mobile-card {
    padding: 24px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 16px;
}


.reina-specialist-mobile-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 25px;
}


.reina-specialist-mobile-top > div > span,
.reina-specialist-mobile-service > span,
.reina-specialist-mobile-details span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: 0.16em;
}


.reina-specialist-mobile-top h3 {
    margin: 0;

    font-size: 27px;
}


.reina-specialist-mobile-service {
    padding: 18px 0;

    border-top:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-specialist-mobile-service strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;

    font-weight: 500;
}


.reina-specialist-mobile-details {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    padding: 20px 0;
}


.reina-specialist-mobile-details strong {
    font-size: 12px;
}


.reina-specialist-mobile-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding-top: 18px;

    border-top:
        1px solid var(--reina-line);
}


/* =========================
   MODAL
========================= */

.reina-calendar-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        rgba(17, 14, 14, 0.62);

    backdrop-filter:
        blur(5px);
}


.reina-calendar-modal.open {
    display: flex;
}


.reina-calendar-modal-box {
    position: relative;

    width: min(520px, 100%);

    padding: 42px;

    background: var(--reina-cream);

    border-radius: 20px;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.24);

    animation:
        reinaModalIn 0.3s ease;
}


@keyframes reinaModalIn {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.reina-calendar-modal-close {
    position: absolute;

    top: 16px;
    right: 18px;

    width: 38px;
    height: 38px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 50%;

    color: var(--reina-black);

    font-size: 23px;

    cursor: pointer;
}


.reina-calendar-modal-box h2 {
    margin: 10px 0 30px;

    font-size: 39px;
}


.reina-calendar-modal-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    margin-bottom: 35px;
}


.reina-calendar-modal-details > div {
    padding: 16px 0;

    border-top:
        1px solid var(--reina-line);
}


.reina-calendar-modal-details span {
    display: block;

    margin-bottom: 7px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: 0.16em;
}


.reina-calendar-modal-details strong {
    font-size: 13px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .reina-specialist-hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .reina-specialist-hero-note {
        max-width: 300px;
    }


    .reina-specialist-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .reina-specialist-stat-note {
        grid-column: 1 / -1;
    }


    .reina-specialist-actions {
        grid-template-columns: 1fr;
    }


    .reina-specialist-action-card {
        min-height: 230px;

        border-left:
            1px solid var(--reina-line);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .reina-specialist-container {
        width:
            calc(100% - 36px);
    }


    .reina-specialist-hero {
        padding: 75px 0;
    }


    .reina-specialist-hero h1 {
        font-size: 52px;
    }


    .reina-specialist-content {
        padding: 75px 0 95px;
    }


    .reina-specialist-top {
        align-items: flex-start;
        flex-direction: column;
    }


    .reina-specialist-stats {
        grid-template-columns: 1fr;
    }


    .reina-specialist-stat-note {
        grid-column: auto;
    }


    .reina-specialist-section {
        margin-top: 75px;
    }


    .reina-specialist-section-heading {
        align-items: flex-start;
        flex-direction: column;

        gap: 20px;
    }


    .reina-specialist-calendar {
        padding: 12px;
    }


    .reina-specialist-table-desktop {
        display: none;
    }


    .reina-specialist-mobile-list {
        display: grid;

        gap: 14px;
    }


    .reina-specialist-mobile-details {
        grid-template-columns:
            1fr 1fr;
    }


    .reina-calendar-modal {
        align-items: flex-end;

        padding: 0;
    }


    .reina-calendar-modal-box {
        width: 100%;

        box-sizing: border-box;

        padding:
            38px 22px 28px;

        border-radius:
            22px 22px 0 0;
    }


    .reina-calendar-modal-details {
        grid-template-columns: 1fr 1fr;
    }

}
/* ==================================================
   SPECIALIST - VENIT
================================================== */

.reina-specialist-stats {
    grid-template-columns:
        repeat(4, 1fr);
}


.reina-specialist-stat-note {
    grid-column:
        1 / -1;

    min-height:
        155px;
}


.reina-income-stat {
    background:
        var(--reina-dark);

    color:
        white;
}


.reina-income-stat > span {
    color:
        var(--reina-gold-light);
}


.reina-income-stat
.reina-income-value {
    color:
        white;

    font-size:
        clamp(38px, 4vw, 57px);

    line-height:
        1;
}


.reina-income-value small {
    color:
        var(--reina-gold-light);

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        13px;

    font-weight:
        500;
}


.reina-income-stat > p {
    color:
        rgba(255, 255, 255, 0.55);
}


/* TABLET */

@media (max-width: 900px) {

    .reina-specialist-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .reina-specialist-stat-note {
        grid-column:
            1 / -1;
    }

}


/* TELEFON */

@media (max-width: 600px) {

    .reina-specialist-stats {
        grid-template-columns:
            1fr;
    }


    .reina-specialist-stat-note {
        grid-column:
            auto;
    }

}
/* ==================================================
   SPECIALIST - STATISTICI FINANCIARE
================================================== */

.reina-financial-stats {
    grid-template-columns:
        repeat(5, 1fr);
}


.reina-income-stat {
    background:
        var(--reina-dark);

    color:
        white;
}


.reina-income-stat > span {
    color:
        var(--reina-gold-light);
}


.reina-income-stat > p {
    color:
        rgba(255, 255, 255, 0.55);
}


.reina-month-income {
    background:
        var(--reina-pink-light);
}


.reina-month-income > span {
    color:
        var(--reina-gold);
}


.reina-income-value {
    font-size:
        clamp(34px, 3vw, 52px) !important;

    line-height:
        1 !important;

    white-space:
        nowrap;
}


.reina-income-value small {
    margin-left:
        4px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        12px;

    font-weight:
        500;

    color:
        var(--reina-gold-light);
}


.reina-month-income
.reina-income-value small {
    color:
        var(--reina-gold);
}


/* =========================
   VALOARE VIITOARE
========================= */

.reina-finance-strip {
    margin-top:
        22px;

    padding:
        35px 38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        50px;

    background:
        white;

    border:
        1px solid var(--reina-line);

    border-radius:
        18px;
}


.reina-finance-strip h3 {
    margin:
        7px 0 8px;

    font-size:
        29px;

    font-weight:
        500;
}


.reina-finance-strip p {
    max-width:
        600px;

    margin:
        0;

    color:
        var(--reina-grey);

    font-size:
        12px;
}


.reina-future-value {
    min-width:
        220px;

    text-align:
        right;
}


.reina-future-value strong {
    font-family:
        "Playfair Display",
        serif;

    font-size:
        52px;

    font-weight:
        500;
}


.reina-future-value span {
    margin-left:
        5px;

    color:
        var(--reina-gold);

    font-size:
        13px;

    font-weight:
        600;
}


/* TABLET */

@media (max-width: 1100px) {

    .reina-financial-stats {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


@media (max-width: 900px) {

    .reina-financial-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .reina-finance-strip {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            25px;
    }


    .reina-future-value {
        min-width:
            0;

        text-align:
            left;
    }

}


/* TELEFON */

@media (max-width: 600px) {

    .reina-financial-stats {
        grid-template-columns:
            1fr;
    }


    .reina-finance-strip {
        padding:
            28px 22px;
    }


    .reina-future-value strong {
        font-size:
            45px;
    }

}
/* ==================================================
   REINA - PAGINI MANAGEMENT SPECIALIST
================================================== */

.reina-management-page {
    background:
        var(--reina-cream);
}


/* =========================
   HERO
========================= */

.reina-management-hero {
    padding:
        90px 0 80px;

    background:
        var(--reina-dark);

    color:
        white;
}


.reina-management-hero-grid {
    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

    gap:
        60px;
}


.reina-management-hero h1 {
    margin:
        0;

    font-size:
        clamp(50px, 7vw, 82px);

    line-height:
        0.98;

    letter-spacing:
        -0.04em;
}


.reina-management-hero h1 em {
    display:
        block;

    color:
        #efc9c4;

    font-weight:
        500;
}


.reina-management-hero p {
    max-width:
        560px;

    margin:
        28px 0 0;

    color:
        rgba(255,255,255,.6);

    font-size:
        14px;

    line-height:
        1.8;
}


/* =========================
   CONTENT
========================= */

.reina-management-content {
    padding:
        95px 0 120px;
}


.reina-management-layout {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, .75fr);

    gap:
        35px;

    align-items:
        stretch;
}


/* =========================
   FORM CARD
========================= */

.reina-management-form-card {
    padding:
        40px;

    background:
        white;

    border:
        1px solid var(--reina-line);

    border-radius:
        20px;
}


.reina-management-form-card h2 {
    margin:
        9px 0 12px;

    font-size:
        38px;

    line-height:
        1.1;
}


.reina-management-description {
    max-width:
        560px;

    margin:
        0 0 35px;

    color:
        var(--reina-grey);

    font-size:
        13px;
}


.reina-two-fields {
    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        20px;
}


/* =========================
   SIDE NOTE
========================= */

.reina-management-side-note {
    min-height:
        100%;

    box-sizing:
        border-box;

    padding:
        40px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    background:
        var(--reina-pink-light);

    border:
        1px solid var(--reina-line);

    border-radius:
        20px;
}


.reina-management-side-note > span {
    color:
        var(--reina-gold);

    font-size:
        9px;

    font-weight:
        600;

    letter-spacing:
        .2em;
}


.reina-management-side-note > p {
    margin:
        55px 0;

    color:
        var(--reina-black);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        28px;

    font-style:
        italic;

    line-height:
        1.35;
}


.reina-management-mini-stat {
    padding-top:
        25px;

    border-top:
        1px solid var(--reina-line);
}


.reina-management-mini-stat strong {
    display:
        block;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        50px;

    font-weight:
        500;
}


.reina-management-mini-stat span {
    color:
        var(--reina-grey);

    font-size:
        11px;
}


/* =========================
   LIST
========================= */

.reina-management-list-section {
    margin-top:
        95px;
}


.reina-service-name {
    font-family:
        "Playfair Display",
        serif;

    font-size:
        18px;

    font-weight:
        500;
}


.reina-management-mobile-list {
    display:
        none;
}


.reina-service-mobile-card {
    position:
        relative;

    padding:
        25px;

    background:
        white;

    border:
        1px solid var(--reina-line);

    border-radius:
        16px;
}


.reina-service-index {
    color:
        var(--reina-gold);

    font-size:
        9px;

    letter-spacing:
        .15em;
}


.reina-service-mobile-card h3 {
    margin:
        12px 0 28px;

    font-size:
        28px;
}


.reina-service-mobile-meta {
    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        20px;

    padding-top:
        18px;

    border-top:
        1px solid var(--reina-line);
}


.reina-service-mobile-meta span {
    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--reina-gold);

    font-size:
        8px;

    letter-spacing:
        .16em;
}


.reina-service-mobile-meta strong {
    font-size:
        13px;
}


/* TABLET */

@media (max-width: 900px) {

    .reina-management-hero-grid {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .reina-management-layout {
        grid-template-columns:
            1fr;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .reina-management-hero {
        padding:
            70px 0;
    }


    .reina-management-hero h1 {
        font-size:
            52px;
    }


    .reina-management-content {
        padding:
            70px 0 90px;
    }


    .reina-management-form-card,
    .reina-management-side-note {
        padding:
            26px 22px;
    }


    .reina-two-fields {
        grid-template-columns:
            1fr;
    }


    .reina-management-table-desktop {
        display:
            none;
    }


    .reina-management-mobile-list {
        display:
            grid;

        gap:
            13px;
    }


    .reina-management-list-section {
        margin-top:
            70px;
    }

}
/* ==================================================
   REINA - PROGRAM DE LUCRU
================================================== */

.reina-work-intro {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.reina-work-intro h2 {
    margin: 8px 0 10px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;
}


.reina-work-intro p {
    max-width: 620px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


.reina-work-secondary-link {
    color: var(--reina-black);

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    border-bottom:
        1px solid var(--reina-gold);
}


/* =========================
   WEEK
========================= */

.reina-work-week {
    display: grid;

    gap: 12px;
}


.reina-work-day {
    display: grid;

    grid-template-columns:
        minmax(180px, 0.8fr)
        minmax(320px, 1.2fr)
        auto;

    gap: 30px;

    align-items: center;

    padding: 25px 28px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 16px;

    transition:
        background 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}


.reina-work-day:hover {
    transform:
        translateY(-2px);
}


.reina-work-day.is-off {
    background:
        var(--reina-pink-light);

    opacity: 0.78;
}


/* =========================
   DAY NAME
========================= */

.reina-work-day-name {
    display: flex;

    align-items: center;

    gap: 18px;
}


.reina-work-day-name > span {
    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.15em;
}


.reina-work-day-name h3 {
    margin: 0;

    font-size: 27px;
}


/* =========================
   HOURS
========================= */

.reina-work-hours {
    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    gap: 15px;

    align-items: end;
}


.reina-work-hours label {
    display: block;

    margin-bottom: 7px;

    color: var(--reina-grey);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.reina-work-hours input {
    width: 100%;

    box-sizing: border-box;

    padding: 11px 13px;

    background: var(--reina-cream);

    border:
        1px solid var(--reina-line);

    border-radius: 10px;

    color: var(--reina-black);

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 13px;

    outline: none;
}


.reina-work-hours input:focus {
    border-color:
        var(--reina-gold);
}


.reina-work-hours input:disabled {
    cursor: not-allowed;

    opacity: 0.45;
}


.reina-work-separator {
    padding-bottom: 12px;

    color: var(--reina-gold);
}


/* =========================
   SWITCH
========================= */

.reina-off-switch {
    display: flex;

    align-items: center;

    gap: 10px;

    cursor: pointer;
}


.reina-off-switch input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.reina-off-slider {
    position: relative;

    width: 46px;
    height: 25px;

    background: #ddd5d3;

    border-radius: 100px;

    transition:
        background 0.3s ease;
}


.reina-off-slider::after {
    content: "";

    position: absolute;

    top: 4px;
    left: 4px;

    width: 17px;
    height: 17px;

    background: white;

    border-radius: 50%;

    box-shadow:
        0 2px 5px
        rgba(0,0,0,.12);

    transition:
        transform 0.3s ease;
}


.reina-off-switch
input:checked
+
.reina-off-slider {
    background:
        var(--reina-pink);
}


.reina-off-switch
input:checked
+
.reina-off-slider::after {
    transform:
        translateX(21px);
}


.reina-off-label {
    color: var(--reina-grey);

    font-size: 11px;

    font-weight: 600;
}


/* =========================
   SAVE
========================= */

.reina-work-save {
    margin-top: 35px;

    padding: 30px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    border-top:
        1px solid var(--reina-line);
}


.reina-work-save p {
    max-width: 560px;

    margin: 5px 0 0;

    color: var(--reina-grey);

    font-size: 12px;
}


.reina-work-save-button {
    width: auto;

    min-width: 250px;
}


/* TABLET */

@media (max-width: 900px) {

    .reina-work-day {
        grid-template-columns:
            1fr 1.4fr;
    }


    .reina-off-switch {
        grid-column:
            1 / -1;

        justify-self: start;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .reina-work-intro {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-work-day {
        grid-template-columns: 1fr;

        gap: 22px;

        padding: 22px;
    }


    .reina-work-hours {
        grid-template-columns:
            1fr auto 1fr;
    }


    .reina-off-switch {
        grid-column: auto;
    }


    .reina-work-save {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-work-save-button {
        width: 100%;

        min-width: 0;
    }

}


@media (max-width: 420px) {

    .reina-work-hours {
        grid-template-columns: 1fr;
    }


    .reina-work-separator {
        display: none;
    }

}
/* ==================================================
   REINA - ZILE LIBERE
================================================== */

.reina-days-off-intro {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.reina-days-off-intro h2 {
    margin: 8px 0 10px;

    font-size:
        clamp(38px, 4vw, 54px);

    line-height: 1.05;
}


.reina-days-off-intro p {
    max-width: 620px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   FORM / SUMMARY
========================= */

.reina-days-off-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, .85fr);

    gap: 25px;
}


.reina-days-off-form,
.reina-days-off-summary {
    padding: 38px;

    border:
        1px solid var(--reina-line);

    border-radius: 20px;
}


.reina-days-off-form {
    background: white;
}


.reina-days-off-form h2 {
    margin: 8px 0 10px;

    font-size: 37px;
}


.reina-days-off-form > p {
    margin: 0 0 30px;

    color: var(--reina-grey);

    font-size: 13px;
}


.reina-days-off-summary {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: var(--reina-dark);

    color: white;
}


.reina-days-off-summary > span {
    color: var(--reina-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .2em;
}


.reina-days-off-summary > strong {
    margin: 35px 0 4px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 75px;

    font-weight: 500;

    line-height: 1;
}


.reina-days-off-summary > p {
    margin: 0;

    color:
        rgba(255, 255, 255, .55);

    font-size: 12px;
}


.reina-days-off-summary blockquote {
    margin: 55px 0 0;

    color: #efc9c4;

    font-family:
        "Playfair Display",
        serif;

    font-size: 24px;

    font-style: italic;

    line-height: 1.35;
}


/* =========================
   UPCOMING GRID
========================= */

.reina-days-off-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 17px;
}


.reina-day-off-card {
    min-height: 340px;

    padding: 27px;

    display: flex;

    flex-direction: column;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 18px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.reina-day-off-card:hover {
    transform:
        translateY(-5px);

    border-color:
        rgba(191,153,85,.35);

    box-shadow:
        var(--reina-shadow);
}


.reina-day-off-top {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.reina-day-off-index {
    color: var(--reina-gold);

    font-size: 9px;

    letter-spacing: .15em;
}


.reina-day-off-badge {
    padding: 6px 10px;

    background: var(--reina-pink-soft);

    border-radius: 100px;

    color: #8f625e;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .12em;
}


/* =========================
   DATE
========================= */

.reina-day-off-date {
    display: flex;

    align-items: center;

    gap: 20px;

    margin: 45px 0 35px;
}


.reina-day-off-date > strong {
    min-width: 70px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 62px;

    font-weight: 500;

    line-height: .9;
}


.reina-day-off-date span,
.reina-day-off-reason > span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .16em;
}


.reina-day-off-date h3 {
    margin: 0;

    font-size: 21px;

    line-height: 1.15;
}


/* =========================
   REASON
========================= */

.reina-day-off-reason {
    padding-top: 18px;

    border-top:
        1px solid var(--reina-line);
}


.reina-day-off-reason p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;
}


.reina-day-off-delete {
    margin-top: auto;

    padding-top: 30px;

    color: #9b5050;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;
}


.reina-day-off-delete:hover {
    color: #713838;
}


/* =========================
   HISTORY
========================= */

.reina-days-off-history-section {
    margin-top: 95px;
}


.reina-days-off-history {
    border-top:
        1px solid var(--reina-line);
}


.reina-day-off-history-row {
    display: grid;

    grid-template-columns:
        1fr 1fr auto;

    gap: 35px;

    align-items: center;

    padding: 23px 0;

    border-bottom:
        1px solid var(--reina-line);

    transition:
        padding .25s ease,
        background .25s ease;
}


.reina-day-off-history-row:hover {
    padding-left: 12px;
    padding-right: 12px;

    background:
        var(--reina-pink-light);
}


.reina-day-off-history-row span:not(.reina-past-badge) {
    display: block;

    margin-bottom: 5px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: .15em;
}


.reina-day-off-history-row strong {
    font-size: 13px;
}


.reina-past-badge {
    padding: 6px 10px;

    background: #f1efed;

    border-radius: 100px;

    color: #8a8380;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .12em;
}


/* TABLET */

@media (max-width: 900px) {

    .reina-days-off-layout {
        grid-template-columns:
            1fr;
    }


    .reina-days-off-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .reina-days-off-intro {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-days-off-form,
    .reina-days-off-summary {
        padding: 26px 22px;
    }


    .reina-days-off-grid {
        grid-template-columns:
            1fr;
    }


    .reina-day-off-card {
        min-height: 310px;
    }


    .reina-day-off-history-row {
        grid-template-columns:
            1fr;

        gap: 17px;
    }


    .reina-days-off-history-section {
        margin-top: 70px;
    }

}
/* ==================================================
   REINA - ADMIN DASHBOARD
================================================== */

.reina-admin-page {
    margin: 0;
    background: var(--reina-cream);
}


.reina-admin-container {
    width:
        min(1180px, calc(100% - 48px));

    margin: 0 auto;
}


/* =========================
   HERO
========================= */

.reina-admin-hero {
    padding:
        100px 0 90px;

    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(215, 160, 155, 0.20),
            transparent 30%
        ),
        var(--reina-dark);

    color: white;
}


.reina-admin-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(220px, .5fr);

    gap: 90px;

    align-items: end;
}


.reina-admin-hero h1 {
    max-width: 850px;

    margin: 0;

    font-size:
        clamp(52px, 7vw, 88px);

    line-height: .98;

    letter-spacing: -.04em;
}


.reina-admin-hero h1 em {
    display: block;

    color: #efc9c4;

    font-weight: 500;
}


.reina-admin-hero-grid > div:first-child > p {
    max-width: 560px;

    margin: 30px 0 0;

    color:
        rgba(255,255,255,.62);

    font-size: 14px;
}


.reina-admin-hero-note {
    padding-left: 35px;

    border-left:
        1px solid
        rgba(255,255,255,.14);
}


.reina-admin-hero-note > span {
    color:
        var(--reina-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .2em;
}


.reina-admin-hero-note strong {
    display: block;

    margin: 12px 0 5px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 74px;

    font-weight: 500;

    line-height: 1;
}


.reina-admin-hero-note p {
    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}


/* =========================
   CONTENT
========================= */

.reina-admin-content {
    padding:
        100px 0 130px;
}


.reina-admin-top {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}


.reina-admin-top h2 {
    margin: 8px 0 10px;

    font-size:
        clamp(40px, 5vw, 58px);
}


.reina-admin-top p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   STATS
========================= */

.reina-admin-stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-bottom: 100px;

    border-top:
        1px solid var(--reina-line);

    border-left:
        1px solid var(--reina-line);
}


.reina-admin-stat {
    min-height: 220px;

    padding: 28px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    background: white;

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-admin-stat > span {
    color:
        var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;
}


.reina-admin-stat > strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 62px;

    font-weight: 500;
}


.reina-admin-stat > p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;
}


.reina-admin-stat-alert {
    background:
        var(--reina-pink-light);
}


/* =========================
   SECTIONS
========================= */

.reina-admin-section {
    margin-top: 100px;
}


.reina-admin-section-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 45px;
}


.reina-admin-section-heading h2 {
    margin: 8px 0 0;

    font-size:
        clamp(38px, 4vw, 54px);
}


.reina-admin-section-heading > p {
    max-width: 350px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   ACTIONS
========================= */

.reina-admin-actions {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}


.reina-admin-action-card {
    position: relative;

    min-height: 280px;

    padding: 28px;

    display: flex;

    flex-direction: column;
    justify-content: space-between;

    background: white;

    border-top:
        1px solid var(--reina-line);

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);

    color: var(--reina-black);

    text-decoration: none;

    transition:
        transform .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}


.reina-admin-action-card:first-child {
    border-left:
        1px solid var(--reina-line);
}


.reina-admin-action-card:hover {
    z-index: 2;

    transform:
        translateY(-7px);

    background:
        var(--reina-pink-light);

    box-shadow:
        var(--reina-shadow);
}


.reina-admin-action-card h3 {
    margin: 0 0 12px;

    font-size: 28px;
}


.reina-admin-action-card p {
    max-width: 240px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;
}


/* =========================
   CALENDAR
========================= */

.reina-admin-calendar {
    padding: 25px;

    border-radius: 18px;
}


/* =========================
   MOBILE CARDS
========================= */

.reina-admin-mobile-list {
    display: none;
}


.reina-admin-mobile-card {
    padding: 24px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 16px;
}


.reina-admin-mobile-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}


.reina-admin-mobile-top > div > span,
.reina-admin-mobile-service > span,
.reina-admin-mobile-details span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: .16em;
}


.reina-admin-mobile-top h3 {
    margin: 0;

    font-size: 27px;
}


.reina-admin-mobile-service {
    padding: 18px 0;

    border-top:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-admin-mobile-service strong {
    font-family:
        "Playfair Display",
        serif;

    font-size: 20px;

    font-weight: 500;
}


.reina-admin-mobile-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    padding: 20px 0;
}


.reina-admin-mobile-details strong {
    font-size: 12px;
}


.reina-admin-mobile-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding-top: 18px;

    border-top:
        1px solid var(--reina-line);
}


/* TABLET */

@media (max-width: 1000px) {

    .reina-admin-actions {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .reina-admin-hero-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .reina-admin-hero-note {
        max-width: 300px;
    }


    .reina-admin-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .reina-admin-container {
        width:
            calc(100% - 36px);
    }


    .reina-admin-hero {
        padding:
            75px 0;
    }


    .reina-admin-hero h1 {
        font-size: 52px;
    }


    .reina-admin-content {
        padding:
            75px 0 95px;
    }


    .reina-admin-top {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-admin-stats {
        grid-template-columns: 1fr;
    }


    .reina-admin-section {
        margin-top: 75px;
    }


    .reina-admin-section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }


    .reina-admin-actions {
        grid-template-columns: 1fr;
    }


    .reina-admin-action-card {
        min-height: 225px;

        border-left:
            1px solid var(--reina-line);
    }


    .reina-admin-calendar {
        padding: 12px;
    }


    .reina-admin-table-desktop {
        display: none;
    }


    .reina-admin-mobile-list {
        display: grid;

        gap: 14px;
    }

}
/* ==================================================
   REINA - ADMIN SPECIALIȘTI
================================================== */

.reina-specialists-admin-intro {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;
}


.reina-specialists-admin-intro h2 {
    margin: 8px 0 10px;

    font-size:
        clamp(40px, 5vw, 56px);

    line-height: 1.05;
}


.reina-specialists-admin-intro p {
    max-width: 620px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   STATS
========================= */

.reina-specialists-admin-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-bottom: 90px;

    border-top:
        1px solid var(--reina-line);

    border-left:
        1px solid var(--reina-line);
}


/* =========================
   NAME
========================= */

.reina-specialist-admin-name {
    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;

    font-weight: 500;
}


/* =========================
   BADGES
========================= */

.reina-specialist-approved,
.reina-specialist-pending {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 11px;

    border-radius: 100px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .12em;
}


.reina-specialist-approved {
    background: #edf4ee;

    color: #55765b;
}


.reina-specialist-pending {
    background: var(--reina-pink-soft);

    color: #91615d;
}


.reina-specialist-active-text {
    color: var(--reina-grey);

    font-size: 11px;
}


/* =========================
   ACTIONS
========================= */

.reina-specialist-admin-actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;
}


.reina-specialist-approve-button,
.reina-specialist-reject-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 36px;

    padding: 0 14px;

    border-radius: 100px;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease;
}


.reina-specialist-approve-button {
    background: var(--reina-dark);

    color: white;
}


.reina-specialist-approve-button:hover {
    transform: translateY(-2px);

    background: var(--reina-gold);

    color: white;
}


.reina-specialist-reject-button {
    background: transparent;

    border:
        1px solid rgba(140, 70, 70, .25);

    color: #8e5252;
}


.reina-specialist-reject-button:hover {
    transform: translateY(-2px);

    background: #8e5252;

    color: white;
}


/* =========================
   MOBILE
========================= */

.reina-specialists-mobile-list {
    display: none;
}


.reina-specialist-admin-card {
    padding: 24px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 17px;
}


.reina-specialist-admin-card.is-pending {
    border-color:
        rgba(215,160,155,.65);

    background:
        linear-gradient(
            145deg,
            white,
            var(--reina-pink-light)
        );
}


.reina-specialist-admin-card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.reina-specialist-admin-card h3 {
    margin: 22px 0 28px;

    font-size: 30px;
}


.reina-specialist-admin-card-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;

    padding: 20px 0;

    border-top:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-specialist-admin-card-details span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: .15em;
}


.reina-specialist-admin-card-details strong {
    display: block;

    overflow-wrap: anywhere;

    font-size: 12px;
}


.reina-specialist-admin-mobile-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    padding-top: 22px;
}


.reina-specialist-admin-active {
    display: flex;

    align-items: center;

    gap: 8px;

    padding-top: 22px;

    color: var(--reina-grey);

    font-size: 11px;
}


.reina-specialist-admin-active span {
    color: var(--reina-gold);
}


/* TABLET */

@media (max-width: 900px) {

    .reina-specialists-admin-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .reina-specialists-admin-intro {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-specialists-admin-stats {
        grid-template-columns: 1fr;
    }


    .reina-specialists-table-desktop {
        display: none;
    }


    .reina-specialists-mobile-list {
        display: grid;

        gap: 14px;
    }

}


@media (max-width: 480px) {

    .reina-specialist-admin-card-details {
        grid-template-columns: 1fr;
    }

}
/* ==================================================
   REINA - SETĂRI SITE
================================================== */

.reina-settings-intro {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}


.reina-settings-intro h2 {
    margin: 8px 0 10px;

    font-size:
        clamp(40px, 5vw, 56px);

    line-height: 1.05;
}


.reina-settings-intro p {
    max-width: 620px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 13px;
}


/* =========================
   SECTIONS
========================= */

.reina-settings-section {
    display: grid;

    grid-template-columns:
        minmax(220px, .55fr)
        minmax(0, 1.45fr);

    gap: 50px;

    padding: 55px 0;

    border-top:
        1px solid var(--reina-line);
}


.reina-settings-section-title {
    display: flex;

    align-items: flex-start;

    gap: 18px;
}


.reina-settings-section-title > span {
    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .15em;
}


.reina-settings-section-title h3 {
    margin: 0 0 8px;

    font-size: 29px;
}


.reina-settings-section-title p {
    max-width: 260px;

    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   GENERAL PANEL
========================= */

.reina-settings-panel {
    padding: 35px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 20px;
}


/* =========================
   MEDIA
========================= */

.reina-settings-media-panel {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(280px, .9fr);

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 20px;

    overflow: hidden;
}


.reina-settings-preview {
    min-height: 320px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 35px;

    box-sizing: border-box;

    background:
        var(--reina-dark);
}


.reina-settings-logo-preview img {
    display: block;

    max-width: 100%;
    max-height: 220px;

    object-fit: contain;
}


.reina-settings-upload {
    padding: 38px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.reina-settings-upload h4 {
    margin: 8px 0 10px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 30px;

    font-weight: 500;
}


.reina-settings-upload > p {
    margin: 0 0 25px;

    color: var(--reina-grey);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   UPLOAD FIELD
========================= */

.reina-upload-field {
    padding: 22px;

    display: block;

    background:
        var(--reina-pink-light);

    border:
        1px dashed
        rgba(191,153,85,.5);

    border-radius: 14px;

    cursor: pointer;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease;
}


.reina-upload-field:hover {
    transform: translateY(-2px);

    background: var(--reina-pink-soft);

    border-color:
        var(--reina-gold);
}


.reina-upload-field input {
    display: block;

    width: 100%;

    margin-bottom: 12px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 11px;
}


.reina-upload-field > span {
    display: block;

    margin-bottom: 4px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 18px;
}


.reina-upload-field small {
    color: var(--reina-grey);

    font-size: 10px;
}


/* =========================
   HERO PREVIEW
========================= */

.reina-settings-hero-panel {
    display: grid;

    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(280px, .65fr);

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 20px;

    overflow: hidden;
}


.reina-settings-hero-preview {
    min-height: 380px;

    background: var(--reina-dark);
}


.reina-settings-hero-preview img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 380px;

    object-fit: cover;
}


.reina-settings-no-image {
    width: 100%;
    min-height: 260px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 10px;

    color: white;

    text-align: center;
}


.reina-settings-no-image > span {
    color:
        var(--reina-gold-light);

    font-family:
        "Playfair Display",
        serif;

    font-size: 34px;

    letter-spacing: .15em;
}


.reina-settings-no-image p {
    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 11px;
}


/* =========================
   SAVE
========================= */

.reina-settings-save {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 40px 0 10px;

    border-top:
        1px solid var(--reina-line);
}


.reina-settings-save p {
    max-width: 560px;

    margin: 5px 0 0;

    color: var(--reina-grey);

    font-size: 12px;
}


.reina-settings-save-button {
    width: auto;

    min-width: 250px;
}


/* TABLET */

@media (max-width: 950px) {

    .reina-settings-section {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .reina-settings-media-panel,
    .reina-settings-hero-panel {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .reina-settings-intro {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-settings-section {
        padding: 42px 0;
    }


    .reina-settings-panel,
    .reina-settings-upload {
        padding: 24px 22px;
    }


    .reina-settings-preview {
        min-height: 240px;

        padding: 25px;
    }


    .reina-settings-hero-preview,
    .reina-settings-hero-preview img {
        min-height: 260px;
    }


    .reina-settings-save {
        align-items: flex-start;

        flex-direction: column;
    }


    .reina-settings-save-button {
        width: 100%;

        min-width: 0;
    }

}
/* ==================================================
   REINA - EDITARE PROGRAMARE
================================================== */

.reina-edit-page {
    background:
        var(--reina-cream);
}


.reina-edit-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(300px, .75fr);

    gap: 30px;

    align-items: start;
}


/* =========================
   FORM
========================= */

.reina-edit-form-card {
    padding: 40px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 20px;
}


.reina-edit-form-card h2 {
    margin: 8px 0 12px;

    font-size:
        clamp(38px, 4vw, 50px);

    line-height: 1.05;
}


.reina-edit-section-label {
    margin:
        35px 0 18px;

    padding-top: 25px;

    border-top:
        1px solid var(--reina-line);

    color:
        var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;
}


/* =========================
   SELECTS
========================= */

.reina-edit-form-card select {
    width: 100%;

    box-sizing: border-box;

    padding:
        14px 15px;

    background:
        var(--reina-cream);

    border:
        1px solid var(--reina-line);

    border-radius: 10px;

    color:
        var(--reina-black);

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 13px;

    outline: none;
}


.reina-edit-form-card select:focus {
    border-color:
        var(--reina-gold);
}


/* =========================
   ACTIONS
========================= */

.reina-edit-actions {
    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 35px;
}


.reina-edit-actions
.reina-login-button {
    width: auto;

    min-width: 260px;
}


.reina-edit-cancel {
    color:
        var(--reina-grey);

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;
}


.reina-edit-cancel:hover {
    color:
        var(--reina-black);
}


/* =========================
   SUMMARY
========================= */

.reina-edit-summary {
    position: sticky;

    top: 100px;

    padding: 35px;

    background:
        var(--reina-dark);

    border-radius: 20px;

    color: white;
}


.reina-edit-summary > span {
    color:
        var(--reina-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .18em;
}


.reina-edit-summary h3 {
    margin:
        12px 0 35px;

    color:
        white;

    font-size: 36px;
}


.reina-edit-summary-list {
    border-top:
        1px solid
        rgba(255,255,255,.12);
}


.reina-edit-summary-list > div {
    padding: 18px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.12);
}


.reina-edit-summary-list span {
    display: block;

    margin-bottom: 6px;

    color:
        var(--reina-gold-light);

    font-size: 8px;

    letter-spacing: .15em;
}


.reina-edit-summary-list strong {
    color: white;

    font-size: 13px;

    font-weight: 500;
}


.reina-edit-summary-note {
    display: flex;

    gap: 12px;

    margin-top: 30px;

    color:
        rgba(255,255,255,.55);
}


.reina-edit-summary-note > span {
    color:
        var(--reina-gold-light);
}


.reina-edit-summary-note p {
    margin: 0;

    font-size: 11px;

    line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

    .reina-edit-layout {
        grid-template-columns: 1fr;
    }


    .reina-edit-summary {
        position: static;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .reina-edit-form-card {
        padding:
            26px 22px;
    }


    .reina-edit-actions {
        align-items: stretch;

        flex-direction: column;
    }


    .reina-edit-actions
    .reina-login-button {
        width: 100%;

        min-width: 0;
    }

}
/* ==================================================
   REINA - RESULT / SUCCESS / ERROR
================================================== */

.reina-result-page {
    min-height:
        calc(100vh - 90px);

    padding:
        90px 24px;

    box-sizing:
        border-box;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        var(--reina-cream);
}


.reina-result-card {
    width:
        min(680px, 100%);

    box-sizing:
        border-box;

    padding:
        55px;

    background:
        white;

    border:
        1px solid var(--reina-line);

    border-radius:
        22px;

    box-shadow:
        var(--reina-shadow);

    text-align:
        center;
}


.reina-result-symbol {
    margin:
        25px auto;

    color:
        var(--reina-gold);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        42px;
}


.reina-result-card h1 {
    margin:
        10px 0 18px;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height:
        1.03;
}


.reina-result-card > p {
    max-width:
        500px;

    margin:
        0 auto 35px;

    color:
        var(--reina-grey);

    font-size:
        13px;

    line-height:
        1.8;
}


.reina-result-details {
    display:
        grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap:
        0;

    margin:
        35px 0;

    border-top:
        1px solid var(--reina-line);

    border-left:
        1px solid var(--reina-line);
}


.reina-result-details > div {
    padding:
        20px;

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-result-details span {
    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--reina-gold);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        .15em;
}


.reina-result-details strong {
    font-size:
        13px;
}


.reina-result-card
.reina-dashboard-main-button {
    margin:
        0 auto;
}


@media (max-width: 600px) {

    .reina-result-page {
        padding:
            55px 18px;
    }


    .reina-result-card {
        padding:
            36px 22px;
    }


    .reina-result-details {
        grid-template-columns:
            1fr;
    }

}
/* ==================================================
   CLIENT DASHBOARD - FIX FINAL
================================================== */

.reina-dashboard-page {
    background: var(--reina-cream);
}


/* =========================
   CONTAINER
========================= */

.reina-dashboard-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================
   HERO
========================= */

.reina-dashboard-hero {
    padding: 120px 0 95px;

    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(215, 160, 155, 0.18),
            transparent 32%
        ),
        var(--reina-dark);

    color: white;
}


.reina-dashboard-hero
.reina-dashboard-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: var(--reina-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .22em;
}


.reina-dashboard-hero h1 {
    max-width: 850px;

    margin: 0;

    color: white;

    font-size: clamp(52px, 7vw, 88px);

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.04em;
}


.reina-dashboard-hero h1 em {
    display: block;

    color: #efc9c4;

    font-weight: 500;
}


.reina-dashboard-quote {
    max-width: 500px;

    margin: 30px 0 0;

    padding-left: 20px;

    border-left:
        1px solid rgba(255,255,255,.18);

    color:
        rgba(255,255,255,.6);

    font-size: 13px;
}


/* =========================
   CONTENT
========================= */

.reina-dashboard-content {
    padding: 95px 0 125px;
}


.reina-dashboard-top {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 50px;
}


.reina-dashboard-top h2 {
    margin: 8px 0 8px;

    font-size: clamp(40px, 5vw, 58px);

    line-height: 1.05;
}


.reina-dashboard-top > div > p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 12px;
}


/* =========================
   MAIN BUTTON
========================= */

.reina-dashboard-main-button {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    min-height: 54px;

    padding: 0 8px 0 22px;

    background: var(--reina-black);

    border-radius: 100px;

    color: white;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


.reina-dashboard-main-button:hover {
    transform: translateY(-3px);

    background: var(--reina-gold);

    box-shadow:
        0 15px 30px rgba(30,20,20,.12);
}


.reina-dashboard-button-arrow {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: white;

    border-radius: 50%;

    color: var(--reina-black);

    font-size: 15px;
}


/* =========================
   STATS
========================= */

.reina-dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    margin-bottom: 95px;

    border-top:
        1px solid var(--reina-line);

    border-left:
        1px solid var(--reina-line);
}


.reina-dashboard-stat {
    min-height: 195px;

    box-sizing: border-box;

    padding: 27px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: white;

    border-right:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


.reina-dashboard-stat > span {
    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .17em;
}


.reina-dashboard-stat > strong {
    margin: 18px 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 58px;

    font-weight: 500;

    line-height: 1;
}


.reina-dashboard-stat > p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 11px;
}


/* =========================
   SECTIONS
========================= */

.reina-dashboard-section {
    margin-top: 90px;
}


.reina-dashboard-section-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 38px;
}


.reina-dashboard-section-heading h2 {
    margin: 8px 0 0;

    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.05;
}


.reina-section-count {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--reina-line);

    border-radius: 50%;

    color: var(--reina-gold);

    font-family:
        "Playfair Display",
        serif;

    font-size: 19px;
}


/* =========================
   UPCOMING APPOINTMENTS
========================= */

.reina-dashboard-upcoming-list {
    display: grid;

    gap: 13px;
}


.reina-dashboard-appointment {
    display: grid;

    grid-template-columns:
        100px
        minmax(200px, 1fr)
        minmax(350px, 1.4fr)
        auto;

    gap: 30px;

    align-items: center;

    padding: 25px 28px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 17px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.reina-dashboard-appointment:hover {
    transform: translateY(-4px);

    border-color:
        rgba(191,153,85,.35);

    box-shadow:
        var(--reina-shadow);
}


/* DATE BLOCK */

.reina-dashboard-date {
    padding-right: 24px;

    border-right:
        1px solid var(--reina-line);

    text-align: center;
}


.reina-dashboard-date strong {
    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size: 48px;

    font-weight: 500;

    line-height: .95;
}


.reina-dashboard-date span {
    display: block;

    margin-top: 6px;

    color: var(--reina-gold);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .15em;
}


/* SERVICE */

.reina-dashboard-appointment-main > span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .16em;
}


.reina-dashboard-appointment-main h3 {
    margin: 0 0 5px;

    font-size: 27px;

    line-height: 1.1;
}


.reina-dashboard-appointment-main p {
    margin: 0;

    color: var(--reina-grey);

    font-size: 11px;
}


/* META */

.reina-dashboard-appointment-meta {
    display: grid;

    grid-template-columns:
        1.5fr .8fr 1fr;

    gap: 18px;
}


.reina-dashboard-appointment-meta > div > span:first-child {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .14em;
}


.reina-dashboard-appointment-meta strong {
    font-size: 11px;

    font-weight: 600;
}


/* ACTION */

.reina-dashboard-appointment-action {
    display: flex;

    justify-content: flex-end;
}


/* =========================
   HISTORY
========================= */

.reina-dashboard-history {
    border-top:
        1px solid var(--reina-line);
}


.reina-dashboard-history-row {
    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr .5fr auto;

    gap: 30px;

    align-items: center;

    padding: 22px 10px;

    border-bottom:
        1px solid var(--reina-line);
}


.reina-dashboard-history-row > div > span {
    display: block;

    margin-bottom: 6px;

    color: var(--reina-gold);

    font-size: 8px;

    letter-spacing: .14em;
}


.reina-dashboard-history-row strong {
    font-size: 12px;
}


.reina-history-empty {
    padding: 35px 0;

    color: var(--reina-grey);

    font-size: 12px;

    border-top:
        1px solid var(--reina-line);

    border-bottom:
        1px solid var(--reina-line);
}


/* =========================
   EMPTY STATE
========================= */

.reina-dashboard-empty {
    padding: 65px 30px;

    background: white;

    border:
        1px solid var(--reina-line);

    border-radius: 18px;

    text-align: center;
}


.reina-dashboard-empty > span {
    display: block;

    margin-bottom: 15px;

    color: var(--reina-gold);

    font-size: 30px;
}


.reina-dashboard-empty h3 {
    margin: 0 0 10px;

    font-size: 30px;
}


.reina-dashboard-empty p {
    max-width: 470px;

    margin: 0 auto 25px;

    color: var(--reina-grey);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================
   BOTTOM
========================= */

.reina-dashboard-bottom {
    padding: 75px 24px;

    background: var(--reina-dark);

    color: white;

    text-align: center;
}


.reina-dashboard-bottom > span {
    color: var(--reina-gold-light);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .2em;
}


.reina-dashboard-bottom p {
    max-width: 650px;

    margin: 16px auto 0;

    color: #efc9c4;

    font-family:
        "Playfair Display",
        serif;

    font-size: clamp(25px, 4vw, 38px);

    font-style: italic;

    line-height: 1.25;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {

    .reina-dashboard-appointment {
        grid-template-columns:
            90px 1fr 1fr;
    }


    .reina-dashboard-appointment-action {
        grid-column:
            2 / -1;

        justify-content: flex-start;
    }


    .reina-dashboard-appointment-meta {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {

    .reina-dashboard-container {
        width: calc(100% - 36px);
    }


    .reina-dashboard-hero {
        padding: 90px 0 70px;
    }


    .reina-dashboard-hero h1 {
        font-size: 51px;
    }


    .reina-dashboard-content {
        padding: 70px 0 90px;
    }


    .reina-dashboard-top {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 40px;
    }


    .reina-dashboard-stats {
        grid-template-columns: 1fr;

        margin-bottom: 70px;
    }


    .reina-dashboard-stat {
        min-height: 160px;
    }


    .reina-dashboard-section {
        margin-top: 70px;
    }


    .reina-dashboard-section-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .reina-dashboard-appointment {
        grid-template-columns: 1fr;

        gap: 22px;

        padding: 22px;
    }


    .reina-dashboard-date {
        display: flex;

        align-items: baseline;

        gap: 8px;

        padding: 0 0 18px;

        border-right: 0;

        border-bottom:
            1px solid var(--reina-line);

        text-align: left;
    }


    .reina-dashboard-date strong {
        font-size: 43px;
    }


    .reina-dashboard-appointment-meta {
        grid-template-columns:
            repeat(2, 1fr);

        padding-top: 18px;

        border-top:
            1px solid var(--reina-line);
    }


    .reina-dashboard-appointment-action {
        grid-column: auto;
    }


    .reina-dashboard-history-row {
        grid-template-columns: 1fr 1fr;

        gap: 20px;

        padding: 22px 0;
    }

}


@media (max-width: 430px) {

    .reina-dashboard-appointment-meta,
    .reina-dashboard-history-row {
        grid-template-columns: 1fr;
    }

}