body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: var(--brand-text, #223140);
    overflow-x: clip;
}

.top-bar {
    background-color: var(--brand-topbar, #243847);
    color: #d9e3ea;
    font-size: 0.84rem;
    padding: 0.45rem 0;
}

.top-bar i {
    margin-right: 0.3rem;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    text-decoration: none;
    color: #e8eef2;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.top-bar-social a:hover {
    background-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
}

.top-bar-social .admin-chip {
    width: auto;
    border-radius: 999px;
    padding: 0 0.65rem;
    gap: 0.2rem;
    font-size: 0.78rem;
}

.top-bar-social-handle {
    color: #e8eef2;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.top-bar-social-handle:hover {
    color: #ffffff;
}

.resort-main-nav {
    background-color: var(--brand-mainmenu, #3f505d);
    border-bottom: 2px solid #b8953b;
}

.guest-user-bar {
    background: var(--brand-guest-user-bar-bg, #eef4f1);
    border-bottom: 1px solid rgba(34, 49, 64, 0.12);
    color: var(--brand-text, #223140);
}

.guest-user-bar__avatar {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--brand-primary, #198754);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.guest-user-bar__name {
    color: var(--brand-heading, #1f3952);
    line-height: 1.2;
}

.guest-user-bar__meta {
    color: var(--brand-subheading, #3f5870);
    line-height: 1.3;
}

.guest-user-bar__meta span + .guest-user-bar__mobile {
    margin-left: 0.75rem;
}

.guest-user-bar__btn {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .guest-user-bar__meta .guest-user-bar__mobile {
        display: block;
        margin-left: 0;
        margin-top: 0.15rem;
    }
}

.resort-main-brand {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    max-width: 100%;
    overflow: hidden;
}

.brand-main-logo {
    height: var(--brand-menu-logo-size, 24px);
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 1;
}

.resort-main-brand:hover {
    color: #ffffff;
}

.brand-logo-box {
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #e5e6e8;
    color: #6c7074;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.resort-main-menu .nav-link {
    color: #f3f5f6;
    font-size: var(--brand-menu-link-font-size, 16px);
    font-weight: 700;
    padding: 0.42rem 0.8rem;
    margin: 0 0.08rem;
    border-radius: 6px;
}

.resort-main-menu .nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.resort-main-menu .nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.16);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero > .carousel {
    position: relative;
    min-height: 80vh;
}

.hero .carousel-item {
    height: 80vh;
}

.hero .carousel-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.48));
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay .container {
    pointer-events: auto;
}

.hero .carousel-indicators,
.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
}

.site-events-section {
    background: #eef6ff;
}

.site-events-section h4 {
    color: var(--brand-heading, #1f3952);
    font-weight: 700;
}

.site-event-card__img {
    height: 180px;
    object-fit: cover;
}

.home-feature-strip {
    position: relative;
    overflow: hidden;
    background: #f1efec;
}

.home-feature-strip--has-bg {
    background: transparent;
}

.home-feature-strip__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--feature-strip-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.home-feature-strip__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(241, 239, 236, calc(var(--feature-strip-overlay, 82%) / 100)) 0%,
        rgba(241, 239, 236, calc((var(--feature-strip-overlay, 82%) + 4%) / 100)) 100%
    );
}

.home-feature-strip .container {
    position: relative;
    z-index: 2;
}

@keyframes homeFeatureBorderFlow {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.feature-mini-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(
        120deg,
        rgba(194, 154, 58, 0.75),
        rgba(25, 135, 84, 0.55),
        rgba(126, 184, 212, 0.65),
        rgba(194, 154, 58, 0.75)
    );
    background-size: 260% 260%;
    animation: homeFeatureBorderFlow 9s ease-in-out infinite;
    transition: transform 0.28s ease, filter 0.28s ease;
}

.feature-mini-link:hover {
    animation-duration: 5.5s;
    filter: brightness(1.04);
}

.feature-mini-link:hover,
.feature-mini-link:focus,
.feature-mini-link:active,
.feature-mini-link:visited {
    text-decoration: none !important;
    color: inherit;
}

.feature-mini-link *,
.feature-mini-link:hover *,
.feature-mini-link:focus *,
.feature-mini-link:active * {
    text-decoration: none !important;
}

.feature-mini-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 8px 20px rgba(22, 35, 48, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    height: 100%;
}

.feature-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(22, 35, 48, 0.12);
}

