.rq-category-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.rq-category-title {
    text-align: center;
    margin-bottom: 30px;
}

.rq-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rq-category-item {
    cursor: pointer;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;
    background: #fff;
    transition: all 0.2s ease;
}

.rq-category-item:hover {
    transform: translateY(-3px);
}

.rq-category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-bottom: 12px;
}

.rq-category-name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 767px) {

    .rq-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .rq-category-item {
        padding: 10px;
    }

    .rq-category-name {
        font-size: 15px;
    }
}

/*
 * ==========================================
 * DEVICE / BRAND GRID
 * ==========================================
 */

.rq-form-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.rq-device-title {
    text-align: center;
    margin-bottom: 30px;
}

.rq-device-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rq-device-item {
    cursor: pointer;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 25px 15px;
    background: #fff;
    transition: all 0.2s ease;
}

.rq-device-item:hover {
    transform: translateY(-3px);
}

.rq-device-name {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
}

.rq-back-button {
    border: none;
    background: none;
    padding: 0;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 15px;
}

.rq-device-loading,
.rq-device-message {
    text-align: center;
    margin-top: 20px;
}
.rq-model-name{
    cursor: pointer;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 8px 3px;
    background: #fff;
    transition: all 0.2s ease;
}
@media (max-width: 767px) {

    .rq-device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .rq-device-item {
        padding: 20px 10px;
    }

    .rq-device-name {
        font-size: 15px;
    }

}
/*
 * ==========================================
 * SERVICE GRID
 * ==========================================
 */

.rq-service-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 3px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rq-service-item:hover {
    transform: translateY(-3px);
}

.rq-service-name {
    font-size: 16px;
    font-weight: 600;
}