body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: #e5e7eb !important;

    min-height: 100vh;

    color: white;

    overflow: auto;
}

.bodyLR {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)),
    url('/images/background.avif');

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    min-height: 100vh;

    overflow: auto;
}

/*HOME PAGE STYLE*/
.home-hero-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.hero-section h2 {
    font-size: 50px;
}

.home-hero {
    min-height: 100vh;
    background: linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
    ),
    url('/images/background.avif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero-content {
    max-width: 760px;
}

.home-hero-content h1 {
    line-height: 1.1;
}

.home-hero-content .lead {
    max-width: 650px;
    font-size: 1.25rem;
    line-height: 1.7;
}

.hero-main-btn {
    border-radius: 16px;
    padding: 14px 32px;
    font-weight: 700;
}

/*RIGHT PANEL STYLE*/

.start-panel {
    width: 420px;
    border: none;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.start-panel .offcanvas-header {
    padding: 1.5rem 1.5rem 0;
}

.start-panel .offcanvas-body {
    padding: 2rem;
}

.start-panel .btn {
    border-radius: 14px;
    padding: 13px 16px;
    font-weight: 600;
}

.start-panel h3 {
    font-size: 1.8rem;
}

.mobile-hero-title,
.mobile-hero-text {
    display: none;
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 100vh;
        text-align: center;
        padding: 2rem 1rem;
        align-items: center !important;
    }

    .home-hero-content {
        max-width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
        border-radius: 28px;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(6px);
    }

    .desktop-hero-title,
    .desktop-hero-text {
        display: none;
    }

    .mobile-hero-title,
    .mobile-hero-text {
        display: block;
    }

    .mobile-hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .mobile-hero-text {
        font-size: 1.05rem;
        line-height: 1.6;
        opacity: 0.95;
    }

    .home-hero-content .badge {
        margin-bottom: 1rem !important;
    }

    .hero-main-btn {
        width: 100%;
        padding: 15px 18px;
        font-size: 1.05rem;
        border-radius: 16px;
    }

    .start-panel.offcanvas-end {
        top: auto;
        right: 0;
        left: 0;
        bottom: 0;

        width: 100%;
        height: auto;
        max-height: 82vh;

        transform: translateY(100%);

        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .start-panel.offcanvas-end.show {
        transform: none;
    }

    .start-panel .offcanvas-header {
        padding: 1.25rem 1.25rem 0;
    }

    .start-panel .offcanvas-body {
        padding: 1.5rem;
        justify-content: flex-start !important;
    }

    .start-panel h3 {
        font-size: 1.55rem;
    }

    .start-panel .btn {
        padding: 14px 16px;
        font-size: 1rem;
        border-radius: 16px;
    }
}

/* =========================
   NAVBAR WRAPPER
========================= */

.app-navbar-wrapper {
    z-index: 1050;
}


/* =========================
   DESKTOP NAVBAR
========================= */

.desktop-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1050;
}

.desktop-navbar .navbar-brand {
    font-weight: 800;
    color: #212529;
}

.desktop-navbar .nav-link {
    font-weight: 600;
    color: #212529;
}

.desktop-navbar .nav-link:hover {
    color: #000;
}

@media (min-width: 992px) {
    body {
        padding-top: 76px;
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none;
    }
}

/* =========================
   REGISTER BUTTON
========================= */

.navbar-register-btn {
    border-radius: 999px;
    font-weight: 600;
}


/* =========================
   DESKTOP FAVORITES
========================= */

.favorites-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.favorite-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.favorite-navbar-heart {
    color: #dc3545;
    font-size: 1.35rem;
    line-height: 1;
}

.favorite-heart-badge {
    color: #dc3545;
    font-size: 0.8rem;
    line-height: 1;
}

.top-star-badge {
    color: goldenrod;
    font-size: 0.8rem;
    line-height: 1;
}

.favorite-exponent-count {
    position: absolute;
    top: -8px;
    right: -10px;

    min-width: 17px;
    height: 17px;
    padding: 0 4px;

    border-radius: 999px;
    background-color: #dc3545;
    color: #ffffff;

    font-size: 0.68rem;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}


/* =========================
   ACCOUNT DROPDOWN
========================= */

.account-link {
    border-radius: 999px;
}

.dropdown-menu {
    border-radius: 16px;
    padding: 10px;
}

.dropdown-item {
    border-radius: 10px;
    font-weight: 500;
    padding: 9px 12px;
}

