/* Extracted from ground-detail.php */
.cg-page {
    background: #f4f6fb;
}

.cg-container {
    max-width: var(--cg-shell-max);
    margin: 0 auto;
    padding: 0 16px;
}

.cg-section {
    padding: 40px 0;
}

.cg-section-odd,
.cg-section-even {
    background: #f4f6fb;
}

.cg-section-hero {
    background: #ffffff;
    padding: 32px 0 36px;
}

.cg-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    grid-template-areas: "left right";
    gap: 24px;
    max-width: var(--cg-shell-max);
    margin: 0 auto;
    padding: 0 16px;
    align-items: start;
}

.cg-page-left {
    min-width: 0;
    grid-area: left;
}

.cg-page-right {
    position: sticky;
    top: 100px;
    grid-area: right;
}

.cg-page-left .cg-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.cg-ads-sticky {
    position: sticky;
    top: 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
    border: 1px solid #e5e7eb;
}

.cg-ads-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 10px;
}

.cg-ads-slot {
    min-height: 280px;
    border: 1px dashed #cbd5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.cg-sidebox {
    position: sticky;
    top: 16px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border: 1px solid #c7d2fe;
    outline: 2px solid #eef2ff;
    overflow: hidden;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.cg-sidebox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #2f2f2f;
    color: #ffffff;
}

.cg-sidebox-head-text {
    display: grid;
    gap: 4px;
}

.cg-sidebox-title {
    font-size: 18px;
    font-weight: 700;
}

.cg-sidebox-subtitle {
    padding: 0;
    font-size: 14px;
    color: #e5e7eb;
    background: transparent;
    border-bottom: none;
    line-height: 1.5;
}

.cg-sidebox-toggle {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

.cg-sidebox-menu {
    border-bottom: 1px solid #e5e7eb;
    display: none;
}

.cg-sidebox-menu.cg-open {
    display: block;
}

.cg-sidebox-scroll {
    overflow-y: auto;
    overscroll-behavior: contain;
    max-height: calc(100vh - 168px);
}

.cg-sidebox-scroll::-webkit-scrollbar {
    width: 8px;
}

.cg-sidebox-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.cg-sidebox-scroll::-webkit-scrollbar-thumb {
    background: #cbd5f5;
    border-radius: 999px;
}

.cg-sidebox-scroll::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.cg-sidebox-body {
    padding: 16px 12px 18px;
    display: grid;
    gap: 16px;
    background: #f8fafc;
}

.cg-sidebox-hello {
    display: grid;
    gap: 6px;
}

.cg-hello-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
}

.cg-hello-sub {
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

.cg-sidebox-cats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cg-cat-card {
    display: grid;
    gap: 6px;
    text-decoration: none;
    color: #0f172a;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    background: #ffffff;
    border-radius: 16px;
    padding: 8px;
    border: 1px solid #e5e7eb;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cg-cat-card img {
    width: 100%;
    height: 88px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.cg-cat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}

.cg-chip-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
}

.cg-chip {
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #111827;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.cg-section-acc {
    border-top: 1px solid #eef2f7;
    padding-top: 10px;
}

.cg-section-acc-btn {
    width: 100%;
    text-align: left;
    padding: 10px 8px 8px 8px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.cg-section-acc-btn:hover {
    color: #1d4ed8;
    background: #eef2ff;
}

.cg-section-kicker {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 4px 0 6px;
    font-weight: 600;
}

.cg-section-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.cg-section-panel.cg-open {
    margin-top: 8px;
}

.cg-acc {
    border-bottom: 1px solid #eef2f7;
}

.cg-acc-btn {
    width: 100%;
    text-align: left;
    padding: 12px 16px !important;
    border: 1px solid transparent;
    background: #ffffff;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cg-acc-icon {
    font-size: 14px;
    color: #6b7280;
    transition: transform 0.2s ease;
}

.cg-acc-btn[aria-expanded="true"] .cg-acc-icon {
    transform: rotate(180deg);
}

.cg-acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: #ffffff;
}

.cg-acc-panel a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #374151;
    text-decoration: none;
    border-top: 1px solid #f1f5f9;
}

