
        .text-center {
            text-align: center;
        }
        
        /* Flexbox Utilities */
        .flex {
            display: flex;
        }
        
        .flex-wrap {
            flex-wrap: wrap;
        }
        
        .justify-center {
            justify-content: center;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .items-center {
            align-items: center;
        }
        
        .items-start {
            align-items: flex-start;
        }
        
        /* Spacing */
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-12 { margin-bottom: 3rem; }
        .mb-16 { margin-bottom: 4rem; }
        
        .mt-1 { margin-top: 0.25rem; }
        .mt-4 { margin-top: 1rem; }
        .mt-12 { margin-top: 3rem; }
        
        .mr-1 { margin-right: 0.25rem; }
        .mr-2 { margin-right: 0.5rem; }
        
        .ml-1 { 
            margin-left: 0.25rem;
            padding-top: 1px;
        
        }
        .ml-2 { margin-left: 0.5rem; }
        
        .gap-3 { gap: 0.75rem; }

        .gap-8 { gap: 25px; }
        
        .pt-4 { padding-top: 1rem; }
        .mt-4 { margin-top: 1rem; }
        
        /* Grid */
        .camping-grid-wrap {
            display: grid;
        }

        .camping-grid-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        @media (min-width: 668px) {

            .camping-grid-wrap {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1100px) {
            .camping-grid-wrap {
                grid-template-columns: 1fr 1fr 1fr;
            }
        }
        
        /* Responsive Grid */
        @media (min-width: 768px) {
            .grid-cols-2 {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .grid-cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Text Styles */
        .text-sm {
            font-size: 0.875rem;
        }
        
        .text-xl {
            font-size: 1.25rem;
        }
        
        .text-3xl {
            font-size: 1.875rem;
        }
        
        .text-5xl {
            font-size: 3rem;
        }
        
        .font-bold {
            font-weight: 700;
        }
        
        .font-semibold {
            font-weight: 600;
        }
        
        .leading-tight {
            line-height: 1.25;
        }
        
        .leading-relaxed {
            line-height: 1.625;
        }
        
        .text-gray-600 {
            color: #6b7280;
        }
        
        .text-gray-700 {
            color: #374151;
        }
        
        .text-gray-900 {
            color: #111827;
        }
        
        .text-gray-500 {
            color: #6b7280;
        }
        
        .text-gray-400 {
            color: #9ca3af;
        }
        
        .text-yellow-400 {
            color: #fbbf24;
        }
        
        .text-white {
            color: white;
        }
        
        .max-w-3xl {
            max-width: 48rem;
        }
        
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }
        
        .inline-block {
            display: inline-block;
        }
        
        /* Background Colors */
        .bg-gray-50 {
            background-color: #f9fafb;
        }
        
        .bg-white {
            background-color: white;
        }
        
        /* Border */
        .border-t {
            border-top: 1px solid;
        }
        
        .border-gray-200 {
            border-color: #e5e7eb;
        }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Fade In Animation */
        .animate-fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Items */
        .stat-item {
            padding: 1rem 2rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        /* Filter Buttons */
        .filter-btn {
            padding: 8px 20px;
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 9999px;
            color: #6b7280;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        button.filter-btn i {
            font-size: 13px;
        }

        .filter-btn:hover {
            border-color: #E44D30;
            color: #E44D30;
            transform: translateY(-1px);
            box-shadow: 0 10px 15px -3px rgba(102, 126, 234, 0.12);
        }

        .filter-btn.active {
            background: #2E7D32;
            border-color: transparent;
            color: white;
            box-shadow: 0 10px 25px -5px rgba(102, 126, 234, 0.2);
        }

        /* Camping Cards */
        .camping-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
           transition: opacity 0.4s ease, transform 0.4s ease;
            opacity: 1;
            transform: scale(1);
        }

        .camping-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.19);
        }
        
        .camping-card.hide {
            opacity: 0;
            transform: scale(0.9);
            pointer-events: none;
        }

        /* Card Image Wrapper */
        .card-image-wrapper {
            position: relative;
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .camping-card:hover .card-image {
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgb(0 0 0 / 30%) 0%, transparent 30%);
            opacity: 1;
        }

        /* Favorite Button */
        .favorite-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .favorite-btn:hover {
            background: #ef4444;
            color: white;
            transform: scale(1.1);
        }

        .favorite-btn.active {
            background: #ef4444;
            color: white;
        }

        .favorite-btn i {
            font-size: 1.125rem;
        }

        .favorite-btn:hover i {
            animation: heartBeat 0.5s ease;
        }

        @keyframes heartBeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.2); }
            50% { transform: scale(0.9); }
            75% { transform: scale(1.1); }
        }

        .camp-wish-list {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 10;
        }
        
        .camground-filter-section .woosw-btn-has-icon .woosw-btn-icon {
            margin: 0;
            background: white;
            border-radius: 50%;
            padding: 10px;
            font-size: 20px;
        }

        /* Card Badges */
        .card-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 10;
        }

        .badge-discount {
            background: #E44D30;
            color: white;
            padding: 7px 11px;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 10px 15px -3px rgba(245, 87, 108, 0.18);
            animation: pulse 2s infinite;
        }

        .hot-title {
            background: #E44D30;
            color: white;
            padding: 7px 13px;
            border-radius: 9999px;
            font-size: 13px;
            font-weight: 500;
            text-transform: capitalize;
            letter-spacing: 0.05em;
            box-shadow: 0 10px 15px -3px rgba(245, 87, 108, 0.18);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Card Category */
        .card-category {
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 12px;
            gap: 2px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #4b5563;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            z-index: 3;
        }

        .card-category a {
            font-size: 13px;
        }

        /* Card Content */
        .card-content {
            padding: 1.5rem;
        }

        .card-title {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .bottom-meta-campie {
            display: flex;
            align-items: center;
            gap: 12px;
            position: absolute;
            bottom: 1rem;
            left: 1rem;
        }

        /* Rating Badge */
        .rating-badge {
            display: flex;
            align-items: center;
            background: #fef3c7;
            padding: 0.25rem 0.75rem;
            border-radius: 40px;
            font-size: 0.875rem;
            font-weight: 700;
            color: #92400e;
            white-space: nowrap;
        }

        /* Features List */
        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 3px;
            padding: 6px 12px;
            background: #efefef;
            border-radius: 6px;
            font-size: 0.75rem;
            color: #6b7280;
            font-weight: 500;
        }

        .feature-item i {
            color: #E44D30;
            font-size: 14px;
        }

        /* Booking Button */
        .booking-btn {
            width: 100%;
            padding: 14px 15px;
            background: #2E7D32;
            color: #ffffffff;
            border: 1px solid #e0e3e3;
            border-radius: 0.75rem;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgb(102 126 234 / 5%);
        }

        .booking-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(102, 126, 234, 0.14);
             background: #2E7D32;
             color: #ffff;
        }

        .booking-btn:active {
            transform: translateY(0);
        }

        .booking-btn i {
            transition: transform 0.3s ease;
            font-size: 14px;
        }

        .booking-btn:hover i {
            transform: translateX(4px);
        }

        /* Line Through Text */
        .line-through {
            text-decoration: line-through;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .card-image-wrapper {
                height: 220px;
            }
            
            .stat-item {
                padding: 0.75rem 1.5rem;
            }
            
            .filter-btn {
                padding: 0.625rem 1.25rem;
                font-size: 0.8125rem;
            }
            
            .text-5xl {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 640px) {
            .features-list {
                gap: 0.5rem;
            }
            
            .feature-item {
                padding: 0.375rem 0.625rem;
                font-size: 0.6875rem;
            }
        }

        .price-bottom-bar {
            display: flex;
            flex-direction: column;
        }

        .title-box-middle {
            gap: 10px;
        }

        .camground-filter-section .old-price .price-text {
            font-size: 18px;
        }

        .camground-filter-section .main-price-wrap {
            display: flex;
            gap: 5px;
            align-items: center;
        }

        .camground-filter-section .location {
            padding-top: 4px;
            padding-bottom: 2px;
        }

        .camground-filter-section  .img-box img {
            height: 280px;
            object-fit: cover;
        }

        .camground-filter-section .camp-filter-bar {
            margin-bottom: 48px;
            gap: 12px;
        }