body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* Override main styles for profile page */
main .profile-container {
    max-width: 100%;
}

main:has(.profile-container),
body:has(.profile-container) main {
    max-width: 100% !important;
    background: white !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

h1 {
    text-align: center;
}

form div {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input.code-digit {
    background: #F0E2E2 !important;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

.messages {
    list-style: none;
    padding: 0;
}

.messages li {
    background: #e0ffe0;
    border: 1px solid #b2ffb2;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.errorlist {
    background: #ffe0e0;
    border: 1px solid #ffb2b2;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ===== HEADER / NAVBAR ===== */
header {
    background-color: #521B1E;
}

/* Glavni container za nav */
.main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    min-height: 80px;
}

.main-navbar .navbar-logo {
    height: 72px;
    display: block;
}
/* Meni (desktop) */
.main-navbar .navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

.main-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Linkovi u meniju */
.main-navbar .navbar-nav .nav-link,
.main-navbar .navbar-brand {
    color: #FFF6F5;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link:focus {
    color: rgba(255, 246, 245, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Aktivni link - potamljen i ne klikabilan */
.main-navbar .navbar-nav .nav-link-active {
    color: rgba(255, 246, 245, 0.7);
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

/* Logout dugme kao link */
.main-navbar .nav-item form {
    display: inline;
}

.main-navbar .nav-item button.nav-link {
    background: none;
    border: none;
    color: #FFF6F5;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-navbar .nav-item button.nav-link:hover {
    color: rgba(255, 246, 245, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hamburger dugme */
.main-navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: transparent;
    cursor: pointer;
    display: none; /* desktop: sakrij */
}

.main-navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* 3 horizontalne linije boje #FFF6F5 */
.main-navbar .toggler-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background-color: #FFF6F5;
}

.main-navbar .mobile-menu-header {
    display: none;
}
/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .main-navbar {
        flex-wrap: nowrap;
        padding: 8px 16px;
        min-height: 64px;
    }

    .main-navbar .navbar-logo {
        height: 48px;
    }

    .main-navbar .navbar-toggler {
        display: block;
    }

    /* Slide-in drawer meni */
    .main-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 70vw;
        max-width: 360px;
        background-color: #521B1E;
        padding: 24px 20px 24px;
        display: block;
        transform: translateX(-100%);
        transition: transform 0.25s ease-out;
        z-index: 1000;
    }

    .main-navbar .navbar-collapse.is-open {
        transform: translateX(0);
    }

    /* Logo na vrhu drawer-a */
    .main-navbar .mobile-menu-header {
        display: block;
        margin-bottom: 24px;
    }

    .main-navbar .mobile-menu-logo {
        height: 64px;
        display: block;
    }

    /* Linkovi – ceo red klikabilan, bez zaobljenja, bez “senke” */
    .main-navbar .navbar-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .main-navbar .nav-item {
        margin: 0;
    }

    .main-navbar .navbar-nav .nav-link,
    .main-navbar .nav-item button.nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;          /* vertikalni padding, širinu drži parent */
        font-size: 1.1rem;
        border-radius: 0;         /* više nije pill */
        background: transparent;  /* nema blage “senke” */
        text-align: left;
    }

    .main-navbar .navbar-nav .nav-link:hover,
    .main-navbar .nav-item button.nav-link:hover {
        background: rgba(255, 246, 245, 0.12); /* blagi hover, pravougaoni */
        text-decoration: none;
    }

    /* Aktivni link na mobilnim */
    .main-navbar .navbar-nav .nav-link-active {
        background: rgba(255, 246, 245, 0.12);
        color: rgba(255, 246, 245, 0.7);
        cursor: default;
        pointer-events: none;
    }

    /* Overlay iza menija ostaje isti */
    .mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 900;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease-out;
    }

    .mobile-backdrop.is-active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ===== FOOTER ===== */

.site-footer {
    background-color: #521B1E;   /* ista boja kao header */
    color: #FFF6F5;
    padding: 28px 32px 18px;     /* horizontalni padding 32px kao u headeru */
}

/* svi linkovi u footeru */
.site-footer a {
    color: #FFF6F5;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* unutrašnji layout – full širina */
.footer-inner {
    width: 100%;
    margin: 0;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* tri kolone – ravnomerno, sadržaj centriran */
.footer-column {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

.footer-brand {
    flex: 1 1 0;
    text-align: center;
}

/* veći logo */
.footer-logo {
    height: 96px;
    display: block;
    margin: 0 auto;
}

/* naslovi kolona */
.footer-column h4 {
    margin: 0 0 8px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

/* običan tekst */
.footer-column p {
    margin: 4px 0;
    font-size: 14px;
}

/* ikonice + tekst – centrirani u redu */
.footer-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-icon {
    display: inline-flex;
    width: 18px;
    justify-content: center;
}

/* Donja linija sa pravima */
.footer-bottom {
    width: 100%;
    margin: 20px 0 0;
    border-top: 1px solid rgba(255, 246, 245, 0.2);
    padding-top: 10px;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        text-align: left;
    }

    .footer-contact-row {
        justify-content: flex-start;
    }

    .footer-bottom {
        text-align: left;
        font-size: 12px;
    }

    .footer-logo {
        height: 80px;
    }
}

/* HOME PAGE LAYOUT */
body.home-page main {
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

/* === HERO SEKCIJA (HOME) === */

.home-hero {
    position: relative;
    min-height: calc(100vh - 80px); /* ceo ekran ispod headera */
    display: flex;
    align-items: center;
    padding: 0 10vw;
    color: #FFF6F5;
    overflow: hidden;
}

/* Pozadinska slika + zatamljeni gradient */
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url("../img/home-hero.93922a47ab86.jpg") center/cover no-repeat;
    z-index: -1;
}

.home-hero-inner {
    max-width: 680px;              /* malo šire da ne lomi tekst */
    display: flex;
    flex-direction: column;
    align-items: flex-start;       /* i tekst i dugme u istoj ravni */
}

.home-hero-title {
    font-family: "Italiana", serif;
    font-weight: 400;
    font-size: clamp(72px, 9vw, 110px);
    line-height: 1.03;
    margin: 0;
    text-align: left;          /* NOVO – pregazi globalni h1 center */
}


/* CTA dugme */
.home-hero-cta {
    display: inline-block;
    margin-top: 40px;          /* bilo 32px – veći razmak od teksta */
    padding: 20px 60px;
    border-radius: 0;
    background-color: #521B1E;
    color: #FFF6F5;
    font-size: 23px;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color 0.3s ease;
}

.home-hero-cta:hover {
    background-color: #3f0f0f;
    text-decoration: none;
}

.home-hero-line {
    display: block;
}

/* Hero responsive */
@media (max-width: 768px) {
    .home-hero {
        min-height: calc(100vh - 64px);
        padding: 0 24px;
    }

    .home-hero-title {
        font-size: clamp(60px, 8vw, 42px);
    }

    .home-hero-cta {
        font-size: 18px;
        padding: 14px 40px;
    }

    .home-hero-line {
        white-space: nowrap;             /* na desktopu sigurno ne lomi u 3. red */
    }
}

/* === GALERIJA SEKCIJA (HOME) === */
.home-gallery {
    position: relative;

    padding: 64px 10vw;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Pozadinska slika */
.home-gallery::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/gallery-background.2eafd39c44a6.png") center/cover no-repeat;
    z-index: -1;
}

.home-gallery-inner {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    align-self: stretch;
}

.gallery-subsection {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-subsection-single {
    flex: 2;
    display: flex;
    flex-direction: column;
}

.gallery-subsection-double {
    flex: 1;
}

/* Slike u podsekcijama */
.gallery-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Prva i treća podsekcija - jedna slika koja treba da zauzme punu visinu */
.gallery-subsection-single .gallery-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centralna podsekcija - dve slike vertikalno */
.gallery-subsection-double .gallery-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive za galeriju */
@media (max-width: 1150px) {
    .home-gallery {
        padding: 48px 5vw;
    }
    
    .home-gallery-inner {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .home-gallery {
        padding: 40px 24px;
    }
    
    .home-gallery-inner {
        gap: 12px;
    }
}

/* === REVIEWS SEKCIJA (HOME) === */
.home-reviews {
    background-color: #FFF6F5;
    min-height: 50vh;
    padding: 64px 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-reviews-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* === PRICING / CENOVNIK SEKCIJA (HOME) === */
.home-pricing {
    background: #ffffff;
    padding: 64px 10vw;
}

.home-pricing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

/* LEVA SEKCija - COPY (ostaje ista) */
.home-pricing-copy {
    flex: 0 0 38%;
    max-width: 420px;
}

.home-pricing-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 28px;
    color: #000;
}

.home-pricing-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #111827;
    font-family: "Gilda Display", serif;
}

.home-pricing-cta {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 0;
    background-color: #521B1E;
    color: #FFF6F5;
    font-size: 23px;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color 0.3s ease;
}

.home-pricing-cta:hover {
    background-color: #3f0f0f;
    text-decoration: none;
}

/* DESNA SEKCIJA - SLIKA */
.home-pricing-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.pricing-photo-img {
    width: 80%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* RESPONSIVE - sekcije jedna ispod druge */
@media (max-width: 1150px) {
    .home-pricing {
        padding: 56px 24px;
    }

    .home-pricing-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .home-pricing-copy {
        flex: none;
        max-width: 520px;
        margin: 0 auto;
    }

    .home-pricing-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        justify-content: center; /* centriraj sliku kada su sekcije jedna ispod druge */
    }
}

@media (max-width: 900px) {
    .home-pricing {
        padding: 40px 24px;
    }

    .home-pricing-title {
        font-size: 32px;
    }

    .home-pricing-text {
        font-size: 15px;
    }

    .home-pricing-cta {
        font-size: 18px;
        padding: 14px 40px;
    }
}

@media (max-width: 600px) {
    .home-pricing {
        padding: 32px 16px;
    }
}

/* === VEGANSKI PROIZVODI SEKCIJA (HOME) === */
.home-vegan {
    background: #ffffff;
    padding: 64px 10vw;
    height: 80vh;
    overflow: hidden;
}

.home-vegan-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    height: 100%;
}

/* LEVA SEKCIJA - COPY */
.home-vegan-copy {
    flex: 0 0 48%;
    max-width: 550px;
}

.home-vegan-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 40px;
    color: #000;
}

.home-vegan-cta {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 0;
    background-color: #521B1E;
    color: #FFF6F5;
    font-size: 23px;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color 0.3s ease;
}

.home-vegan-cta:hover {
    background-color: #3f0f0f;
    text-decoration: none;
}

/* DESNA SEKCIJA - SLIKA */
.home-vegan-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    overflow: hidden;
}

.vegan-products-img {
    width: 90%;
    max-width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* RESPONSIVE - sekcije jedna ispod druge */
@media (max-width: 1150px) {
    .home-vegan {
        padding: 56px 24px;
        height: 80vh;
        overflow: hidden;
    }

    .home-vegan-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        height: 100%;
    }

    .home-vegan-copy {
        flex: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .home-vegan-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .home-vegan {
        padding: 40px 24px;
        height: 80vh;
        overflow: hidden;
    }

    .home-vegan-title {
        font-size: 32px;
    }

    .home-vegan-cta {
        font-size: 18px;
        padding: 14px 40px;
    }
}

@media (max-width: 600px) {
    .home-vegan {
        padding: 32px 16px;
    }
}

/* === TIM SEKCIJA (HOME) === */
.home-team {
    background: #FFF6F5;
    padding: 64px 10vw;
    height: 80vh;
    overflow: hidden;
}

.home-team-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
    height: 100%;
}

/* LEVA SEKCIJA - SLIKA */
.home-team-visual {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.team-img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* DESNA SEKCIJA - COPY */
.home-team-copy {
    flex: 0 0 48%;
    max-width: 550px;
}

.home-team-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 40px;
    color: #000;
}

.home-team-cta {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 0;
    background-color: #521B1E;
    color: #FFF6F5;
    font-size: 23px;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color 0.3s ease;
}

.home-team-cta:hover {
    background-color: #3f0f0f;
    text-decoration: none;
}

/* RESPONSIVE - sekcije jedna ispod druge */
@media (max-width: 1150px) {
    .home-team {
        padding: 56px 24px;
        height: 80vh;
        overflow: hidden;
    }

    .home-team-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        height: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .home-team-copy {
        flex: none;
        max-width: 600px;
        margin: 0 auto;
        order: 1;
    }

    .home-team-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        justify-content: center;
        order: 2;
    }
}

@media (max-width: 900px) {
    .home-team {
        padding: 40px 24px;
        height: 80vh;
        overflow: hidden;
    }

    .home-team-title {
        font-size: 32px;
    }

    .home-team-cta {
        font-size: 18px;
        padding: 14px 40px;
    }
}

@media (max-width: 600px) {
    .home-team {
        padding: 32px 16px;
    }
}

/* === KONTAKT SEKCIJA (HOME) === */
.home-contact {
    background: #ffffff;
    padding: 64px 10vw;
}

.home-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

/* LEVA SEKCIJA - SLIKA */
.home-contact-visual {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.contact-photo-img {
    width: 80%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* DESNA SEKCIJA - COPY */
.home-contact-copy {
    flex: 0 0 38%;
    max-width: 420px;
}

.home-contact-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.1;
    margin: 0 0 28px;
    color: #000;
}

.home-contact-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #111827;
    font-family: "Gilda Display", serif;
}

.home-contact-cta {
    display: inline-block;
    padding: 20px 60px;
    border-radius: 0;
    background-color: #521B1E;
    color: #FFF6F5;
    font-size: 23px;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: background-color 0.3s ease;
}

.home-contact-cta:hover {
    background-color: #3f0f0f;
    text-decoration: none;
}

/* RESPONSIVE - sekcije jedna ispod druge */
@media (max-width: 1150px) {
    .home-contact {
        padding: 56px 24px;
    }

    .home-contact-inner {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .home-contact-copy {
        flex: none;
        max-width: 520px;
        margin: 0 auto;
        order: 1; /* Tekst i dugme gore */
    }

    .home-contact-visual {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        justify-content: center; /* centriraj sliku kada su sekcije jedna ispod druge */
        order: 2; /* Slika dole */
    }
}

@media (max-width: 900px) {
    .home-contact {
        padding: 40px 24px;
    }

    .home-contact-title {
        font-size: 32px;
    }

    .home-contact-text {
        font-size: 15px;
    }

    .home-contact-cta {
        font-size: 18px;
        padding: 14px 40px;
    }
}

@media (max-width: 600px) {
    .home-contact {
        padding: 32px 16px;
    }
}
/* RESERVATIONS */
.booking-steps-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
}

.booking-steps-title {
    font-family: 'Crimson Text', serif;
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    margin: 0 0 30px 0;
    color: #000;
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-step {
    flex: 1;
    text-align: center;
    position: relative;
    font-size: 13px;
    z-index: 1;
}

/* Traka između stepova - po defaultu prazna */
.booking-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 0;
    transform: translateY(-50%);
}

/* Popunjava traku kada je korak završen */
.booking-step:has(.is-done):not(:last-child)::after {
    background: #521B1E;
}

/* Popunjava traku kada je sledeći korak aktivan (npr. između 1 i 2 kada je korak 2 aktivan) */
.booking-step:not(:has(.is-done)):has(+ .booking-step .is-active):not(:last-child)::after {
    background: #521B1E;
}

.booking-step-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.booking-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid transparent;
    background: transparent;
    color: #521B1E;
    font-weight: 600;
    transition: all 0.3s ease;
}

.booking-step-circle.is-active {
    background: #521B1E;
    color: #fff;
    border-color: #521B1E;
}

.booking-step-circle.is-done {
    background: #521B1E;
    color: #fff;
    border-color: #521B1E;
}

.booking-step-circle.is-disabled {
    background: transparent;
    color: #521B1E;
    border-color: transparent;
}

.booking-step-label {
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

.booking-step a {
    text-decoration: none;
    color: inherit;
}

.booking-step a:hover .booking-step-circle.is-done {
    opacity: 0.8;
    transform: scale(1.05);
}

/* REVIEWS */

.star-rating {
    direction: rtl;
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    font-size: 3.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* Hover efekat */
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #521B1E;
}

/* Kada je izabrano - zbog rtl direction, sve zvezdice do izabrane (uključujući izabranu) treba da budu obojene */
.star-rating input:checked ~ label {
    color: #521B1E;
}

/* EMPLYEE RESERVATIONS */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 50;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.2);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.modal-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-secondary {
    background: #e5e7eb;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #111827;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-danger-modal {
    background: #dc2626;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #ffffff;
}

.btn-danger-modal:hover {
    background: #b91c1c;
}

/* MY RESERVATIONS */

.reservations-container {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #E1D4D4;
}

.status-filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.status-filter-btn {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    background-color: #f8fafc;
    font-size: 14px;
    text-decoration: none;
    color: #0f172a;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.status-filter-btn:hover {
    background-color: #e2e8f0;
}

.status-filter-btn.is-active {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: #ffffff;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

thead {
    background-color: #1e3a8a;
    color: white;
}

th, td {
    padding: 12px 16px;
    text-align: left;
}

tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

tbody tr:hover {
    background-color: #e2e8f0;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.status-initialized { background-color: #3b82f6; } /* plava */
.status-active { background-color: #16a34a; }      /* zelena */
.status-finished { background-color: #9333ea; }    /* ljubičasta */
.status-canceled { background-color: #9ca3af; }    /* siva */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55); /* tamni overlay */
    display: none; /* sakriven po defaultu */
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 50;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.2);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f172a;
}

.modal-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.btn-secondary {
    background: #e5e7eb;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #111827;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-danger {
    background: #dc2626;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #ffffff;
}

.btn-danger:hover {
    background: #b91c1c;
}

/* HOME PAGE */

/* REVIEWS SLIDER */
.reviews-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: visible;
}

.reviews-track {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding: 20px 0;
    padding-left: calc(50% - 190px);
    padding-right: calc(50% - 190px);
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 calc(50% - 190px);
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-slide {
    flex: 0 0 auto;
    display: none;
    width: 380px;
    max-width: 380px;
    min-width: 380px;
    align-self: center;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.review-slide.is-visible {
    display: block !important;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
}

.review-name {
    font-family: "Gilda Display", serif;
    font-size: 28px;
    font-weight: 400;
    color: #111827;
    margin-bottom: 16px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.review-comment {
    display: block;
    flex: 1;
    margin: 16px 0 24px 0;
    min-height: 80px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: relative;
    padding-top: 70px;
}

.review-comment::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    background-image: url("../img/quote.fc7de27f2329.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.review-comment .no-comment {
    color: #c1c1c1;
    font-style: normal;
}

.review-comment p {
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    color: #4b5563;
    text-align: center;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

.review-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 40px;
    margin-top: auto;
}

.star {
    font-size: 40px;
    line-height: 1;
}

.star-filled {
    color: #521B1E;
}

.star-empty {
    color: #e5e7eb;
}

.slider-btn {
    border: none;
    background: #ffffff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    color: #521B1E;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    flex-shrink: 0;
    z-index: 100;
    position: relative;
    pointer-events: auto;
}

.slider-btn:hover {
    background: #521B1E;
    color: #FFF6F5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* RESPONSIVE - Reviews Section */
@media (max-width: 1200px) {
    .home-reviews {
        padding: 56px 6vw;
    }

    .review-slide {
        width: 380px;
        max-width: 380px;
        min-width: 380px;
        flex: 0 0 auto;
    }

    .reviews-track {
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
        padding-left: calc(50% - 190px);
        padding-right: calc(50% - 190px);
        scroll-padding: 0 calc(50% - 190px);
    }

    .reviews-track::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 900px) {
    .home-reviews {
        padding: 48px 24px;
        min-height: auto;
    }

    .reviews-track {
        gap: 16px;
        min-height: 280px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
        padding-left: calc(50% - 190px);
        padding-right: calc(50% - 190px);
        scroll-padding: 0 calc(50% - 190px);
    }

    .reviews-track::-webkit-scrollbar {
        display: none;
    }

    .review-slide {
        width: 380px;
        max-width: 380px;
        min-width: 380px;
        flex: 0 0 auto;
    }

    .review-card {
        padding: 24px 20px;
    }
}

/* REGISTER PAGE - FIGMA STYLE */

body.auth-page main {
    max-width: none;      /* makni ogranicenje 900px */
    margin: 0;            /* nema auto centriranja */
    padding: 0;
    background: none;     /* nema bele pozadine iza */
    box-shadow: none;
    border-radius: 0;
}

.register-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/register-bg.a2ec70efe942.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0 10px;
}


.register-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 35px 56px 45px;
    width: 100%;
    max-width: 640px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.register-title {
    text-align: center;
    font-family: "Georgia", serif;
    font-size: 42px;
    margin-bottom: 48px;
    color: black;
}

.form-row {
    display: flex;
    gap: 36px;
    margin-bottom: 22px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    margin-bottom: 22px;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.register-card input {
    width: 100%;
    padding: 16px 20px;
    border-radius: 999px;
    border: none;
    background: #F0E2E2;
    font-size: 16px;
    box-sizing: border-box;
}

.register-card input:focus {
    outline: none;
    background: #F0E2E2;
}

.register-card input:-webkit-autofill,
.register-card input:-webkit-autofill:hover,
.register-card input:-webkit-autofill:focus,
.register-card input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.register-btn {
    display: block;
    margin: 32px auto 18px;
    background: #521B1E;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 999px;
    font-size: 20px;
    cursor: pointer;
}

.register-btn:hover {
    background: #3f0f0f;
}

.register-login-link {
    text-align: center;
    font-size: 20px;
    color: white;
    margin-top: 24px;
}

.register-login-link a {
    color: white;
    font-weight: 500;
}

.field-error {
    color: #b91c1c;
    font-size: 12px;
    margin-top: 3px;
}

.field-error:empty {
    display: none;
}

/* REGISTER PAGE RESPONSIVE */
@media (max-width: 540px) {
    .register-card {
        padding: 30px 35px 35px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .register-bg {
        padding: 15px;
    }

    .register-card {
        padding: 30px 40px 35px;
        max-width: 420px;
        border-radius: 18px;
    }

    .register-title {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 18px;
    }

    .form-row .form-group {
        margin-bottom: 18px;
    }

    .form-row .form-group:last-child {
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .register-card input {
        padding: 14px 18px;
        font-size: 15px;
    }

    .register-btn {
        padding: 14px 40px;
        font-size: 16px;
        margin: 26px auto 14px;
    }

    .register-login-link {
        font-size: 18px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .register-bg {
        padding: 10px;
    }

    .register-card {
        padding: 24px 20px 28px;
        max-width: 100%;
        width: calc(100% - 20px);
        border-radius: 14px;
        box-sizing: border-box;
    }

    .register-title {
        font-size: 28px;
        margin-bottom: 28px;
    }

    .form-row {
        margin-bottom: 14px;
    }

    .form-row .form-group {
        margin-bottom: 14px;
    }

    .form-row .form-group:last-child {
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .register-card input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .register-btn {
        padding: 12px 32px;
        font-size: 15px;
        margin: 22px auto 12px;
    }

    .register-login-link {
        font-size: 16px;
        margin-top: 16px;
    }
}

/* VERIFY PHONE PAGE */

.verify-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/register-bg.a2ec70efe942.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.verify-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 50px 60px 55px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    text-align: center;
}

.verify-subtitle {
    font-size: 20px;
    color: black;
    margin-bottom: 36px;
    font-weight: 500;
}

.code-inputs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
}

.code-digit {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: none;
    background: #F0E2E2 !important;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    color: black;
    box-sizing: border-box;
    line-height: 64px;
}

.code-digit:hover,
.code-digit:focus,
.code-digit:active {
    outline: none;
    background: #F0E2E2 !important;
}

.code-digit:-webkit-autofill,
.code-digit:-webkit-autofill:hover,
.code-digit:-webkit-autofill:focus,
.code-digit:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.resend-link {
    margin-top: 24px;
}

.resend-text {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    background: none !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    outline: none !important;
    box-shadow: none !important;
    display: inline;
}

.resend-text:hover {
    color: #666;
    text-decoration: underline;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

.resend-text:focus,
.resend-text:active,
.resend-text:focus-visible,
.resend-text:visited {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    color: #666;
}

.verify-btn {
    display: block;
    width: 70%;
    margin: 0 auto;
    background: #521B1E;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 999px;
    font-size: 18px;
    cursor: pointer;
}

.verify-btn:hover {
    background: #3f0f0f;
}

.verify-login-link {
    text-align: center;
    font-size: 20px;
    color: white;
    margin-top: 24px;
}

.verify-login-link a {
    color: white;
    font-weight: 500;
}

/* VERIFY PAGE RESPONSIVE */
@media (max-width: 540px) {
    .verify-card {
        padding: 35px 35px 40px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .verify-card {
        padding: 40px 45px 45px;
        max-width: 440px;
    }

    .verify-subtitle {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .code-inputs {
        gap: 12px;
    }

    .code-digit {
        width: 56px;
        height: 56px;
        font-size: 32px;
        font-weight: 700;
        border-radius: 10px;
        line-height: 56px;
    }

    .verify-btn {
        padding: 14px 34px;
        font-size: 16px;
    }

    .verify-login-link {
        font-size: 18px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .verify-bg {
        padding: 40px 10px;
        min-height: auto;
        height: auto;
    }

    .verify-card {
        padding: 28px 24px 32px;
        max-width: 100%;
        width: calc(100% - 20px);
        border-radius: 16px;
        box-sizing: border-box;
    }

    .verify-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .code-inputs {
        gap: 8px;
    }

    .code-digit {
        width: 46px;
        height: 46px;
        font-size: 28px;
        font-weight: 700;
        border-radius: 8px;
        line-height: 46px;
    }

    .verify-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 80%;
    }

    .verify-login-link {
        font-size: 16px;
        margin-top: 16px;
    }
}

/* LOGIN PAGE */

.login-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/register-bg.a2ec70efe942.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.login-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 30px 60px 55px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.login-title {
    text-align: center;
    font-family: "Georgia", serif;
    font-size: 42px;
    margin-bottom: 50px;
    color: black;
}

.login-messages {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.login-messages li {
    background: #e0ffe0;
    border: 1px solid #b2ffb2;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
}

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

.login-form-group label {
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
    margin-left: 50px;
}

.login-input-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.login-icon {
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.login-icon svg {
    width: 36px;
    height: 36px;
}

.login-input-wrapper {
    flex: 1;
    background: #F0E2E2;
    border-radius: 999px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.login-card input[type="text"],
.login-card input[type="password"],
.login-card input[type="tel"] {
    width: 100%;
    padding: 18px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: black;
    outline: none;
    box-sizing: border-box;
}

.login-card input:-webkit-autofill,
.login-card input:-webkit-autofill:hover,
.login-card input:-webkit-autofill:focus,
.login-card input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.login-field-link {
    display: block;
    text-align: left;
    font-size: 13px;
    color: black;
    text-decoration: underline;
    margin-top: 6px;
    margin-left: 50px;
}

.login-field-link:hover {
    color: #521B1E;
}

.login-btn {
    display: block;
    width: 46%;
    margin: 30px auto 0;
    background: #521B1E;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 999px;
    font-size: 20px;
    cursor: pointer;
}

.login-btn:hover {
    background: #3f0f0f;
}

.login-register-link {
    text-align: center;
    font-size: 20px;
    color: white;
    margin-top: 24px;
}

.login-register-link a {
    color: white;
    font-weight: 500;
}

/* LOGIN PAGE RESPONSIVE */
@media (max-width: 540px) {
    .login-card {
        padding: 35px 35px 40px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .login-card {
        padding: 40px 45px 45px;
        max-width: 420px;
    }

    .login-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .login-form-group label {
        font-size: 15px;
        margin-left: 42px;
    }

    .login-input-row {
        display: flex;
        align-items: stretch;
        gap: 10px;
    }

    .login-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-icon svg {
        width: 30px;
        height: 30px;
    }

    .login-input-wrapper {
        display: flex;
        align-items: center;
    }

    .login-card input[type="text"],
    .login-card input[type="password"],
    .login-card input[type="tel"] {
        padding: 14px 0;
        font-size: 15px;
    }

    .login-field-link {
        margin-left: 42px;
    }

    .login-btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .login-register-link {
        font-size: 18px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .login-bg {
        padding: 40px 10px;
        min-height: auto;
        height: auto;
    }

    .login-card {
        padding: 32px 28px 36px;
        max-width: 100%;
        width: calc(100% - 20px);
        border-radius: 18px;
        box-sizing: border-box;
    }

    .login-title {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .login-form-group {
        margin-bottom: 16px;
    }

    .login-form-group label {
        font-size: 14px;
        margin-bottom: 6px;
        margin-left: 34px;
    }

    .login-input-row {
        display: flex;
        align-items: stretch;
        gap: 8px;
    }

    .login-input-wrapper {
        padding: 0 16px;
        display: flex;
        align-items: center;
    }

    .login-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-icon svg {
        width: 26px;
        height: 26px;
    }

    .login-field-link {
        margin-left: 34px;
        font-size: 12px;
    }

    .login-card input[type="text"],
    .login-card input[type="password"],
    .login-card input[type="tel"] {
        padding: 12px 0;
        font-size: 14px;
    }

    .login-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 70%;
        margin-top: 24px;
    }

    .login-register-link {
        font-size: 16px;
        margin-top: 16px;
    }
}

/* PASSWORD RESET CONFIRM PAGE */

.reset-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/register-bg.a2ec70efe942.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.reset-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 50px 60px 55px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    text-align: center;
}

.reset-subtitle {
    font-size: 18px;
    color: black;
    margin-bottom: 30px;
    font-weight: 500;
}

.reset-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.reset-form-group label {
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.reset-input-wrapper {
    background: #F0E2E2;
    border-radius: 999px;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.reset-card input[type="text"],
.reset-card input[type="password"],
.reset-card .reset-password-input {
    width: 100%;
    padding: 14px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: black;
    outline: none;
    box-sizing: border-box;
}

.reset-card .code-inputs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 26px;
}

.reset-card .code-inputs .code-digit,
.reset-card input.code-digit {
    width: 64px !important;
    height: 64px !important;
    border-radius: 12px !important;
    border: none !important;
    background: #F0E2E2 !important;
    font-size: 42px !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: black !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 64px !important;
}

.reset-card .code-inputs .code-digit:hover,
.reset-card .code-inputs .code-digit:focus,
.reset-card .code-inputs .code-digit:active,
.reset-card input.code-digit:hover,
.reset-card input.code-digit:focus,
.reset-card input.code-digit:active {
    outline: none;
    background: #F0E2E2 !important;
}

.reset-card input:-webkit-autofill,
.reset-card input:-webkit-autofill:hover,
.reset-card input:-webkit-autofill:focus,
.reset-card input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.reset-btn {
    display: block;
    width: 70%;
    margin: 30px auto 0;
    background: #521B1E;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 17px;
    cursor: pointer;
}

.reset-btn:hover {
    background: #3f0f0f;
}

/* PASSWORD RESET CONFIRM RESPONSIVE */
@media (max-width: 540px) {
    .reset-card {
        padding: 35px 35px 40px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .reset-card {
        padding: 40px 45px 45px;
        max-width: 440px;
    }

    .reset-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .reset-form-group label {
        font-size: 15px;
    }

    .reset-card .code-inputs {
        gap: 12px;
    }

    .reset-card .code-inputs .code-digit,
    .reset-card input.code-digit {
        width: 56px !important;
        height: 56px !important;
        font-size: 38px !important;
        font-weight: 700 !important;
        border-radius: 10px !important;
        line-height: 56px !important;
    }

    .reset-card input[type="text"],
    .reset-card input[type="password"] {
        padding: 12px 0;
        font-size: 15px;
    }

    .reset-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reset-bg {
        padding: 40px 10px;
        min-height: auto;
        height: auto;
    }

    .reset-card {
        padding: 32px 28px 36px;
        max-width: 100%;
        width: calc(100% - 20px);
        border-radius: 18px;
        box-sizing: border-box;
    }

    .reset-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .reset-form-group {
        margin-bottom: 16px;
    }

    .reset-form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .reset-input-wrapper {
        padding: 0 16px;
    }

    .reset-card .code-inputs {
        gap: 8px;
    }

    .reset-card .code-inputs .code-digit,
    .reset-card input.code-digit {
        width: 46px !important;
        height: 46px !important;
        font-size: 34px !important;
        font-weight: 700 !important;
        border-radius: 8px !important;
        line-height: 46px !important;
    }

    .reset-card input[type="text"],
    .reset-card input[type="password"] {
        padding: 12px 0;
        font-size: 14px;
    }

    .reset-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 80%;
        margin-top: 24px;
    }
}

/* PASSWORD RESET REQUEST PAGE */

.reset-request-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/register-bg.a2ec70efe942.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.reset-request-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 50px 60px 55px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.reset-request-title {
    text-align: center;
    font-family: "Georgia", serif;
    font-size: 42px;
    margin-bottom: 40px;
    color: black;
}

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

.reset-request-form-group label {
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.reset-request-input-wrapper {
    background: #F0E2E2;
    border-radius: 999px;
    padding: 0 20px;
}

.reset-request-card input[type="text"],
.reset-request-card input[type="tel"] {
    width: 100%;
    padding: 14px 0;
    border: none;
    background: transparent;
    font-size: 16px;
    color: black;
    outline: none;
    box-sizing: border-box;
}

.reset-request-card input:-webkit-autofill,
.reset-request-card input:-webkit-autofill:hover,
.reset-request-card input:-webkit-autofill:focus,
.reset-request-card input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.reset-request-btn {
    display: block;
    width: 60%;
    margin: 30px auto 0;
    background: #521B1E;
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 17px;
    cursor: pointer;
}

.reset-request-btn:hover {
    background: #3f0f0f;
}

/* PASSWORD RESET REQUEST RESPONSIVE */
@media (max-width: 540px) {
    .reset-request-card {
        padding: 35px 35px 40px;
        max-width: calc(100% - 30px);
    }
}

@media (max-width: 768px) {
    .reset-request-card {
        padding: 40px 45px 45px;
        max-width: 420px;
    }

    .reset-request-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .reset-request-form-group label {
        font-size: 15px;
    }

    .reset-request-card input[type="text"],
    .reset-request-card input[type="tel"] {
        padding: 12px 0;
        font-size: 15px;
    }

    .reset-request-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reset-request-bg {
        padding: 40px 10px;
        min-height: auto;
        height: auto;
    }

    .reset-request-card {
        padding: 32px 28px 36px;
        max-width: 100%;
        width: calc(100% - 20px);
        border-radius: 18px;
        box-sizing: border-box;
    }

    .reset-request-title {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .reset-request-form-group {
        margin-bottom: 16px;
    }

    .reset-request-form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .reset-request-input-wrapper {
        padding: 0 16px;
    }

    .reset-request-card input[type="text"],
    .reset-request-card input[type="tel"] {
        padding: 12px 0;
        font-size: 14px;
    }

    .reset-request-btn {
        padding: 12px 24px;
        font-size: 15px;
        width: 70%;
        margin-top: 24px;
    }
}

/* ===== PROFILE PAGE ===== */
.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: calc(100vh - 160px);
    background: white;
}

.profile-container ~ * {
    max-width: 100% !important;
}

.profile-card {
    display: flex;
    background: #FFF9F9 !important;
    border: 1px solid #521B1E !important;
    border-radius: 16px !important;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    gap: 40px;
    box-shadow: 0 4px 12px rgba(82, 27, 30, 0.1);
    margin: 0 auto;
    box-sizing: border-box;
}

.profile-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 350px;
    min-width: 350px;
}

/* For superuser: avatar on top, form below */
.profile-left-with-form {
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.profile-left .profile-form {
    width: 100%;
    max-width: 300px;
    align-self: center;
}

.profile-avatar {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.profile-divider {
    width: 1px;
    background: #521B1E !important;
    flex-shrink: 0;
    height: auto;
}

.profile-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

.profile-card .profile-form-group input[type="text"],
.profile-card .profile-form-group input[type="email"] {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 1px solid transparent !important;
    border-radius: 999px !important;
    background: #F0E2E2 !important;
    font-size: 16px !important;
    color: #333 !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.profile-card .profile-form-group input[type="text"]:focus,
.profile-card .profile-form-group input[type="email"]:focus {
    background: #F0E2E2 !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

.profile-card .profile-form-group input[type="text"]:-webkit-autofill,
.profile-card .profile-form-group input[type="email"]:-webkit-autofill {
    background: #F0E2E2 !important;
    -webkit-box-shadow: 0 0 0 30px #F0E2E2 inset !important;
    box-shadow: 0 0 0 30px #F0E2E2 inset !important;
    -webkit-text-fill-color: #333 !important;
}

.profile-checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.profile-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
}

.profile-checkbox-group .checkbox-label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.profile-save-btn {
    background: #521B1E;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    align-self: center;
    margin-top: 8px;
    transition: background 0.2s;
}

.profile-save-btn:hover {
    background: #3d1416;
}

.profile-shifts {
    margin-top: 40px;
    max-width: 900px;
    width: 100%;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-shifts h2 {
    color: #521B1E;
    margin-bottom: 20px;
}

.profile-shifts h3 {
    color: #333;
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 18px;
}

.profile-shifts ul {
    list-style: none;
    padding: 0;
}

.profile-shifts li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.profile-shifts li:last-child {
    border-bottom: none;
}

/* Inline shifts for superuser (inside profile card) */
.profile-shifts-inline {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.profile-shifts-inline h2 {
    color: #521B1E;
    margin-bottom: 20px;
    font-family: "Georgia", serif;
    font-size: 24px;
}

.profile-shifts-inline h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.profile-shifts-inline ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-shifts-inline li {
    padding: 8px 0;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid rgba(82, 27, 30, 0.1);
}

.profile-shifts-inline li:last-child {
    border-bottom: none;
}

.profile-shifts-inline p {
    color: #666;
    font-size: 14px;
    margin: 8px 0;
}

.field-error {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 4px;
}

.field-error:empty {
    display: none;
}

/* Responsive styles for profile page */
@media (max-width: 768px) {
    .profile-container {
        padding: 40px 16px;
    }

    .profile-card {
        flex-direction: column;
        padding: 30px 24px;
        gap: 30px;
        max-width: calc(100% - 32px);
        width: 100%;
        box-sizing: border-box;
    }

    .profile-divider {
        width: 100%;
        height: 1px;
        background: #521B1E !important;
    }

    .profile-left {
        flex: none;
        min-width: auto;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .profile-avatar {
        width: 150px;
        height: 150px;
        margin: 0 auto;
        display: block;
    }

    .profile-left-with-form {
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-left .profile-form {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-left .profile-form input[type="text"],
    .profile-left .profile-form input[type="email"] {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .profile-left .profile-form .profile-save-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .profile-card .profile-form-group input[type="text"],
    .profile-card .profile-form-group input[type="email"] {
        padding: 12px 16px !important;
        font-size: 15px !important;
    }

    .profile-save-btn {
        width: 100%;
        padding: 14px;
    }

    .profile-shifts-inline h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .profile-shifts-inline h3 {
        font-size: 15px;
        margin-top: 16px;
        margin-bottom: 10px;
    }

    .profile-shifts-inline li {
        font-size: 13px;
        padding: 6px 0;
    }
}

@media (max-width: 540px) {
    .profile-container {
        padding: 30px 15px;
    }

    .profile-card {
        padding: 25px 20px;
        max-width: calc(100% - 30px);
        gap: 25px;
    }

    .profile-left {
        flex: none;
        min-width: auto;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .profile-avatar {
        width: 130px;
        height: 130px;
        margin: 0 auto;
        display: block;
    }

    .profile-left-with-form {
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-left .profile-form {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-left .profile-form input[type="text"],
    .profile-left .profile-form input[type="email"] {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .profile-left .profile-form .profile-save-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 30px 12px;
    }

    .profile-card {
        padding: 24px 18px;
        max-width: calc(100% - 24px);
        gap: 24px;
    }

    .profile-left {
        flex: none;
        min-width: auto;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .profile-avatar {
        width: 120px;
        height: 120px;
        margin: 0 auto;
        display: block;
    }

    .profile-left-with-form {
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-left .profile-form {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-left .profile-form input[type="text"],
    .profile-left .profile-form input[type="email"] {
        width: 100% !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }

    .profile-left .profile-form .profile-save-btn {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .profile-form {
        gap: 20px;
    }

    .profile-form-group label {
        font-size: 15px;
    }

    .profile-card .profile-form-group input[type="text"],
    .profile-card .profile-form-group input[type="email"] {
        padding: 10px 14px !important;
        font-size: 14px !important;
    }

    .profile-save-btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .profile-shifts-inline h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .profile-shifts-inline h3 {
        font-size: 14px;
        margin-top: 14px;
        margin-bottom: 8px;
    }

    .profile-shifts-inline li {
        font-size: 12px;
        padding: 5px 0;
    }
}

/* BOOKING STEP 0 GUEST PAGE */
body.booking-guest-page {
    background: white;
}

body.booking-guest-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 20px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-guest-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-guest-title {
    margin-bottom: 12px;
    margin-top: 0;
    text-align: center;
}

.booking-guest-description {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 14px;
    text-align: center;
}

.booking-guest-error {
    color: red;
    margin-bottom: 16px;
    text-align: center;
}

.booking-guest-form {
    width: 100%;
    max-width: 500px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.booking-guest-form-group {
    margin-bottom: 16px;
}

.booking-guest-form-group:last-of-type {
    margin-bottom: 20px;
}

.booking-guest-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: black;
    font-weight: 500;
}

.booking-guest-form input[type="text"],
.booking-guest-form input[type="email"] {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: #F0E2E2;
    font-size: 15px;
    box-sizing: border-box;
    outline: none;
}

.booking-guest-form input[type="text"]:focus,
.booking-guest-form input[type="email"]:focus {
    background: #F0E2E2;
}

.booking-guest-form input[type="text"]:-webkit-autofill,
.booking-guest-form input[type="text"]:-webkit-autofill:hover,
.booking-guest-form input[type="text"]:-webkit-autofill:focus,
.booking-guest-form input[type="text"]:-webkit-autofill:active,
.booking-guest-form input[type="email"]:-webkit-autofill,
.booking-guest-form input[type="email"]:-webkit-autofill:hover,
.booking-guest-form input[type="email"]:-webkit-autofill:focus,
.booking-guest-form input[type="email"]:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.booking-guest-submit-btn {
    width: auto;
    min-width: 200px;
    background-color: #521B1E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 0 auto;
    display: block;
}

.booking-guest-submit-btn:hover {
    background-color: #3f0f0f;
}

/* Pricing Page Styles */
main:has(.pricing-page),
body:has(.pricing-page) main {
    max-width: 100% !important;
    background: white !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

body:has(.pricing-page) {
    background: white !important;
}

.pricing-page {
    min-height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.pricing-card {
    background: #521B1E;
    border-radius: 16px;
    padding: 50px 60px;
    max-width: 800px;
    width: 100%;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-family: "Georgia", serif;
    font-size: 48px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    letter-spacing: 1px;
}

.pricing-category {
    margin-bottom: 40px;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: white;
    letter-spacing: 0.5px;
}

.pricing-category-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    margin-bottom: 20px;
}

.pricing-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-service-item {
    display: flex;
    align-items: baseline;
    padding: 8px 0;
    gap: 8px;
}

.pricing-service-name {
    flex: 0 1 auto;
    font-size: 16px;
    color: white;
    line-height: 1.5;
}

.pricing-service-dots {
    flex: 1;
    min-width: 10px;
    height: 6px;
    margin: 0 8px;
    align-self: flex-end;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 1px, transparent 1px);
    background-size: 6px 1px;
    background-position: 0 0;
    background-repeat: repeat-x;
}

.pricing-service-price {
    font-size: 16px;
    color: white;
    font-weight: 400;
    text-align: right;
    flex-shrink: 0;
}

/* Responsive styles for pricing page */
@media (max-width: 768px) {
    .pricing-page {
        padding: 40px 16px;
    }

    .pricing-card {
        padding: 40px 30px;
        border-radius: 12px;
    }

    .pricing-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .pricing-category-title {
        font-size: 18px;
    }

    .pricing-service-name,
    .pricing-service-price {
        font-size: 15px;
    }
}

/* CONTACT PAGE STYLES */
body.contact-page main {
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.contact-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/contact-background.1cc2201eda9c.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
}

.contact-top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    align-items: center;
}

.contact-info-card {
    background: none;
    border-radius: 0;
    padding: 0;
    color: white;
}

.contact-info-title {
    font-family: "Georgia", serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
    color: white;
}

.contact-info-title:not(:first-child) {
    margin-top: 30px;
}

.contact-info-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0;
    color: white;
}

.contact-instagram {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.contact-instagram-link {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-instagram-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-map-card {
    background: rgba(173, 216, 230, 0.3);
    border-radius: 12px;
    padding: 0;
    height: 400px;
    overflow: hidden;
}

.contact-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 18px;
}

.contact-form-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 50px 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    box-sizing: border-box;
}

.contact-form-title {
    font-family: "Georgia", serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: black;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-row {
    display: flex;
    gap: 36px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.contact-form-group.full {
    width: 100%;
    margin-bottom: 0;
}

.contact-form-group label {
    font-size: 16px;
    color: black;
    font-weight: 500;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 999px;
    border: none;
    background: #F0E2E2;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form-card textarea {
    border-radius: 16px;
    min-height: 120px;
    resize: vertical;
}

.contact-form-card input[type="text"]:focus,
.contact-form-card input[type="email"]:focus,
.contact-form-card textarea:focus {
    outline: none;
    background: #F0E2E2;
}

.contact-form-card input[type="text"]:-webkit-autofill,
.contact-form-card input[type="email"]:-webkit-autofill,
.contact-form-card textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.contact-form-btn {
    display: block;
    margin: 20px auto 0;
    background: #521B1E;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 999px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 500;
}

.contact-form-btn:hover {
    background: #3f0f0f;
}

/* CONTACT PAGE RESPONSIVE */
@media (max-width: 768px) {
    .contact-bg {
        padding: 40px 16px;
        gap: 30px;
    }

    .contact-top-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        padding: 30px 24px;
    }

    .contact-info-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contact-info-text {
        font-size: 15px;
    }

    .contact-map-card {
        height: 300px;
    }

    .contact-form-card {
        padding: 40px 30px;
        border-radius: 18px;
    }

    .contact-form-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 24px;
    }

    .contact-form-group {
        margin-bottom: 0;
    }

    .contact-form-group.full {
        margin-bottom: 0;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .contact-form-btn {
        padding: 14px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-bg {
        padding: 30px 12px;
        gap: 24px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-info-text {
        font-size: 14px;
    }

    .contact-map-card {
        height: 250px;
    }

    .contact-form-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .contact-form-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .contact-form {
        gap: 24px;
    }

    .contact-form-row {
        gap: 24px;
    }

    .contact-form-group {
        margin-bottom: 0;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-form-btn {
        padding: 12px 32px;
        font-size: 16px;
        width: 100%;
    }
}

/* CONTACT PAGE STYLES */
body.contact-page main {
    max-width: none;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.contact-bg {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url("../img/contact-background.1cc2201eda9c.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
}

.contact-top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    align-items: center;
}

.contact-info-card {
    background: none;
    border-radius: 0;
    padding: 0;
    color: white;
}

.contact-info-title {
    font-family: "Georgia", serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 0;
    color: white;
}

.contact-info-title:not(:first-child) {
    margin-top: 30px;
}

.contact-info-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 8px 0;
    color: white;
}

.contact-instagram {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.contact-instagram-link {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-instagram-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-map-card {
    background: rgba(173, 216, 230, 0.3);
    border-radius: 12px;
    padding: 0;
    height: 400px;
    overflow: hidden;
}

.contact-map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 18px;
}

.contact-form-card {
    background: #FFF9F9;
    border-radius: 22px;
    padding: 50px 60px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    box-sizing: border-box;
}

.contact-form-title {
    font-family: "Georgia", serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    color: black;
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-row {
    display: flex;
    gap: 36px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.contact-form-group.full {
    width: 100%;
    margin-bottom: 0;
}

.contact-form-group label {
    font-size: 16px;
    color: black;
    font-weight: 500;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 999px;
    border: none;
    background: #F0E2E2;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form-card textarea {
    border-radius: 16px;
    min-height: 120px;
    resize: vertical;
}

.contact-form-card input[type="text"]:focus,
.contact-form-card input[type="email"]:focus,
.contact-form-card textarea:focus {
    outline: none;
    background: #F0E2E2;
}

.contact-form-card input[type="text"]:-webkit-autofill,
.contact-form-card input[type="email"]:-webkit-autofill,
.contact-form-card textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    box-shadow: 0 0 0 1000px #F0E2E2 inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: #F0E2E2 !important;
}

.contact-form-btn {
    display: block;
    margin: 20px auto 0;
    background: #521B1E;
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 999px;
    font-size: 20px;
    cursor: pointer;
    font-weight: 500;
}

.contact-form-btn:hover {
    background: #3f0f0f;
}

/* CONTACT PAGE RESPONSIVE */
@media (max-width: 768px) {
    .contact-bg {
        padding: 40px 16px;
        gap: 30px;
    }

    .contact-top-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-card {
        padding: 30px 24px;
    }

    .contact-info-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contact-info-text {
        font-size: 15px;
    }

    .contact-map-card {
        height: 300px;
    }

    .contact-form-card {
        padding: 40px 30px;
        border-radius: 18px;
    }

    .contact-form-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 24px;
    }

    .contact-form-group {
        margin-bottom: 0;
    }

    .contact-form-group.full {
        margin-bottom: 0;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .contact-form-btn {
        padding: 14px 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-bg {
        padding: 30px 12px;
        gap: 24px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-info-text {
        font-size: 14px;
    }

    .contact-map-card {
        height: 250px;
    }

    .contact-form-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .contact-form-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .contact-form {
        gap: 24px;
    }

    .contact-form-row {
        gap: 24px;
    }

    .contact-form-group {
        margin-bottom: 0;
    }

    .contact-form-card input[type="text"],
    .contact-form-card input[type="email"],
    .contact-form-card textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-form-btn {
        padding: 12px 32px;
        font-size: 16px;
        width: 100%;
    }
}


/* ===== BOOKING STEP 1 STYLES ===== */
body.booking-step1-page {
    background: white;
}

body.booking-step1-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 40px 20px;
    background: white;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-step1-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.booking-step1-form {
    width: 100%;
    max-width: 800px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.booking-step1-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: black;
    text-align: left;
}

.booking-step1-service-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .booking-step1-service-types {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .booking-step1-service-types {
        grid-template-columns: 1fr;
    }
}

.booking-step1-service-btn {
    background: #F0E2E2;
    border: 1px solid #F0E2E2;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 15px;
    color: black;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 500;
    box-sizing: border-box;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-step1-service-btn:hover {
    background: #e8d5d5;
}

.booking-step1-service-btn.active {
    border: 2px solid #521B1E;
    background: #F0E2E2;
}

.booking-step1-submit-btn {
    width: auto;
    min-width: 200px;
    background-color: #521B1E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin: 0 auto;
    display: block;
}

.booking-step1-submit-btn:hover {
    background-color: #3f0f0f;
}

/* ===== BOOKING STEP 2 STYLES ===== */
body.booking-step2-page {
    background: white;
}

body.booking-step2-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 40px 20px;
    background: white;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-step2-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.booking-step2-form {
    width: 100%;
    max-width: 800px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.booking-step2-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: black;
    text-align: left;
}

.booking-step2-error {
    color: red;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}

.booking-step2-form-group {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    max-width: 100%;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.custom-dropdown-toggle {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: #F0E2E2;
    font-size: 15px;
    color: black;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    position: relative;
}

.custom-dropdown-toggle:hover {
    background: #e8d5d5;
}

.custom-dropdown-toggle.active {
    background: #e8d5d5;
}

.custom-dropdown-toggle.error {
    border: 2px solid #ff0000;
}

.custom-dropdown-selected {
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-dropdown-arrow {
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s;
}

.custom-dropdown-toggle.active .custom-dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #F0E2E2;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.custom-dropdown-menu.open-up {
    top: auto;
    bottom: calc(100% + 8px);
}

.custom-dropdown-menu.open {
    display: block;
}

.custom-dropdown-option {
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border-bottom: 1px solid #f5f5f5;
    box-sizing: border-box;
    margin: 0;
}

.custom-dropdown-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.custom-dropdown-option:hover {
    background: #F0E2E2;
    color: #521B1E;
}

.custom-dropdown-option.selected {
    background: #521B1E;
    color: #fff;
}

.custom-dropdown-option.selected:hover {
    background: #3f0f0f;
    color: #fff;
}

/* Scrollbar styling for dropdown */
.custom-dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: #F0E2E2;
    border-radius: 10px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #e8d5d5;
}

.booking-step2-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.booking-step2-back-link {
    color: #521B1E;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.2s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.booking-step2-back-link:hover {
    opacity: 0.8;
}

.booking-step2-submit-btn {
    width: auto;
    min-width: 200px;
    background-color: #521B1E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
}

.booking-step2-submit-btn:hover {
    background-color: #3f0f0f;
}

@media (max-width: 600px) {
    .booking-step2-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-step2-back-link {
        position: static;
        order: 2;
        align-self: center;
    }
    
    .booking-step2-submit-btn {
        width: 100%;
        order: 1;
    }
}

/* ===== BOOKING STEP 3 STYLES ===== */
body.booking-step3-page {
    background: white;
}

body.booking-step3-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 40px 20px;
    background: white;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-step3-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.booking-step3-form {
    width: 100%;
    max-width: 800px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.booking-step3-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: black;
    text-align: left;
}

.booking-step3-error {
    color: red;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}

.booking-step3-employees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    width: 100%;
}

.booking-step3-no-employees {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 15px;
    padding: 20px;
}

.booking-step3-employee-card {
    background: #F0E2E2;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    min-height: 180px;
    justify-content: center;
}

.booking-step3-employee-card:hover {
    background: #e8d5d5;
}

.booking-step3-employee-card.active {
    border: 2px solid #521B1E;
    background: #F0E2E2;
}

.booking-step3-employee-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.booking-step3-employee-name {
    font-size: 15px;
    font-weight: 500;
    color: black;
    text-align: center;
}

.booking-step3-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.booking-step3-back-link {
    color: #521B1E;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.2s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.booking-step3-back-link:hover {
    opacity: 0.8;
}

.booking-step3-submit-btn {
    width: auto;
    min-width: 200px;
    background-color: #521B1E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
}

.booking-step3-submit-btn:hover {
    background-color: #3f0f0f;
}

@media (max-width: 600px) {
    .booking-step3-employees {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-step3-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-step3-back-link {
        position: static;
        order: 2;
        align-self: center;
    }
    
    .booking-step3-submit-btn {
        width: 100%;
        order: 1;
    }
}

@media (max-width: 400px) {
    .booking-step3-employees {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING STEP 4 STYLES ===== */
body.booking-step4-page {
    background: white;
}

body.booking-step4-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 40px 20px;
    background: white;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-step4-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.booking-step4-form {
    width: 100%;
    max-width: 800px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.booking-step4-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: black;
    text-align: left;
}

.booking-step4-error {
    color: red;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}

.booking-step4-form-group {
    margin-bottom: 30px;
    width: 100%;
}

/* Custom Date Picker Styles */
.custom-date-picker {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.custom-date-picker-toggle {
    width: 100%;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: #F0E2E2;
    font-size: 15px;
    color: black;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
    font-family: Arial, sans-serif;
}

.custom-date-picker-toggle:hover {
    background: #e8d5d5;
}

.custom-date-picker-toggle.active {
    background: #e8d5d5;
}

.custom-date-picker-selected {
    flex: 1;
    text-align: left;
}

.custom-date-picker-arrow {
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform 0.2s;
}

.custom-date-picker-toggle.active .custom-date-picker-arrow {
    transform: rotate(180deg);
}

.custom-date-picker-calendar {
    position: absolute;
    top: calc(100% + 8px);
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 400px;
    background: #fff;
    border: 1px solid #F0E2E2;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
    box-sizing: border-box;
    padding: 20px;
    overflow-y: auto;
}

.custom-date-picker-calendar.open-up {
    top: auto;
    bottom: calc(100% + 8px);
}

/* Scrollbar styling za date picker kalendar */
.custom-date-picker-calendar::-webkit-scrollbar {
    width: 8px;
}

.custom-date-picker-calendar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.custom-date-picker-calendar::-webkit-scrollbar-thumb {
    background: #F0E2E2;
    border-radius: 10px;
}

.custom-date-picker-calendar::-webkit-scrollbar-thumb:hover {
    background: #e8d5d5;
}

.custom-date-picker-calendar.open {
    display: block;
}

.custom-date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.custom-date-picker-month-year {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.custom-date-picker-nav {
    background: none;
    border: none;
    font-size: 24px;
    color: #521B1E;
    cursor: pointer;
    padding: 0 10px;
    transition: opacity 0.2s;
}

.custom-date-picker-nav:hover {
    opacity: 0.7;
}

.custom-date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.custom-date-picker-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    padding: 8px 0;
}

.custom-date-picker-days {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.custom-date-picker-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    background: transparent;
    border: 1px solid transparent;
}

/* Kalendar za stranicu zaposlenog – kao deo layout-a, ne lebdeći modal */
.employee-reservations-page .employee-calendar-modal {
    width: 100%;
    display: flex;
    justify-content: center;
}

.employee-reservations-page .employee-calendar-modal .custom-date-picker-calendar {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    display: block !important;
    width: 100%;
    max-width: 80vh;
    max-height: 80vh;
    aspect-ratio: 1 / 1;
    z-index: auto !important;
    box-shadow: none !important;
    border: none !important;
    padding: 10px 12px;
    box-sizing: border-box;
    overflow: hidden;
}

.employee-reservations-page .employee-calendar-modal .custom-date-picker-weekdays,
.employee-reservations-page .employee-calendar-modal .custom-date-picker-days {
    gap: 6px;
}

.employee-reservations-page .employee-calendar-modal .custom-date-picker-day {
    font-size: 13px;
}

@media (max-width: 530px) {
    .employee-reservations-page .employee-calendar-modal .custom-date-picker-calendar {
        padding: 8px;
    }

    .employee-reservations-page .employee-calendar-modal .custom-date-picker-weekdays,
    .employee-reservations-page .employee-calendar-modal .custom-date-picker-days {
        gap: 4px;
    }

    .employee-reservations-page .employee-calendar-modal .custom-date-picker-day {
        font-size: 12px;
    }
}

.custom-date-picker-day:hover:not(.disabled):not(.other-month) {
    background: #F0E2E2;
    color: #521B1E;
}

.custom-date-picker-day.selected {
    background: #521B1E;
    color: #fff;
    border-color: #521B1E;
}

.custom-date-picker-day.today {
    border: 2px solid #521B1E;
    font-weight: 600;
}

.custom-date-picker-day.today.selected {
    background: #521B1E;
    color: #fff;
}

.custom-date-picker-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
}

.custom-date-picker-day.other-month {
    color: #ccc;
    opacity: 0.5;
}

.custom-date-picker-day.empty {
    visibility: hidden;
    pointer-events: none;
}

.booking-step4-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.booking-step4-back-link {
    color: #521B1E;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.2s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.booking-step4-back-link:hover {
    opacity: 0.8;
}

.booking-step4-submit-btn {
    width: auto;
    min-width: 200px;
    background-color: #521B1E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
}

.booking-step4-submit-btn:hover {
    background-color: #3f0f0f;
}

@media (max-width: 600px) {
    .booking-step4-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-step4-back-link {
        position: static;
        order: 2;
        align-self: center;
    }
    
    .booking-step4-submit-btn {
        width: 100%;
        order: 1;
    }
}

/* ===== BOOKING STEP 5 STYLES ===== */
body.booking-step5-page {
    background: white;
}

body.booking-step5-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 80vh;
    padding: 40px 20px;
    background: white;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-step5-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.booking-step5-form {
    width: 100%;
    max-width: 800px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 35px 40px;
    box-sizing: border-box;
}

.booking-step5-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: black;
    text-align: left;
}

.booking-step5-error {
    color: red;
    margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
}

.booking-step5-date-info {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: #666;
    text-align: left;
}

.booking-step5-no-slots {
    text-align: center;
    color: #666;
    font-size: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.booking-step5-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.booking-step5-slot-btn {
    background: #F0E2E2;
    border: 1px solid #F0E2E2;
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 15px;
    color: black;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-weight: 500;
    box-sizing: border-box;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-step5-slot-btn:hover {
    background: #e8d5d5;
}

.booking-step5-slot-btn.active {
    border: 2px solid #521B1E;
    background: #F0E2E2;
}

.booking-step5-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.booking-step5-back-link {
    color: #521B1E;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.2s;
    position: absolute;
    left: 0;
    bottom: 0;
}

.booking-step5-back-link:hover {
    opacity: 0.8;
}

.booking-step5-submit-btn {
    width: auto;
    min-width: 200px;
    background-color: #521B1E;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
}

.booking-step5-submit-btn:hover {
    background-color: #3f0f0f;
}

@media (max-width: 600px) {
    .booking-step5-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-step5-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .booking-step5-back-link {
        position: static;
        order: 2;
        align-self: center;
    }
    
    .booking-step5-submit-btn {
        width: 100%;
        order: 1;
    }
}

@media (max-width: 400px) {
    .booking-step5-slots {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING SUCCESS STYLES ===== */
body.booking-success-page {
    background: white;
}

body.booking-success-page main {
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 20px;
    background: white;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box;
    overflow: visible;
}

.booking-success-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.booking-success-content {
    width: 100%;
    max-width: 800px;
    background: #FFF9F9;
    border: 1px solid #F0E2E2;
    border-radius: 22px;
    padding: 50px 40px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.booking-success-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: black;
    text-align: center;
}

.booking-success-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    display: block;
}

.booking-success-message {
    margin: 0;
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 1.6;
}

.booking-success-link-wrapper {
    margin-top: 10px;
}

.booking-success-link {
    color: #521B1E;
    text-decoration: underline;
    font-size: 16px;
    transition: opacity 0.2s;
    display: inline-block;
}

.booking-success-link:hover {
    opacity: 0.8;
}

/* EMPLOYEE RESERVATIONS PAGE STYLES */
body:has(.employee-reservations-page) main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.employee-reservations-page {
    background-color: white;
    padding: 40px 0;
    min-height: 100vh;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
}

.employee-reservations-title {
    font-family: "Italiana", serif;
    font-size: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.reservations-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 20px;
    box-sizing: border-box;
}

.day-filter-sheets {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
    border-bottom: 0.5px solid #521B1E;
    background-color: transparent;
}

.day-filter-sheet {
    background-color: #FFF9F9;
    border: 0.5px solid #521B1E;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Gilda Display", serif;
    margin: 0;
    padding: 12px 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    width: 20%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.day-filter-sheet:hover {
    background-color: #F5E5E5;
}

.day-filter-sheet.active {
    background-color: #F0E2E2;
    z-index: 2;
    border-bottom: 0.5px solid #F0E2E2;
    margin-bottom: -1px;
}

.day-filter-sheet.disabled,
.day-filter-sheet:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
    background-color: #E8E8E8 !important;
    color: #888 !important;
}

.day-filter-sheet.disabled:hover,
.day-filter-sheet:disabled:hover {
    background-color: #E8E8E8 !important;
    color: #888 !important;
}

.employee-reservations-page .reservations-container {
    background-color: #F0E2E2;
    border: 0.5px solid #521B1E;
    border-radius: 0;
    padding: 30px 0;
    margin: 0 !important;
    position: relative;
    z-index: 0;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.day-reservations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-card {
    background-color: #FFF9F9;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: inherit;
    border: 0.5px solid #521B1E;
}

.reservation-card * {
    text-decoration: none;
}

.reservation-date {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #521B1E;
    font-family: "Gilda Display", serif;
}

.reservation-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0 20px;
    padding-left: 15%;
    padding-right: 15%;
    text-decoration: none;
}

.reservation-time-service {
    font-size: 22px;
    color: #000;
    text-align: center;
    font-family: "Gilda Display", serif;
    text-decoration: none;
}

.reservation-card:hover .reservation-time-service {
    text-decoration: none;
}

.reservation-client {
    position: absolute;
    bottom: 15px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.client-avatar {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.client-name {
    font-size: 18px;
    color: #000;
    font-family: "Gilda Display", serif;
}

.reservation-detail-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15%;
    background-color: #521B1E;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.reservation-detail-btn:hover {
    background-color: #3a1416;
    color: white;
    text-decoration: none;
}

.no-reservations {
    text-align: center;
    color: #666;
    padding: 40px 20px;
    font-size: 24px;
    font-family: "Gilda Display", serif;
}

@media (max-width: 1200px) {
    .reservation-detail-btn {
        width: 20%;
    }
}

@media (max-width: 980px) {
    .reservation-detail-btn {
        width: 25%;
    }
}

@media (max-width: 800px) {
    .reservation-detail-btn {
        display: none;
    }
    
    .reservation-card:hover {
        background-color: #F5E5E5;
        transition: background-color 0.3s ease;
    }
}

@media (max-width: 700px) {
    .reservation-date {
        top: auto;
        left: auto;
        bottom: 15px;
        right: 20px;
    }
    
    .reservation-content {
        width: 100%;
        margin: 0;
        padding: 0;
        padding-left: 0;
        padding-right: 0;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        align-items: flex-start;
        justify-content: center;
    }
    
    .reservation-time-service {
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }
}

@media (max-width: 520px) {
    .reservation-time-service {
        font-size: 18px;
    }
    
    .reservation-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reservation-date {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        order: 1;
        margin: 0;
    }
    
    .reservation-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        order: 2;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .reservation-client {
        position: relative;
        bottom: auto;
        left: auto;
        order: 3;
        margin: 0;
    }
    .client-name{
        font-size: 16px;
    }
    .client-avatar {
        width: 30px;
        height: 30px;
    }
}

/* EMPLOYEE RESERVATION DETAIL PAGE STYLES */
body:has(.employee-reservation-detail-page) main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.employee-reservation-detail-page {
    background-color: white;
    padding: 40px 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.employee-reservation-detail-title {
    font-family: "Italiana", serif;
    font-size: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.reservation-detail-container {
    width: 70%;
    max-width: 70%;
    margin: 0 auto;
    background-color: #FFF9F9;
    border: 1px solid #521B1E;
    border-radius: 12px;
    padding: 30px;
    font-family: "Gilda Display", serif;
    box-sizing: border-box;
}

.reservation-detail-sections-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.reservation-detail-section {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 200px;
    font-size: 18px;
}

.reservation-detail-separator {
    width: 0.5px;
    background-color: #521B1E;
    margin: 0 10px;
    align-self: stretch;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 0;
}

.info-text {
    color: #000;
    font-size: 18px;
    font-family: "Gilda Display", serif;
}

.info-label {
    font-weight: 400;
    color: #000;
    font-size: 18px;
    font-family: "Gilda Display", serif;
}

.info-value {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    font-family: "Gilda Display", serif;
}

.previous-notes p {
    margin: 8px 0;
    font-size: 18px;
    font-family: "Gilda Display", serif;
    color: #000;
}

.no-notes {
    color: #666;
    font-style: italic;
}

.form-subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    font-family: "Gilda Display", serif;
    text-align: center;
}

.reservation-finish-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.form-label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    font-family: "Gilda Display", serif;
}

.form-textarea {
    width: 100%;
    padding: 12px;
    background-color: #F0E2E2;
    border: 0.5px solid #521B1E;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Gilda Display", serif;
    color: #000;
    resize: vertical;
    box-sizing: border-box;
}

.form-textarea:focus {
    outline: none;
    border-color: #521B1E;
    background-color: #F5E5E5;
}

.form-input {
    width: 100%;
    padding: 12px;
    background-color: #F0E2E2;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: "Gilda Display", serif;
    color: #000;
    box-sizing: border-box;
    resize: vertical;
}

.form-input:focus {
    outline: none;
    background-color: #F5E5E5;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.btn-save {
    background-color: #521B1E;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-save:hover {
    background-color: #3a1416;
}

.btn-cancel-reservation {
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cancel-reservation:hover {
    background-color: #c82333;
}

.inactive-message {
    color: #666;
    font-style: italic;
    font-size: 18px;
    text-align: center;
    padding: 20px;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    color: #521B1E;
    text-decoration: none;
    font-size: 16px;
    font-family: "Gilda Display", serif;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #3a1416;
    text-decoration: underline;
}

/* Responsive styles for employee reservation detail */
@media (max-width: 1200px) {
    .reservation-detail-sections-wrapper {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .reservation-detail-section {
        width: 100%;
    }

    .reservation-detail-separator {
        width: 100%;
        height: 0.5px;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .employee-reservation-detail-page {
        padding: 20px 15px;
    }

    .employee-reservation-detail-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .reservation-detail-container {
        width: 95%;
        max-width: 95%;
        padding: 20px 15px;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-save,
    .btn-cancel-reservation {
        width: 100%;
    }
}

/* MY RESERVATIONS PAGE STYLES */
body:has(.my-reservations-page) main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.my-reservations-page {
    background-color: white;
    padding: 40px 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.my-reservations-title {
    font-family: "Italiana", serif;
    font-size: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.status-filter-sheets {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: auto;
    padding: 0;
    border-bottom: 0.5px solid #521B1E;
    background-color: transparent;
    width: 50%;
    max-width: 50%;
}

.status-filter-sheet {
    background-color: #FFF9F9;
    border: 0.5px solid #521B1E;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    font-size: 24px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: "Gilda Display", serif;
    margin: 0;
    padding: 12px 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    width: 33.333%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.status-filter-sheet:hover {
    background-color: #F5E5E5;
    text-decoration: none;
    color: #000;
}

.status-filter-sheet.active {
    background-color: #F0E2E2;
    z-index: 2;
    border-bottom: 0.5px solid #F0E2E2;
    margin-bottom: -1px;
    text-decoration: none;
    color: #000;
}

.my-reservations-page .reservations-container {
    background-color: #F0E2E2;
    border: 0.5px solid #521B1E;
    border-top: none;
    border-radius: 0;
    padding: 30px;
    margin: 0;
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
}

.my-reservations-page .reservations-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    height: 0.5px;
    background-color: #521B1E;
    z-index: 1;
}

.status-reservations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.back-to-calendar-link {
    font-size: 14px;
    color: #521B1E !important;
    text-decoration: none;
    font-weight: 500;
}

.back-to-calendar-link:hover {
    text-decoration: underline;
    color: #3b1315;
}


.reservation-card.canceled {
    background-color: #E8E8E8;
    opacity: 0.7;
}

.reservation-card.canceled .reservation-time-service,
.reservation-card.canceled .reservation-date,
.reservation-card.canceled .employee-name {
    color: #666;
}

.reservation-employee {
    position: absolute;
    bottom: 15px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.employee-avatar {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.employee-name {
    font-size: 18px;
    color: #000;
    font-family: "Gilda Display", serif;
}

.reservation-action-btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15%;
    background-color: #521B1E;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 20px;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.reservation-action-btn:hover {
    background-color: #3a1416;
    color: white;
    text-decoration: none;
}

.reservation-rating-display {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Gilda Display", serif;
}

.reservation-rating-display .rating-value {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

.reservation-rating-display .rating-star {
    font-size: 20px;
    color: #521B1E;
    line-height: 1;
}

.reservation-action-btn .btn-text {
    display: block;
}

.reservation-action-btn .btn-icon {
    display: none;
}

.cancel-icon {
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    color: #521B1E;
}

.rate-icon {
    font-size: 24px;
    color: #521B1E;
}

/* Responsive styles for my reservations */
@media (max-width: 1200px) {
    .reservation-action-btn {
        width: 20%;
    }
    
    .status-filter-sheet {
        font-size: 20px;
        padding: 10px 0;
    }
    
    .status-filter-sheets {
        width: 60%;
        max-width: 60%;
    }
    
    .my-reservations-page .reservations-container::before {
        left: 60%;
    }
}

@media (max-width: 980px) {
    .reservation-action-btn {
        width: auto;
        height: auto;
        position: absolute;
        top: 15px;
        right: 15px;
        bottom: auto;
        background-color: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: auto;
    }
    
    .reservation-action-btn .btn-text {
        display: none;
    }
    
    .reservation-action-btn .btn-icon {
        display: block;
        color: #521B1E;
    }
    
    .reservation-action-btn:hover {
        background-color: transparent;
    }
    
    .reservation-action-btn:hover .btn-icon {
        color: #3a1416;
    }
    
    .reservation-rating-display {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .reservation-rating-display .rating-value {
        font-size: 16px;
    }
    
    .reservation-rating-display .rating-star {
        font-size: 18px;
    }
    
    .status-filter-sheets {
        width: 70%;
        max-width: 70%;
    }
    
    .my-reservations-page .reservations-container::before {
        left: 70%;
    }
}

@media (max-width: 800px) {
    .status-filter-sheets {
        width: 100%;
        max-width: 100%;
    }
    
    .my-reservations-page .reservations-container::before {
        left: 100%;
        display: none;
    }
}

@media (max-width: 700px) {
    .reservation-date {
        top: auto;
        left: auto;
        bottom: 15px;
        right: 20px;
    }
    
    .reservation-content {
        width: 100%;
        margin: 0;
        padding: 0;
        padding-left: 0;
        padding-right: 0;
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        align-items: flex-start;
        justify-content: center;
    }
    
    .reservation-time-service {
        width: 100%;
        text-align: center;
        padding-top: 10px;
    }
}

@media (max-width: 520px) {
    .reservation-time-service {
        font-size: 18px;
    }
    
    .reservation-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reservation-date {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
        order: 1;
        margin: 0;
    }
    
    .reservation-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        order: 2;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .reservation-employee {
        position: relative;
        bottom: auto;
        left: auto;
        order: 3;
        margin: 0;
    }
    
    .employee-name {
        font-size: 16px;
    }
    
    .employee-avatar {
        width: 30px;
        height: 30px;
    }
    
    .my-reservations-title {
        font-size: 38px;
        margin-bottom: 20px;
    }
    
    .status-filter-sheet {
        font-size: 16px;
        padding: 8px 0;
    }
}

/* ADD REVIEW PAGE STYLES */
body:has(.add-review-page) main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.add-review-page {
    background-color: white;
    padding: 40px 20px;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.add-review-title {
    font-family: "Italiana", serif;
    font-size: 50px;
    font-weight: 400;
    color: #000;
    margin-bottom: 30px;
    text-align: center;
}

.review-content-container {
    background-color: #FFF9F9;
    border: 0.5px solid #521B1E;
    border-radius: 12px;
    padding: 30px;
    width: 70%;
    max-width: 800px;
    box-sizing: border-box;
    position: relative;
}

.review-reservation-card {
    background-color: white;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 0.5px solid #521B1E;
    margin-bottom: 30px;
}

.review-reservation-date {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #521B1E;
    font-family: "Gilda Display", serif;
}

.review-reservation-employee {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Gilda Display", serif;
}

.review-employee-avatar {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.review-employee-name {
    font-size: 16px;
    font-weight: 500;
    color: #521B1E;
}

.review-reservation-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    padding-left: 15%;
    padding-right: 15%;
}

.review-reservation-time-service {
    font-size: 22px;
    color: #000;
    text-align: center;
    font-family: "Gilda Display", serif;
}

.review-error-message {
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: "Gilda Display", serif;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.review-form-label {
    font-family: "Gilda Display", serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.review-comment-textarea {
    width: 100%;
    padding: 12px;
    border: 0.5px solid #521B1E;
    border-radius: 24px;
    background-color: #F0E2E2;
    font-family: "Gilda Display", serif;
    font-size: 16px;
    color: #000;
    resize: vertical;
    box-sizing: border-box;
}

.review-comment-textarea:focus {
    outline: none;
    border-color: #3a1416;
}

.review-submit-btn {
    background-color: #521B1E;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Gilda Display", serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.review-submit-btn:hover {
    background-color: #3a1416;
}

.review-back-link {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #521B1E;
    text-decoration: underline;
    font-family: "Gilda Display", serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.review-back-link:hover {
    color: #3a1416;
}

/* Responsive styles for add review */
@media (max-width: 768px) {
    .add-review-page {
        padding: 20px 15px;
    }

    .add-review-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .review-content-container {
        width: 95%;
        padding: 20px 15px;
    }

    .review-reservation-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        min-height: auto;
    }

    .review-reservation-date {
        position: relative;
        top: auto;
        left: auto;
        order: 1;
        margin: 0;
    }

    .review-reservation-employee {
        position: absolute;
        top: 15px;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .review-employee-avatar {
        width: 30px;
        height: 30px;
    }
    
    .review-employee-name {
        font-size: 14px;
    }

    .review-reservation-content {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        order: 3;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .review-reservation-time-service {
        width: 100%;
        text-align: center;
    }
}

/* ===== ERROR PAGE STYLES ===== */
body.error-page main {
    max-width: none;
    margin: 0;
    padding: 0;
    background: white;
    box-shadow: none;
    border-radius: 0;
    min-height: calc(100vh - 160px);
}

.error-wrapper {
    min-height: calc(100vh - 160px);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    box-sizing: border-box;
}

.error-box {
    background: #521B1E;
    border-radius: 16px;
    padding: 80px 100px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-title {
    font-family: "Gilda Display", serif;
    font-size: 48px;
    font-weight: 400;
    margin: 0 0 40px 0;
    color: white;
    letter-spacing: 1px;
    text-align: center;
}

.error-link {
    font-family: "Gilda Display", serif;
    font-size: 32px;
    font-weight: 400;
    color: white;
    text-decoration: underline;
    transition: opacity 0.2s;
    letter-spacing: 1px;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.error-link:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .error-box {
        padding: 60px 40px;
        max-width: 90%;
    }

    .error-title {
        font-size: 36px;
    }

    .error-link {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .error-box {
        padding: 40px 30px;
        max-width: calc(100% - 30px);
    }

    .error-title {
        font-size: 28px;
    }

    .error-link {
        font-size: 20px;
    }
}