.dropdown-item:active {
    background-color: #212529;
}


/* =========================
   MOBILE BOTTOM NAV
========================= */

@media (max-width: 991px) {

    body {
        padding-top: 0;
        padding-bottom: 92px;
    }

    .desktop-navbar {
        display: none;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1030;

        min-height: 50px;
        padding: 5px 7px;

        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 4px;

        background-color: #ffffff;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    }

    .mobile-nav-item {
        flex: 1;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 3px;
        min-width: 0;

        color: #212529;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.72rem;

        border-radius: 18px;
        padding: 7px 4px;

        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .mobile-nav-item i {
        font-size: 1.25rem;
        line-height: 1;
    }

    .mobile-nav-item span {
        white-space: nowrap;
    }

    .mobile-nav-item:hover {
        background-color: #f1f3f5;
        color: #000;
    }

    .mobile-nav-item.is-active {
        background-color: #e7f1ff;
        color: #0d6efd;
    }

    .mobile-nav-item.is-active i {
        color: #0d6efd;
    }

    .mobile-nav-form {
        flex: 1;
        margin: 0;
    }

    .mobile-nav-button {
        width: 100%;
        border: none;
        background: transparent;
        font-family: inherit;
    }

    .mobile-add-item {
        flex: 1.05;
    }

    .mobile-add-circle {
        width: 34px;
        height: 34px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background-color: #212529;
        color: #ffffff;
    }

    .mobile-add-circle i {
        font-size: 1.1rem;
    }

    .mobile-icon-badge-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-favorite-item i {
        color: #dc3545;
    }

    .mobile-favorite-badge,
    .mobile-notification-badge {
        position: absolute;
        top: -8px;
        right: -11px;

        min-width: 16px;
        height: 16px;
        padding: 0 4px;

        border-radius: 999px;
        background-color: #dc3545;
        color: #ffffff;

        font-size: 0.62rem;
        font-weight: 700;
        line-height: 16px;
        text-align: center;
    }

    .mobile-notifications-panel {
        --bs-offcanvas-height: min(88vh, 720px);

        height: var(--bs-offcanvas-height);
        border-radius: 20px 20px 0 0;
    }

    .mobile-notifications-panel .offcanvas-header {
        border-bottom: 1px solid #e9ecef;
    }

    .mobile-notifications-panel .navbar-notification-list {
        max-height: calc(var(--bs-offcanvas-height) - 120px);
        overflow-y: auto;
    }

    @supports (height: 100dvh) {
        .mobile-notifications-panel {
            --bs-offcanvas-height: min(88dvh, 720px);
        }
    }
}

/*RATING STARS*/

.rating-stars {
    display: inline-flex;
    gap: 0;
    letter-spacing: 0;
    white-space: nowrap;
}


/*GALLERY STYLES*/
.gallery-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.gallery-manage-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-manage-item {
    background: #fff;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .gallery-image {
        height: 135px;
    }

    #reviewMessage {
        display: none;
    }

    .gallery-manage-image {
        height: 120px;
    }
}

.card {
    background-color: rgba(255, 255, 255, 0.92);
    color: black;
    transition: transform 0.2s ease;
    backdrop-filter: blur(10px);
}

.business-card {
    border-radius: 22px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.business-card .card-body {
    display: flex;
    flex-direction: column;
}

.business-image {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.business-description {
    display: -webkit-box;
    -webkit-line-clamp: 4; /* rânduri afișate */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 72px;
    line-height: 1.5;
}

.clickable-card {
    cursor: pointer;
}

.status-ribbon {

    position: absolute;

    top: 18px;

    right: -42px;

    width: 170px;

    text-align: center;

    padding: 8px 0;

    font-size: .8rem;

    font-weight: 700;

    letter-spacing: .6px;

    color: #fff;

    transform: rotate(45deg);

    z-index: 50;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 6px;

}

.status-ribbon.approved {

    background: #198754;

}

.status-ribbon.pending {

    background: #f59e0b;

}

.status-ribbon.rejected {

    background: #dc3545;

}


.favorite-heart,
.ajax-favorite-btn {
    cursor: pointer;
    position: relative;
    z-index: 20;
}

.favorite-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/*CARDS*/
.card-body {
    padding: 1.5rem;
}

.card-body h4 {
    color: #222;
}

.card-body p {
    font-size: 0.95rem;
}

.btn-dark {
    border-radius: 12px;
    padding: 10px;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.5)),
    url('/images/background.avif');

    background-size: cover;
    background-position: center;
}