.cg-acc-panel a:hover {
    background: #f8fafc;
}

.cg-acc-btn:hover {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.cg-acc-btn:focus-visible {
    outline: none;
    border-color: #93c5fd;
    box-shadow: 0 0 0 2px #93c5fd55;
}

.cg-acc-btn[aria-expanded="true"] {
    background: #eef2ff;
    border-color: #c7d2fe;
    color: #1d4ed8;
    box-shadow: inset 0 0 0 1px #c7d2fe;
}

.cg-acc-btn[aria-expanded="true"] .cg-acc-icon {
    color: #1d4ed8;
}

.cg-sidebox-slider {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
    padding: 14px 0 10px;
}

.cg-cat-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 14px;
    padding: 10px 0 8px;
    margin: 0;
}

.cg-slider-track {
    display: flex;
    transition: transform 0.35s ease;
    width: 100%;
}

.cg-slide {
    min-width: 100%;
    padding: 0 14px;
    box-sizing: border-box;
}

.cg-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.cg-cat-slider .cg-slide img {
    height: 150px;
}

.cg-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0f172a;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
    padding: 0 24px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.cg-slider-btn:hover {
    background: #f8fafc;
}

.cg-prev {
    left: 8px;
}

.cg-next {
    right: 8px;
}

.cg-slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.cg-slider-dots button {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    border: none;
    background: #cbd5f5;
    cursor: pointer;
    padding: 0;
}

.cg-slider-dots button.cg-active {
    background: #6366f1;
}

.cg-section-highlight {
    background: #fff7ed;
}

.cg-claim-full .cg-container {
    max-width: var(--cg-shell-max);
    margin: 0 auto;
    padding: 0 16px;
}

.cg-claim-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid #fed7aa;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    box-shadow: 0 10px 20px rgba(251, 146, 60, .15);
}

.cg-claim-card h2 {
    margin: 0 0 6px;
    font-size: 26px;
    color: #7c2d12;
}

.cg-claim-card p {
    margin: 0;
    font-size: 16px;
    color: #7c2d12;
}

.cg-claim-btn {
    flex: 0 0 auto;
    text-decoration: none;
    background: #ea580c;
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 16px rgba(234, 88, 12, .28);
    transition: .2s;
}

.cg-claim-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(234, 88, 12, .36);
}

.cg-section-title {
    font-size: 24px;
    margin: 0 0 8px;
    color: #0f172a;
}

.cg-section-title-small {
    font-size: 20px;
    margin: 0 0 6px;
    color: #0f172a;
}

.cg-section-sub {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 14px;
}

/* ===== HERO - FIXED FOR MOBILE ===== */
.cg-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: center;
}

.cg-hero-left {
    padding-right: 10px;
    min-width: 0;
    overflow: hidden;
}

.cg-hero-kicker {
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    margin: 0 0 6px;
}

.cg-hero-heading {
    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 14px;
    color: #0f172a;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cg-hero-sub {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 520px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cg-hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.cg-hero-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #2563eb;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.cg-hero-rating-pill i {
    font-size: 13px;
}

.cg-hero-rating-max {
    opacity: .85;
    font-weight: 500;
}

.cg-hero-reviews-text {
    font-size: 13px;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.cg-hero-reviews-text i {
    color: #f59e0b;
}

.cg-hero-address {
    display: flex;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    margin: 4px 0 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cg-hero-address i {
    margin-top: 2px;
    color: #ef4444;
    flex-shrink: 0;
}

.cg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.cg-btn-primary,
.cg-btn-outline,
.cg-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
}

.cg-btn-primary {
    border: none;
    background: #6366f1;
    color: #fff;
    box-shadow: 0 10px 22px rgba(99, 102, 241, .35);
}

.cg-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(99, 102, 241, .45);
}

.cg-btn-outline {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
}

.cg-btn-outline:hover {
    background: #f3f4ff;
}

.cg-btn-ghost {
    border: none;
    background: transparent;
    color: #111827;
}

.cg-btn-ghost:hover {
    background: #f3f4ff;
}

.cg-hero-wa a {
    font-size: 13px;
    color: #16a34a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.cg-hero-thumbs-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.cg-hero-thumb-wrap {
    flex: 0 0 110px;
    border-radius: 14px;
    overflow: hidden;
}

