body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --partyone-btn-bg: #c6281b;
    --partyone-btn-border: #c6281b;
    --partyone-btn-hover: #a61d12;
    --partyone-btn-text: #ffffff;
    --partyone-btn-shadow: 0 10px 24px rgba(249, 23, 5, 0.18);
}

.btn:not(.btn-close):not(.navbar-toggler):not(.carousel-control-prev):not(.carousel-control-next):not(.search-button):not(.modal-close-btn) {
    border-radius: 10px;
    font-weight: 600;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn:not(.btn-close):not(.navbar-toggler):not(.carousel-control-prev):not(.carousel-control-next):not(.search-button):not(.modal-close-btn):hover,
.btn:not(.btn-close):not(.navbar-toggler):not(.carousel-control-prev):not(.carousel-control-next):not(.search-button):not(.modal-close-btn):focus {
    transform: translateY(-1px);
}

.btn-primary,
.btn-danger,
.btn-outline-primary,
.btn-outline-danger,
.book-now-btn,
.login-button,
.header-action-link {
    border-color: var(--partyone-btn-border) !important;
}

.btn-primary,
.btn-danger,
.book-now-btn,
.login-button {
    background-color: var(--partyone-btn-bg) !important;
    color: var(--partyone-btn-text) !important;
    box-shadow: var(--partyone-btn-shadow);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-danger:hover,
.btn-danger:focus,
.book-now-btn:hover,
.book-now-btn:focus,
.login-button:hover,
.login-button:focus {
    background-color: var(--partyone-btn-hover) !important;
    border-color: var(--partyone-btn-hover) !important;
    color: var(--partyone-btn-text) !important;
}

.header-action-link {
    background-color: #fff !important;
    color: #364152 !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06) !important;
}

.header-action-link:hover,
.header-action-link:focus {
    background-color: #fff !important;
    border-color: var(--partyone-btn-hover) !important;
    color: var(--partyone-btn-hover) !important;
}

.btn-outline-primary,
.btn-outline-danger {
    background-color: #fff !important;
    color: var(--partyone-btn-bg) !important;
    box-shadow: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-danger:hover,
.btn-outline-danger:focus {
    background-color: var(--partyone-btn-bg) !important;
    border-color: var(--partyone-btn-bg) !important;
    color: var(--partyone-btn-text) !important;
}

.header-action-link .header-action-icon {
    background: linear-gradient(135deg, rgba(212, 48, 35, 0.12), rgba(31, 125, 211, 0.08)) !important;
    color: #d43023 !important;
}

.header-action-link .header-action-label,
.header-action-link .bi-caret-down,
.header-action-link .cart-count {
    color: inherit !important;
}

.header-action-link .cart-count {
    background: var(--partyone-btn-bg) !important;
    border: 1px solid var(--partyone-btn-bg);
    color: #fff !important;
}

.grecaptcha-badge {
    display: none;
}

.datepickr-calendar {
    z-index: 100000 !important;
}

.ui-timepicker-wrapper {
    z-index: 100001 !important;
}

#partyone-mobile-datepickr-host {
    display: none;
}

.home-carousel-inner-rounded {
    border-radius: 25px;
}

.landing-offer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1058;
    background: rgba(22, 16, 14, 0.36);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .28s ease;
}

.landing-offer-backdrop.is-visible {
    opacity: 1;
}

.landing-offer-backdrop.is-hiding {
    opacity: 0;
}

.landing-offer-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1060;
    width: min(520px, calc(100vw - 36px));
    padding: 1.5rem 1.5rem 1.35rem;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(145deg, rgba(249, 23, 5, 0.97), rgba(176, 12, 0, 0.96));
    box-shadow: 0 24px 56px rgba(137, 18, 10, 0.32);
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: opacity .32s ease, transform .32s ease;
}

.landing-offer-popup.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.landing-offer-popup.is-hiding {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82);
}