.hero-section h2 {
    font-size: 30px;
}

.details-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.card {
    border-radius: 20px;
}

.lead {
    line-height: 1.8;
}

.landing-page {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url('/images/background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.landing-left {
    background: rgba(0, 0, 0, 0.45);
}

.landing-right {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.landing-content {
    max-width: 760px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 18px;
    backdrop-filter: blur(6px);
}

.stat-box h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    margin-bottom: 0;
    opacity: 0.9;
}

.auth-action-card {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
}

.auth-action-card .btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
}


/*CALENDAR*/
#availabilityCalendar {
    font-size: 0.95rem;
}

#availabilityCalendar .fc-daygrid-day {
    cursor: pointer;
    transition: all 0.2s ease;
}

#availabilityCalendar .fc-daygrid-day:hover {
    filter: brightness(0.95);
}

.available-day {
    background-color: #d1f7dc !important;
}

.unavailable-day {
    background-color: #f8d7da !important;
}

#availabilityCalendar .fc-day-today {
    outline: 2px solid #212529;
    outline-offset: -2px;
}

.availability-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #6c757d;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    display: inline-block;
}

.available-color {
    background-color: #d1f7dc;
    border: 1px solid #8ed9a4;
}

.unavailable-color {
    background-color: #f8d7da;
    border: 1px solid #dc3545;
}

@media (max-width: 768px) {
    #availabilityCalendar {
        font-size: 0.82rem;
    }

    #availabilityCalendar .fc-toolbar-title {
        font-size: 1.1rem;
    }

    #availabilityCalendar .fc-button {
        padding: 0.25rem 0.45rem;
        font-size: 0.8rem;
    }
}

/*BUSINESS EDIT STYLE*/
.edit-main-preview {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
}

.gallery-panel {
    position: sticky;
    top: 90px;
}

.gallery-manage-image {
    width: 100%;
    height: 135px;
    object-fit: cover;
}

.gallery-manage-item {
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 991px) {
    .gallery-panel {
        position: static;
    }

    .gallery-manage-image {
        height: 150px;
    }

    .favorite-heart {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .edit-main-preview {
        max-height: 220px;
    }

    .gallery-manage-image {
        height: 130px;
    }

    .favorite-heart {
        font-size: 1.5rem;
    }
}

/*FAVORITES HEART*/

.favorite-heart-wrapper {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
}

.favorite-heart-wrapper form {
    margin: 0;
}

.favorite-heart {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-heart:hover {
    transform: scale(1.12);
    background: white;
}

.favorite-details-btn {
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.favorite-details-btn:hover {
    transform: translateY(-2px);
}

#detailsFavoriteIcon {
    font-size: 1rem;
}

/*ADD/REMOVE MESSAGE STYLE*/
.toast {
    border-radius: 14px;
    font-weight: 500;
}

/*REVIEWS*/
.review-card {
    border-radius: 16px;
}

.text-warning {
    letter-spacing: 1px;
}

#userDetailPersonFill {
    width: 70px;

    font-size: 50px;
}

@media (max-width: 768px) {

    #userDetailPersonFill {
        display: none;
    }
}

/*SEARCH*/
.search-card {
    border-radius: 22px;
}

/*SMARTPHONE DISPLAY*/

.card-img-top {
    object-fit: cover;
    transition: transform 0.4s ease;
    height: 250px;
}