.cg-hero-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform .25s ease, filter .25s ease;
}

.cg-hero-thumb-wrap:hover .cg-hero-thumb {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.cg-hero-right {
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.cg-hero-image-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, .35);
    background: #000;
    max-height: 400px;
    min-height: 400px;
    width: 100%;
}

.cg-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cg-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
    font-size: 15px;
    line-height: 1.6;
    color: #1e293b;
}

.cg-card p {
    margin-bottom: 10px;
}

/* Gallery grid */
.cg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.cg-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.cg-gallery-thumb {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, filter .25s ease;
}

.cg-gallery-item:hover .cg-gallery-thumb {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Modal */
.cg-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, .9);
    align-items: center;
    justify-content: center;
}

.cg-modal-content-wrap {
    position: relative;
    width: 92%;
    max-width: 960px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cg-modal-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

.cg-modal-close {
    position: absolute;
    top: 18px;
    right: 26px;
    font-size: 30px;
    font-weight: 700;
    color: #e5e7eb;
    cursor: pointer;
    z-index: 1;
}

.cg-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, .8);
    color: #e5e7eb;
    padding: 10px 12px;
    font-size: 20px;
    cursor: pointer;
    transition: .2s;
}

.cg-modal-prev {
    left: -14px;
}

.cg-modal-next {
    right: -14px;
}

.cg-modal-nav:hover {
    background: rgba(15, 23, 42, .95);
}

/* Location */
.cg-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    align-items: stretch;
}

.cg-location-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cg-location-address {
    margin: 4px 0 10px;
    color: #475569;
    font-size: 14px;
}

.cg-location-line {
    margin: 4px 0;
    font-size: 14px;
    color: #475569;
}

.cg-location-line a {
    color: #2563eb;
    text-decoration: none;
}

.cg-location-line a:hover {
    text-decoration: underline;
}

.cg-location-icon {
    margin-right: 6px;
    color: #2563eb;
}

.cg-map-card {
    padding: 0;
    min-height: 320px;
    overflow: hidden;
}

/* Flash & forms */
.cg-flash {
    margin: 12px 0;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
    font-size: 13px;
}

.cg-flash.cg-is-sending {
    display: block;
    background: #fff8e1;
    color: #7a5e00;
    border: 1px solid #ffe082;
}

.cg-flash.cg-is-ok {
    display: block;
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}

.cg-flash.cg-is-err {
    display: block;
    background: #ffebee;
    color: #b71c1c;
    border: 1px solid #ef9a9a;
}

.cg-booking-modal-open {
    overflow: hidden;
}

.cg-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10030;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cg-booking-modal--open {
    display: flex;
}

.cg-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(34, 197, 94, 0.2), transparent 34%),
        rgba(2, 6, 23, 0.76);
    backdrop-filter: blur(8px);
}

.cg-booking-modal__dialog {
    position: relative;
    width: min(100%, 560px);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: 0 28px 70px rgba(2, 6, 23, 0.28);
    z-index: 1;
}

.cg-booking-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.cg-booking-modal__close:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.28);
}

.cg-booking-modal__hero {
    position: relative;
    padding: 36px 34px 28px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.04)),
        linear-gradient(135deg, #16a34a 0%, #15803d 44%, #0f766e 100%);
}

.cg-booking-modal__hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 10px;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 14px, rgba(255, 255, 255, 0.04) 14px 28px);
}

.cg-booking-modal__pitch {
    position: relative;
    width: 132px;
    height: 84px;
    margin-bottom: 20px;
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 16%, rgba(255, 255, 255, 0.2) 16% 20%, rgba(255, 255, 255, 0.09) 20% 80%, rgba(255, 255, 255, 0.2) 80% 84%, rgba(255, 255, 255, 0.09) 84% 100%),
        linear-gradient(180deg, rgba(240, 253, 244, 0.25), rgba(22, 163, 74, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cg-booking-modal__pitch-line {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.72);
}

.cg-booking-modal__stumps {
    position: absolute;
    top: 24px;
    width: 18px;
    height: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.72);
    border-bottom: 2px solid rgba(255, 255, 255, 0.72);
}

