        .cat-090000 body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f5f5f5;
        }

        .cat-090000 .main-wrapper {
            max-width: 1200px;
            margin: 20px auto;
            display: flex;
            gap: 20px;
            padding: 0 10px;
            box-sizing: border-box;
            flex-wrap: nowrap;
        }

        .cat-090000 .main-content {
            flex: 1 1 70%;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .cat-090000 .sidebar {
            flex: 1 1 28%;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .cat-090000 h1 {
            color: #ff5722;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .cat-090000 p.description {
            color: #666;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .cat-090000 .main-wrapper {
                flex-direction: column;
            }
            .cat-090000 .main-content, .cat-090000 .sidebar {
                order: unset;
            }
        }

        .cat-090000 .listings-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cat-090000 .listing-card {
            display: flex;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: box-shadow 0.2s, transform 0.2s;
            padding: 10px;
            position: relative;
            min-height: 150px;
            align-items: center;
            flex-direction: row-reverse;
        }

        .cat-090000 .listing-card.premium {
            border: 2px solid gold;
            background: rgba(255, 215, 0, 0.1);
        }

        .cat-090000 .listing-card.boosted {
            border: 2px solid #ff57234f;
            background: rgba(255, 87, 35, 0.05);
        }

        .cat-090000 .listing-card.urgent {
            border: 2px solid #00968836;
            background: rgba(0, 121, 107, 0.1);
        }

        .cat-090000 .listing-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .cat-090000 .listing-card img {
            width: 150px;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .cat-090000 .listing-info {
            flex: 1;
        }

        .cat-090000 .listing-info strong {
            display: block;
            font-size: 16px;
            color: #333;
            margin-bottom: 5px;
        }

        .cat-090000 .listing-info .price {
            color: #ff5723;
            font-weight: bold;
        }

        .cat-090000 .listing-info .meta {
            font-size: 13px;
            color: #888;
        }

        .cat-090000 .badges-container {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            gap: 6px;
            align-items: center;
            z-index: 2;
        }

        .cat-090000 .badge {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 4px 8px;
            font-size: 11px;
            font-weight: 600;
            color: #fff;
            border-radius: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            border: 2px solid #fff;
        }

        .cat-090000 .badge.boosted-badge {
            background-color: #ff5722;
        }

        .cat-090000 .badge.urgent-badge {
            background-color: #009688;
        }

        .cat-090000 .badge.premium-badge {
            background-color: gold;
            color: #000;
        }

        .cat-090000 .badge i {
            font-size: 1rem;
        }

        .cat-090000 .pagination {
            margin-top: 20px;
            text-align: center;
        }

        .cat-090000 .pagination a {
            display: inline-block;
            padding: 6px 12px;
            margin: 0 3px;
            border: 1px solid #ddd;
            background: #fff;
            border-radius: 4px;
            color: #333;
            text-decoration: none;
        }

        .cat-090000 .pagination a.active {
            background: #ff5722;
            color: #fff;
            border-color: #ff5722;
        }

        .cat-090000 .pagination a:hover {
            background: #f5f5f5;
        }