@media (max-width: 768px) {

    body {
        font-size: 17px;
    }

    #detailsFavoriteText {
        display: none;
    }

    .details-image {
        height: 350px;
    }

    .form-control,
    .form-select {
        font-size: 16px;
        padding: 13px 14px;
    }

    .business-description {
        min-height: 76px;
    }

    .business-image {
        object-fit: cover;
        height: 120px;
    }

    .business-card {
        min-height: auto;
    }

    .details-image {
        width: 100%;
        object-fit: cover;
    }

    .business-card .btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .business-card .card-body {
        padding: 10px;
    }

    .business-card p,
    .business-card .mb-2 {
        font-size: 1rem;
    }

    .home-hero {
        text-align: center;
        padding: 2rem 0;
    }

    .home-hero-content {
        max-width: 100%;
    }

    .home-hero-content h1 {
        font-size: 2.4rem;
    }

    .home-hero-content .lead {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .hero-main-btn,
    .hero-secondary-btn {
        width: 100%;
        padding: 14px 18px;
    }

    .start-modal-content {
        border-radius: 22px;
        margin: 0 12px;
    }

    /*    SEARCH */
    .search-card {
        padding: 1.2rem !important;
        border-radius: 24px;
    }

    .search-card .row div {
        margin-top: 0 !important;
    }

    .search-card label {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0.35rem;
    }

    .search-card .form-control {
        font-size: 14px;
        padding: 13px 14px;
        border-radius: 14px;
        height: 2.5rem;
    }

    .search-card .form-select {
        font-size: 14px;
        padding: 13px 14px;
        border-radius: 14px;
        height: 3rem;
    }

    .search-card button {
        border-radius: 14px;
        font-weight: 500;
        margin-top: 0.5rem;
    }

    .business-card-link {
        min-height: auto;
    }

    .business-card-link p {
        font-size: 0.8rem;
    }

    .business-card-link button {
        font-size: 0.7rem;
    }

    .card-img-top {
        height: 120px;
    }
}

/*AUTH STYLE*/
.auth-page {
    min-height: 100vh;
    background: linear-gradient(
            rgba(0, 0, 0, 0.58),
            rgba(0, 0, 0, 0.58)
    ),
    url('/images/background.avif');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.auth-info {
    color: white;
    max-width: 620px;
}

.auth-info h1 {
    font-size: 3rem;
    line-height: 1.1;
}

.auth-info p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

.auth-card {
    border: none;
    border-radius: 26px;
    padding: 2rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    background: rgba(255, 255, 255, 0.96);
}

.auth-card .form-control,
.auth-card .form-select {
    border-radius: 14px;
    padding: 13px 14px;
    font-size: 16px;
}

.auth-card .btn {
    border-radius: 14px;
    padding: 13px 16px;
    font-weight: 600;
}

.auth-card label {
    font-weight: 600;
}

.auth-link {
    color: #212529;
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .auth-page {
        background-attachment: scroll;
    }

    .auth-wrapper {
        align-items: center;
        min-height: 100vh;
    }

    .auth-info {
        display: none;
    }

    .auth-card {
        padding: 1.35rem;
        border-radius: 24px;
        margin: 0 0.25rem;
        max-height: none;
    }

    .auth-card h2 {
        font-size: 1.7rem;
    }

    .auth-card p,
    .auth-card .text-muted {
        font-size: 0.95rem;
    }

    .auth-card .form-control,
    .auth-card .form-select {
        padding: 13px 14px;
        font-size: 16px;
    }

    .auth-card .btn {
        width: 100%;
        padding: 14px 16px;
    }

    /*    REVIEWS*/
    .review-card .d-flex {
        flex-wrap: wrap;
    }

    .review-card .btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/*PROFILE PAGE STYLE*/
.profile-hero {
    border-radius: 28px;
}

.profile-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background-color: #212529;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 3rem;
    flex-shrink: 0;
}

.profile-stat-card {
    border-radius: 22px;
}

.profile-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #f8d7da;
    color: #dc3545;

    font-size: 1.5rem;
}

.profile-stat-icon.dark {
    background-color: #212529;
    color: #ffffff;
}

.profile-stat-icon.gold {
    background-color: #ffc600;
    color: #000000;
}

.profile-info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;

    padding: 14px 0;
    border-bottom: 1px solid #edf0f2;
}

.profile-info-row:last-child {
    border-bottom: none;
}

.profile-info-row span {
    color: #6c757d;
}

.profile-info-row strong {
    text-align: right;
}

@media (max-width: 768px) {
    .profile-avatar {
        width: 82px;
        height: 82px;
        font-size: 2.4rem;
    }

    .profile-info-row {
        flex-direction: column;
        gap: 4px;
    }

    .profile-info-row strong {
        text-align: left;
    }
}

/*Category carousel*/
.category-carousel {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}

@media (hover: none) and (pointer: coarse) {
    .carousel-controls {
        display: none;
    }

    .category-carousel {
        overflow: auto;
    }
}

.carousel-btn.disabled {
    opacity: .35;
    pointer-events: none;
    cursor: default;
    box-shadow: none;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.carousel-btn {

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, .9);

    box-shadow: 0 4px 15px rgba(0, 0, 0, .12);

    transition: .2s;

    cursor: pointer;
}