.feature-mini-icon {
    color: #c29a3a;
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.feature-mini-card h5 {
    color: #1e3550;
    font-weight: 700;
    margin-bottom: 0.45rem;
}

.feature-mini-card p {
    color: #526476;
    font-size: 0.95rem;
    line-height: 1.5;
}

.section-title {
    color: var(--brand-heading, #1f3952);
    font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--brand-heading, #1f3952);
}

h3, h4, h5, h6,
.about-subtitle,
.services-kicker,
.gallery-subtitle {
    color: var(--brand-subheading, #3f5870);
}

.btn-success {
    background-color: var(--brand-btn-bg, #198754) !important;
    border-color: var(--brand-btn-bg, #198754) !important;
    color: var(--brand-btn-text, #ffffff) !important;
}

.btn-success:hover,
.btn-success:focus {
    filter: brightness(0.92);
}

.btn-outline-success {
    border-color: var(--brand-btn-outline, #198754) !important;
    color: var(--brand-btn-outline-text, #198754) !important;
}

.btn-outline-success:hover,
.btn-outline-success:focus {
    background-color: var(--brand-btn-outline, #198754) !important;
    color: var(--brand-btn-text, #ffffff) !important;
}

.why-choose-section {
    background: #f8fafc;
}

.why-thumb-card {
    border: 1px solid #dde5ed;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(20, 36, 52, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.why-thumb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(20, 36, 52, 0.14);
}

.why-thumb-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.why-thumb-card .card-body {
    padding: 1rem;
}

.why-thumb-card .card-title {
    color: var(--brand-primary, #198754);
    font-weight: 700;
}

.why-thumb-card .card-text {
    color: #3e5367;
}

.why-read-more {
    margin-top: 0.25rem;
    border-color: var(--brand-primary, #198754);
    color: var(--brand-primary, #198754);
    font-weight: 600;
}

.why-read-more:hover {
    background: var(--brand-primary, #198754);
    color: #fff;
}

.unit-detail-modal .modal-content {
    background: rgba(31, 57, 82, 0.78);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #f4f8fb;
}

.unit-detail-modal .modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.unit-detail-modal .modal-title {
    color: #ffffff;
}

.unit-detail-modal .modal-body {
    color: #eef4fa;
    line-height: 1.7;
}

.card-hover {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.about-showcase {
    background: #f4f3f1;
    border-radius: 10px;
    padding: 1.25rem;
}

.about-title {
    color: #3f5870;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.about-subtitle {
    color: #3f5870;
    font-weight: 700;
}

.about-text {
    color: #223140;
    line-height: 1.8;
}

.about-carousel .carousel-inner img {
    height: 320px;
    object-fit: cover;
}

.about-card {
    background: #f9f9f9;
    border-left: 2px solid #c49a36;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    animation: aboutCardFadeUp 0.7s ease both;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-card h5,
.about-values-card h5 {
    color: #3f5870;
    font-weight: 700;
}

.about-card p,
.about-values-card {
    color: #223140;
}

.about-icon {
    color: #c49a36;
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.about-values-card {
    background: #f9f9f9;
    border-left: 2px solid #c49a36;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    animation: aboutCardFadeUp 0.9s ease both;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.about-card:hover,
.about-values-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 24px rgba(28, 44, 59, 0.12);
    border-left-color: #b7891f;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem 1.2rem;
}

.about-value-item {
    font-size: 0.95rem;
}

.about-value-item i {
    color: #c49a36;
    margin-right: 0.45rem;
}

.about-values-grid .about-value-item {
    animation: aboutCardFadeUp 0.8s ease both;
}

.about-values-grid .about-value-item:nth-child(1) { animation-delay: 0.05s; }
.about-values-grid .about-value-item:nth-child(2) { animation-delay: 0.1s; }
.about-values-grid .about-value-item:nth-child(3) { animation-delay: 0.15s; }
.about-values-grid .about-value-item:nth-child(4) { animation-delay: 0.2s; }
.about-values-grid .about-value-item:nth-child(5) { animation-delay: 0.25s; }

@keyframes aboutCardFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .top-bar .container {
        justify-content: center !important;
    }

    .resort-main-menu .nav-link {
        margin: 0.12rem 0;
    }

    .hero .carousel-item img {
        height: 56vh;
    }

    .about-carousel .carousel-inner img {
        height: 250px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* Accommodation page — split hero (matches restaurant layout) */
.accommodation-hero {
    background-color: #f0f0f0;
}

.accommodation-hero-title {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3a4550;
    line-height: 1.25;
}

.accommodation-hero-tagline {
    font-size: 1.02rem;
    line-height: 1.55;
    color: #4a5560;
    font-weight: 500;
    max-width: 38rem;
}

.accommodation-hero-lead {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #5a6570;
    max-width: 38rem;
}

.accommodation-hero-rooms {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #3a4550;
    font-weight: 600;
    max-width: 38rem;
}

.accommodation-hero-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 38rem;
}

.accommodation-hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #5a6570;
    padding: 0.28rem 0;
}

.accommodation-hero-highlights i {
    color: var(--brand-primary, #198754);
    font-size: 1rem;
    line-height: 1.35;
    flex-shrink: 0;
}

.btn-accommodation-cta {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    background: #fff;
    border: 1px solid #c5cdd5;
    color: #3a4550;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-accommodation-cta:hover {
    background: #fafafa;
    border-color: #9aa5b0;
    color: #2a3340;
}

.accommodation-hero-visual {
    background: #e4e6e9;
    max-width: min(100%, 416px);
    margin-inline: auto;
}

.accommodation-hero-carousel .carousel-inner {
    border-radius: 0.5rem;
    width: 100%;
    aspect-ratio: 3 / 2.8;
    overflow: hidden;
    background: #dfe3e8;
}

.accommodation-hero-carousel .carousel-item {
    height: 100%;
}

.accommodation-hero-carousel .carousel-inner img,
.accommodation-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.accommodation-hero-carousel .carousel-control-prev,
.accommodation-hero-carousel .carousel-control-next {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.accomodation-section {
    background: #f1efec;
}

.accomodation-title {
    color: #1e3550;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.accomodation-intro {
    max-width: 620px;
    margin: 0 auto;
    color: #38495a;
    font-size: 0.92rem;
    line-height: 1.7;
}

.room-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(19, 34, 49, 0.08);
    position: relative;
    border: 1px solid #ebe7e1;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(19, 34, 49, 0.13);
}

.room-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.room-card:hover img {
    transform: scale(1.045);
}

.room-card-body {
    padding: 1.1rem;
}

.room-card-body h5 {
    color: #1d3550;
    margin-bottom: 0.55rem;
}

.room-price {
    color: #c2902d;
    font-weight: 700;
    margin-bottom: 0.05rem;
    font-size: 1.02rem;
}

.room-price-usd {
    color: #6b7d8d;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.room-meta {
    font-size: 0.76rem;
    color: #6d7580;
    margin-bottom: 0.55rem;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
}

.room-features li {
    font-size: 0.83rem;
    color: #2b3f52;
    margin-bottom: 0.3rem;
}

.room-features i {
    color: #c2902d;
    margin-right: 0.4rem;
}

.room-btn {
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #8d6a1c;
    border: 1px solid #c2902d;
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
    animation: roomBtnPulse 2.4s ease-in-out infinite;
}

.room-btn:hover {
    background: #c2902d;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(194, 144, 45, 0.28);
    animation-play-state: paused;
}

.room-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
    transition: left 0.45s ease;
}

.room-btn:hover::after {
    left: 120%;
}

.room-policy {
    font-size: 0.72rem;
    color: #5d6975;
}

.room-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: rgba(30, 53, 80, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
}

.room-grid .col-lg-4:nth-child(1) .room-card {
    animation: roomCardIn 0.55s ease both;
}

.room-grid .col-lg-4:nth-child(2) .room-card {
    animation: roomCardIn 0.7s ease both;
}

.room-grid .col-lg-4:nth-child(3) .room-card {
    animation: roomCardIn 0.85s ease both;
}

@keyframes roomCardIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes roomBtnPulse {
    0%,
    100% {
        box-shadow: 0 0 0 rgba(194, 144, 45, 0);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(194, 144, 45, 0.08);
    }
}

.services-section {
    background: linear-gradient(180deg, #f7f9fb 0%, #eef2f6 100%);
}

.home-services-section .services-grid {
    opacity: 1;
    transform: none;
}

.home-services-section .service-card-media .service-card-title {
    color: #ffffff;
}

.services-kicker {
    color: #c2902d;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-title {
    color: #1f3952;
    font-weight: 700;
    margin-top: 0.45rem;
    margin-bottom: 0.65rem;
}

.services-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: #516679;
    line-height: 1.7;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 35, 52, 0.08);
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.services-content-grid {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.services-loaded .services-content-grid {
    opacity: 1;
    transform: translateY(0);
}

.services-skeleton-grid {
    display: flex;
}

.services-loaded .services-skeleton-grid {
    display: none;
}

.service-skeleton-card {
    height: 250px;
    border-radius: 14px;
    background: linear-gradient(90deg, #e8edf2 20%, #f1f4f7 38%, #e8edf2 60%);
    background-size: 200% 100%;
    animation: serviceSkeleton 1.2s linear infinite;
}

@keyframes serviceSkeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.service-card-media {
    min-height: 260px;
    border: 0;
    position: relative;
    box-shadow: 0 12px 24px rgba(15, 35, 52, 0.14);
}

.service-card-bgimg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-body-media {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    background: linear-gradient(to top, rgba(13, 24, 36, 0.78), rgba(13, 24, 36, 0.25));
}

.service-card-icon {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card-media .service-card-title,
.service-card-media .service-card-text {
    color: #ffffff;
}

.service-card-text-full {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.service-card-media:hover .service-card-text-full {
    max-height: 120px;
    opacity: 1;
}

.service-card-media:hover .service-card-text-short {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

.service-link-cta {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    padding: 0.28rem 0.68rem;
    width: fit-content;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.service-card-media:hover .service-link-cta {
    background: var(--brand-btn-bg, #198754);
    border-color: var(--brand-btn-bg, #198754);
    color: var(--brand-btn-text, #fff);
}

.service-card-top {
    height: 5px;
    background: linear-gradient(90deg, #c2902d, #e0bf7a);
}

.service-card-body {
    padding: 1.2rem 1.15rem;
}

.service-card-title {
    color: #1f3952;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.service-card-text {
    color: #3f566b;
    margin-bottom: 0.9rem;
    line-height: 1.65;
}

.service-link {
    color: #8f6a1e;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
}

.service-link i {
    margin-left: 0.3rem;
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(15, 35, 52, 0.14);
    border-color: #d4dde6;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.services-grid .col-lg-4:nth-child(1) .service-card { animation: serviceCardIn 0.5s ease both; }
.services-grid .col-lg-4:nth-child(2) .service-card { animation: serviceCardIn 0.65s ease both; }
.services-grid .col-lg-4:nth-child(3) .service-card { animation: serviceCardIn 0.8s ease both; }
.services-grid .col-lg-4:nth-child(4) .service-card { animation: serviceCardIn 0.95s ease both; }
.services-grid .col-lg-4:nth-child(5) .service-card { animation: serviceCardIn 1.1s ease both; }
.services-grid .col-lg-4:nth-child(6) .service-card { animation: serviceCardIn 1.25s ease both; }

.services-intro {
    animation: serviceFadeDown 0.7s ease both;
}

@keyframes serviceFadeDown {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes serviceCardIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-section {
    background: linear-gradient(180deg, #f9fbfd 0%, #eef3f7 100%);
}

.gallery-title {
    color: #1f3952;
    font-weight: 700;
}

.gallery-subtitle {
    color: #566979;
}

.gallery-item {
    position: relative;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    min-height: 230px;
    box-shadow: 0 10px 22px rgba(15, 35, 52, 0.1);
}

.gallery-clickable {
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 0.9rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(to top, rgba(15, 34, 50, 0.75), rgba(15, 34, 50, 0.05));
    transform: translateY(100%);
    transition: transform 0.28s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover figcaption {
    transform: translateY(0);
}

.gallery-lightbox .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.gallery-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

.gallery-zoom-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(12, 23, 34, 0.95);
}

.gallery-zoom-wrap img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    animation: galleryZoomIn 0.35s ease both;
}

.gallery-logo-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(20, 39, 57, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 0.28rem 0.62rem 0.28rem 0.34rem;
    font-size: 0.78rem;
    font-weight: 700;
}

.gallery-logo-badge .logo-mark {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: #f0f1f3;
    color: #4f5a65;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
}

.gallery-zoom-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(to top, rgba(10, 20, 30, 0.82), rgba(10, 20, 30, 0.05));
    padding: 0.8rem 1rem;
}

.floating-whatsapp {
    position: fixed;
    bottom: 22px;
    z-index: 1080;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(5, 59, 30, 0.28);
    text-decoration: none !important;
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 1.6rem;
    line-height: 1;
}

.floating-whatsapp-right {
    right: 20px;
}

.floating-whatsapp-left {
    left: 20px;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
    color: #fff;
    transform: translateY(-2px);
}

.floating-whatsapp::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    white-space: nowrap;
    background: rgba(13, 20, 28, 0.92);
    color: #fff;
    font-size: 0.78rem;
    border-radius: 6px;
    padding: 0.35rem 0.55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-whatsapp-right::after {
    right: 0;
}

.floating-whatsapp-left::after {
    left: 0;
}

.floating-whatsapp:hover::after,
.floating-whatsapp:focus::after {
    opacity: 1;
    transform: translateY(0);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 10px 22px rgba(5, 59, 30, 0.28); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 22px rgba(5, 59, 30, 0.28); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 22px rgba(5, 59, 30, 0.28); }
}

.event-promo-popup {
    position: fixed;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    z-index: 1075;
    width: min(270px, 70vw);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(10, 20, 34, 0.24);
    border: 1px solid rgba(18, 32, 50, 0.08);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.event-promo-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.event-promo-popup img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.event-promo-content {
    padding: 0.7rem 0.8rem 0.85rem;
    background: #ffffff;
}

.event-promo-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1f3952;
}

.event-promo-details {
    font-size: 0.82rem;
    line-height: 1.45;
    color: #3e5367;
}

.event-promo-read-more {
    display: inline-block;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--brand-btn-bg, #198754);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
}

.event-promo-read-more:hover {
    color: #ffffff;
    filter: brightness(0.94);
}

.event-promo-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: 0;
    background: rgba(10, 20, 34, 0.72);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.1rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .event-promo-popup {
        width: min(220px, 62vw);
        right: 10px;
        top: auto;
        bottom: 94px;
        transform: translateY(0);
    }
    .event-promo-popup.is-visible {
        transform: translateY(0);
    }
}

.contact-page-section {
    background: #f3f4f6;
}

.contact-page-heading {
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    font-weight: 700;
    color: #2b3f52;
    margin-bottom: 1.15rem;
    line-height: 1.2;
}

.contact-info-card,
.contact-map-card {
    background: #ffffff;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(30, 45, 60, 0.08);
}

.contact-info-card {
    padding: 2rem 2.25rem;
}

.contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a5f6f;
    margin-bottom: 0.45rem;
}

.contact-label--website {
    margin-top: 1.75rem;
}

.contact-value {
    margin-bottom: 1.35rem;
    color: #2b3f52;
    font-size: 1rem;
    line-height: 1.55;
}

.contact-link {
    color: #0d6efd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-link:hover {
    color: #0a58ca;
}

.contact-wa-lead {
    color: #5a6570;
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.35rem;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 0;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.38);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-wa-btn:hover {
    background: #1ebe57;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
    transform: translateY(-1px);
}

.contact-wa-btn i {
    font-size: 1.1rem;
}

.contact-map-card {
    padding: 0;
    overflow: hidden;
}

.contact-map-embed {
    height: 420px;
    background: #e9ecef;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.contact-map-footer {
    padding: 1rem 1.25rem 1.15rem;
    background: #ffffff;
}

.contact-map-open-btn {
    display: inline-block;
    padding: 0.45rem 0.95rem;
    border: 1px solid #ced4da;
    border-radius: 0.45rem;
    background: #ffffff;
    color: #3a4550;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-map-open-btn:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #2b3f52;
}

@media (max-width: 991.98px) {
    .contact-map-embed {
        height: 360px;
    }
}

.resort-footer {
    background: var(--brand-footer-bg, #ececdd);
    color: var(--brand-footer-text, #2b3f52);
}

/* Top stroke bar above main footer content — color from branding footer_stroke_color */
.resort-footer-top-stroke {
    height: 5px;
    background: var(--brand-footer-stroke, #0f7b2f);
    border-bottom: 2px solid color-mix(in srgb, var(--brand-footer-stroke, #0f7b2f) 70%, #000 30%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.resort-footer-main {
    padding: 1.5rem 0 1rem;
    border-bottom: 2px solid color-mix(in srgb, var(--brand-footer-stroke, #0f7b2f) 55%, transparent 45%);
}

.resort-footer-row {
    --bs-gutter-y: 1.25rem;
    --bs-gutter-x: 1.25rem;
}

.resort-footer-brand {
    color: var(--brand-footer-title, #1f8f6f);
    font-weight: 700;
}

.footer-main-logo {
    height: 44px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.resort-footer-text {
    color: var(--brand-footer-text, #4a5f6f);
    line-height: 1.6;
}

.resort-footer-title {
    font-weight: 700;
    color: var(--brand-footer-title, #2b3f52);
    margin-bottom: 0.65rem !important;
}

.resort-footer-links li {
    margin-bottom: 0.2rem;
}

.resort-footer-links a,
.resort-footer-contact-item a {
    text-decoration: none;
    color: var(--brand-footer-link, #2b3f52);
}

.resort-footer-links a:hover,
.resort-footer-contact-item a:hover {
    color: var(--brand-footer-title, #1f8f6f);
}

.resort-footer-social {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbd8c4;
    color: var(--brand-footer-link, #3f4f5e);
    text-decoration: none;
}

.resort-footer-contact-item {
    margin-bottom: 0.45rem !important;
}

.resort-footer-contact-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--brand-footer-title, #2b3f52);
}

.resort-footer-contact-item div {
    font-size: 0.9rem;
    color: var(--brand-footer-text, #526476);
}

/* Bottom bar: background = footer_bottom_bg_color; top accent = footer_stroke_color */
.resort-footer-bottom {
    background: var(--brand-footer-bottom-bg, #0f7b2f);
    color: #fff;
    min-height: 3.25rem;
    padding: 1rem 0;
    border-top: 3px solid color-mix(in srgb, var(--brand-footer-stroke, #0f7b2f) 75%, #000 25%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.resort-footer-bottom small {
    font-size: 0.9rem;
    line-height: 1.4;
}

.resort-footer-bottom a {
    color: #fff;
    text-decoration: none;
}

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

@keyframes galleryZoomIn {
    from {
        opacity: 0;
        transform: scale(0.88);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Restaurant page */
.restaurant-hero {
    background-color: #f0f0f0;
}

.restaurant-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5c6670;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.restaurant-hero-title {
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3a4550;
    line-height: 1.25;
}

.restaurant-hero-lead {
    font-size: 1rem;
    line-height: 1.65;
    color: #5a6570;
    max-width: 38rem;
}

.btn-restaurant-menu {
    display: inline-block;
    padding: 0.65rem 1.35rem;
    background: #fff;
    border: 1px solid #c5cdd5;
    color: #3a4550;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-restaurant-menu:hover {
    background: #fafafa;
    border-color: #9aa5b0;
    color: #2a3340;
}

/* Portrait slider frame (3:4 height reduced 30% → 3:2.8); max width 416px */
.restaurant-hero-visual {
    background: #e4e6e9;
    max-width: min(100%, 416px);
    margin-inline: auto;
}

.restaurant-section-title {
    font-weight: 700;
    color: var(--brand-heading, #1f3952);
}

/* Category menu section */
.restaurant-menu-section {
    background: #f4f5f7;
}

.restaurant-category-section-title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    color: #6b7785;
    letter-spacing: 0.02em;
}

.restaurant-menu-filters {
    width: 100%;
    padding: 0 0 1.25rem;
    margin-bottom: 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(107, 119, 133, 0.18);
    border-radius: 0;
    box-shadow: none;
}

.restaurant-menu-filters__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7785;
    margin-bottom: 0.35rem;
}

.restaurant-menu-filters__search .input-group-text,
.restaurant-menu-filters__search .form-control,
.restaurant-menu-filters__select {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(107, 119, 133, 0.22);
    color: #1f3952;
}

.restaurant-menu-filters__search .input-group-text {
    border-right: 0;
    padding-right: 0.35rem;
}

.restaurant-menu-filters__search .form-control {
    border-left: 0;
    box-shadow: none;
}

.restaurant-menu-filters__search .form-control:focus,
.restaurant-menu-filters__select:focus {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(25, 135, 84, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.12);
}

.restaurant-menu-filters__search .form-control:focus {
    border-left: 0;
}

.restaurant-menu-filters__search:focus-within .input-group-text {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(25, 135, 84, 0.45);
}

.restaurant-menu-filters__count {
    letter-spacing: 0.01em;
}

.restaurant-category-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(28, 44, 59, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.restaurant-category-card:hover {
    box-shadow: 0 12px 36px rgba(28, 44, 59, 0.1);
    transform: translateY(-2px);
}

.restaurant-category-card-accent {
    height: 4px;
    width: 100%;
    background: var(--brand-primary, #198754);
}

.restaurant-category-card-body {
    padding: 1.35rem 1.35rem 1.15rem;
}

.restaurant-category-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid #eef1f3;
}

.restaurant-category-badge {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-primary, #198754);
    background: rgba(25, 135, 84, 0.12);
    line-height: 1;
}

.restaurant-category-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-primary, #146c43);
    line-height: 1.35;
}

.restaurant-category-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eef1f3;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #3d4652;
}

.restaurant-category-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.restaurant-category-item:first-child {
    padding-top: 0;
}

.restaurant-category-halo {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.2rem;
    border-radius: 50%;
    background: rgba(25, 135, 84, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.restaurant-category-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-primary, #198754);
    display: block;
}

.restaurant-category-item-text {
    flex: 1;
    min-width: 0;
}

.restaurant-category-item-name {
    font-weight: 600;
    color: #2d3748;
}

/* Public restaurant menu — thumbnail cards */
.restaurant-menu-block__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e2e6ea;
}

.restaurant-menu-block__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary, #146c43);
}

.restaurant-menu-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 44, 59, 0.06);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.restaurant-menu-card--no-image {
    position: relative;
}

.restaurant-menu-card--no-image .restaurant-menu-card__body {
    padding-top: 1rem;
}

.restaurant-menu-card__badges--inline {
    position: static;
}

.restaurant-menu-card__qty-pill--body {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
}

.restaurant-menu-card:hover {
    box-shadow: 0 12px 32px rgba(28, 44, 59, 0.1);
    transform: translateY(-2px);
}

.restaurant-menu-card.in-cart {
    border-color: var(--restaurant-menu-accent, var(--brand-primary, #198754));
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--restaurant-menu-accent, var(--brand-primary, #198754)) 25%, transparent);
}

.restaurant-menu-card__media {
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #304a4a, #243838);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.restaurant-menu-card__badges {
    position: absolute;
    top: 0.45rem;
    left: 0.45rem;
    z-index: 2;
}

.restaurant-menu-card__badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    background: #f59e0b;
    color: #fff;
}

.restaurant-menu-card__qty-pill {
    position: absolute;
    top: 0.45rem;
    right: 0.45rem;
    z-index: 2;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--restaurant-menu-accent, var(--brand-primary, #198754));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}

.restaurant-menu-card.in-cart .restaurant-menu-card__qty-pill {
    display: inline-flex;
}

.restaurant-menu-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restaurant-menu-card__placeholder {
    font-size: 2rem;
    color: #cbd5e1;
}

.restaurant-menu-card__body {
    padding: 0.75rem 0.85rem 0.85rem;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.restaurant-menu-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.restaurant-menu-add-btn {
    width: 100%;
    margin-top: auto;
    padding: 0.45rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: #48585e;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.15s ease, transform 0.15s ease;
}

.restaurant-menu-add-btn:hover {
    background: #3a464b;
    color: #fff;
}

.restaurant-menu-add-btn:active {
    transform: scale(0.98);
}

.restaurant-order-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background: var(--restaurant-menu-accent, var(--brand-primary, #198754));
    color: #fff;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.15);
    padding: 0.65rem 0;
}

.restaurant-order-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.restaurant-order-line {
    padding: 0.65rem 0;
    border-bottom: 1px solid #eef1f3;
}

.restaurant-order-line__name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.restaurant-order-line__controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restaurant-order-line__qty {
    min-width: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.restaurant-order-line__btn {
    width: 2rem;
    padding: 0;
}

.restaurant-order-line__total {
    font-weight: 600;
    font-size: 0.875rem;
}

#menu {
    padding-bottom: 4.5rem;
}

.guest-auth-modal .modal-title {
    font-weight: 700;
    color: var(--brand-heading, #1f3952);
}

.guest-auth-modal__lead {
    color: var(--brand-text, #223140);
    font-size: 1rem;
    line-height: 1.5;
}

.restaurant-menu-card__name {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.35;
}

.restaurant-menu-card__desc {
    margin: 0 0 0.65rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.45;
}

.restaurant-menu-card__price {
    font-weight: 700;
    color: var(--brand-primary, #198754);
    font-size: 0.95rem;
}

.restaurant-category-item-desc {
    color: #5c6773;
}

.restaurant-category-item-price {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--brand-primary, #198754);
    white-space: nowrap;
    margin-left: 0.5rem;
    padding-top: 0.15rem;
}

.restaurant-category-item-price::before {
    content: "UGX ";
    font-weight: 600;
    font-size: 0.72rem;
    opacity: 0.85;
}

.restaurant-hero-carousel .carousel-inner {
    border-radius: 0.5rem;
    width: 100%;
    aspect-ratio: 3 / 2.8;
    overflow: hidden;
    background: #dfe3e8;
}

.restaurant-hero-carousel .carousel-item {
    height: 100%;
}

.restaurant-hero-carousel .carousel-inner img,
.restaurant-hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.restaurant-hero-carousel .carousel-control-prev,
.restaurant-hero-carousel .carousel-control-next {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}
