/* Extracted from grounds.php */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--cg-font-sans);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    color: #333;
    letter-spacing: 0.3px;
}

.grounds-main-wrapper {
    padding: 40px 20px;
    max-width: var(--cg-shell-max);
    margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

.grounds-breadcrumbs-section {
    margin-bottom: 40px;
}

.grounds-breadcrumbs {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.grounds-breadcrumbs li {
    display: flex;
    align-items: center;
}

.grounds-breadcrumbs li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
    margin-left: 10px;
}

.grounds-breadcrumbs a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.grounds-breadcrumbs a:hover {
    color: #0052a3;
    text-decoration: underline;
}

.grounds-search-section {
    margin-bottom: 20px;
}

.grounds-search-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
}

.grounds-search-input {
    width: 100% !important;
    padding: 16px 20px !important;
    padding-left: 45px !important;
    padding-right: 45px !important;
    font-size: 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    background: white !important;
}

.grounds-search-input:focus {
    border-color: #0066cc;
    box-shadow: 0 8px 35px rgba(0, 102, 204, 0.2);
    transform: translateY(-2px);
}

.grounds-search-input::placeholder {
    color: #999;
}

.grounds-search-icon-left {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #0066cc;
    pointer-events: none;
    font-size: 18px;
}

.grounds-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.grounds-header-title {
    display: flex;
    gap: 16px;
}

.grounds-header-title h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
}

.grounds-header-title i {
    color: #0066cc;
    font-size: 36px;
}

.grounds-view-toggle {
    display: flex;
    gap: 8px;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.grounds-view-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.grounds-view-btn:hover {
    background: #f0f0f0;
}

.grounds-view-btn.active {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.grounds-content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.grounds-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.grounds-filter-card {
    position: relative;
    isolation: isolate;
    overflow: visible;
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 102, 204, 0.09), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10), 0 2px 8px rgba(15, 23, 42, 0.04);
}

.grounds-filter-card::before {
    content: '';
    position: absolute;
    inset: 0 22px auto;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #0066cc, #38bdf8);
    opacity: 0.9;
}

.grounds-filter-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.grounds-filter-heading-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 18px;
    background: linear-gradient(135deg, #0878e4 0%, #0057b7 100%);
    box-shadow: 0 9px 20px rgba(0, 102, 204, 0.24);
    flex: 0 0 auto;
}

.grounds-filter-kicker {
    display: block;
    margin-bottom: 2px;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.2;
    text-transform: uppercase;
}

.grounds-filter-card h2 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.grounds-filter-group {
    position: relative;
    margin-bottom: 18px;
}

.grounds-filter-group:last-child {
    margin-bottom: 0;
}

.grounds-filter-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-transform: uppercase;
}

.grounds-filter-group label i {
    color: #0878e4;
    font-size: 12px;
}

.grounds-filter-native {
    width: 100%;
    min-height: 50px;
    padding: 12px 40px 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    color: #0f172a;
    font-size: 14px;
    background-color: white;
    cursor: pointer;
    font-weight: 600;
}

.premium-select {
    position: relative;
    width: 100%;
}

.premium-select.is-enhanced>.grounds-filter-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.premium-select-trigger {
    width: 100%;
    min-height: 52px;
    padding: 0 13px;
    border: 1px solid #dbe3ee;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.04);
    cursor: pointer;
    text-align: left;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.premium-select-trigger:hover {
    border-color: #9dc9f5;
    background: #ffffff;
    box-shadow: 0 7px 18px rgba(0, 102, 204, 0.09);
    transform: translateY(-1px);
}

.premium-select-trigger:focus-visible,
.premium-select.is-open .premium-select-trigger {
    outline: none;
    border-color: #0878e4;
    box-shadow: 0 0 0 4px rgba(8, 120, 228, 0.13), 0 8px 20px rgba(0, 102, 204, 0.10);
}

.premium-select-leading {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #0878e4;
    background: #eef7ff;
    flex: 0 0 auto;
}

.premium-select-value {
    min-width: 0;
    overflow: hidden;
    color: #172033;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.premium-select-chevron {
    color: #64748b;
    font-size: 12px;
    transition: transform 180ms ease, color 180ms ease;
}

.premium-select.is-open .premium-select-chevron {
    color: #0878e4;
    transform: rotate(180deg);
}

.premium-select-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% + 9px);
    left: 0;
    width: min(360px, calc(100vw - 32px));
    min-width: 100%;
    padding: 10px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.19), 0 8px 20px rgba(15, 23, 42, 0.08);
    transform-origin: top left;
    animation: premiumSelectIn 150ms ease-out;
}

.premium-select.opens-upward .premium-select-menu {
    top: auto;
    bottom: calc(100% + 9px);
    transform-origin: bottom left;
    animation-name: premiumSelectInUp;
}

.premium-select-menu[hidden] {
    display: none;
}