.cg-booking-modal__stumps::before,
.cg-booking-modal__stumps::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.72);
}

.cg-booking-modal__stumps::before {
    left: 2px;
    box-shadow: 6px 0 0 rgba(255, 255, 255, 0.72), 12px 0 0 rgba(255, 255, 255, 0.72);
}

.cg-booking-modal__stumps--left {
    left: 14px;
}

.cg-booking-modal__stumps--right {
    right: 14px;
}

.cg-booking-modal__ball {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: radial-gradient(circle at 35% 30%, #fca5a5 0%, #ef4444 38%, #b91c1c 100%);
    box-shadow: 0 12px 22px rgba(127, 29, 29, 0.28);
}

.cg-booking-modal__ball::before,
.cg-booking-modal__ball::after {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
}

.cg-booking-modal__ball::before {
    left: 11px;
}

.cg-booking-modal__ball::after {
    left: 15px;
}

.cg-booking-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cg-booking-modal__hero h3 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.12;
    color: #ffffff;
}

.cg-booking-modal__hero p {
    margin: 0;
    max-width: 420px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.cg-booking-modal__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 28px 34px 18px;
}

.cg-booking-modal__meta {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cg-booking-modal__meta-label {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.cg-booking-modal__meta strong {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    color: #0f172a;
    word-break: break-word;
}

.cg-booking-modal__actions {
    display: flex;
    gap: 12px;
    padding: 0 34px 34px;
}

.cg-booking-modal__btn {
    appearance: none;
    border: none;
    border-radius: 16px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cg-booking-modal__btn:hover {
    transform: translateY(-1px);
}

.cg-booking-modal__btn--primary {
    flex: 1;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 14px 24px rgba(37, 99, 235, 0.24);
}

.cg-booking-modal__btn--secondary {
    flex: 1;
    color: #0f172a;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.cg-form-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
}

.cg-review-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cg-review-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
}

.cg-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 6px;
}

.cg-review-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #f97316;
    white-space: nowrap;
}

.cg-review-address {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.cg-review-text {
    font-size: 14px;
    color: #1f2937;
    margin: 0 0 6px;
    line-height: 1.65;
}

.cg-review-date {
    font-size: 12px;
    color: #94a3b8;
}

.cg-rating-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #0f172a;
}

.cg-rating-wrapper {
    display: flex;
    gap: 4px;
    direction: ltr;
}

.cg-rating-wrapper input {
    display: none !important;
}

.cg-rating-wrapper label {
    font-size: 26px;
    color: #d1d5db;
    cursor: pointer;
    transition: color .15s ease-in-out;
    user-select: none;
}

.cg-form-group {
    margin-top: 10px;
}

.cg-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0f172a;
}

.cg-form-group input,
.cg-form-group textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 14px;
    transition: .2s;
    box-sizing: border-box;
}

.cg-form-group input:focus,
.cg-form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb20;
}

.cg-submit-btn {
    margin-top: 14px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 20px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(34, 197, 94, .35);
    transition: .2s;
}

.cg-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(34, 197, 94, .45);
}

/* Nearby */
.cg-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.cg-nearby-link {
    text-decoration: none;
    color: inherit;
}

.cg-nearby-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cg-nearby-img {
    position: relative;
    width: 100%;
    padding-top: 56.5%;
    background-size: cover;
    background-position: center;
}

.cg-nearby-distance {
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 11px;
    background: rgba(255, 255, 255, .92);
    color: #0b5cab;
    border-radius: 999px;
    padding: 3px 8px;
    border: 1px solid #cfe2ff;
}

.cg-nearby-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cg-nearby-title-row {
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: center;
}

.cg-nearby-title-row h3 {
    font-size: 15px;
    margin: 0;
    line-height: 1.35;
    color: #0f172a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cg-nearby-rating {
    font-size: 12px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f97316;
}

.cg-nearby-rating i {
    font-size: 11px;
}