.landing-offer-popup::before,
.landing-offer-popup::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.landing-offer-popup::before {
    width: 120px;
    height: 120px;
    top: -45px;
    right: -24px;
}

.landing-offer-popup::after {
    width: 88px;
    height: 88px;
    bottom: -34px;
    left: -22px;
}

.landing-offer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    z-index: 2;
}

.landing-offer-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 0.32rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-offer-content {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding-right: 1.8rem;
    text-align: center;
}

.landing-offer-title {
    font-size: 2rem;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

.landing-offer-text {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.landing-offer-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.landing-offer-spark {
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #fff6a0, #ffffff);
    clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
    opacity: 0;
    animation: landing-offer-sparkle 1.7s ease-in-out infinite;
}

.landing-offer-spark:nth-child(1) { top: 16%; left: 8%; animation-delay: 0s; }
.landing-offer-spark:nth-child(2) { top: 14%; left: 28%; animation-delay: .18s; }
.landing-offer-spark:nth-child(3) { top: 18%; right: 18%; animation-delay: .34s; }
.landing-offer-spark:nth-child(4) { top: 38%; left: 12%; animation-delay: .52s; }
.landing-offer-spark:nth-child(5) { top: 34%; right: 10%; animation-delay: .68s; }
.landing-offer-spark:nth-child(6) { bottom: 24%; left: 14%; animation-delay: .84s; }
.landing-offer-spark:nth-child(7) { bottom: 18%; left: 42%; animation-delay: 1s; }
.landing-offer-spark:nth-child(8) { bottom: 20%; right: 18%; animation-delay: 1.16s; }
.landing-offer-spark:nth-child(9) { top: 50%; left: 50%; animation-delay: 1.32s; }
.landing-offer-spark:nth-child(10) { top: 24%; right: 34%; animation-delay: 1.46s; }

@keyframes landing-offer-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.55) rotate(0deg);
    }
    35% {
        opacity: 1;
        transform: scale(1.1) rotate(18deg);
    }
    70% {
        opacity: 0.35;
        transform: scale(0.8) rotate(36deg);
    }
}

.deferred-section-sm {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
}

.deferred-section-md {
    content-visibility: auto;
    contain-intrinsic-size: 1500px;
}

.deferred-section-card {
    content-visibility: auto;
    contain-intrinsic-size: 380px;
}

.deferred-section-lg {
    content-visibility: auto;
    contain-intrinsic-size: 1200px;
}

.footer-sub-banner-image {
    display: block;
}

.category-cards.landing .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-page .blog-details-content > .container {
    max-width: 860px;
}

.home-city-title-wrap {
    padding-top: 0.45rem;
    padding-bottom: 0.15rem;
}

.home-city-title-wrap .home-title {
    margin-bottom: 0;
    padding: 0.4rem 0.85rem;
    line-height: 1.2;
    width: 100%;
    display: block;
    color: #fff !important;
}

.home-categories-section {
    padding-top: 0.45rem;
    padding-bottom: 1.75rem;
}

.home-section-heading {
    margin-bottom: 0.9rem;
    padding-bottom: 0;
    line-height: 1.2;
}

.landing-categories .title {
    margin-top: -0.2rem;
}

.city-footer {
    color: #4f4f4f !important;
}

.city-footer .fw-bolder.text-primary,
.city-footer label.fw-bolder.text-primary.mb-1 {
    color: #8b1e12 !important;
}

.city-footer .nav-link {
    color: #4f4f4f;
    display: inline-block !important;
    padding: 0.35rem 0.4rem;
    line-height: 1.7;
}

.landing-banner.carousel .carousel-control-prev,
.landing-banner.carousel .carousel-control-next,
.landing-review-panel .carousel-control-prev,
.landing-review-panel .carousel-control-next {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(34, 34, 34, 0.52); 
    opacity: 0.95;
}