.category-chip {
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #444;
    padding: 7px;
    border-radius: 10px;
    transition: .25s;
    background: white;
    flex: 0 0 auto;
}

.category-chip:hover {

    background: #111;

    color: white;
}

.category-chip i {

    font-size: 1.8rem;

    margin-bottom: 10px;
}

.category-chip span {

    font-size: .9rem;

    font-weight: 500;
}

/*PREMIUM SERVICES*/
.premium-card {
    width: 200px;
    white-space: normal;
    text-overflow: unset;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;

    cursor: pointer;
    flex-shrink: 0;

    transition: 0.2s;

    position: relative;
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    background: gold;
    color: black;

    font-size: 0.7rem;
    font-weight: bold;

    padding: 4px 8px;
    border-radius: 10px;

    z-index: 2;
}

.favorite-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    background: #ffffff;
    color: black;

    font-size: 0.7rem;
    font-weight: bold;

    padding: 4px 8px;
    border-radius: 10px;

    z-index: 2;
}

.top-rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    background: #ffffff;
    color: black;

    font-size: 0.7rem;
    font-weight: bold;

    padding: 4px 8px;
    border-radius: 10px;


    z-index: 2;
}

.premium-card:hover {
    transform: translateY(-4px);
}

/* imagine sus */
.premium-image {
    width: 100%;
    height: 160px;

    background-size: cover;
    background-position: center;
}

/* zona text jos */
.premium-info {
    padding: 12px;
}

.premium-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.premium-county {
    margin: 0;
    font-size: 0.85rem;
    color: #6c757d;
}

.category-carousel.dragging,
.premium-scroll.dragging,
.county-scroll.dragging {
    cursor: grabbing;
    user-select: none;
}

/*Lightbox imagini*/
.lightbox {
    display: none;

    position: fixed;
    z-index: 9999;

    inset: 0;

    background: rgba(0, 0, 0, 0.85);

    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 100vw;
    max-height: 100vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    color: white;

    font-size: 20px;

    cursor: pointer;

    transition: 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.4);

    transform: scale(1.1);
}

.lightbox-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    color: white;

    font-size: 24px;

    cursor: pointer;

    transition: 0.2s;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.4);

    transform: translateY(-50%) scale(1.1);
}

/*FOOTER*/
.site-footer {
    margin-top: 60px;

    padding: 40px 0 20px;

    background: #e5e7eb !important;

    border-top: 1px solid #e5e5e5;
}

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 40px;
}

.footer-brand h5 {
    font-size: 22px;

    color: black;

    margin-bottom: 10px;
}

.footer-brand p {
    color: #777;

    max-width: 280px;

    line-height: 1.6;
}

.footer-section {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-section h6 {
    margin-bottom: 8px;

    color: black;

    font-weight: 600;
}

.footer-section a {
    color: #666;

    text-decoration: none;

    transition: 0.2s;
}

.footer-section a:hover {
    color: #000;
}

.footer-bottom {
    margin-top: 35px;

    padding-top: 20px;

    border-top: 1px solid #e5e5e5;

    text-align: center;

    color: #888;

    font-size: 14px;
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }

    .favorite-heart {
        width: 30px;
        height: 30px;
    }

    .dashboard-row{
        padding: 1rem !important;
    }

    .favorite-heart {
        font-size: 1.5rem;
    }

    .site-footer {
        margin-top: 20px;
        padding: 20px 0 10px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding-top: 10px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        font-size: 1rem;
    }

    .footer-section {
        font-size: 1rem;
    }

}

/*LEGAL*/
.legal-page {
    padding: 20px 10px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    margin-bottom: 10px;
    color: black;
}

.legal-container section {
    margin-top: 40px;
}

.legal-container h2 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: black;
}

.legal-container p,
.legal-container li {
    line-height: 1.7;
    color: #555;
}

.legal-container ul {
    padding-left: 25px;
}

/*ADMIN STYLE*/
.dashboard-card {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    transition: all .2s ease;

    cursor: pointer;

    height: 100%;
}

.dashboard-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dashboard-card-link:hover .dashboard-card {
    transform: translateY(-5px);
}

.dashboard-card h2 {

    font-size: 2.2rem;

    font-weight: 700;

    margin: 15px 0 5px;

}

.dashboard-card p {

    color: #777;

    margin: 0;

}

.dashboard-icon {

    font-size: 2.2rem;

}