@keyframes premiumSelectIn {
    from {
        opacity: 0;
        transform: translateY(-5px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes premiumSelectInUp {
    from {
        opacity: 0;
        transform: translateY(5px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.premium-select-search-wrap {
    position: relative;
    margin-bottom: 8px;
}

.premium-select-search-wrap>i {
    position: absolute;
    top: 50%;
    left: 13px;
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
    transform: translateY(-50%);
}

.premium-select-search {
    width: 100%;
    height: 42px;
    padding: 0 12px 0 37px;
    border: 1px solid #dbe3ee;
    border-radius: 12px;
    outline: none;
    color: #0f172a;
    background: #f8fafc;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.premium-select-search:focus {
    border-color: #4aa3ee;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 120, 228, 0.11);
}

.premium-select-search::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.premium-select-options {
    max-height: 258px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: #b8c6d8 transparent;
    scrollbar-width: thin;
}

.premium-select-option {
    width: 100%;
    min-height: 44px;
    padding: 9px 10px;
    border: 0;
    border-radius: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.35;
    text-align: left;
    transition: color 140ms ease, background-color 140ms ease;
}

.premium-select-option:hover,
.premium-select-option.is-active {
    color: #075da9;
    background: #eef7ff;
}

.premium-select-option.is-selected {
    color: #005ebc;
    background: linear-gradient(90deg, #e5f3ff 0%, #f4f9ff 100%);
    font-weight: 800;
}

.premium-select-option-label {
    min-width: 0;
    flex: 1;
}

.premium-select-option-count {
    padding: 3px 7px;
    border: 1px solid #d9e7f6;
    border-radius: 999px;
    color: #64748b;
    background: #ffffff;
    font-size: 10px;
    font-weight: 800;
    flex: 0 0 auto;
}

.premium-select-option-check {
    width: 16px;
    color: #0878e4;
    font-size: 11px;
    text-align: center;
    opacity: 0;
    flex: 0 0 auto;
}

.premium-select-option.is-selected .premium-select-option-check {
    opacity: 1;
}

.premium-select-empty {
    padding: 22px 12px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.premium-select-empty i {
    display: block;
    margin-bottom: 7px;
    color: #94a3b8;
    font-size: 18px;
}

.grounds-filter-btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
    background: linear-gradient(135deg, #0878e4 0%, #0057b7 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(0, 102, 204, 0.24);
}

.grounds-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 102, 204, 0.32);
    filter: saturate(1.08);
}

.grounds-filter-btn:active {
    transform: translateY(0);
}

.grounds-filter-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(8, 120, 228, 0.16), 0 12px 28px rgba(0, 102, 204, 0.28);
}

@media (prefers-reduced-motion: reduce) {

    .premium-select-trigger,
    .premium-select-chevron,
    .premium-select-option,
    .grounds-filter-btn {
        transition: none;
    }

    .premium-select-menu {
        animation: none;
    }
}

.grounds-section {
    flex: 1;
}

.grounds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.grounds-grid.list-view {
    grid-template-columns: 1fr;
}

.grounds-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid transparent;
}

.grounds-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.grounds-grid.list-view .grounds-card {
    flex-direction: row;
    height: auto;
}

.grounds-grid.list-view .grounds-card-image {
    width: 300px;
    height: 220px;
    flex-shrink: 0;
}

.grounds-grid.list-view .grounds-card-content {
    flex: 1;
    padding: 24px;
}

.grounds-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.grounds-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.grounds-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
    word-break: break-word;
}

.grounds-card-category {
    font-size: 12px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.grounds-card-category i {
    font-size: 10px;
}

.grounds-card-address {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    gap: 8px;
}

.grounds-card-address i {
    color: #0066cc;
    flex-shrink: 0;
    margin-top: 2px;
}

.grounds-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.grounds-review-count {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.grounds-review-icon {
    color: #ffc107;
    font-size: 14px;
}

.grounds-rating-badge {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

.grounds-star-icon {
    font-size: 13px;
}

.grounds-empty-state {
    text-align: center;
    padding: 80px 40px;
    color: #666;
    grid-column: 1 / -1;
}

.grounds-empty-state i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.grounds-empty-state p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.grounds-load-more-section {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.grounds-load-more-btn {
    padding: 14px 48px;
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
}

.grounds-load-more-btn:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
}

.grounds-load-more-btn:active {
    transform: translateY(0);
}

.grounds-load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Sentinel for IntersectionObserver */
#scroll-sentinel {
    width: 100%;
    height: 1px;
    margin-top: 10px;
}

/* Search suggestions dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    display: none;
    max-height: 420px;
    overflow-y: auto;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f3f4f6;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover,
.search-suggestion-item.highlighted {
    background: #f0f7ff;
}

.search-suggestion-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.search-suggestion-info {
    flex: 1;
    min-width: 0;
}

.search-suggestion-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-suggestion-meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

.search-suggestion-meta span {
    display: inline-block;
}

.search-suggestion-meta .sep {
    margin: 0 6px;
    color: #d1d5db;
}

.search-suggestion-tag {
    font-size: 10px;
    font-weight: 600;
    color: #0066cc;
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.search-no-suggestions {
    padding: 20px 16px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .grounds-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .grounds-content-wrapper {
        grid-template-columns: 1fr;
    }

    .grounds-sidebar {
        position: static;
    }

    #filterForm {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(170px, 0.6fr);
        gap: 16px;
        align-items: end;
    }

    #filterForm .grounds-filter-group,
    #filterForm .grounds-filter-btn {
        margin: 0;
    }

    #filterForm .premium-select-menu {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .grounds-content-wrapper {
        grid-template-columns: 1fr;
    }

    .grounds-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    #filterForm {
        display: block;
    }

    #filterForm .grounds-filter-group {
        margin-bottom: 16px;
    }

    #filterForm .grounds-filter-btn {
        margin-top: 4px;
    }

    .premium-select-options {
        max-height: min(250px, 42vh);
    }

    .grounds-breadcrumbs-section {
        display: none;
    }

    .grounds-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
        margin-bottom: 30px;
    }

    .grounds-grid.list-view {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .grounds-grid.list-view .grounds-card {
        flex-direction: column;
        height: 100%;
    }

    .grounds-grid.list-view .grounds-card-image {
        width: 100%;
        height: 160px;
    }

    .grounds-grid.list-view .grounds-card-content {
        padding: 16px;
        flex: 1;
    }

    .grounds-card-image {
        height: 160px;
    }

    .grounds-card-content {
        padding: 14px;
    }

    .grounds-card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .grounds-card-category {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .grounds-card-address {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .grounds-card-stats {
        padding-top: 10px;
        gap: 8px;
    }

    .grounds-review-count {
        font-size: 12px;
        gap: 4px;
    }

    .grounds-review-icon {
        font-size: 12px;
    }

    .grounds-rating-badge {
        padding: 5px 10px;
        font-size: 12px;
        gap: 3px;
    }

    .grounds-star-icon {
        font-size: 11px;
    }

    .grounds-search-container {
        max-width: 100%;
    }

    .grounds-header-section {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .grounds-header-title h1 {
        font-size: 24px;
    }

    .grounds-view-toggle {
        width: 100%;
        justify-content: space-around;
    }

    .grounds-view-btn {
        flex: 1;
        justify-content: center;
        font-size: 14px;
        padding: 9px 12px;
    }

    .grounds-filter-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .grounds-main-wrapper {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .grounds-main-wrapper {
        padding: 16px 12px;
    }

    .grounds-filter-card {
        padding: 16px;
        margin-bottom: 20px;
        border-radius: 18px;
    }

    .grounds-filter-heading {
        margin-bottom: 20px;
    }

    .grounds-filter-heading-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .grounds-filter-card h2 {
        font-size: 18px;
    }

    .premium-select-trigger {
        min-height: 50px;
    }

    .premium-select-menu {
        max-width: calc(100vw - 32px);
    }

    .grounds-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 24px;
    }

    .grounds-search-input {
        font-size: 16px;
        padding: 14px 16px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .grounds-search-icon-left {
        left: 14px;
        font-size: 16px;
    }

    .grounds-header-title h1 {
        font-size: 20px;
    }

    .grounds-header-title i {
        font-size: 28px;
    }

    .grounds-view-toggle {
        width: 100%;
        padding: 6px;
        gap: 6px;
    }

    .grounds-view-btn {
        flex: 1;
        justify-content: center;
        font-size: 13px;
        padding: 8px 10px;
        gap: 4px;
    }

    .grounds-view-btn i {
        font-size: 14px;
    }

    .grounds-card-image {
        height: 140px;
    }

    .grounds-card-content {
        padding: 12px;
    }

    .grounds-card-title {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .grounds-card-category {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .grounds-card-address {
        font-size: 11px;
        margin-bottom: 10px;
        gap: 6px;
    }

    .grounds-card-address i {
        margin-top: 1px;
        font-size: 10px;
    }

    .grounds-card-stats {
        padding-top: 8px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .grounds-review-count {
        font-size: 11px;
        gap: 4px;
        order: 1;
    }

    .grounds-review-icon {
        font-size: 11px;
    }

    .grounds-rating-badge {
        padding: 4px 9px;
        font-size: 11px;
        gap: 3px;
        order: 2;
    }

    .grounds-star-icon {
        font-size: 10px;
    }

    .grounds-filter-group label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .premium-select-value {
        font-size: 13px;
    }

    .grounds-filter-btn {
        font-size: 14px;
        padding: 11px 20px;
        gap: 6px;
    }

    .grounds-load-more-btn {
        font-size: 14px;
        padding: 12px 32px;
        gap: 8px;
    }

    .grounds-load-more-section {
        margin-top: 24px;
    }

    .grounds-empty-state {
        padding: 60px 20px;
    }

    .grounds-empty-state i {
        font-size: 48px;
        margin-bottom: 16px;
    }

    .grounds-empty-state p {
        font-size: 14px;
    }
}

@keyframes grounds-fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grounds-card {
    animation: grounds-fadeIn 0.3s ease-out;
}