.google-summary-wrap {
    max-width: 1120px;
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

.google-summary-grid {
    align-items: stretch;
}

.google-summary-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 265px;
    padding: 4.3rem 1.35rem 1.65rem;
    border-radius: 999px;
    border: 1px solid rgba(217, 217, 217, 0.9);
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 42px, transparent 42px),
        linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
    box-shadow: 0 14px 32px rgba(37, 28, 21, 0.1);
    overflow: hidden;
}

.google-summary-card::before,
.google-summary-card::after {
    content: "";
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
}

.google-summary-card::before {
    top: -30px;
    right: -18px;
}

.google-summary-card::after {
    left: -22px;
    bottom: -34px;
}

.google-summary-icon-wrap {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.google-summary-icon-circle {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffb21d, #ff8c00);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 145, 0, 0.22);
    border: 5px solid #fff;
    font-size: 2rem;
}

.google-summary-icon-circle-google {
    gap: 0;
    background: linear-gradient(135deg, #f4f7fb, #ffffff);
    box-shadow: 0 10px 24px rgba(60, 88, 136, 0.16);
    font-size: 1.35rem;
    letter-spacing: -0.08em;
}

.google-summary-icon-circle-social {
    background: linear-gradient(135deg, #ff7a18, #ff0069 52%, #7638fa);
    box-shadow: 0 10px 24px rgba(143, 52, 181, 0.22);
}

.google-summary-mini-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.google-summary-social-row {
    margin-top: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.google-summary-mini-social {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 14px rgba(36, 36, 36, 0.12);
    font-size: 0.9rem;
}

.google-summary-mini-social-facebook {
    background: #1877f2;
}

.google-summary-mini-social-instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.google-summary-social-letter {
    font-weight: 800;
    line-height: 1;
}

.google-blue {
    color: #4285f4;
}

.google-red {
    color: #ea4335;
}

.google-yellow {
    color: #fbbc05;
}

.google-green {
    color: #34a853;
}

.google-summary-body {
    margin-top: 1.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-summary-kicker {
    color: #6d6258;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.google-summary-value {
    color: #1f1f1f;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.45rem;
}

.google-summary-subtitle {
    color: #2f2f2f;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.55rem;
    line-height: 1.25;
}

.google-summary-caption {
    color: #6d6258;
    font-size: 0.88rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.google-summary-rating {
    margin-top: 0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 189, 5, 0.14);
    color: #222;
    font-size: 1.15rem;
    font-weight: 800;
}

.google-summary-rating i {
    color: #ffb400;
}

.landing-banner.carousel .carousel-control-prev-icon,
.landing-banner.carousel .carousel-control-next-icon {
    background-size: 1.15rem 1.15rem;
    filter: brightness(0) invert(1);
}

.landing-review-panel .carousel-control-prev-icon,
.landing-review-panel .carousel-control-next-icon {
    background-size: 1.15rem 1.15rem;
}

.landing-review-panel {
    --google-review-bg: #f4f1ea;
    --google-review-accent: #ff9d1f;
    --google-review-accent-dark: #d87400;
    --google-review-ink: #2a2a2a;
}

.landing-review-panel .review-carousel-inner {
    padding-top: 3.3rem;
    padding-bottom: 0.75rem;
}

.landing-review-panel .carousel-inner,
.landing-review-panel .carousel-item,
.landing-review-panel .carousel-item .row {
    overflow: visible;
}

.google-review-shell {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 1.7rem auto 0;
    padding: 0 0.35rem 1rem;
}

.google-review-bubble {
    position: relative;
    height: 100%;
    min-height: 236px;
    padding: 3.3rem 1.05rem 1.15rem;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 46px, transparent 46px),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.45) 0, rgba(255, 255, 255, 0.45) 32px, transparent 32px),
        linear-gradient(180deg, #f7f4ee 0%, var(--google-review-bg) 100%);
    box-shadow: 0 14px 28px rgba(61, 45, 33, 0.12);
    overflow: visible;
}

.google-review-bubble::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 28px;
    height: 28px;
    background: var(--google-review-accent);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 0 0 8px 0;
}

.google-review-bubble::after {
    content: "";
    position: absolute;
    inset: auto 1.1rem 1.1rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 157, 31, 0.12), rgba(255, 157, 31, 0.32), rgba(255, 157, 31, 0.12));
}