.warning-card {

    border-top: 5px solid #ffc107;

}

.success-card {

    border-top: 5px solid #28a745;

}

.admin-filter-btn.primary {

    background-color: #d1e7dd;

    color: #00afff;

    border-color: #badbcc;
}

.admin-filter-btn.success {

    background-color: #d1e7dd;

    color: #0f5132;

    border-color: #badbcc;
}

.primary-card {

    border-top: 5px solid #0d6efd;

}

.admin-business-card-link h5 {

    font-size: 1rem;

    font-weight: 600;

    margin-bottom: 8px;

}

.admin-business-card-link {

    background: white;

    border-radius: 16px;

    overflow: hidden;

    height: 100%;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);

    transition: all .25s ease;

    text-decoration: none;

    color: inherit;

}

.admin-business-card-link p {

    font-size: .85rem;

    color: #6c757d;

    margin-bottom: 8px;

}


.admin-business-card-link:hover {

    transform: translateY(-4px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, .12);

    text-decoration: none;

    color: inherit;

}

.admin-business-card-link .btn {

    font-size: .8rem;

    padding: 5px 10px;

    border-radius: 8px;

}

.admin-business-image {

    width: 100%;

    height: 140px;

    object-fit: cover;
}

@media (max-width: 575px) {

    .admin-business-image {
        height: 105px;
    }

    .admin-business-card-link .card-body {
        padding: 0.75rem;
    }

    .admin-business-card-link h5 {
        font-size: 0.88rem;
    }

    .admin-business-card-link p,
    .admin-business-card-link small {
        font-size: 0.72rem;
    }

    .admin-status-badge {
        padding: 3px 6px;
        font-size: 0.62rem;
    }
}

.admin-status-badge {

    font-size: .7rem;

    padding: 5px 10px;

    border-radius: 20px;

    font-weight: 500;

}

.notification-badge {

    position: absolute;

    top: 2px;

    right: -8px;

    background: #dc3545;

    color: white;

    font-size: 0.65rem;

    min-width: 18px;

    height: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

}

.notification-navbar-icon {

    color: #0d6efd;

}

.notification-dropdown {

    width: 350px;

    max-width: 90vw;

    max-height: 400px;

    overflow-y: auto;

}

.notification-actions {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;

    padding: 0.7rem 0.85rem;

    border-bottom: 1px solid #f1f3f5;
    background-color: #ffffff;
}

.notification-actions form {

    margin: 0;
}

.notification-action-link {

    display: inline-flex;
    align-items: center;
    gap: 0.35rem;

    padding: 0.35rem 0.25rem;

    border: 0;
    border-radius: 0.35rem;
    background: transparent;

    color: #0d6efd;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
}

.notification-action-link:hover {

    color: #0a58ca;
    text-decoration: underline;
}

.notification-action-button:disabled {

    color: #adb5bd;
    cursor: not-allowed;
    text-decoration: none;
}

.navbar-notifications-empty {

    min-height: 180px;
    padding: 2rem;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;

    color: #6c757d;
    text-align: center;

}

.navbar-notifications-empty i {

    font-size: 2rem;

}

.navbar-notification-list {

    overflow-y: auto;

}

.navbar-notification-entry {

    display: flex;
    align-items: flex-start;
    gap: 0.75rem;

    padding: 1rem 1.25rem;

    color: #212529;
    text-decoration: none;

    border-bottom: 1px solid #f1f3f5;

}

.navbar-notification-entry:hover {

    background-color: #f8f9fa;
    color: #212529;

}

.navbar-notification-entry > i {

    margin-top: 0.15rem;
    color: #6c757d;

}

.navbar-notification-entry > span {

    min-width: 0;

}

.navbar-notification-entry strong,
.navbar-notification-entry small {

    display: block;

}

.navbar-notification-entry small {

    margin-top: 0.2rem;
    color: #6c757d;
    line-height: 1.35;

}

.navbar-notification-entry.is-unread {

    background-color: #e7f1ff;

}

.navbar-notification-entry.is-unread > i {

    color: #0d6efd;

}

.notification-dropdown .navbar-notifications-empty {

    min-height: 150px;

}

.notification-message {

    display: block;

    white-space: normal;

    overflow-wrap: break-word;

    word-break: break-word;

}

.notification-item {

    padding: 12px;

    margin-bottom: 5px;

    white-space: normal;

}