.cg-nearby-address {
    font-size: 12.5px;
    color: #555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cg-section-empty {
    color: #64748b;
    font-size: 14px;
}

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1000px) {
    .cg-hero-layout {
        grid-template-columns: 1fr;
    }

    .cg-page-layout {
        grid-template-columns: 1fr;
        grid-template-areas: "right" "left";
    }

    .cg-ads-sticky {
        position: static;
        margin-top: 12px;
    }

    .cg-page-right {
        position: static;
    }

    .cg-location-grid {
        grid-template-columns: 1fr;
    }

    .cg-map-card {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .cg-container {
        padding: 0 12px;
    }

    .cg-section {
        padding: 28px 0;
    }

    .cg-section-hero {
        padding: 20px 0 24px;
    }

    .cg-hero-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cg-hero-left {
        padding-right: 0;
    }

    .cg-hero-heading {
        font-size: 26px;
        line-height: 1.2;
        margin: 0 0 12px;
    }

    .cg-hero-kicker {
        font-size: 12px;
        margin: 0 0 4px;
    }

    .cg-hero-sub {
        font-size: 14px;
        margin: 0 0 14px;
        line-height: 1.6;
    }

    .cg-hero-address {
        font-size: 13px;
        margin: 2px 0 14px;
    }

    .cg-hero-actions {
        gap: 8px;
        margin-bottom: 8px;
    }

    .cg-btn-primary,
    .cg-btn-outline,
    .cg-btn-ghost {
        padding: 8px 12px;
        font-size: 12px;
        flex: 1 1 auto;
    }

    .cg-hero-image-card {
        max-height: 280px;
    }

    .cg-hero-thumbs-row {
        margin-top: 6px;
    }

    .cg-hero-thumb-wrap {
        flex: 0 0 90px;
    }

    .cg-hero-thumb {
        height: 70px;
    }

    .cg-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .cg-gallery-thumb {
        height: 120px;
    }

    .cg-section-title {
        font-size: 20px;
        margin: 0 0 6px;
    }

    .cg-location-grid {
        gap: 16px;
    }

    .cg-claim-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cg-claim-btn {
        width: 100%;
        text-align: center;
    }

    .cg-map-card {
        min-height: 240px;
    }

    .cg-nearby-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .cg-container {
        padding: 0 10px;
    }

    .cg-section {
        padding: 20px 0;
    }

    .cg-section-hero {
        padding: 16px 0 20px;
    }

    .cg-hero-heading {
        font-size: 22px;
        line-height: 1.25;
        margin: 0 0 10px;
    }

    .cg-hero-kicker {
        font-size: 11px;
    }

    .cg-hero-sub {
        font-size: 13px;
        margin: 0 0 12px;
    }

    .cg-hero-meta-row {
        gap: 8px;
        margin-bottom: 8px;
    }

    .cg-hero-rating-pill {
        padding: 4px 8px;
        font-size: 12px;
    }

    .cg-hero-reviews-text {
        font-size: 12px;
    }

    .cg-hero-address {
        font-size: 12px;
        gap: 6px;
        margin: 2px 0 12px;
    }

    .cg-hero-actions {
        flex-direction: column;
        gap: 6px;
    }

    .cg-btn-primary,
    .cg-btn-outline,
    .cg-btn-ghost {
        width: 100%;
        padding: 10px 12px;
        font-size: 13px;
        justify-content: center;
    }

    .cg-hero-wa {
        margin-bottom: 6px;
    }

    .cg-hero-wa a {
        font-size: 12px;
    }

    .cg-hero-thumbs-row {
        gap: 8px;
        margin-top: 4px;
    }

    .cg-hero-thumb-wrap {
        flex: 0 0 80px;
    }

    .cg-hero-thumb {
        height: 60px;
    }

    .cg-hero-image-card {
        max-height: 240px;
    }

    .cg-section-title {
        font-size: 18px;
    }

    .cg-section-sub {
        font-size: 12px;
    }

    .cg-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 8px;
    }

    .cg-gallery-thumb {
        height: 100px;
    }

    .cg-modal-nav {
        display: none;
    }

    .cg-location-grid {
        gap: 12px;
    }

    .cg-map-card {
        min-height: 200px;
    }

    .cg-nearby-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cg-card {
        padding: 16px;
    }

    .cg-form-card {
        padding: 16px;
    }
}