.google-review-avatar-wrap {
    position: absolute;
    top: -2.15rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
}

.google-review-avatar {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    border: 5px solid #fff;
    display: block;
    object-fit: cover;
    object-position: center;
    background: #fff;
    box-shadow: 0 10px 20px rgba(47, 34, 23, 0.12);
}

.google-review-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd5b3, #ff9d1f);
    color: #8a3300;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.google-review-text {
    color: var(--google-review-ink);
    font-size: 0.88rem;
    line-height: 1.58;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.google-review-meta {
    margin-top: 0.95rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(42, 42, 42, 0.08);
    text-align: center;
}

.google-review-name {
    color: #1f1f1f;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.google-review-date {
    margin-top: 0.2rem;
    color: #6d6258;
    font-size: 0.76rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .category-cards.landing .card-img-top {
        height: 220px;
    }

    .home-city-title-wrap {
        padding-top: 0.6rem;
        padding-bottom: 0.2rem;
    }

    .home-categories-section {
        padding-top: 0.6rem;
        padding-bottom: 2rem;
    }

    .home-section-heading {
        margin-bottom: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    #partyone-mobile-datepickr-host {
        display: none;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 16px;
        z-index: 100000;
    }

    body.partyone-mobile-calendar-open #partyone-mobile-datepickr-host {
        display: block;
    }

    .partyone-mobile-calendar {
        width: 100% !important;
        max-height: min(420px, calc(100vh - 32px));
        overflow: auto;
    }

    .partyone-mobile-calendar table th {
        padding: 4px;
        font-size: 11px;
    }

    .partyone-mobile-calendar .datepickr-day {
        padding: 10px 6px;
        text-align: center;
    }

    body.partyone-mobile-calendar-open {
        overflow: hidden;
    }

    .footer-sub-banner-image {
        width: 100%;
        height: auto !important;
        max-height: none !important;
        object-fit: contain;
        object-position: center;
    }

    .home-hero-image {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
        background-color: #fff;
    }

    .landing-categories .icon {
        padding: 0.5rem !important;
    }

    .landing-offer-popup {
        width: min(420px, calc(100vw - 28px));
        padding: 1.15rem 1rem 1rem;
        border-radius: 22px;
    }

    .landing-offer-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.62rem;
    }

    .landing-offer-content {
        margin-top: 0.75rem;
        padding-right: 1.2rem;
    }

    .landing-offer-title {
        font-size: 1.4rem;
    }

    .landing-offer-text {
        font-size: 0.88rem;
    }

    .landing-offer-close {
        width: 30px;
        height: 30px;
    }

    .landing-categories a picture {
        width: 76px;
        height: 76px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        overflow: hidden;
    }

    .landing-categories a picture img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }

    .landing-categories .title {
        font-size: 12px !important;
        line-height: 1.3;
        min-height: 32px;
        margin-top: -0.25rem;
    }

    .home-city-title-wrap {
        padding-top: 0.35rem;
        padding-bottom: 0.1rem;
    }

    .home-categories-section {
        padding-top: 0.35rem;
        padding-bottom: 1.25rem;
    }

    .home-section-heading {
        margin-bottom: 0.65rem;
        font-size: 1.35rem;
    }

    .home-city-title-wrap .home-title {
        padding: 0.35rem 0.7rem;
    }

    .landing-cards .card,
    .cards .card {
        width: 160px;
        min-width: 160px;
    }

    .home-service-image {
        height: 140px !important;
        object-fit: cover;
    }

    .home-sub-banner-image {
        width: 100%;
        height: auto !important;
        object-fit: contain;
        object-position: center;
        background-color: #fff;
        display: block;
    }

    .home-sub-banner-stack,
    .home-sub-banner-stack .landing-cards,
    .home-sub-banner-stack .landing-cards > div,
    .home-sub-banner-stack a {
        width: 100%;
        max-width: 100%;
    }

    .home-sub-banner-stack .landing-cards {
        display: block !important;
        overflow: hidden;
    }

    .home-sub-banner-stack .sub-banner-item {
        padding: 0.5rem 0.75rem 0 !important;
    }

    .home-review-image {
        height: 220px !important;
        object-fit: cover;
    }

    .home-corporate-banner {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
        border-radius: 16px;
        background-color: #fff;
    }

    .landing-review-panel {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .landing-review-panel .carousel-inner {
        min-height: 0;
    }

    .landing-review-panel .review-carousel-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 2.8rem;
        padding-bottom: 0.65rem;
    }

    .landing-review-panel .review-card {
        min-height: 0 !important;
    }

    .google-review-shell {
        max-width: 286px;
        margin-top: 1.3rem;
        padding: 0 0.2rem 0.9rem;
    }

    .google-review-bubble {
        min-height: 210px;
        padding: 2.95rem 0.92rem 1rem;
        border-radius: 18px;
    }

    .google-review-bubble::before {
        bottom: -8px;
        width: 24px;
        height: 24px;
    }

    .google-review-avatar-wrap {
        top: -1.85rem;
    }

    .google-review-avatar {
        width: 68px;
        height: 68px;
        border-width: 4px;
    }

    .google-review-text {
        font-size: 0.84rem;
        line-height: 1.52;
        -webkit-line-clamp: 4;
    }

    .google-review-name {
        font-size: 0.84rem;
    }

    .google-review-date {
        font-size: 0.72rem;
    }

    .landing-review-panel .carousel-control-prev,
    .landing-review-panel .carousel-control-next {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .landing-review-panel .carousel-control-prev {
        left: -4px;
    }

    .landing-review-panel .carousel-control-next {
        right: -4px;
    }

    .landing-banner.carousel .carousel-control-prev,
    .landing-banner.carousel .carousel-control-next {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
    }

    .google-summary-wrap {
        max-width: 760px;
    }

    .google-summary-card {
        min-height: 246px;
        padding: 4rem 1rem 1.25rem;
    }

    .google-summary-icon-wrap {
        top: 0.8rem;
    }

    .google-summary-icon-circle {
        width: 76px;
        height: 76px;
        border-width: 4px;
        font-size: 1.7rem;
    }

    .google-summary-icon-circle-google {
        font-size: 1.15rem;
    }

    .google-summary-mini-social {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .google-summary-social-row {
        gap: 0.55rem;
    }

    .google-summary-body {
        margin-top: 1.6rem;
    }

    .google-summary-kicker {
        font-size: 0.8rem;
    }

    .google-summary-value {
        font-size: 1.7rem;
    }

    .google-summary-subtitle {
        font-size: 0.92rem;
    }

    .google-summary-caption {
        font-size: 0.8rem;
    }

    .google-summary-rating {
        font-size: 1rem;
        padding: 0.4rem 0.75rem;
    }

    .landing-cards .card .card-body {
        padding: 10px !important;
    }

    .landing-cards .card .card-body .card-text {
        font-size: 14px !important;
        line-height: 1.35;
        min-height: 38px;
        white-space: normal;
    }

    .landing-cards .card .card-text.row {
        margin-top: 0.5rem !important;
    }

    .landing-cards .card .card-text.row .d-flex {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 8px;
    }

    .landing-cards .card .card-text.row .white-space-nowrap {
        width: 100%;
    }

    .landing-cards .card .card-text.row .book-now-btn {
        margin-left: 0 !important;
        width: 100%;
        padding: 0.45rem 0.5rem !important;
        font-size: 13px;
        line-height: 1.2;
    }

    .landing-cards .card .card-text.row strike {
        display: block;
        margin-top: 2px;
    }
}