.notification-item:hover {

    background-color: #f8f9fa;

}

.admin-filter-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 120px;

    height: 40px;

    padding: 0 20px;

    border-radius: 25px;

    text-decoration: none;

    font-weight: 500;

    font-size: 0.9rem;

    transition: all .2s ease;

    border: 1px solid transparent;

}

/* Toate */

.admin-filter-btn.all {

    background-color: #f1f3f5;

    color: #343a40;

    border-color: #dee2e6;

}


/* Pending */

.admin-filter-btn.pending {

    background-color: #fff3cd;

    color: #856404;

    border-color: #ffe69c;

}


/* Approved */

.admin-filter-btn.approved {

    background-color: #d1e7dd;

    color: #0f5132;

    border-color: #badbcc;

}


/* Rejected */

.admin-filter-btn.rejected {

    background-color: #f8d7da;

    color: #842029;

    border-color: #f1aeb5;

}

.admin-filter-btn:hover {

    transform: translateY(-2px);

    opacity: .85;

}

.admin-filter-btn.active {

    box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);

}

.admin-filter-btn.active::after {

    content: "✓";

}

.admin-table {

    border-radius: 16px;

    overflow: hidden;

    background: white;

    box-shadow: 0 5px 18px rgba(0, 0, 0, .05);

}

.admin-table thead {

    background: #f8f9fa;

}

.admin-table th {

    font-weight: 600;

    border-bottom: none;

    color: #495057;

}

.admin-table td {

    vertical-align: middle;

}

.admin-table tbody tr {

    transition: .15s;

}

.admin-table tbody tr:hover {

    background: #f8f9fa;

}

.clickable-row {

    cursor: pointer;

    transition: .15s;

}

.clickable-row:hover {

    background: #f6f9fc;

}
/* =========================
   GALERIE
   ========================= */

#currentGallery {
    scroll-margin-top: 90px;
}

.gallery-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.7rem;
}

.gallery-section-title i {
    margin-right: 0.35rem;
}


/* FOTOGRAFII */

.gallery-photo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.55rem;
    margin-bottom: 0.75rem;
}

.gallery-photo-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 7px;
    background: #f1f1f1;
    cursor: pointer;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.gallery-photo-item:hover .gallery-thumbnail {
    transform: scale(1.04);
}


/* IMAGINI ASCUNSE */

.gallery-extra-image {
    display: none;
}


/* BUTON MAI MULTE */

.gallery-more-btn {
    font-size: 0.78rem;
    border-radius: 6px;
    margin-bottom: 1.4rem;
}


/* VIDEOCLIPURI */

.gallery-videos-section {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.gallery-video-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
    max-width: 100%;
}

.gallery-video-item {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
    background: #111;
}

.gallery-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
}

/* =========================
   VIDEO PREVIEW
   ========================= */

.video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 7px;
    background: #111;
    cursor: pointer;
}

.gallery-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* BUTON PLAY */

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.25rem;

    transition:
            transform 0.2s ease,
            background 0.2s ease;
}

.video-preview:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgba(0, 0, 0, 0.8);
}

.video-play-button i {
    margin-left: 2px;
}

/* TABLET */

@media (max-width: 992px) {

    .gallery-photo-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .gallery-video-grid {
        max-width: 600px;
    }
}


/* TELEFON */

@media (max-width: 576px) {

    .gallery-photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .dashboard-row{
        padding: 1rem !important;
    }

    .gallery-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .gallery-section-title {
        font-size: 0.8rem;
    }
}

/*GALLERY MANAGE*/
.gallery-manage-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.gallery-manage-image,
.gallery-manage-video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.gallery-delete-form {
    position: absolute;
    top: 6px;
    right: 6px;
    margin: 0;
    z-index: 5;
}

.gallery-delete-btn {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: white;

    font-size: 1.2rem;
    line-height: 1;

    cursor: pointer;

    transition: background 0.2s ease,
    transform 0.2s ease;
}

.gallery-delete-btn:hover {
    background: rgba(220, 53, 69, 0.95);
    transform: scale(1.08);
}

.support-ticket-card {
    transition: transform 0.15s ease,
    box-shadow 0.15s ease;
}

.support-ticket-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.12) !important;
}


/*LOGO*/
.mevent-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mevent-logo {
    width: 70px;
    height: auto;
    display: block;
}

@media (min-width: 576px) {
    .mobile-dashboard-card {}
}
